maestral.models¶
This module contains the definitions of our database tables which store the index, sync
history and cache of content hashes. Each table is defined by a subclass of
maestral.database.orm.Model
with properties representing database columns.
Class instances then represent table rows.
Module Contents¶
- class maestral.models.SyncEvent(**kwargs)[source]¶
Bases:
maestral.database.orm.Model
Represents a file or folder change in the sync queue
This class is used to represent both local and remote file system changes and track their sync progress. Some instance attributes will depend on the state of the sync session, e.g.,
local_path
will depend on the current path of the local Dropbox folder. They may therefore become invalid between sync sessions.The class methods
from_dbx_metadata()
andfrom_file_system_event()
should be used to properly construct aSyncEvent
from adropbox.files.Metadata
instance or awatchdog.events.FileSystemEvent
instance, respectively.- Parameters:
kwargs (Any)
- direction[source]¶
The
SyncDirection
.
- dbx_id[source]¶
A unique dropbox ID for the file or folder. Will only be set for download events which are not deletions.
- dbx_path[source]¶
Correctly cased Dropbox path of the item to sync. If the sync represents a move operation, this will be the destination path. Follows the casing from the path_display attribute of Dropbox metadata.
- dbx_path_lower[source]¶
Dropbox path of the item to sync. If the sync represents a move operation, this will be the destination path. This is normalised as the path_lower attribute of Dropbox metadata.
- local_path[source]¶
Local path of the item to sync. If the sync represents a move operation, this will be the destination path. This will be correctly cased.
- dbx_path_from[source]¶
Dropbox path that this item was moved from. Will only be set if
change_type
isChangeType.Moved
. Follows the casing from the path_display attribute of Dropbox metadata.
- dbx_path_from_lower[source]¶
Dropbox path that this item was moved from. Will only be set if
change_type
isChangeType.Moved
. This is normalised as the path_lower attribute of Dropbox metadata.
- local_path_from[source]¶
Local path that this item was moved from. Will only be set if
change_type
isChangeType.Moved
. This will be correctly cased.
- rev[source]¶
The file revision. Will only be set for remote changes. Will be
'folder'
for folders andNone
for deletions.
- content_hash[source]¶
A hash representing the file content. Will be
'folder'
for folders andNone
for deletions. Set for both local and remote changes.
- symlink_target[source]¶
If the file is a symlink, its target path. This should only be set for files.
- change_type[source]¶
The
ChangeType
. Remote SyncEvents currently do not generate moved events but are reported as deleted and added at the new location.
- change_time[source]¶
Timestamp in Unix epoch seconds when the file was last modified.
Local ctime or remote
client_modified
time for files.None
for folders or for remote deletions. Note thatclient_modified
may not be reliable as it is set by other clients and not verified.
- change_dbid[source]¶
The Dropbox ID of the account which performed the changes. This may not be set for added folders or deletions on the server.
- change_user_name[source]¶
The user name corresponding to
change_dbid
, if the account still exists. This field may not be set for performance reasons.
- status[source]¶
The
SyncStatus
.
- completed[source]¶
File size in bytes which has already been uploaded or downloaded. Always zero for folders.
- property change_time_or_sync_time: float[source]¶
Change time when available, otherwise sync time. This can be used for sorting or user information purposes.
- Return type:
- classmethod from_metadata(md, sync_engine)[source]¶
Initializes a SyncEvent from the given Dropbox metadata.
- Parameters:
md (maestral.core.Metadata) – Dropbox Metadata.
sync_engine (maestral.sync.SyncEngine) – SyncEngine instance.
- Returns:
An instance of this class with attributes populated from the given Dropbox Metadata.
- Return type:
- classmethod from_file_system_event(event, sync_engine)[source]¶
Initializes a SyncEvent from the given local file system event.
- Parameters:
event (watchdog.events.FileSystemEvent) – Local file system event.
sync_engine (maestral.sync.SyncEngine) – SyncEngine instance.
- Returns:
An instance of this class with attributes populated from the given SyncEvent.
- Return type:
- class maestral.models.IndexEntry(**kwargs)[source]¶
Bases:
maestral.database.orm.Model
Represents an entry in our local sync index
- Parameters:
kwargs (Any)
- dbx_path_lower[source]¶
Dropbox path of the item in lower case. This acts as a primary key for the SQLites database since there can only be one entry per case-insensitive Dropbox path. Corresponds to the path_lower field of Dropbox metadata.
- dbx_path_cased[source]¶
Dropbox path of the item, correctly cased. Corresponds to the path_display field of Dropbox metadata.
- last_sync[source]¶
The last time a local change was uploaded. Should be the ctime of the local item.
- content_hash[source]¶
A hash representing the file content. Will be
'folder'
for folders. May beNone
if not yet calculated.
- class maestral.models.HashCacheEntry(**kwargs)[source]¶
Bases:
maestral.database.orm.Model
Represents an entry in our cache of content hashes
- Parameters:
kwargs (Any)
- class maestral.models.SyncErrorEntry(**kwargs)[source]¶
Bases:
maestral.database.orm.Model
Table of sync errors
- Parameters:
kwargs (Any)