aboutsummaryrefslogtreecommitdiff
path: root/src/nix/test.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-03-27 14:12:20 +0100
committerEelco Dolstra <edolstra@gmail.com>2019-11-26 22:07:28 +0100
commit11da5b2816e11b081d8ff38db4330addd2014f7e (patch)
treefeeffda49248279c72805048bcebf1839a869015 /src/nix/test.cc
parentabb8ef619ba2fab3ae16fb5b5430215905bac723 (diff)
Add some Rust code
Diffstat (limited to 'src/nix/test.cc')
-rw-r--r--src/nix/test.cc61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/nix/test.cc b/src/nix/test.cc
new file mode 100644
index 000000000..70e0a903d
--- /dev/null
+++ b/src/nix/test.cc
@@ -0,0 +1,61 @@
+#include "command.hh"
+#include "store-api.hh"
+#include "common-args.hh"
+
+using namespace nix;
+
+namespace rust {
+
+// Depending on the internal representation of Rust slices is slightly
+// evil...
+template<typename T> struct Slice
+{
+ const T * ptr;
+ size_t size;
+
+ Slice(const T * ptr, size_t size) : ptr(ptr), size(size)
+ {
+ assert(ptr);
+ }
+};
+
+struct StringSlice : Slice<char>
+{
+ StringSlice(const std::string & s): Slice(s.data(), s.size()) { }
+};
+
+}
+
+extern "C" {
+ bool unpack_tarfile(rust::Slice<uint8_t> data, rust::StringSlice dest_dir);
+}
+
+struct CmdTest : StoreCommand
+{
+ CmdTest()
+ {
+ }
+
+ std::string name() override
+ {
+ return "test";
+ }
+
+ std::string description() override
+ {
+ return "bla bla";
+ }
+
+ void run(ref<Store> store) override
+ {
+ auto data = readFile("./nix-2.2.tar");
+
+ std::string destDir = "./dest";
+
+ deletePath(destDir);
+
+ unpack_tarfile({(uint8_t*) data.data(), data.size()}, destDir);
+ }
+};
+
+static RegisterCommand r(make_ref<CmdTest>());