diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-11-30 17:43:04 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-11-30 17:43:04 +0000 |
commit | e2ef5e07fdc142670f7f3161d3133ff04e99d342 (patch) | |
tree | bf724d6af6f7fbe3b388fdfdd40f190da9a8378e /src/libmain | |
parent | 5f0b9de6d837daf43c6ab26d41c829621c3ca727 (diff) |
* Refactoring. There is now an abstract interface class StoreAPI
containing functions that operate on the Nix store. One
implementation is LocalStore, which operates on the Nix store
directly. The next step, to enable secure multi-user Nix, is to
create a different implementation RemoteStore that talks to a
privileged daemon process that uses LocalStore to perform the actual
operations.
Diffstat (limited to 'src/libmain')
-rw-r--r-- | src/libmain/shared.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc index d135691a1..33576d69c 100644 --- a/src/libmain/shared.cc +++ b/src/libmain/shared.cc @@ -1,7 +1,7 @@ #include "shared.hh" #include "globals.hh" #include "gc.hh" -#include "store.hh" +#include "store-api.hh" #include "util.hh" #include "config.h" @@ -199,7 +199,8 @@ static void initAndRun(int argc, char * * argv) run(remaining); - closeDB(); /* it's fine if the DB isn't actually open */ + /* Close the Nix database. */ + store.reset((StoreAPI *) 0); } |