Package org.pentaho.reporting.libraries.repository.file

Source Code of org.pentaho.reporting.libraries.repository.file.FileRepository

/*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
* Foundation.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
* or from the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* Copyright (c) 2006 - 2013 Pentaho Corporation and Contributors.  All rights reserved.
*/

package org.pentaho.reporting.libraries.repository.file;

import java.io.File;
import java.io.Serializable;
import java.net.MalformedURLException;
import java.net.URL;

import org.pentaho.reporting.libraries.repository.ContentIOException;
import org.pentaho.reporting.libraries.repository.ContentLocation;
import org.pentaho.reporting.libraries.repository.DefaultMimeRegistry;
import org.pentaho.reporting.libraries.repository.MimeRegistry;
import org.pentaho.reporting.libraries.repository.UrlRepository;

/**
* A file-repository uses a subset of the local filesystem to provide a repository view on top of it. This repository
* type is the most commonly used repository, as most applications are allowed to access the local filsystem. 
*
* @author Thomas Morgner
*/
public class FileRepository implements UrlRepository, Serializable
{
  private static final long serialVersionUID = -6221548332596506480L;

  private MimeRegistry mimeRegistry;
  private FileContentLocation root;

  /**
   * Creates a new repository for the given file. The file must point to a directory. This constructor uses the
   * default mime-registry.
   *
   * @param file the directory, which should form the root of the repository.
   * @throws ContentIOException if an error prevents the repository creation.
   */
  public FileRepository(final File file) throws ContentIOException
  {
    this(file, new DefaultMimeRegistry());
  }

  /**
   * Creates a new repository for the given file. The file must point to a directory.
   *
   * @param file the directory, which should form the root of the repository.
   * @param mimeRegistry the mime registry to be used.
   * @throws ContentIOException if an error prevents the repository creation.
   */
  public FileRepository(final File file, final MimeRegistry mimeRegistry) throws ContentIOException
  {
    if (mimeRegistry == null)
    {
      throw new NullPointerException("MimeRegistry must be given");
    }
    if (file == null)
    {
      throw new NullPointerException("File must be given");
    }
    this.mimeRegistry = mimeRegistry;
    this.root = new FileContentLocation(this, file);
  }

  /**
   * Returns the mime-registry for the repository.
   *
   * @return the mime-registry.
   */
  public MimeRegistry getMimeRegistry()
  {
    return mimeRegistry;
  }

  /**
   * Returns the repositories root directory entry.
   *
   * @return the root directory.
   * @throws ContentIOException if an error occurs.
   */
  public ContentLocation getRoot() throws ContentIOException
  {
    return root;
  }

  /**
   * Returns the URL that represents this repository. The meaning of the URL returned here is implementation
   * specific and is probably not suitable to resolve names to global objects.
   *
   * @return the repository's URL.
   * @throws MalformedURLException if the URL could not be computed.
   */
  public URL getURL() throws MalformedURLException
  {
    return root.getBackend().toURI().toURL();
  }
}
TOP

Related Classes of org.pentaho.reporting.libraries.repository.file.FileRepository

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.