Package org.apache.commons.vfs.provider.gsiftp

Source Code of org.apache.commons.vfs.provider.gsiftp.GsiFtpFileSystem

/*
* Copyright 2002-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.vfs.provider.gsiftp;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.commons.vfs.FileName;
import org.apache.commons.vfs.FileObject;
import org.apache.commons.vfs.FileSystem;
import org.apache.commons.vfs.FileSystemException;
import org.apache.commons.vfs.FileSystemOptions;
import org.apache.commons.vfs.provider.AbstractFileSystem;
import org.apache.commons.vfs.provider.GenericFileName;
import org.globus.ftp.GridFTPClient;
import org.globus.ftp.exception.ServerException;

import java.io.IOException;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

/**
* Represents the files on an SFTP server.
*
* @author <a href="mailto:adammurdoch@apache.org">Adam Murdoch</a>
* @version $Revision$ $Date: 2005-10-14 10:59:47 -0700 (Fri, 14 Oct 2005) $
*/
public class GsiFtpFileSystem extends AbstractFileSystem implements FileSystem {
  //private final static Log log = LogFactory.getLog(GsiFtpFileSystem.class);

  // An idle client
  private GridFTPClient idleClient;

  private final Object idleClientSync = new Object();
 
  // File system attribute
    private Map attribs = new HashMap();

    /**
     *
     * @param rootName
     * @param ftpClient
     * @param fileSystemOptions
     */
  protected GsiFtpFileSystem(final GenericFileName rootName,
      final GridFTPClient ftpClient,
      final FileSystemOptions fileSystemOptions)
  {
    super(rootName, null, fileSystemOptions);

    idleClient = ftpClient;
  }

  protected void doCloseCommunicationLink() {
    // Clean up the connection
    if (idleClient != null) {
      closeConnection(idleClient);
      idleClient = null;
    }
  }

  /**
   * Adds the capabilities of this file system.
   */
  protected void addCapabilities(final Collection caps) {
    caps.addAll(GsiFtpFileProvider.capabilities);
  }

  /**
   * Cleans up the connection to the server.
   */
  private void closeConnection(final GridFTPClient client) {
    try {
      // Clean up
      // if (client.isConnected())
      // {
      client.close(); // disconnect();
      // }
    } catch (final IOException ioe) {
      // getLogger().warn("vfs.provider.ftp/close-connection.error", e);
      // VfsLog.warn(getLogger(), log,
      // "vfs.provider.ftp/close-connection.error", ioe);
      //log.warn("vfs.provider.ftp/close-connection.error", ioe);
    } catch (final ServerException e) {
      // getLogger().warn("vfs.provider.ftp/close-connection.error", e);
      // VfsLog.warn(getLogger(), log,
      // "vfs.provider.ftp/close-connection.error", e);
      //log.warn("vfs.provider.ftp/close-connection.error", e);
    }
  }

  /**
   * Creates an FTP client to use.
   */
  public GridFTPClient getClient() throws FileSystemException {
    synchronized (idleClientSync) {
      if (idleClient == null) {
        final GenericFileName rootName = (GenericFileName) getRoot()
            .getName();

        /*log.debug("Creating connection to GSIFTP Host: "
            + rootName.getHostName() + " Port:"
            + rootName.getPort() + " User:"
            + rootName.getUserName() + " Path: "
            + rootName.getPath());*/

        return GsiFtpClientFactory.createConnection(rootName
            .getHostName(), rootName.getPort(), rootName
            .getUserName(), rootName.getPassword(),
        // rootName.getPath(),
            getFileSystemOptions());
      } else {
        final GridFTPClient client = idleClient;
        idleClient = null;
        return client;
      }
    }
  }

  /**
   * Returns an FTP client after use.
   */
  public void putClient(final GridFTPClient client) {
    synchronized (idleClientSync) {
      if (idleClient == null) {
        // Hang on to client for later
        idleClient = client;
      } else {
        // Close the client
        closeConnection(client);
      }
    }
  }

  /**
   * Creates a file object.
   */
  protected FileObject createFile(final FileName name)
      throws FileSystemException {
    return new GsiFtpFileObject(name, this, getRootName());
  }

  public void setAttribute(final String attrName, final Object value)
    throws FileSystemException
  {
    attribs.put(attrName, value);
  }

    public Object getAttribute(final String attrName)   throws FileSystemException
    {
      return attribs.get(attrName);
    }

}
TOP

Related Classes of org.apache.commons.vfs.provider.gsiftp.GsiFtpFileSystem

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.