Class AmazonS3Module
java.lang.Object
ecmwf.common.ectrans.TransferModule
ecmwf.common.ectrans.module.AmazonS3Module
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close.void
connect
(String location, ECtransSetup setup) Connect.void
Delete by name.Gets the input stream to read the file given by name starting at posn.int
getPort
(ECtransSetup setup) Gets the port from the setup.Gets the current status of the transfer module.byte[]
listAsByteArray
(String directory, String pattern) Default implementation to provide the list as a GZIPed byte array.String[]
listAsStringArray
(String directory, String pattern) List as a string array.void
Make directory by name.boolean
put
(InputStream in, String name, long posn, long size) Write the content of the file given by its name, starting at position posn and writing to the provided input stream.Provide an output stream to write the content of the file given by its name starting at position posn.void
Remove directory by name.long
Give the size of the file given by its name.void
Force an update of the statistics from the underlying socket.Methods inherited from class ecmwf.common.ectrans.TransferModule
check, containsAttribute, copy, delegateChecksum, get, getAttribute, getAttribute, getAvailable, getClearPassword, getClosedOnError, getCookie, getDebug, getECtransDestination, getECtransModule, getECUser, getMSUser, getRemoteProvider, list, move, preGet, prePut, setAttribute, setAttribute, setAvailable, setClosedOnError, setDebug, setInputFilter, setInputMd5, setInputSize, setOutputFilter
-
Constructor Details
-
AmazonS3Module
public AmazonS3Module()
-
-
Method Details
-
getStatus
Gets the current status of the transfer module. Gets the status.- Overrides:
getStatus
in classTransferModule
- Returns:
- the status
-
getPort
Gets the port from the setup. Gets the port.- Overrides:
getPort
in classTransferModule
- Parameters:
setup
- the setup- Returns:
- the port
-
updateSocketStatistics
Force an update of the statistics from the underlying socket. Update socket statistics.- Overrides:
updateSocketStatistics
in classTransferModule
- Throws:
IOException
- Signals that an I/O exception has occurred.
-
connect
Connect. Connect.- Specified by:
connect
in classTransferModule
- Parameters:
location
- the locationsetup
- the setup- Throws:
IOException
-
del
Delete by name. Del.- Specified by:
del
in classTransferModule
- Parameters:
name
- the name- Throws:
IOException
- Signals that an I/O exception has occurred.
-
put
Write the content of the file given by its name, starting at position posn and writing to the provided input stream. By default, doing nothing and returning false. Put.- Overrides:
put
in classTransferModule
- Parameters:
in
- the inname
- the nameposn
- the posnsize
- the size- Returns:
- true, if successful
- Throws:
IOException
- Signals that an I/O exception has occurred.
-
put
Provide an output stream to write the content of the file given by its name starting at position posn. Put.- Specified by:
put
in classTransferModule
- Parameters:
name
- the nameposn
- the posnsize
- the size- Returns:
- the output stream
- Throws:
IOException
- Signals that an I/O exception has occurred.
-
get
Gets the input stream to read the file given by name starting at posn. Gets the.- Specified by:
get
in classTransferModule
- Parameters:
name
- the nameposn
- the posn- Returns:
- the input stream
- Throws:
IOException
- Signals that an I/O exception has occurred.
-
size
Give the size of the file given by its name. Size.- Specified by:
size
in classTransferModule
- Parameters:
name
- the name- Returns:
- the long
- Throws:
IOException
- Signals that an I/O exception has occurred.
-
mkdir
Make directory by name. Mkdir.- Overrides:
mkdir
in classTransferModule
- Parameters:
directory
- the dir- Throws:
IOException
- Signals that an I/O exception has occurred.
-
rmdir
Remove directory by name. Rmdir.- Overrides:
rmdir
in classTransferModule
- Parameters:
directory
- the dir- Throws:
IOException
- Signals that an I/O exception has occurred.
-
listAsStringArray
List as a string array. List as string array.- Overrides:
listAsStringArray
in classTransferModule
- Parameters:
directory
- the directorypattern
- the pattern- Returns:
- the string[]
- Throws:
IOException
- Signals that an I/O exception has occurred.
-
listAsByteArray
Default implementation to provide the list as a GZIPed byte array. The implementation should give a better implementation as this one is relying on the non optimal listAsStringArray method by default. List as byte array.- Overrides:
listAsByteArray
in classTransferModule
- Parameters:
directory
- the directorypattern
- the pattern- Returns:
- the bytes
- Throws:
IOException
- Signals that an I/O exception has occurred.
-
close
-