|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectadams.core.ConsoleObject
adams.core.option.AbstractOptionHandler
adams.flow.core.AbstractActor
adams.flow.source.AbstractSource
adams.flow.source.AbstractArrayProvider
adams.flow.source.FTPLister
public class FTPLister
Returns the contents of a FTP directory (files/dirs).
Input/output:-D <int> (property: debugLevel) The greater the number the more additional info the scheme may output to the console (0 = off). default: 0 minimum: 0
-name <java.lang.String> (property: name) The name of the actor. default: FTPLister
-annotation <adams.core.base.BaseText> (property: annotations) The annotations to attach to this actor. default:
-skip (property: skip) If set to true, transformation is skipped and the input token is just forwarded as it is.
-stop-flow-on-error (property: stopFlowOnError) If set to true, the flow gets stopped in case this actor encounters an error; useful for critical actors.
-output-array (property: outputArray) Whether to output the files as array or as single strings.
-remote-dir <java.lang.String> (property: remoteDir) The FTP directory to list the files for. default: /pub
-list-dirs (property: listDirs) Whether to include directories in the output.
-list-files (property: listFiles) Whether to include files in the output.
-regexp <adams.core.base.BaseRegExp> (property: regExp) The regular expression that the files/dirs must match (empty string matches all). default:
-sorting <NO_SORTING|SORT_BY_NAME|SORT_BY_LAST_MODIFIED> (property: sorting) The type of sorting to perform. default: NO_SORTING
-descending (property: sortDescending) If set to true, the files are sorted in descending manner.
| Nested Class Summary | |
|---|---|
static class |
FTPLister.Sorting
The type of sorting. |
| Field Summary | |
|---|---|
protected FTPConnection |
m_Connection
the FTP connection to use. |
protected boolean |
m_ListDirs
whether to list directories. |
protected boolean |
m_ListFiles
whether to list files. |
protected BaseRegExp |
m_RegExp
the regular expression on the file/dir names. |
protected String |
m_RemoteDir
the directory to list. |
protected boolean |
m_SortDescending
whether to sort descending instead of ascending. |
protected FTPLister.Sorting |
m_Sorting
the sorting. |
| Fields inherited from class adams.flow.source.AbstractArrayProvider |
|---|
m_Index, m_OutputArray, m_Queue |
| Fields inherited from class adams.flow.core.AbstractActor |
|---|
FILE_EXTENSION, FILE_EXTENSION_GZ, m_Annotations, m_BackupState, m_DetectedObjectVariables, m_DetectedVariables, m_ErrorHandler, m_Executed, m_FullName, m_Headless, m_Name, m_Parent, m_Root, m_Self, m_Skip, m_StopFlowOnError, m_StopMessage, m_Stopped, m_StorageHandler, m_VariablesUpdated |
| Fields inherited from class adams.core.option.AbstractOptionHandler |
|---|
m_DebugLevel, m_OptionManager |
| Constructor Summary | |
|---|---|
FTPLister()
|
|
| Method Summary | |
|---|---|
void |
defineOptions()
Adds options to the internal list of options. |
protected String |
doExecute()
Executes the flow item. |
protected Class |
getItemClass()
Returns the based class of the items. |
boolean |
getListDirs()
Returns whether directories are listed. |
boolean |
getListFiles()
Returns whether directories are listed. |
String |
getQuickInfo()
Returns a quick info about the actor, which will be displayed in the GUI. |
BaseRegExp |
getRegExp()
Returns the regular expression for the files/dirs. |
String |
getRemoteDir()
Returns the remote directory. |
boolean |
getSortDescending()
Returns whether to sort descendingly. |
FTPLister.Sorting |
getSorting()
Returns the type of sorting to perform. |
String |
globalInfo()
Returns a string describing the object. |
String |
listDirsTipText()
Returns the tip text for this property. |
String |
listFilesTipText()
Returns the tip text for this property. |
String |
outputArrayTipText()
Returns the tip text for this property. |
String |
regExpTipText()
Returns the tip text for this property. |
String |
remoteDirTipText()
Returns the tip text for this property. |
void |
setListDirs(boolean value)
Sets whether to list directories. |
void |
setListFiles(boolean value)
Sets whether to list files. |
void |
setRegExp(BaseRegExp value)
Sets the regular expression for the files/dirs. |
void |
setRemoteDir(String value)
Sets the remote directory. |
void |
setSortDescending(boolean value)
Sets whether to sort descendingly. |
void |
setSorting(FTPLister.Sorting value)
Sets the type of sorting to perform. |
String |
setUp()
Initializes the item for flow execution. |
String |
sortDescendingTipText()
Returns the tip text for this property. |
String |
sortingTipText()
Returns the tip text for this property. |
| Methods inherited from class adams.flow.source.AbstractArrayProvider |
|---|
generates, getOutputArray, hasPendingOutput, output, preExecute, reset, setOutputArray, wrapUp |
| Methods inherited from class adams.core.option.AbstractOptionHandler |
|---|
cleanUpOptions, debug, debugLevelTipText, finishInit, getDebugLevel, getOptionManager, isDebugOn, newOptionManager, setDebugLevel, toCommandLine, toString |
| Methods inherited from class adams.core.ConsoleObject |
|---|
getDebugging, getSystemErr, getSystemOut |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected String m_RemoteDir
protected BaseRegExp m_RegExp
protected boolean m_ListDirs
protected boolean m_ListFiles
protected FTPLister.Sorting m_Sorting
protected boolean m_SortDescending
protected FTPConnection m_Connection
| Constructor Detail |
|---|
public FTPLister()
| Method Detail |
|---|
public String globalInfo()
globalInfo in class AbstractOptionHandlerpublic void defineOptions()
defineOptions in interface OptionHandlerdefineOptions in class AbstractArrayProviderpublic String getQuickInfo()
getQuickInfo in interface QuickInfoSupportergetQuickInfo in class AbstractActorpublic void setRemoteDir(String value)
value - the remote directorypublic String getRemoteDir()
public String remoteDirTipText()
public String outputArrayTipText()
outputArrayTipText in class AbstractArrayProviderpublic void setRegExp(BaseRegExp value)
value - the regular expressionpublic BaseRegExp getRegExp()
public String regExpTipText()
public void setListDirs(boolean value)
value - true if directories are to be listedpublic boolean getListDirs()
public String listDirsTipText()
public void setListFiles(boolean value)
value - true if files are to be listedpublic boolean getListFiles()
public String listFilesTipText()
public void setSorting(FTPLister.Sorting value)
value - the type of sortingpublic FTPLister.Sorting getSorting()
public String sortingTipText()
public void setSortDescending(boolean value)
value - true if sorting in descending orderpublic boolean getSortDescending()
public String sortDescendingTipText()
protected Class getItemClass()
getItemClass in class AbstractArrayProviderpublic String setUp()
setUp in class AbstractActorprotected String doExecute()
doExecute in class AbstractActor
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||