aboutsummaryrefslogtreecommitdiff
path: root/tests/lz4/driver.cxx
blob: e2fd5379cec8345b9d5baa019d102a3583d4cd95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// file      : tests/lz4/driver.cxx -*- C++ -*-
// license   : MIT; see accompanying LICENSE file

#include <iostream>
#include <exception>

#include <libbutl/lz4.hxx>
#include <libbutl/fdstream.mxx>
#include <libbutl/filesystem.mxx> // entry_stat, path_entry()

using namespace std;
using namespace butl;

// Usage: argv[0] [-c|-d] <input-file> <output-file>
//
int
main (int argc, const char* argv[])
try
{
  assert (argc == 4);

  ifdstream ifs (argv[2], fdopen_mode::binary, ifdstream::badbit);
  ofdstream ofs (argv[3], fdopen_mode::binary);

  if (argv[1][1] == 'c')
  {
    lz4::compress (ofs, ifs,
                   1 /* compression_level */,
                   4 /* block_size_id (64KB) */,
                   fdstat (ifs.fd ()).size);
  }
  else
  {
    lz4::decompress (ofs, ifs);
  }

  ofs.close ();
}
catch (const std::exception& e)
{
  cerr << e.what () << endl;
  return 1;
}