aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/update/Service.hxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-02-27db/simple: mount pointsMax Kellermann1-3/+10
A SimpleDatabase instance can now "mount" other Database instances at certain locations. This is used to use a new SimpleDatabase instance for each storage mount (issued with the "mount" protocol command). Each such instance has its own database file, stored in the directory that is specified with the "cache_directory" option.
2014-02-27db/update/Service: allocate UpdateWalk dynamicallyMax Kellermann1-2/+4
2014-02-27db/update: cancel the update on shutdownMax Kellermann1-0/+8
2014-02-05storage: add abstract interfaceMax Kellermann1-1/+1
Prepare for the plugin interface.
2014-02-05db/UpdateWalk: move LocalStorage to InstanceMax Kellermann1-0/+1
Keep only a reference.
2014-02-04db/update/Service: use DatabaseListener instead of InstanceMax Kellermann1-1/+5
Don't use the global variable "instance".
2014-02-04db/update/Service: add SimpleDatabase referenceMax Kellermann1-1/+5
Don't use the global variables from the DatabaseSimple library.
2014-01-30db/update: convert to OO APIMax Kellermann1-0/+89
Move global variables into the new classes. That may allow multiple update threads for multiple databases one day.