Home Architecture // Locations
A location is any source or target path given on the command line, including the optional user/hostname. It can either be a simple directory from which to backup, or to which to restore, or it can be a backup repository.
A location has a base_dir represented by an rpath.RPath object.
Note
|
an idea could be to make Location a child class of rpath.RPath, so that it represents its own base_dir .
An alternative idea could to use getattr to delegate attributes to base_dir …
The author of those lines is still thinking about pros and cons of these options.
|
The ultimate idea would be to have all client/server communications go through the location because, at the end, it’s what is present remotely, and the whole actions only act against those locations, potentially transferring data from one location to the next. The current code is far from this ideal, with remote functions all over the place.
The Location class knows two methods check
and setup
, which, like the corresponding action methods, return 0 if everything is well, or else 1.
Note
|
The
|
Each Location class has a "shadow" class, which it uses to communicate remotely. Those shadow classes are called so because they do only what their "real" class does but haven’t an existence of their own.
The shadow classes hence have only class methods and can’t be called directly, but only through their real class, which must offer corresponding methods to interact with the remote side. This is why those shadow classes are prefixed with an underscore, they are considered private to the location namespace.
The aim is to bundle the communication with the remote side (and hence the API definition) through those shadow classes.
Internally, each location class defines a private _shadow
variable which points to the corresponding shadow class (either locally or remotely, through the connection of the basis directory).
It is set in the setup()
method (so it can’t be used earlier).
This variable can be used by the interfacing methods to interact with the class methods of the shadow class.
Caution
|
the fact that the shadow classes can’t be instantiated make them some kind of singleton, so that only one type of each can be handled locally. This isn’t an issue currently, but needs to be considered should an extension require this feature. This said, it isn’t an issue remotely, because each location has its own instance running in a different rdiff-backup process. |
A directory is either:
readable and must exist prior to the action (currently only backup),
or it must be writable and shouldn’t exist prior to the action (currently only restore), or should at least be empty (the force-option overrides this pre-requisite).
This simple dichotomy allows us to have one ReadDir and one WriteDir class.
Most actions act solely on a pre-existing repository, only the backup action creates a new repository. This said more actions (delete and regress currently) also modify an existing repository. And some actions (restore, verify, compare and list) do not point at the base directory but at some sub-path within it, either a sub-directory or even a dated increment.
These multiple dimensions mean that the differences couldn’t be represented by few classes, but had to be implemented by one single Repository class, configured by different flags:
must_be_writable
must_exist
can_be_sub_path
The Repository class also knows the following methods:
get_mirror_time()
init_quoting(chars_to_quote)
needs_regress()
regress()
Note
|
this list will become longer as more functions are centralized into this class. It is just too early to finalize the interface. |