2009-02-17 09:45:57 +08:00
|
|
|
// The contents of this file are in the public domain. See LICENSE_FOR_EXAMPLE_PROGRAMS.txt
|
2008-05-02 22:19:38 +08:00
|
|
|
/*
|
|
|
|
|
|
|
|
This is an example illustrating the use of the compress_stream and
|
|
|
|
cmd_line_parser components from the dlib C++ Library.
|
|
|
|
|
|
|
|
This example implements a simple command line compression utility.
|
|
|
|
|
|
|
|
|
|
|
|
The output from the program when the -h option is given is:
|
|
|
|
|
2009-12-10 09:03:10 +08:00
|
|
|
Usage: compress_stream_ex (-c|-d|-l) --in input_file --out output_file
|
2008-05-02 22:19:38 +08:00
|
|
|
Options:
|
2009-10-16 22:47:44 +08:00
|
|
|
-c Indicates that we want to compress a file.
|
|
|
|
-d Indicates that we want to decompress a file.
|
|
|
|
--in <arg> This option takes one argument which specifies the name of the
|
|
|
|
file we want to compress/decompress.
|
|
|
|
--out <arg> This option takes one argument which specifies the name of the
|
|
|
|
output file.
|
2012-12-13 10:01:05 +08:00
|
|
|
|
|
|
|
Miscellaneous Options:
|
|
|
|
-h Display this help message.
|
|
|
|
-l <arg> Set the compression level [1-3], 3 is max compression, default
|
|
|
|
is 2.
|
|
|
|
|
2008-05-02 22:19:38 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-08 22:32:13 +08:00
|
|
|
#include <dlib/compress_stream.h>
|
|
|
|
#include <dlib/cmd_line_parser.h>
|
2008-05-02 22:19:38 +08:00
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <string>
|
|
|
|
|
2009-10-16 23:36:11 +08:00
|
|
|
// I am making a typedefs for the versions of compress_stream I want to use.
|
2009-10-16 22:47:44 +08:00
|
|
|
typedef dlib::compress_stream::kernel_1da cs1;
|
|
|
|
typedef dlib::compress_stream::kernel_1ea cs2;
|
|
|
|
typedef dlib::compress_stream::kernel_1ec cs3;
|
2008-05-02 22:19:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dlib;
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2012-11-13 04:25:35 +08:00
|
|
|
command_line_parser parser;
|
2008-05-02 22:19:38 +08:00
|
|
|
|
2008-09-06 23:15:13 +08:00
|
|
|
// first I will define the command line options I want.
|
|
|
|
// Add a -c option and tell the parser what the option is for.
|
2008-05-02 22:19:38 +08:00
|
|
|
parser.add_option("c","Indicates that we want to compress a file.");
|
|
|
|
parser.add_option("d","Indicates that we want to decompress a file.");
|
2008-09-06 23:15:13 +08:00
|
|
|
// add a --in option that takes 1 argument
|
2008-05-02 22:19:38 +08:00
|
|
|
parser.add_option("in","This option takes one argument which specifies the name of the file we want to compress/decompress.",1);
|
2008-09-06 23:15:13 +08:00
|
|
|
// add a --out option that takes 1 argument
|
2008-05-02 22:19:38 +08:00
|
|
|
parser.add_option("out","This option takes one argument which specifies the name of the output file.",1);
|
2012-12-13 10:01:05 +08:00
|
|
|
// In the code below, we use the parser.print_options() method to print all our
|
|
|
|
// options to the screen. We can tell it that we would like some options to be
|
|
|
|
// grouped together by calling set_group_name() before adding those options. In
|
|
|
|
// general, you can make as many groups as you like by calling set_group_name().
|
|
|
|
// However, here we make only one named group.
|
|
|
|
parser.set_group_name("Miscellaneous Options");
|
2008-05-02 22:19:38 +08:00
|
|
|
parser.add_option("h","Display this help message.");
|
2009-10-16 22:47:44 +08:00
|
|
|
parser.add_option("l","Set the compression level [1-3], 3 is max compression, default is 2.",1);
|
2008-05-02 22:19:38 +08:00
|
|
|
|
2008-09-06 23:15:13 +08:00
|
|
|
|
2008-05-02 22:19:38 +08:00
|
|
|
// now I will parse the command line
|
|
|
|
parser.parse(argc,argv);
|
|
|
|
|
2008-09-06 23:15:13 +08:00
|
|
|
|
|
|
|
// Now I will use the parser to validate some things about the command line.
|
|
|
|
// If any of the following checks fail then an exception will be thrown and it will
|
2009-05-29 23:58:50 +08:00
|
|
|
// contain a message that tells the user what the problem was.
|
2008-09-06 23:15:13 +08:00
|
|
|
|
|
|
|
// First I want to check that none of the options were given on the command line
|
|
|
|
// more than once. To do this I define an array that contains the options
|
|
|
|
// that shouldn't appear more than once and then I just call check_one_time_options()
|
2009-10-16 23:36:11 +08:00
|
|
|
const char* one_time_opts[] = {"c", "d", "in", "out", "h", "l"};
|
2008-09-06 23:15:13 +08:00
|
|
|
parser.check_one_time_options(one_time_opts);
|
|
|
|
// Here I'm checking that the user didn't pick both the c and d options at the
|
|
|
|
// same time.
|
|
|
|
parser.check_incompatible_options("c", "d");
|
2009-10-16 22:47:44 +08:00
|
|
|
|
|
|
|
// Here I'm checking that the argument to the l option is an integer in the range 1 to 3.
|
2010-11-10 09:10:22 +08:00
|
|
|
// That is, it should be convertible to an int by dlib::string_assign and be either
|
2009-10-16 22:47:44 +08:00
|
|
|
// 1, 2, or 3. Note that if you wanted to allow floating point values in the range 1 to
|
|
|
|
// 3 then you could give a range 1.0 to 3.0 or explicitly supply a type of float or double
|
|
|
|
// to the template argument of the check_option_arg_range() function.
|
|
|
|
parser.check_option_arg_range("l", 1, 3);
|
2008-09-06 23:15:13 +08:00
|
|
|
|
2009-10-16 23:02:30 +08:00
|
|
|
// The 'l' option is a sub-option of the 'c' option. That is, you can only select the
|
|
|
|
// compression level when compressing. This command below checks that the listed
|
|
|
|
// sub options are always given in the presence of their parent options.
|
|
|
|
const char* c_sub_opts[] = {"l"};
|
|
|
|
parser.check_sub_options("c", c_sub_opts);
|
2008-09-06 23:15:13 +08:00
|
|
|
|
2008-05-02 22:19:38 +08:00
|
|
|
// check if the -h option was given on the command line
|
|
|
|
if (parser.option("h"))
|
|
|
|
{
|
|
|
|
// display all the command line options
|
2009-12-10 09:03:10 +08:00
|
|
|
cout << "Usage: compress_stream_ex (-c|-d|-l) --in input_file --out output_file\n";
|
2008-09-06 23:15:13 +08:00
|
|
|
// This function prints out a nicely formatted list of
|
|
|
|
// all the options the parser has
|
2012-12-06 08:36:39 +08:00
|
|
|
parser.print_options();
|
2008-05-02 22:19:38 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-03 13:07:08 +08:00
|
|
|
// Figure out what the compression level should be. If the user didn't supply
|
|
|
|
// this command line option then a value of 2 will be used.
|
|
|
|
int compression_level = get_option(parser,"l",2);
|
2009-10-16 22:47:44 +08:00
|
|
|
|
|
|
|
|
2008-09-06 23:15:13 +08:00
|
|
|
// make sure one of the c or d options was given
|
2012-02-12 02:15:17 +08:00
|
|
|
if (!parser.option("c") && !parser.option("d"))
|
2008-05-02 22:19:38 +08:00
|
|
|
{
|
|
|
|
cout << "Error in command line:\n You must specify either the c option or the d option.\n";
|
|
|
|
cout << "\nTry the -h option for more information." << endl;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string in_file;
|
|
|
|
string out_file;
|
|
|
|
|
|
|
|
// check if the user told us the input file and if they did then
|
|
|
|
// get the file name
|
2012-02-12 02:15:17 +08:00
|
|
|
if (parser.option("in"))
|
2008-05-02 22:19:38 +08:00
|
|
|
{
|
2012-02-12 02:15:17 +08:00
|
|
|
in_file = parser.option("in").argument();
|
2008-05-02 22:19:38 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cout << "Error in command line:\n You must specify an input file.\n";
|
|
|
|
cout << "\nTry the -h option for more information." << endl;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// check if the user told us the output file and if they did then
|
|
|
|
// get the file name
|
2012-02-12 02:15:17 +08:00
|
|
|
if (parser.option("out"))
|
2008-05-02 22:19:38 +08:00
|
|
|
{
|
2012-02-12 02:15:17 +08:00
|
|
|
out_file = parser.option("out").argument();
|
2008-05-02 22:19:38 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cout << "Error in command line:\n You must specify an output file.\n";
|
|
|
|
cout << "\nTry the -h option for more information." << endl;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-09-06 23:15:13 +08:00
|
|
|
// open the files we will be reading from and writing to
|
2008-05-02 22:19:38 +08:00
|
|
|
ifstream fin(in_file.c_str(),ios::binary);
|
|
|
|
ofstream fout(out_file.c_str(),ios::binary);
|
|
|
|
|
2008-09-06 23:15:13 +08:00
|
|
|
// make sure the files opened correctly
|
2008-05-02 22:19:38 +08:00
|
|
|
if (!fin)
|
|
|
|
{
|
|
|
|
cout << "Error opening file " << in_file << ".\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!fout)
|
|
|
|
{
|
|
|
|
cout << "Error creating file " << out_file << ".\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// now perform the actual compression or decompression.
|
2012-02-12 02:15:17 +08:00
|
|
|
if (parser.option("c"))
|
2008-05-02 22:19:38 +08:00
|
|
|
{
|
2009-10-16 22:47:44 +08:00
|
|
|
// save the compression level to the output file
|
|
|
|
serialize(compression_level, fout);
|
|
|
|
|
|
|
|
switch (compression_level)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
cs1 compressor;
|
|
|
|
compressor.compress(fin,fout);
|
|
|
|
}break;
|
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
cs2 compressor;
|
|
|
|
compressor.compress(fin,fout);
|
|
|
|
}break;
|
|
|
|
case 3:
|
|
|
|
{
|
|
|
|
cs3 compressor;
|
|
|
|
compressor.compress(fin,fout);
|
|
|
|
}break;
|
|
|
|
}
|
2008-05-02 22:19:38 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-10-16 22:47:44 +08:00
|
|
|
// obtain the compression level from the input file
|
|
|
|
deserialize(compression_level, fin);
|
|
|
|
|
|
|
|
switch (compression_level)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
cs1 compressor;
|
|
|
|
compressor.decompress(fin,fout);
|
|
|
|
}break;
|
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
cs2 compressor;
|
|
|
|
compressor.decompress(fin,fout);
|
|
|
|
}break;
|
|
|
|
case 3:
|
|
|
|
{
|
|
|
|
cs3 compressor;
|
|
|
|
compressor.decompress(fin,fout);
|
|
|
|
}break;
|
2009-10-16 23:36:11 +08:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
cout << "Error in compressed file, invalid compression level" << endl;
|
|
|
|
}break;
|
2009-10-16 22:47:44 +08:00
|
|
|
}
|
2008-05-02 22:19:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
catch (exception& e)
|
|
|
|
{
|
|
|
|
// Note that this will catch any cmd_line_parse_error exceptions and print
|
|
|
|
// the default message.
|
|
|
|
cout << e.what() << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|