diff options
author | Jose Fonseca <jfonseca@vmware.com> | 2015-11-07 23:47:40 +0000 |
---|---|---|
committer | Jose Fonseca <jfonseca@vmware.com> | 2015-11-07 23:51:01 +0000 |
commit | e76ff4b6b6357cf5c54dfafefbef8d1f2692db85 (patch) | |
tree | 797a64e693c98f1aa10a3b60425754f8596b642e /cli | |
parent | ce2ed37ea5cd77515018fc2085377c13205c151b (diff) |
cli: Allow to repack traces with Zlib.
Diffstat (limited to 'cli')
-rw-r--r-- | cli/cli_repack.cpp | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/cli/cli_repack.cpp b/cli/cli_repack.cpp index 3e908f54..291f0d96 100644 --- a/cli/cli_repack.cpp +++ b/cli/cli_repack.cpp @@ -35,38 +35,51 @@ #include "trace_ostream.hpp" -static const char *synopsis = "Repack a trace file with Snappy compression."; +static const char *synopsis = "Repack a trace file with different compression."; static void usage(void) { std::cout - << "usage: apitrace repack <in-trace-file> <out-trace-file>\n" + << "usage: apitrace repack [options] <in-trace-file> <out-trace-file>\n" << synopsis << "\n" << "\n" << "Snappy compression allows for faster replay and smaller memory footprint,\n" << "at the expense of a slightly smaller compression ratio than zlib\n" + << "\n" + << " -z,--zlib Use ZLib compression instead\n" << "\n"; } const static char * -shortOptions = "h"; +shortOptions = "hz"; const static struct option longOptions[] = { {"help", no_argument, 0, 'h'}, + {"zlib", no_argument, 0, 'z'}, {0, 0, 0, 0} }; +enum Format { + FORMAT_SNAPPY = 0, + FORMAT_ZLIB, +}; + static int -repack(const char *inFileName, const char *outFileName) +repack(const char *inFileName, const char *outFileName, Format format) { trace::File *inFile = trace::File::createForRead(inFileName); if (!inFile) { return 1; } - trace::OutStream *outFile = trace::createSnappyStream(outFileName); + trace::OutStream *outFile; + if (format == FORMAT_SNAPPY) { + outFile = trace::createSnappyStream(outFileName); + } else { + outFile = trace::createZLibStream(outFileName); + } if (!outFile) { delete inFile; return 1; @@ -90,12 +103,16 @@ repack(const char *inFileName, const char *outFileName) static int command(int argc, char *argv[]) { + Format format = FORMAT_SNAPPY; int opt; while ((opt = getopt_long(argc, argv, shortOptions, longOptions, NULL)) != -1) { switch (opt) { case 'h': usage(); return 0; + case 'z': + format = FORMAT_ZLIB; + break; default: std::cerr << "error: unexpected option `" << (char)opt << "`\n"; usage(); @@ -109,7 +126,7 @@ command(int argc, char *argv[]) return 1; } - return repack(argv[optind], argv[optind + 1]); + return repack(argv[optind], argv[optind + 1], format); } const Command repack_command = { |