mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-09-10 14:11:58 +00:00
.externalToolBuilders
config
source
cpp
java
org
alfresco
example
filesys
alfresco
avm
ftp
FTPCommand.java
FTPDataSession.java
FTPDate.java
FTPNetworkServer.java
FTPPath.java
FTPRequest.java
FTPSessionList.java
FTPSiteInterface.java
FTPSrvSession.java
InvalidPathException.java
locking
netbios
server
smb
util
CIFSServer.java
FTPServer.java
NFSServer.java
jcr
model
repo
service
tools
util
apache
queryRegister.dtd
meta-inf
test-resources
web
.classpath
.project
build.xml
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5186 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
182 lines
4.0 KiB
Java
182 lines
4.0 KiB
Java
/*
|
|
* Copyright (C) 2005-2007 Alfresco Software Limited.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
* As a special exception to the terms and conditions of version 2.0 of
|
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
|
* FLOSS exception. You should have recieved a copy of the text describing
|
|
* the FLOSS exception, and it is also available here:
|
|
* http://www.alfresco.com/legal/licensing"
|
|
*/
|
|
package org.alfresco.filesys.ftp;
|
|
|
|
/**
|
|
* FTP Request Class
|
|
* <p>
|
|
* Contains the details of an FTP request
|
|
*
|
|
* @author GKSpencer
|
|
*/
|
|
public class FTPRequest
|
|
{
|
|
|
|
// FTP command id
|
|
|
|
private int m_cmd;
|
|
|
|
// Command argument
|
|
|
|
private String m_arg;
|
|
|
|
/**
|
|
* Default constructor
|
|
*/
|
|
public FTPRequest()
|
|
{
|
|
m_cmd = FTPCommand.InvalidCmd;
|
|
}
|
|
|
|
/**
|
|
* Class constructor
|
|
*
|
|
* @param cmd int
|
|
* @param arg String
|
|
*/
|
|
public FTPRequest(int cmd, String arg)
|
|
{
|
|
m_cmd = cmd;
|
|
m_arg = arg;
|
|
}
|
|
|
|
/**
|
|
* Class constructor
|
|
*
|
|
* @param cmdLine String
|
|
*/
|
|
public FTPRequest(String cmdLine)
|
|
{
|
|
|
|
// Parse the FTP command record
|
|
|
|
parseCommandLine(cmdLine);
|
|
}
|
|
|
|
/**
|
|
* Return the command index
|
|
*
|
|
* @return int
|
|
*/
|
|
public final int isCommand()
|
|
{
|
|
return m_cmd;
|
|
}
|
|
|
|
/**
|
|
* Check if the request has an argument
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public final boolean hasArgument()
|
|
{
|
|
return m_arg != null ? true : false;
|
|
}
|
|
|
|
/**
|
|
* Return the request argument
|
|
*
|
|
* @return String
|
|
*/
|
|
public final String getArgument()
|
|
{
|
|
return m_arg;
|
|
}
|
|
|
|
/**
|
|
* Set the command line for the request
|
|
*
|
|
* @param cmdLine String
|
|
* @return int
|
|
*/
|
|
public final int setCommandLine(String cmdLine)
|
|
{
|
|
|
|
// Reset the current values
|
|
|
|
m_cmd = FTPCommand.InvalidCmd;
|
|
m_arg = null;
|
|
|
|
// Parse the new command line
|
|
|
|
parseCommandLine(cmdLine);
|
|
return isCommand();
|
|
}
|
|
|
|
/**
|
|
* Parse a command string
|
|
*
|
|
* @param cmdLine String
|
|
*/
|
|
protected final void parseCommandLine(String cmdLine)
|
|
{
|
|
|
|
// Check if the command has an argument
|
|
|
|
int pos = cmdLine.indexOf(' ');
|
|
String cmd = null;
|
|
|
|
if (pos != -1)
|
|
{
|
|
cmd = cmdLine.substring(0, pos);
|
|
m_arg = cmdLine.substring(pos + 1);
|
|
}
|
|
else
|
|
cmd = cmdLine;
|
|
|
|
// Validate the FTP command
|
|
|
|
m_cmd = FTPCommand.getCommandId(cmd);
|
|
}
|
|
|
|
/**
|
|
* Update the command argument
|
|
*
|
|
* @param arg String
|
|
*/
|
|
protected final void updateArgument(String arg)
|
|
{
|
|
m_arg = arg;
|
|
}
|
|
|
|
/**
|
|
* Return the request as a string
|
|
*
|
|
* @return String
|
|
*/
|
|
public String toString()
|
|
{
|
|
StringBuilder str = new StringBuilder();
|
|
|
|
str.append("[");
|
|
str.append(FTPCommand.getCommandName(m_cmd));
|
|
str.append(":");
|
|
str.append(m_arg);
|
|
str.append("]");
|
|
|
|
return str.toString();
|
|
}
|
|
}
|