File Transfer Task

File Transfer Task — Monitoring file transfers

Stability Level

Stable, unless otherwise indicated

Functions

Properties

GCancellable * cancellable Read / Write / Construct Only
SpiceMainChannel * channel Read / Write / Construct Only
GFile * file Read / Write / Construct Only
guint id Read / Write / Construct Only
gdouble progress Read

Signals

Types and Values

Object Hierarchy

    GObject
    ╰── SpiceFileTransferTask

Includes

#include <spice-client.h>

Description

SpiceFileTransferTask is an object that represents a particular file transfer between the client and the guest. The properties and signals of the object can be used to monitor the status and result of the transfer. The Main Channel's “new-file-transfer” signal will be emitted whenever a new file transfer task is initiated.

Functions

spice_file_transfer_task_get_progress ()

double
spice_file_transfer_task_get_progress (SpiceFileTransferTask *self);

Convenience function for retrieving the current progress of this file transfer task.

Parameters

self

a file transfer task

 

Returns

A percentage value between 0 and 100


spice_file_transfer_task_get_filename ()

char *
spice_file_transfer_task_get_filename (SpiceFileTransferTask *self);

Gets the name of the file being transferred in this task

Parameters

self

a file transfer task

 

Returns

The basename of the file.

[transfer none]


spice_file_transfer_task_cancel ()

void
spice_file_transfer_task_cancel (SpiceFileTransferTask *self);

Cancels the file transfer task. Note that depending on how the file transfer was initiated, multiple file transfer tasks may share a single “cancellable” object, so canceling one task may result in the cancellation of other tasks.

Parameters

self

a file transfer task

 

Types and Values

struct SpiceFileTransferTask

struct SpiceFileTransferTask;

The FileTransferTask struct is opaque and should not be accessed directly.


struct SpiceFileTransferTaskClass

struct SpiceFileTransferTaskClass {
    GObjectClass parent_class;
};

Class structure for SpiceFileTransferTask.

Members

GObjectClass parent_class;

Parent class.

 

Property Details

The “cancellable” property

  “cancellable”              GCancellable *

A cancellable object used to cancel the file transfer

Flags: Read / Write / Construct Only


The “channel” property

  “channel”                  SpiceMainChannel *

The main channel that owns the file transfer task

Flags: Read / Write / Construct Only


The “file” property

  “file”                     GFile *

The file that is being transferred in this file transfer task

Flags: Read / Write / Construct Only


The “id” property

  “id”                       guint

The ID of the file transfer task

Flags: Read / Write / Construct Only

Default value: 0


The “progress” property

  “progress”                 gdouble

The current state of the file transfer. This value indicates a percentage, and ranges from 0 to 100. Listen for change notifications on this property to be updated whenever the file transfer progress changes.

Flags: Read

Allowed values: [0,100]

Default value: 0

Signal Details

The “finished” signal

void
user_function (SpiceFileTransferTask *task,
               GError                *error,
               gpointer               user_data)

The “finished” signal is emitted when the file transfer has completed transferring to the guest.

Parameters

task

the file transfer task that emitted the signal

 

error

the error state of the transfer. Will be NULL if the file transfer was successful.

[transfer none]

user_data

user data set when the signal handler was connected.

 

Flags: Run First

See Also

SpiceMainChannel