MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include <mrpt/core/exceptions.h>
11 #include <mrpt/core/format.h>
13 #include <mrpt/io/zip.h>
14 #include <mrpt/system/CTicTac.h>
15 #include <cstdio>
16 #include <iostream>
17 
18 using namespace mrpt;
19 using namespace std;
20 
21 // ------------------------------------------------------
22 // MAIN
23 // ------------------------------------------------------
24 int main(int argc, char** argv)
25 {
26  try
27  {
28  if (argc < 2)
29  {
30  cerr << "Usage: test-compress <input_file> [compression level 1-9]"
31  << endl;
32  return -1;
33  }
34 
35  std::vector<uint8_t> buf;
36 
37  if (!mrpt::io::loadBinaryFile(buf, argv[1]))
38  {
39  cerr << "Error loading file: " << argv[1] << endl;
40  return -1;
41  }
42 
43  string gzfile = format("%s.gz", argv[1]);
44  int compress_level = 9;
45  if (argc >= 3)
46  {
47  compress_level = atoi(argv[2]);
48  }
49  mrpt::system::CTicTac tictac;
50 
51  tictac.Tic();
52 
53  if (!mrpt::io::zip::compress_gz_file(gzfile, buf, compress_level))
54  {
55  cerr << "Error writing compressing file: " << gzfile << endl;
56  return -1;
57  }
58 
59  double t = tictac.Tac();
60  cout << format(
61  "Compressed %s (compress level=%i) in %.04f seconds.",
62  gzfile.c_str(), compress_level, t)
63  << endl;
64 
65  return 0;
66  }
67  catch (const std::exception& e)
68  {
69  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
70  return -1;
71  }
72 }
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
A high-performance stopwatch, with typical resolution of nanoseconds.
STL namespace.
bool loadBinaryFile(std::vector< uint8_t > &out_data, const std::string &fileName)
Loads a entire file as a vector of bytes.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const char * argv[]
bool compress_gz_file(const std::string &file_path, const std::vector< uint8_t > &buffer, const int compress_level=9)
Compress a memory buffer into a gzip file (xxxx.gz).
Definition: zip.cpp:234
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Definition: exceptions.cpp:59
const int argc
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020