summaryrefslogtreecommitdiff
path: root/fast/read_pak.cc
diff options
context:
space:
mode:
Diffstat (limited to 'fast/read_pak.cc')
-rw-r--r--fast/read_pak.cc27
1 files changed, 0 insertions, 27 deletions
diff --git a/fast/read_pak.cc b/fast/read_pak.cc
deleted file mode 100644
index c1cf761..0000000
--- a/fast/read_pak.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-#include <iostream>
-#include <fstream>
-#include <msgpack.hpp>
-
-using namespace std;
-
-
-int
-main(int argc, char** argv)
-{
- ifstream ifs(argv[1]);
- size_t i = 0, nn, ne;
- msgpack::unpacker pac;
- while(true) {
- pac.reserve_buffer(32*1024);
- size_t bytes = ifs.readsome(pac.buffer(), pac.buffer_capacity());
- pac.buffer_consumed(bytes);
- msgpack::unpacked result;
- while(pac.next(&result)) {
- msgpack::object o = result.get();
- cout << o << endl;
- }
- if (!bytes) break;
- }
-
- return 0;
-}