Scp Swift Reference Documentation

CkoScp

Current Version: 11.1.0

An API for SCP over SSH. (SCP is the Secure Copy Protocol.) It is for transferring files or directory trees to or from remote servers. SCP is a simpler protocol than SFTP, and thus the functionality is more limited. However, SCP does not require that an SSH server support the SFTP subsystem. In cases where a server does not allow for SFTP, then SCP is a good choice for file transfer.

Object Creation

let obj = CkoScp()!

Properties

AbortCurrent
abortCurrent: Bool
Introduced in version 9.5.0.58

When set to true, causes the currently running method to abort. Methods that always finish quickly (i.e.have no length file operations or network communications) are not affected. If no method is running, then this property is automatically reset to false when the next method is called. When the abort occurs, this property is reset to false. Both synchronous and asynchronous method calls can be aborted. (A synchronous method call could be aborted by setting this property from a separate thread.)

top
DebugLogFilePath
debugLogFilePath: String!

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
HeartbeatMs
heartbeatMs: Int

The interval in milliseconds between each AbortCheck event callback, which enables an application to abort certain method calls before they complete. By default, HeartbeatMs is set to 0, meaning no AbortCheck event callbacks will trigger.

More Information and Examples
top
LastErrorHtml
lastErrorHtml: String! (read-only)

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
lastErrorText: String! (read-only)

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
lastErrorXml: String! (read-only)

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastMethodSuccess
lastMethodSuccess: Bool

Indicates the success or failure of the most recent method call: true means success, false means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages.

top
PercentDoneScale
percentDoneScale: Int
Introduced in version 9.5.0.51

This property is only valid in programming environment and languages that allow for event callbacks.

Sets the value to be defined as 100% complete for the purpose of PercentDone event callbacks. The defaut value of 100 means that at most 100 event PercentDone callbacks will occur in a method that (1) is event enabled and (2) is such that it is possible to measure progress as a percentage completed. This property may be set to larger numbers to get more fine-grained PercentDone callbacks. For example, setting this property equal to 1000 will provide callbacks with .1 percent granularity. For example, a value of 453 would indicate 45.3% competed. This property is clamped to a minimum value of 10, and a maximum value of 100000.

top
SendEnv
sendEnv: String!
Introduced in version 9.5.0.79

A JSON string specifying environment variables that are to be set for each SCP upload or download. For example:

{
    "LCS_PASSWORD": "myPassword",
    "SOME_ENV_VAR": "some_value",
...
}

top
SyncedFiles
syncedFiles: String!
Introduced in version 9.5.0.51

The paths of the files uploaded or downloaded in the last call to SyncUploadTree or SyncDownloadTree. The paths are listed one per line. In both cases (for upload and download) each line contains the full local file path (not the remote path).

More Information and Examples
top
SyncMustMatch
syncMustMatch: String!
Introduced in version 9.5.0.51

Can contain a wildcarded list of filename patterns separated by semicolons. For example, *.xml; *.txt; *.csv. If set, the SyncTreeUpload and SyncTreeDownload methods will only transfer files having a filename that matches any one of these patterns.

top
SyncMustMatchDir
syncMustMatchDir: String!
Introduced in version 9.5.0.58

Can contain a wildcarded list of directory name patterns separated by semicolons. For example, a*; b*; c*. If set, the SyncTreeUpload and SyncTreeDownload methods will only traverse into a directory that matches any one of these patterns.

top
SyncMustNotMatch
syncMustNotMatch: String!
Introduced in version 9.5.0.51

Can contain a wildcarded list of filename patterns separated by semicolons. For example, *.xml; *.txt; *.csv. If set, the SyncTreeUpload and SyncTreeDownload methods will not transfer files having a filename that matches any one of these patterns.

More Information and Examples
top
SyncMustNotMatchDir
syncMustNotMatchDir: String!
Introduced in version 9.5.0.58

Can contain a wildcarded list of directory name patterns separated by semicolons. For example, a*; b*; c*. If set, the SyncTreeUpload and SyncTreeDownload methods will not traverse into a directory that matches any one of these patterns.

top
UncommonOptions
uncommonOptions: String!
Introduced in version 9.5.0.77

This is a catch-all property to be used for uncommon needs. The default value is the empty string.

Can be set to a list of the following comma separated keywords:

  • FilenameOnly - Introduced in v9.5.0.77. Set this property to the keyword FilenameOnly if only the filename should be used in the scp -t command. (LANCOM routers using SCP seem to need it.)
  • ProtectFromVpn - Introduced in v9.5.0.80. On Android systems, will bypass any VPN that may be installed or active.

top
UnixPermOverride
unixPermOverride: String!
Introduced in version 9.5.0.77

When Chilkat uploads a file by SCP, the UNIX permissions of the remote file are set based on the permissions of the local file being uploaded. Usually this is OK, but in some cases the access permissions of the local file are not what is wanted for the remote file. This property can be set to an octal permissions string, such as 0644, to force the remote file permissions to this value.

