mirror of
https://github.com/NixOS/nix.git
synced 2025-11-26 04:00:59 +01:00
727 lines
25 KiB
C++
727 lines
25 KiB
C++
#include <iostream>
|
|
#include <algorithm>
|
|
#include <sys/time.h>
|
|
|
|
#include "globals.hh"
|
|
#include "misc.hh"
|
|
#include "archive.hh"
|
|
#include "shared.hh"
|
|
#include "db.hh"
|
|
#include "util.hh"
|
|
#include "help.txt.hh"
|
|
#include "local-store.hh"
|
|
#include "derivations.hh"
|
|
#include "references.hh"
|
|
#include "store-state.hh"
|
|
#include "config.h"
|
|
#include "snapshot.hh"
|
|
|
|
using namespace nix;
|
|
using std::cin;
|
|
using std::cout;
|
|
|
|
|
|
typedef void (* Operation) (Strings opFlags, Strings opArgs);
|
|
|
|
//two global variables
|
|
string stateIdentifier;
|
|
string username;
|
|
string comment;
|
|
unsigned int revision_arg;
|
|
bool r_scanforReferences = false;
|
|
bool r_commit = true;
|
|
bool r_run = true;
|
|
bool revert_recursively = false;
|
|
bool unshare_branch = false;
|
|
bool unshare_restoreOld = true;
|
|
string share_with;
|
|
string copy_from;
|
|
|
|
|
|
/************************* Build time Functions ******************************/
|
|
|
|
|
|
|
|
/************************* Build time Functions ******************************/
|
|
|
|
|
|
|
|
/************************* Run time Functions ******************************/
|
|
|
|
void printHelp()
|
|
{
|
|
printMsg(lvlInfo, format("%1%") % helpText);
|
|
//cout << string((char *) helpText, sizeof helpText);
|
|
}
|
|
|
|
Derivation getDerivation(const string & fullPath, const Strings & program_args, string state_identifier, Path & componentPath, Path & statePath,
|
|
string & binary, string & derivationPath, bool isStateComponent,
|
|
bool getDerivers, PathSet & derivers) //optional
|
|
{
|
|
//Parse the full path like /nix/store/...../bin/hello
|
|
componentPath = fullPath.substr(nixStore.size() + 1, fullPath.size()); //+1 to strip off the /
|
|
int pos = componentPath.find("/",0);
|
|
componentPath = fullPath.substr(0, pos + nixStore.size() + 1);
|
|
binary = fullPath.substr(pos + nixStore.size() + 1, fullPath.size());
|
|
|
|
if( !(store->isValidPath(componentPath) || store->isValidStatePath(componentPath)) )
|
|
throw UsageError(format("Path '%1%' is not a valid state or store path") % componentPath);
|
|
|
|
//Check if path is store-statepath
|
|
isStateComponent = store->isStateComponent(componentPath);
|
|
|
|
//printMsg(lvlError, format("'%1%' - '%2%' - '%3%' - '%4%' - '%5%'") % componentPath % state_identifier % binary % username % program_args);
|
|
|
|
if(isStateComponent)
|
|
derivers = store->queryDerivers(componentPath, state_identifier, username);
|
|
else
|
|
derivers.insert(store->queryDeriver(componentPath));
|
|
|
|
if(getDerivers == true)
|
|
return Derivation();
|
|
|
|
if(isStateComponent){
|
|
if(derivers.size() == 0)
|
|
throw UsageError(format("There are no derivers with this combination of identifier '%1%' and username '%2%'") % state_identifier % username);
|
|
if(derivers.size() != 1)
|
|
throw UsageError(format("There is more than one deriver with state_identifier '%1%' and username '%2%'") % state_identifier % username);
|
|
}
|
|
|
|
//Retrieve the derivation, there is only 1 drvPath in derivers
|
|
derivationPath = *(derivers.begin());
|
|
Derivation drv = derivationFromPath(derivationPath);
|
|
|
|
if(isStateComponent){
|
|
DerivationStateOutputs stateOutputs = drv.stateOutputs;
|
|
statePath = stateOutputs.find("state")->second.statepath;
|
|
}
|
|
|
|
return drv;
|
|
}
|
|
|
|
//Wrapper
|
|
Derivation getDerivation_andCheckArgs_(Strings opFlags, Strings opArgs, Path & componentPath, Path & statePath,
|
|
string & binary, string & derivationPath, bool isStateComponent, Strings & program_args,
|
|
bool getDerivers, PathSet & derivers) //optional
|
|
{
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
if ( opArgs.size() < 1)
|
|
throw UsageError("you must specify at least the component path (optional are the program arguments wrapped like this \"$@\")");
|
|
|
|
string fullPath = opArgs.front();
|
|
|
|
if(opArgs.size() > 1){
|
|
|
|
opArgs.pop_front();
|
|
for (Strings::iterator i = opArgs.begin(); i != opArgs.end(); ++i){
|
|
string arg = *i;
|
|
//printMsg(lvlError, format("Args: %1%") % arg);
|
|
program_args.push_back(arg);
|
|
}
|
|
}
|
|
|
|
return getDerivation(fullPath, program_args, stateIdentifier, componentPath, statePath, binary, derivationPath, isStateComponent, getDerivers, derivers);
|
|
}
|
|
|
|
//Wrapper
|
|
Derivation getDerivation_andCheckArgs(Strings opFlags, Strings opArgs, Path & componentPath, Path & statePath,
|
|
string & binary, string & derivationPath, bool & isStateComponent, Strings & program_args)
|
|
{
|
|
PathSet empty;
|
|
return getDerivation_andCheckArgs_(opFlags, opArgs, componentPath, statePath, binary, derivationPath, isStateComponent, program_args, false, empty);
|
|
}
|
|
|
|
//
|
|
static void opShowDerivations(Strings opFlags, Strings opArgs)
|
|
{
|
|
Path componentPath;
|
|
Path statePath;
|
|
string binary;
|
|
PathSet derivers;
|
|
string derivationPath;
|
|
bool isStateComponent;
|
|
Strings program_args;
|
|
Derivation drv = getDerivation_andCheckArgs_(opFlags, opArgs, componentPath, statePath, binary, derivationPath, isStateComponent, program_args, true, derivers);
|
|
|
|
if(!isStateComponent)
|
|
throw UsageError(format("This path '%1%' is not a state-component path") % componentPath);
|
|
|
|
for (PathSet::iterator i = derivers.begin(); i != derivers.end(); ++i)
|
|
printMsg(lvlError, format("%1%") % (*i));
|
|
}
|
|
|
|
|
|
//Prints the statepath of a component - indetiefier combination
|
|
static void opShowStatePath(Strings opFlags, Strings opArgs)
|
|
{
|
|
Path componentPath;
|
|
Path statePath;
|
|
string binary;
|
|
string derivationPath;
|
|
bool isStateComponent;
|
|
Strings program_args;
|
|
Derivation drv = getDerivation_andCheckArgs(opFlags, opArgs, componentPath, statePath, binary, derivationPath, isStateComponent, program_args);
|
|
|
|
if(!isStateComponent)
|
|
throw UsageError(format("This path '%1%' is not a state-component path") % componentPath);
|
|
|
|
printMsg(lvlError, format("%1%") % statePath);
|
|
}
|
|
|
|
|
|
static void revertToRevision(Strings opFlags, Strings opArgs)
|
|
{
|
|
Path componentPath;
|
|
Path statePath;
|
|
string binary;
|
|
string derivationPath;
|
|
bool isStateComponent;
|
|
Strings program_args;
|
|
Derivation drv = getDerivation_andCheckArgs(opFlags, opArgs, componentPath, statePath, binary, derivationPath, isStateComponent, program_args);
|
|
|
|
bool recursive = revert_recursively;
|
|
|
|
store->revertToRevision(statePath, revision_arg, recursive);
|
|
}
|
|
|
|
|
|
static void queryAvailableStateRevisions(Strings opFlags, Strings opArgs)
|
|
{
|
|
Path statePath;
|
|
|
|
if(store->isValidStatePath(*(opArgs.begin())))
|
|
statePath = *(opArgs.begin());
|
|
else{
|
|
Path componentPath;
|
|
string binary;
|
|
string derivationPath;
|
|
bool isStateComponent;
|
|
Strings program_args;
|
|
Derivation drv = getDerivation_andCheckArgs(opFlags, opArgs, componentPath, statePath, binary, derivationPath, isStateComponent, program_args);
|
|
}
|
|
|
|
//Lookup unshared path if neccacary
|
|
PathSet nonSharedPaths;
|
|
nonSharedPaths.insert(statePath);
|
|
Path nonSharedStatePath = *((store->toNonSharedPathSet(nonSharedPaths)).begin()); //TODO CHECK IF THIS WORKS !!!!!!!!
|
|
if(nonSharedStatePath != statePath){
|
|
printMsg(lvlError, format("The statePath is shared with this path %1%") % nonSharedStatePath);
|
|
statePath = nonSharedStatePath;
|
|
}
|
|
|
|
RevisionInfos revisions;
|
|
bool notEmpty = store->queryAvailableStateRevisions(statePath, revisions);
|
|
|
|
if(!notEmpty){
|
|
printMsg(lvlError, format("No revisions yet for: %1%") % statePath);
|
|
return;
|
|
}
|
|
|
|
//Sort ourselfes to create a nice output
|
|
UnsignedIntVector revisions_sort;
|
|
int highestrev;
|
|
for (RevisionInfos::iterator i = revisions.begin(); i != revisions.end(); ++i){
|
|
int rev = (*i).first;
|
|
revisions_sort.push_back(rev);
|
|
if(rev > highestrev)
|
|
highestrev = rev;
|
|
}
|
|
sort(revisions_sort.begin(), revisions_sort.end());
|
|
|
|
int max_size = int2String(highestrev).length();
|
|
for (UnsignedIntVector::iterator i = revisions_sort.begin(); i != revisions_sort.end(); ++i)
|
|
{
|
|
int rev = *i;
|
|
string rev_s = padd(int2String(rev), '0' , max_size, true); //pad revisions with a 0
|
|
unsigned int ts = revisions[rev].timestamp;
|
|
time_t time = atoi(unsignedInt2String(ts).c_str());
|
|
string human_date = ctime(&time);
|
|
human_date.erase(human_date.find("\n",0),1); //remove newline
|
|
string comment = revisions[rev].comment;
|
|
|
|
if(trim(comment) != "")
|
|
printMsg(lvlError, format("Rev. %1% @ %2% (%3%) -- %4%") % rev_s % human_date % ts % comment);
|
|
else
|
|
printMsg(lvlError, format("Rev. %1% @ %2% (%3%)") % rev_s % human_date % ts);
|
|
}
|
|
}
|
|
|
|
static void opIsStateStorePath(Strings opFlags, Strings opArgs) //Used by ..........
|
|
{
|
|
Path path = *(opArgs.begin());
|
|
bool isStateComponent = store->isStateComponent(path);
|
|
cout << format("%s") % bool2string(isStateComponent);
|
|
//TODO !!!!!!!!!!!!!!!!!!!!!!!!!!!! replace lvlErrors by cout << format("%s\n") % *i;
|
|
}
|
|
|
|
|
|
static void opShowSharedPaths(Strings opFlags, Strings opArgs)
|
|
{
|
|
Path statePath = *(opArgs.begin());
|
|
if(!store->isValidStatePath(statePath))
|
|
throw UsageError(format("Path '%1%' is not a valid state path.") % statePath);
|
|
|
|
Path statePath1 = statePath;
|
|
Path statePath2;
|
|
bool isShared = false;
|
|
while(store->getSharedWith(statePath1, statePath2))
|
|
{
|
|
isShared = true;
|
|
printMsg(lvlError, format("Path '%1%' ---is shared with---> '%2%'") % statePath1 % statePath2);
|
|
statePath1 = statePath2;
|
|
}
|
|
|
|
if(!isShared)
|
|
printMsg(lvlError, format("Path '%1%' is not shared with another path") % statePath1);
|
|
}
|
|
|
|
static void opUnshare(Strings opFlags, Strings opArgs)
|
|
{
|
|
Path statePath = *(opArgs.begin());
|
|
if(!store->isValidStatePath(statePath))
|
|
throw UsageError(format("Path '%1%' is not a valid state path.") % statePath);
|
|
|
|
store->unShareState(statePath, unshare_branch, unshare_restoreOld);
|
|
}
|
|
|
|
static void opShareWith(Strings opFlags, Strings opArgs)
|
|
{
|
|
Path statePath = *(opArgs.begin());
|
|
if(!store->isValidStatePath(statePath) || !store->isValidStatePath(share_with))
|
|
throw UsageError(format("Path '%1%' or '%2%' is not a valid state path.") % statePath % share_with);
|
|
|
|
store->shareState(statePath, share_with, false);
|
|
}
|
|
|
|
static void opCopyFrom(Strings opFlags, Strings opArgs)
|
|
{
|
|
Path statePath = *(opArgs.begin());
|
|
if(!store->isValidStatePath(statePath) || !store->isValidStatePath(copy_from))
|
|
throw UsageError(format("Path '%1%' or '%2%' is not a valid state path.") % statePath % copy_from);
|
|
|
|
rsyncPaths(copy_from, statePath);
|
|
}
|
|
|
|
|
|
static void opRunComponent(Strings opFlags, Strings opArgs)
|
|
{
|
|
//get the all the info of the component that is being called (we dont really use it yet)
|
|
Path root_componentPath;
|
|
Path root_statePath;
|
|
string root_binary;
|
|
string root_derivationPath;
|
|
bool root_isStateComponent;
|
|
Strings root_program_args;
|
|
Derivation root_drv = getDerivation_andCheckArgs(opFlags, opArgs, root_componentPath, root_statePath, root_binary, root_derivationPath, root_isStateComponent, root_program_args);
|
|
|
|
//printMsg(lvlError, format("compp: '%1%'\nstatep: '%2%'\nbinary: '%3%'\ndrv:'%4%'") % root_componentPath % root_statePath % root_binary % root_derivationPath);
|
|
|
|
//TODO
|
|
//Check for locks ... ? or put locks on the neseccary state components
|
|
//WARNING: we need to watch out for deadlocks!
|
|
//add locks ... ?
|
|
//svn lock ... ?
|
|
|
|
|
|
//******************* Run ****************************
|
|
|
|
if(r_run){
|
|
if( ! FileExist(root_componentPath + root_binary) )
|
|
throw Error(format("You must specify the full binary path: '%1%'") % (root_componentPath + root_binary));
|
|
|
|
string root_args = "";
|
|
for (Strings::iterator i = root_program_args.begin(); i != root_program_args.end(); ++i){
|
|
if(*i == "--help" || *i == "--version"){
|
|
printMsg(lvlError, format("Usage: try --statehelp for extended state help options"));
|
|
printMsg(lvlError, format("%1%") % padd("", '-', 54));
|
|
r_scanforReferences = false;
|
|
r_commit = false;
|
|
}
|
|
else if(*i == "--statehelp"){
|
|
printMsg(lvlError, format("%1%") % padd("", '-', 100));
|
|
printHelp();
|
|
r_scanforReferences = false;
|
|
r_commit = false;
|
|
}
|
|
|
|
//printMsg(lvlError, format("ARG %1%") % *i);
|
|
root_args += " \"" + *i + "\"";
|
|
|
|
//TODO also scan the parameters for state or component hashes?
|
|
//program_args
|
|
}
|
|
|
|
printMsg(lvlError, format("Command: '%1%'") % (root_componentPath + root_binary + root_args));
|
|
executeShellCommand(root_componentPath + root_binary + root_args);
|
|
}
|
|
|
|
|
|
//TODO
|
|
Transaction txn;
|
|
//createStoreTransaction(txn);
|
|
|
|
//******************* Scan for new references if neccecary
|
|
if(r_scanforReferences)
|
|
store->scanAndUpdateAllReferences(root_statePath, true); //TODO make recursive a paramter?
|
|
|
|
|
|
//******************* With everything in place, we call the commit script on all statePaths (in)directly referenced **********************
|
|
|
|
if(r_commit){
|
|
//get all current (maybe updated by the scan) dependecies (if neccecary | recusively) of all state components that need to be updated
|
|
PathSet statePaths;
|
|
store->storePathRequisites(root_componentPath, false, statePaths, false, true, 0);
|
|
statePaths.insert(root_statePath);
|
|
|
|
//Start transaction TODO
|
|
|
|
//Replace all shared paths in the set for their real paths
|
|
statePaths = store->toNonSharedPathSet(statePaths);
|
|
|
|
//Commit all statePaths
|
|
RevisionClosure rivisionMapping;
|
|
for (PathSet::iterator i = statePaths.begin(); i != statePaths.end(); ++i) //TODO first commit own state path?
|
|
rivisionMapping[*i] = store->commitStatePath(*i);
|
|
|
|
//Save new revisions
|
|
store->setStateRevisions(rivisionMapping, root_statePath, comment); //TODO how about the txn?
|
|
}
|
|
|
|
//Commit transaction
|
|
//txn.commit();
|
|
|
|
//Debugging
|
|
RevisionClosure getRivisions;
|
|
RevisionClosureTS empty;
|
|
bool b = store->queryStateRevisions(root_statePath, getRivisions, empty, 0);
|
|
for (RevisionClosure::iterator i = getRivisions.begin(); i != getRivisions.end(); ++i){
|
|
//printMsg(lvlError, format("State '%1%' has revision") % (*i).first);
|
|
}
|
|
|
|
}
|
|
|
|
void run(Strings args)
|
|
{
|
|
Strings opFlags, opArgs;
|
|
Operation op = 0;
|
|
|
|
|
|
/* test *
|
|
store = openStore();
|
|
Path p = "/nix/store/l569q3a2cfx834mcf3vhwczjgbaljnp7-hellohardcodedstateworld-1.0"; //
|
|
store->addUpdatedStateDerivation("/nix/store/63xcbrk3v5nbn9qla7rwnx6rvz3iqm5l-hellohardcodedstateworld-1.0.drv", p); //
|
|
Path p2 = "/nix/store/4ycq45hsgc8yaj4vwafx3lgd473jaqwg-hellohardcodedstateworld-1.0";
|
|
store->addUpdatedStateDerivation("/nix/store/s6wggk924jx0gcb0l29ra4g9fxa3b4pp-hellohardcodedstateworld-1.0.drv", p2); //
|
|
store->updateAllStateDerivations();
|
|
return;
|
|
|
|
string a = makeStatePathFromGolbalHash("8f3b56a9a985fce54fd88c3e95a81a4b6b11fb98da12b977aee7f278c73ad3d7-hellohardcodedstateworld-1.0-test2", "kaaz");
|
|
printMsg(lvlTalkative, format("%1%") % a);
|
|
return;
|
|
|
|
printMsg(lvlTalkative, format("Result: \"%1%\"") % getCallingUserName());
|
|
return;
|
|
|
|
store = openStore();
|
|
store->addStateDeriver("/nix/store/0a151npn1aps8w75kpz2zm1yl3v11kbr-hellostateworld-1.0.drv", "/nix/store/k4v52ql98x2m09sb5pz7w1lrd4hamsm0-hellostateworld-1.0");
|
|
store->addStateDeriver("/nix/store/2hpx60ibdfv2pslg4rjvp177frijamvi-hellostateworld-1.0.drv", "/nix/store/k4v52ql98x2m09sb5pz7w1lrd4hamsm0-hellostateworld-1.0");
|
|
return;
|
|
|
|
store = openStore();
|
|
printMsg(lvlError, format("1: %1%") % bool2string( store->isStateComponent("/nix/store/7xkw5fkz5yw7dpx0pc6l12bh9a56135c-hellostateworld-1.0") ) );
|
|
printMsg(lvlError, format("2: %1%") % bool2string( store->isStateComponent("/nix/store/05441jm8xmsidqm43ivk0micckf0mr2m-nvidiaDrivers") ) );
|
|
printMsg(lvlError, format("3: %1%") % bool2string( isState Drv Path("/nix/store/2hpx60ibdfv2pslg4rjvp177frijamvi-hellostateworld-1.0.drv") ) );
|
|
|
|
store = openStore();
|
|
Path p = store->queryStatePathDrv("/nix/state/6g6kfgimz8szznlshf13s29fn01zp99d-hellohardcodedstateworld-1.0-test2");
|
|
printMsg(lvlError, format("Result: %1%") % p);
|
|
return;
|
|
|
|
string path = "afddsafsdafsdaf.drv";
|
|
printMsg(lvlError, format("Result: %1%") % path.substr(path.length() - 4,path.length()));
|
|
|
|
printMsg(lvlError, format("AA: %1%") % isStorePath("/nix/store/hbxqq4d67j2y21xzp7yp01qjfkcjjbc7-hellohardcodedstateworld-1.0"));
|
|
printMsg(lvlError, format("AA: %1%") % isStorePath("/nix/state/0qhlpz1ji4gvg3j6nk5vkcddmi3m5x1r-hellohardcodedstateworld-1.0-test2"));
|
|
printMsg(lvlError, format("AA: %1%") % isStatePath("/nix/store/hbxqq4d67j2y21xzp7yp01qjfkcjjbc7-hellohardcodedstateworld-1.0"));
|
|
printMsg(lvlError, format("AA: %1%") % isStatePath("/nix/state/0qhlpz1ji4gvg3j6nk5vkcddmi3m5x1r-hellohardcodedstateworld-1.0-test2"));
|
|
|
|
store->scanForAllReferences("/nix/state/i06flm2ahq5s0x3633z30dnav9f1wkb5-hellohardcodedstateworld-dep1-1.0-test");
|
|
|
|
store = openStore();
|
|
//setReferences_statePath("/nix/state/afsdsdafsdaf-sdaf", 7);
|
|
|
|
Paths p1;
|
|
p1.push_back("a");
|
|
p1.push_back("b");
|
|
p1.push_back("c");
|
|
Paths p2;
|
|
p2.push_back("b");
|
|
p2.push_back("d");
|
|
|
|
PathSet px = pathSets_union(PathSet(p1.begin(), p1.end()), PathSet(p2.begin(), p2.end()));
|
|
|
|
for (PathSet::iterator i = px.begin(); i != px.end(); ++i)
|
|
printMsg(lvlError, format("MERGED: %1%") % *i);
|
|
|
|
Database nixDB;
|
|
Path statePath = "afsdsdafsadf-sda-fsda-f-sdaf-sdaf";
|
|
unsigned int revision = 5;
|
|
Path statePath2;
|
|
Path gets = nixDB.makeStatePathRevision(statePath, revision);
|
|
int revision2;
|
|
nixDB.splitStatePathRevision(gets, statePath2, revision2);
|
|
printMsg(lvlError, format("'%1%' '%2%'") % statePath2 % unsignedInt2String(revision2));
|
|
|
|
store = openStore();
|
|
Derivation drv = derivationFromPath("/nix/store/r2lvhrd8zhb877n07cqvcyp11j9ws5p0-hellohardcodedstateworld-dep1-1.0.drv");
|
|
readRevisionNumbers(drv);
|
|
|
|
|
|
Strings strings;
|
|
strings.push_back("1");
|
|
strings.push_back("3");
|
|
strings.push_back("2");
|
|
string packed = packStrings(strings);
|
|
printMsg(lvlError, format("PA '%1%'") % packed);
|
|
Strings strings2 = unpackStrings(packed);
|
|
for (Strings::iterator i = strings2.begin(); i != strings2.end(); ++i)
|
|
printMsg(lvlError, format("UN '%1%'") % *i);
|
|
|
|
//updateRevisionNumbers("/nix/state/xf582zrz6xl677llr07rvskgsi3dli1d-hellohardcodedstateworld-dep1-1.0-test");
|
|
//return;
|
|
|
|
//auto sort
|
|
map<string, string> test;
|
|
test["q"] = "324";
|
|
test["c"] = "3241";
|
|
test["a"] = "a";
|
|
for (map<string, string>::const_iterator j = test.begin(); j != test.end(); ++j)
|
|
printMsg(lvlError, format("KEY: '%1%'") % (*j).first);
|
|
printMsg(lvlError, format("NOW: '%1%'") % getTimeStamp());
|
|
return;
|
|
|
|
map<string, int> test;
|
|
test["a"] = 1;
|
|
test["b"] = 2;
|
|
printMsg(lvlError, format("NOW: '%1%'") % test["q"]);
|
|
return;
|
|
|
|
printMsg(lvlError, format("NOW: '%1%'") % pathExists("/etc") );
|
|
printMsg(lvlError, format("NOW: '%1%'") % pathExists("/etc/passwd") );
|
|
return;
|
|
|
|
|
|
printMsg(lvlError, format("NOW: '%1%'") % FileExist("/nix/store/65c7p6c8j0vy6b8fjgq84zziiavswqha-hellohardcodedstateworld-1.0/") );
|
|
printMsg(lvlError, format("NOW: '%1%'") % FileExist("/nix/store/65c7p6c8j0vy6b8fjgq84zziiavswqha-hellohardcodedstateworld-1.0/bin/hello") );
|
|
printMsg(lvlError, format("NOW: '%1%'") % DirectoryExist("/nix/store/65c7p6c8j0vy6b8fjgq84zziiavswqha-hellohardcodedstateworld-1.0/") );
|
|
printMsg(lvlError, format("NOW: '%1%'") % DirectoryExist("/nix/store/65c7p6c8j0vy6b8fjgq84zziiavswqha-hellohardcodedstateworld-1.0/bin/hello") );
|
|
printMsg(lvlError, format("NOW: '%1%'") % FileExist("/nix/store/65c7p6c8j0vy6b8fjgq8") );
|
|
printMsg(lvlError, format("NOW: '%1%'") % DirectoryExist("/nix/store/65c7p6c8j0vy6b8fjg") );
|
|
|
|
|
|
|
|
// /nix/state/g8vby0bjfrs85qpf1jfajrcrmlawn442-hellohardcodedstateworld-1.0-
|
|
// /nix/state/6l93ff3bn1mk61jbdd34diafmb4aq7c6-hellohardcodedstateworld-1.0-
|
|
// /nix/state/x8k4xiv8m4zmx26gmb0pyymmd6671fyy-hellohardcodedstateworld-1.0-
|
|
|
|
PathSet p = store->getSharedWithPathSetRec("/nix/state/6l93ff3bn1mk61jbdd34diafmb4aq7c6-hellohardcodedstateworld-1.0-");
|
|
for (PathSet::iterator j = p.begin(); j != p.end(); ++j)
|
|
printMsg(lvlError, format("P: '%1%'") % *j );
|
|
return;
|
|
|
|
printMsg(lvlError, format("header: '%1%'") % nixExt3CowHeader);
|
|
|
|
printMsg(lvlError, format("Username fail: '%1%'") % uidToUsername(23423)); //Segfaults correctly
|
|
|
|
int b = -1;
|
|
unsigned int c = b;
|
|
std::cout << "UNSIGNED INT: " << c << "\n"; //prints 4294967295 !!!!!!
|
|
|
|
store = openStore();
|
|
RevisionClosure revisions;
|
|
RevisionClosureTS timestamps;
|
|
bool b = store->queryStateRevisions("/nix/state/aacs4qpi9jzg4vmhj09d0ichframh22x-hellohardcodedstateworld-1.0-test", revisions, timestamps, 0);
|
|
|
|
PathSet sharedWith = getSharedWithPathSetRecTxn(noTxn, "/nix/state/1kjxymaxf0i6qp5k8ggacc06bzbi4b82-hellohardcodedstateworld-1.0-test");
|
|
for (PathSet::const_iterator j = sharedWith.begin(); j != sharedWith.end(); ++j)
|
|
printMsg(lvlError, format("RootSP SW '%1%'") % *j);
|
|
printMsg(lvlError, format("------------"));
|
|
sharedWith = getSharedWithPathSetRecTxn(noTxn, "/nix/state/7c9azkk6qfk18hsvw4a5d8vk1p6qryk0-hellohardcodedstateworld-1.0-test");
|
|
for (PathSet::const_iterator j = sharedWith.begin(); j != sharedWith.end(); ++j)
|
|
printMsg(lvlError, format("RootSP SW '%1%'") % *j);
|
|
|
|
|
|
printMsg(lvlError, format("ISL 1 '%1%'") % IsSymlink("/home/wouterdb/test/aaaaaaaa-test"));
|
|
printMsg(lvlError, format("ISL 2 '%1%'") % IsSymlink("/home/wouterdb/test/aad"));
|
|
printMsg(lvlError, format("ISL 1 '%1%'") % readLink("/home/wouterdb/test/aaaaaaaa-test"));
|
|
|
|
PathSet comparePaths;
|
|
comparePaths.insert("/nix/state/rxi9isplmqvgjp7xrrq2zlz0s2w5h0mh-hellohardcodedstateworld-solid-1.0-test");
|
|
comparePaths.insert("/nix/state/7c9azkk6qfk18hsvw4a5d8vk1p6qryk0-hellohardcodedstateworld-1.0-test");
|
|
PathSet comparePaths_result = store->toNonSharedPathSet(comparePaths);
|
|
for (PathSet::const_iterator j = comparePaths_result.begin(); j != comparePaths_result.end(); ++j)
|
|
printMsg(lvlError, format("RES '%1%'") % *j);
|
|
|
|
deletePath("/nix/state/b");
|
|
copyContents("/nix/state/a", "/nix/state/b");
|
|
|
|
printMsg(lvlError, format("Rsync: '%1%'") % nixRsync);
|
|
|
|
copyContents("/nix/state/fwir6jlqygy90zadnx95zryfa8918qac-hellohardcodedstateworld-1.0-test/", "/home/wouterdb/tmp/aa/"); //TODO !!!!!!!!!!!!!!!!!!!
|
|
|
|
Hash hash;
|
|
PathSet references;
|
|
PathSet stateReferences;
|
|
registerValidPath(noTxn, "/nix/store/sjnaisdpqyckc75c3mjz4msi9s1662cw-hellohardcodedstateworld-1.0", hash, references, stateReferences, "/nix/store/y7abzzpiknzps5kjb4qvdxvlhvxl6slj-hellohardcodedstateworld_import-1.0.drv", 0);
|
|
|
|
store = openStore();
|
|
store->isStateComponent("/nix/state/h72n75fx3c40aslbbp41vmj9gxl2skp1-hellohardcodedstateworld-1.0-test");
|
|
|
|
PathSet p1;
|
|
PathSet p2;
|
|
PathSet p3;
|
|
PathSet p4;
|
|
p1.insert("a");
|
|
p1.insert("c"); //old
|
|
p1.insert("b");
|
|
p2.insert("b");
|
|
p2.insert("a");
|
|
p2.insert("cc"); //new
|
|
p2.insert("x"); //new
|
|
//pathSets_difference(p1,p2,p3,p4);
|
|
pathSets_union_ordered(p1,p2);
|
|
|
|
throw Error(format("aaa"));
|
|
return;
|
|
|
|
*/
|
|
|
|
/* test */
|
|
|
|
if(args.size() == 1 && ( *(args.begin()) == "--help" || *(args.begin()) == "--statehelp")){
|
|
printHelp();
|
|
return;
|
|
}
|
|
|
|
for (Strings::iterator i = args.begin(); i != args.end(); ) {
|
|
string arg = *i++;
|
|
|
|
Operation oldOp = op;
|
|
|
|
//Run options
|
|
if (arg == "--run" || arg == "-r") //run and commit
|
|
op = opRunComponent;
|
|
else if (arg == "--commit-only"){
|
|
op = opRunComponent;
|
|
r_commit = true;
|
|
r_run = false;
|
|
r_scanforReferences = false;
|
|
}
|
|
else if (arg == "--run-only"){
|
|
op = opRunComponent;
|
|
r_commit = false;
|
|
r_run = true;
|
|
r_scanforReferences = false;
|
|
}
|
|
else if (arg == "--scan-only"){
|
|
op = opRunComponent;
|
|
r_commit = false;
|
|
r_run = false;
|
|
r_scanforReferences = true;
|
|
}
|
|
else if (arg == "--scanreferences"){
|
|
r_scanforReferences = true;
|
|
}
|
|
else if (arg.substr(0,10) == "--comment=")
|
|
comment = arg.substr(10,arg.length());
|
|
|
|
|
|
//Info options
|
|
else if (arg == "--showstatepath")
|
|
op = opShowStatePath;
|
|
else if (arg == "--showderivations")
|
|
op = opShowDerivations;
|
|
else if (arg == "--showrevisions")
|
|
op = queryAvailableStateRevisions;
|
|
else if (arg == "--is-state-store-path-download-using-manifests")
|
|
op = opIsStateStorePath;
|
|
|
|
//Revering State options
|
|
else if (arg.substr(0,21) == "--revert-to-revision="){
|
|
op = revertToRevision;
|
|
bool succeed = string2UnsignedInt(arg.substr(21,arg.length()), revision_arg);
|
|
if(!succeed)
|
|
throw UsageError("The given revision is not a valid number");
|
|
}
|
|
else if (arg == "--revert-to-revision-recursively")
|
|
revert_recursively = true;
|
|
|
|
//Shared state options
|
|
else if (arg == "--showsharedpaths")
|
|
op = opShowSharedPaths;
|
|
else if (arg == "--unshare")
|
|
op = opUnshare;
|
|
else if (arg == "--unshare-and-branch-state")
|
|
unshare_branch = true;
|
|
else if (arg == "--unshare-and-restore-old-state") //default true
|
|
unshare_restoreOld = true;
|
|
else if (arg.substr(0,13) == "--share-with="){
|
|
op = opShareWith;
|
|
share_with = arg.substr(13,arg.length());
|
|
}
|
|
else if (arg.substr(0,13) == "--rsync-from="){
|
|
op = opCopyFrom;
|
|
copy_from = arg.substr(13,arg.length());
|
|
}
|
|
|
|
/*
|
|
|
|
--copy-from
|
|
|
|
*/
|
|
|
|
|
|
//Maybe
|
|
|
|
/*
|
|
--backup ?
|
|
|
|
--exclude-commit-paths
|
|
|
|
TODO update getDerivation in nix-store to handle state indentifiers
|
|
|
|
--delete-revision
|
|
|
|
*/
|
|
|
|
//Manipulate options....
|
|
else if (arg.substr(0,13) == "--identifier=")
|
|
stateIdentifier = arg.substr(13,arg.length());
|
|
else if (arg.substr(0,7) == "--user=")
|
|
username = arg.substr(7,arg.length());
|
|
|
|
|
|
else{
|
|
opArgs.push_back(arg);
|
|
//printMsg(lvlInfo, format("ARG: %1%") % arg);
|
|
}
|
|
|
|
//in the startscript u can have --run, but could do showrevisions
|
|
if (oldOp && oldOp != op && oldOp != opRunComponent)
|
|
throw UsageError("only one operation may be specified");
|
|
}
|
|
|
|
//If no username given get it
|
|
if(username == "")
|
|
username = queryCurrentUsername();
|
|
|
|
if (!op) throw UsageError("no operation specified");
|
|
|
|
/* !!! hack */
|
|
store = openStore();
|
|
|
|
op(opFlags, opArgs);
|
|
}
|
|
|
|
|
|
string programId = "nix-state";
|