12. XATTRFILE API¶
-
class
xattrfile.
XattrFile
(filepath, get_redis_callable=<function metwork_get_redis_callable>, redis_timeout=86400)[source]¶ Bases:
object
File with attributes.
At the beginning, this class was a wrapper around files with POSIX extended attributes (xattr). But because of xattr limitations, we store attributes into a redis instance. The name of this class should be changed one day.
Attributes are stored inside the object. They are lazy loaded from redis.
You can access them through tags attributes as a BytesDictWithDirtyFlag dict. If you made some modifications on theses tags, you can force a redis write with commit() method. But main public methods on the object do it for you. And there is an automatic destructor to do that if necessary.
You should not manipulate corresponding filepath directly (readonly access is ok) to avoid incoherences. Please use public methods on the file to copy/delete/rename/… it.
Variables: - filepath (string) – name of file.
- tags – attributes of file (lazy loading).
- get_redis_callable (callable) – a function to get a connected redis instance.
- redis_timeout (int) – redis keys timeout (in seconds)
-
__init__
(filepath, get_redis_callable=<function metwork_get_redis_callable>, redis_timeout=86400)[source]¶ Constructor.
Parameters: - filepath (string) – full file path.
- get_redis_callable (callable) – a function called with no arg which has to return a connected redis.Redis object to a redis instance to read/store attributes.
- redis_timeout (int) – lifetime (in seconds) of redis keys (-1: means no timeout) => it means that you will loose attributes on a given file after this timeout (if no modification).
Raises: IOError
– if the given path does not exist or is not a file.
-
chmod
(mode_int)[source]¶ Change the mode of the file to the provided numeric mode.
Parameters: mode_int (integer) – mode as integer (not octal !) (int(‘0755’, 8) for example to get the integer value of well known ‘0755’ octal value). Raises: IOError
– can’t do the chmod at a filesystem level.
-
commit
()[source]¶ Write tags into redis (if they are dirty).
Raises: redis.RedisError
– if there is a problem with redis.
-
copy
(new_filepath, tmp_suffix='.t', chmod_mode_int=None)[source]¶ Copy of the file (and its tags) with temporary suffix.
The temporary suffix is used during the copy to get a kind of atomic operation.
Note: tags are commited to redis during the copy.
Parameters: - new_filepath (string) – filepath to copy on.
- tmp_suffix (string) – temporary suffix during copy (None means no temporary suffix).
- chmod_mode_int (integer) – if set, chmod mode as integer (not octal !) (int(‘0755’, 8) for example to get the integer value of well known ‘0755’ octal value).
Returns: a new Xattrfile corresponding to the copied file.
Raises: redis.RedisError
– if there is a problem with redis.IOError
– can’t do the copy.
-
copy_or_nothing
(new_filepath, tmp_suffix='.t', chmod_mode_int=None)[source]¶ Copy a file without raising exceptions.
In case of errors, in contrast to copy() method, no exception is raised.
Parameters: - new_filepath (string) – filepath to copy on.
- tmp_suffix (string) – temporary suffix during copy (None means no temporary suffix).
- chmod_mode_int (integer) – if set, chmod mode as integer (not octal !) (int(‘0755’, 8) for example to get the integer value of well known ‘0755’ octal value).
Returns: True if the copy was ok, False else.
Return type: boolean
Copy current tags to another file and returns corresponding XattrFile.
The destination filepath must exist. If not, use copy() method.
Note: tags are commited to redis before the copy.
Parameters: filepath (string) – complete filepath to copy tags on.
Returns: - Xattrfile corresponding to given filepath
with current tags copied on.
Raises: redis.RedisError
– if there is a problem with redis.IOError
– if the given path does not exist or is not a file.
-
delete
()[source]¶ Delete the file and corresponding tags.
Raises: redis.RedisError
– if there is a problem with redis.IOError
– can’t do the delete at a filesystem level.
-
delete_or_nothing
()[source]¶ Delete the file and corresponding tags.
In case of errors, in contrast to delete() method, no exception is raised.
Returns: True if the delete was ok, False else. Return type: boolean
Dump tags on the given logger with the given log level.
-
getsize
()[source]¶ Return the size of the file (in bytes).
- Returns
- int: the size of the file (in bytes).
-
hard_link
(new_filepath)[source]¶ Create a hard link of the file (and its tags).
Note: tags are commited to redis during the hard link.
Parameters: new_filepath (string) – filepath for the hard link.
Returns: a new Xattrfile corresponding to the new file/link.
Raises: redis.RedisError
– if there is a problem with redis.IOError
– can’t do the link at a filesystem level.
-
hardlink_or_copy
(new_filepath, tmp_suffix='.t', chmod_mode_int=None)[source]¶ Hardlink or copy (only if move failed) without raising exceptions.
The original file (and its tags) is deleted (whatever hardlink or copy is effectively done).
Parameters: - new_filepath (string) – complete new filepath towards harlink/copy.
- tmp_suffix (string) – temporary suffix during copy (None means no temporary suffix).
- chmod_mode_int (integer) – DEPRECATED (do not use).
Returns: - first boolean is True if the operation was ok,
False else ; second boolean is True if the operation was done with a hardlink, False if the operation was done with a copy.
Return type: (boolean, boolean)
-
move_or_copy
(new_filepath, tmp_suffix='.t', chmod_mode_int=None)[source]¶ Move or copy (only if move failed) without any exceptions.
The original file (and its tags) is deleted (whatever move or copy is effectively done).
Parameters: - new_filepath (string) – complete new filepath towards move/copy.
- tmp_suffix (string) – temporary suffix during copy (None means no temporary suffix).
- chmod_mode_int (integer) – DEPRECATED (do not use).
Returns: - first boolean is True if the operation was ok,
False else ; second boolean is True if the operation was done with a move, False if the operation was done with a copy.
Return type: (boolean, boolean)
-
rename
(new_filepath)[source]¶ Move file (and its tags) to another path (in the same filesystem).
Tags are preserved and written before the operation.
Parameters: new_filepath (string) – new filepath.
Raises: redis.RedisError
– if there is a problem with redis.IOError
– can’t do the rename at a filesystem level.
Write tags in a utf8 file.
Parameters: filepath – filepath of the file to write in.