The default value of this property is the empty string (remote files permissions mirror the permissions of the local file being uploaded).

top
VerboseLogging
verboseLogging: Bool

If set to true, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is false. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
version: String! (read-only)

Version of the component/library, such as "10.1.0"

More Information and Examples
top

Methods

DownloadBd
downloadBd(remotePath: String, bd: CkoBinData) -> Bool
Introduced in version 9.5.0.77

Downloads a binary file from the SSH server and appends to the contents of bd.

Returns true for success, false for failure.

top
DownloadBdAsync (1)
downloadBdAsync(remotePath: String, bd: CkoBinData) -> CkoTask
Introduced in version 9.5.0.77

Creates an asynchronous task to call the DownloadBd method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
DownloadBinary
downloadBinary(remotePath: String) -> NSData
Introduced in version 9.5.0.51

Downloads a binary file from the SSH server and returns the contents.

Returns nil on failure

top
DownloadBinaryAsync (1)
downloadBinaryAsync(remotePath: String) -> CkoTask
Introduced in version 9.5.0.51

Creates an asynchronous task to call the DownloadBinary method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
DownloadBinaryEncoded
downloadBinaryEncoded(remotePath: String, encoding: String) -> String
Introduced in version 9.5.0.51

Downloads a file from the SSH server returns the contents in an encoded string (using an encoding such as base64).

Returns nil on failure

top
DownloadBinaryEncodedAsync (1)
downloadBinaryEncodedAsync(remotePath: String, encoding: String) -> CkoTask
Introduced in version 9.5.0.51

Creates an asynchronous task to call the DownloadBinaryEncoded method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
DownloadFile
downloadFile(remotePath: String, localPath: String) -> Bool
Introduced in version 9.5.0.51

Downloads a file from the remote SSH server to the local filesystem.

Returns true for success, false for failure.

top
DownloadFileAsync (1)
downloadFileAsync(remotePath: String, localPath: String) -> CkoTask
Introduced in version 9.5.0.51

Creates an asynchronous task to call the DownloadFile method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
DownloadString
downloadString(remotePath: String, charset: String) -> String
Introduced in version 9.5.0.51

Downloads a text file from the SSH server and returns the contents as a string.

Returns nil on failure

More Information and Examples
top
DownloadStringAsync (1)
downloadStringAsync(remotePath: String, charset: String) -> CkoTask
Introduced in version 9.5.0.51

Creates an asynchronous task to call the DownloadString method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
LoadTaskCaller
loadTaskCaller(task: CkoTask) -> Bool
Introduced in version 9.5.0.80

Loads the caller of the task's async method.

Returns true for success, false for failure.

top
SyncTreeDownload
syncTreeDownload(remoteRoot: String, localRoot: String, mode: Int, bRecurse: Bool) -> Bool
Introduced in version 9.5.0.51

Downloads files from the SSH server to a local directory tree. Synchronization modes include:

mode=0: Download all files
mode=1: Download all files that do not exist on the local filesystem.
mode=2: Download newer or non-existant files.
mode=3: Download only newer files. If a file does not already exist on the local filesystem, it is not downloaded from the server.
mode=5: Download only missing files or files with size differences.
mode=6: Same as mode 5, but also download newer files.

Returns true for success, false for failure.

More Information and Examples
top
SyncTreeDownloadAsync (1)
syncTreeDownloadAsync(remoteRoot: String, localRoot: String, mode: Int, bRecurse: Bool) -> CkoTask
Introduced in version 9.5.0.51

Creates an asynchronous task to call the SyncTreeDownload method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
SyncTreeUpload
syncTreeUpload(localBaseDir: String, remoteBaseDir: String, mode: Int, bRecurse: Bool) -> Bool
Introduced in version 9.5.0.51

Uploads a directory tree from the local filesystem to the SSH server. Synchronization modes include:

mode=0: Upload all files
mode=1: Upload all files that do not exist on the FTP server.
mode=2: Upload newer or non-existant files.
mode=3: Upload only newer files. If a file does not already exist on the FTP server, it is not uploaded.
mode=4: transfer missing files or files with size differences.
mode=5: same as mode 4, but also newer files.

Returns true for success, false for failure.

top
SyncTreeUploadAsync (1)
syncTreeUploadAsync(localBaseDir: String, remoteBaseDir: String, mode: Int, bRecurse: Bool) -> CkoTask
Introduced in version 9.5.0.51

Creates an asynchronous task to call the SyncTreeUpload method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
UploadBd
uploadBd(remotePath: String, bd: CkoBinData) -> Bool
Introduced in version 9.5.0.77

Uploads the contents of bd to a file on the SSH server.

Returns true for success, false for failure.

top
UploadBdAsync (1)
uploadBdAsync(remotePath: String, bd: CkoBinData) -> CkoTask
Introduced in version 9.5.0.77

