2011-10-10 18:12:40 +00:00
|
|
|
#include "EXTERN.h"
|
|
|
|
#include "perl.h"
|
|
|
|
#include "XSUB.h"
|
|
|
|
|
|
|
|
/* Prevent a clash between some Perl and libstdc++ macros. */
|
|
|
|
#undef do_open
|
|
|
|
#undef do_close
|
|
|
|
|
|
|
|
#include <store-api.hh>
|
|
|
|
#include <globals.hh>
|
|
|
|
#include <misc.hh>
|
|
|
|
#include <util.hh>
|
|
|
|
|
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
|
|
|
|
void doInit()
|
|
|
|
{
|
|
|
|
if (!store) {
|
|
|
|
try {
|
2011-11-22 17:28:41 +00:00
|
|
|
setDefaultsFromEnvironment();
|
2011-10-10 18:12:40 +00:00
|
|
|
store = openStore();
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MODULE = Nix::Store PACKAGE = Nix::Store
|
|
|
|
PROTOTYPES: ENABLE
|
|
|
|
|
|
|
|
|
|
|
|
void init()
|
|
|
|
CODE:
|
|
|
|
doInit();
|
|
|
|
|
|
|
|
|
2011-10-11 15:41:13 +00:00
|
|
|
int isValidPath(char * path)
|
2011-10-10 18:12:40 +00:00
|
|
|
CODE:
|
|
|
|
try {
|
|
|
|
doInit();
|
|
|
|
RETVAL = store->isValidPath(path);
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
|
|
|
OUTPUT:
|
|
|
|
RETVAL
|
|
|
|
|
|
|
|
|
2011-10-11 15:41:13 +00:00
|
|
|
SV * queryReferences(char * path)
|
2011-10-10 18:12:40 +00:00
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
doInit();
|
|
|
|
PathSet paths;
|
|
|
|
store->queryReferences(path, paths);
|
|
|
|
for (PathSet::iterator i = paths.begin(); i != paths.end(); ++i)
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(i->c_str(), 0)));
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-11 15:41:13 +00:00
|
|
|
SV * queryPathHash(char * path)
|
2011-10-10 18:12:40 +00:00
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
doInit();
|
|
|
|
Hash hash = store->queryPathHash(path);
|
2011-11-29 12:32:55 +00:00
|
|
|
string s = "sha256:" + printHash32(hash);
|
2011-10-10 18:12:40 +00:00
|
|
|
XPUSHs(sv_2mortal(newSVpv(s.c_str(), 0)));
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-11 15:41:13 +00:00
|
|
|
SV * queryDeriver(char * path)
|
2011-10-10 18:12:40 +00:00
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
doInit();
|
|
|
|
Path deriver = store->queryDeriver(path);
|
|
|
|
if (deriver == "") XSRETURN_UNDEF;
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(deriver.c_str(), 0)));
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-11 15:41:13 +00:00
|
|
|
SV * queryPathInfo(char * path)
|
2011-10-10 18:12:40 +00:00
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
doInit();
|
|
|
|
ValidPathInfo info = store->queryPathInfo(path);
|
|
|
|
if (info.deriver == "")
|
|
|
|
XPUSHs(&PL_sv_undef);
|
|
|
|
else
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(info.deriver.c_str(), 0)));
|
|
|
|
string s = "sha256:" + printHash(info.hash);
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(s.c_str(), 0)));
|
|
|
|
mXPUSHi(info.registrationTime);
|
|
|
|
mXPUSHi(info.narSize);
|
|
|
|
AV * arr = newAV();
|
|
|
|
for (PathSet::iterator i = info.references.begin(); i != info.references.end(); ++i)
|
|
|
|
av_push(arr, newSVpv(i->c_str(), 0));
|
|
|
|
XPUSHs(sv_2mortal(newRV((SV *) arr)));
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SV * computeFSClosure(int flipDirection, int includeOutputs, ...)
|
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
doInit();
|
|
|
|
PathSet paths;
|
|
|
|
for (int n = 2; n < items; ++n)
|
|
|
|
computeFSClosure(*store, SvPV_nolen(ST(n)), paths, flipDirection, includeOutputs);
|
|
|
|
for (PathSet::iterator i = paths.begin(); i != paths.end(); ++i)
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(i->c_str(), 0)));
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
2011-10-11 15:41:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
SV * topoSortPaths(...)
|
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
doInit();
|
|
|
|
PathSet paths;
|
|
|
|
for (int n = 0; n < items; ++n) paths.insert(SvPV_nolen(ST(n)));
|
|
|
|
Paths sorted = topoSortPaths(*store, paths);
|
|
|
|
for (Paths::iterator i = sorted.begin(); i != sorted.end(); ++i)
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(i->c_str(), 0)));
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SV * followLinksToStorePath(char * path)
|
|
|
|
CODE:
|
|
|
|
try {
|
|
|
|
doInit();
|
|
|
|
RETVAL = newSVpv(followLinksToStorePath(path).c_str(), 0);
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
|
|
|
OUTPUT:
|
|
|
|
RETVAL
|
2011-11-23 15:13:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
void exportPaths(int fd, int sign, ...)
|
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
doInit();
|
|
|
|
Paths paths;
|
|
|
|
for (int n = 2; n < items; ++n) paths.push_back(SvPV_nolen(ST(n)));
|
|
|
|
FdSink sink(fd);
|
|
|
|
exportPaths(*store, paths, sign, sink);
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
2011-11-29 13:01:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
SV * hashPath(char * algo, int base32, char * path)
|
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
Hash h = hashPath(parseHashType(algo), path).first;
|
|
|
|
string s = base32 ? printHash32(h) : printHash(h);
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(s.c_str(), 0)));
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
2011-12-02 12:09:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
SV * hashFile(char * algo, int base32, char * path)
|
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
Hash h = hashFile(parseHashType(algo), path);
|
|
|
|
string s = base32 ? printHash32(h) : printHash(h);
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(s.c_str(), 0)));
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SV * hashString(char * algo, int base32, char * s)
|
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
Hash h = hashString(parseHashType(algo), s);
|
|
|
|
string s = base32 ? printHash32(h) : printHash(h);
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(s.c_str(), 0)));
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SV * addToStore(char * srcPath, int recursive, char * algo)
|
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
doInit();
|
|
|
|
Path path = store->addToStore(srcPath, recursive, parseHashType(algo));
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(path.c_str(), 0)));
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SV * makeFixedOutputPath(int recursive, char * algo, char * hash, char * name)
|
|
|
|
PPCODE:
|
|
|
|
try {
|
|
|
|
doInit();
|
|
|
|
HashType ht = parseHashType(algo);
|
|
|
|
Path path = makeFixedOutputPath(recursive, ht,
|
|
|
|
parseHash16or32(ht, hash), name);
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(path.c_str(), 0)));
|
|
|
|
} catch (Error & e) {
|
|
|
|
croak(e.what());
|
|
|
|
}
|