Creates an asynchronous task to call the UploadBd method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
UploadBinary
uploadBinary(remotePath: String, binData: NSData) -> Bool
Introduced in version 9.5.0.51

Uploads binary data to a file on the SSH server.

Returns true for success, false for failure.

top
UploadBinaryAsync (1)
uploadBinaryAsync(remotePath: String, binData: NSData) -> CkoTask
Introduced in version 9.5.0.51

Creates an asynchronous task to call the UploadBinary method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
UploadBinaryEncoded
uploadBinaryEncoded(remotePath: String, encodedData: String, encoding: String) -> Bool
Introduced in version 9.5.0.51

Uploads the binary data to a file on the remote SSH server. The binary data is passed in encoded string representation (such as base64, or hex).

Returns true for success, false for failure.

top
UploadBinaryEncodedAsync (1)
uploadBinaryEncodedAsync(remotePath: String, encodedData: String, encoding: String) -> CkoTask
Introduced in version 9.5.0.51

Creates an asynchronous task to call the UploadBinaryEncoded method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
UploadFile
uploadFile(localPath: String, remotePath: String) -> Bool
Introduced in version 9.5.0.51

Uploads a file from the local filesystem to the remote SSH server.

Returns true for success, false for failure.

top
UploadFileAsync (1)
uploadFileAsync(localPath: String, remotePath: String) -> CkoTask
Introduced in version 9.5.0.51

Creates an asynchronous task to call the UploadFile method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
UploadString
uploadString(remotePath: String, textData: String, charset: String) -> Bool
Introduced in version 9.5.0.51

Uploads the contents of a string to a file on the remote SSH server.

Returns true for success, false for failure.

More Information and Examples
top
UploadStringAsync (1)
uploadStringAsync(remotePath: String, textData: String, charset: String) -> CkoTask
Introduced in version 9.5.0.51

Creates an asynchronous task to call the UploadString method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
UseSsh
use(sshConnection: CkoSsh) -> Bool
Introduced in version 9.5.0.51

Uses the SSH connection of sshConnection for the SCP transfers. All of the connection and socket related properties, proxy properites, timeout properties, session log, etc. set on the SSH object apply to the SCP methods (because internally it is the SSH object that is used to do the work of the file transfers).

Returns true for success, false for failure.

top

Events

To implement an event callback, your application would define and implement a class that inherits from CkoBaseProgress. Your application can implement methods to override some or all of the default/empty method implementations of the CkoBaseProgress base class.

For example:

class MyScpProgress : CkoBaseProgress {

    override func ProgressInfo(name: String!, value: String!) {
        // application code goes here...
        print(name + ": " + value)
    }

    override func AbortCheck(abort: UnsafeMutablePointer) {
        // application code goes here...
        // To abort the operation, set this equal to true instead of false.
        abort.memory = false
    }

    override func PercentDone(pctDone: NSNumber!, abort: UnsafeMutablePointer) {
        // application code goes here...
        print(pctDone)
        // To abort the operation, set this equal to true instead of false.
        abort.memory = false
    }

    // For asynchronous method calls.
    override func TaskCompleted(task: CkoTask!) {
        // application code goes here...
    }
}

func someAppFunction() {

    // Demonstrate how to set the event callback object...
    let scp = CkoScp()
    let myScpProgress = MyScpProgress()
    
    scp.setEventCallbackObject(myScpProgress)

    // ...
    // ...
    // ...
}

AbortCheck
abortCheck(abort: Bool)

Enables a method call to be aborted by triggering the AbortCheck event at intervals defined by the HeartbeatMs property. If HeartbeatMs is set to its default value of 0, no events will occur. For instance, set HeartbeatMs to 200 to trigger 5 AbortCheck events per second.

More Information and Examples
top
PercentDone
percentDone(pctDone: Int, abort: Bool)

This provides the percentage completion for any method involving network communications or time-consuming processing, assuming the progress can be measured as a percentage. This event is triggered only when it's possible and logical to express the operation's progress as a percentage. The pctDone argument will range from 1 to 100. For methods that finish quickly, the number of PercentDone callbacks may vary, but the final callback will have pctDone equal to 100. For longer operations, callbacks will not exceed one per percentage point (e.g., 1, 2, 3, ..., 98, 99, 100).

The PercentDone callback also acts as an AbortCheck event. For fast methods where PercentDone fires, an AbortCheck event may not trigger since the PercentDone callback already provides an opportunity to abort. For longer operations, where time between PercentDone callbacks is extended, AbortCheck callbacks enable more responsive operation termination.

To abort the operation, set the abort output argument to true. This will cause the method to terminate and return a failure status or corresponding failure value.

More Information and Examples
top
ProgressInfo
progressInfo(name: String, value: String)

This event callback provides tag name/value pairs that detail what occurs during a method call. To discover existing tag names, create code to handle the event, emit the pairs, and review them. Most tag names are self-explanatory.

More Information and Examples
top
TaskCompleted
taskCompleted(task: CkoTask)

Called from the background thread when an asynchronous task completes.

top