-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_bunzip.C
87 lines (84 loc) · 3 KB
/
test_bunzip.C
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// bzstream, C++ iostream classes wrapping the bzlib compression library.
// This is a fork of the library gzstream.
//
// File : test_bunzip.C
// Revision : $Revision: 1.0 $
// Revision_date : $Date: 2019/01/12 02:00:20 $
//
// Original Author and License notice below.
//
// ============================================================================
// gzstream, C++ iostream classes wrapping the zlib compression library.
// Copyright (C) 2001 Deepak Bandyopadhyay, Lutz Kettner
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// ============================================================================
//
// File : test_gunzip.C
// Revision : $Revision: 1.3 $
// Revision_date : $Date: 2001/10/04 15:09:28 $
// Author(s) : Deepak Bandyopadhyay, Lutz Kettner
//
// Short test program reading a file, uncompressing it, and writing it.
// ============================================================================
#include <bzstream.h>
#include <iostream>
#include <fstream>
#include <stdlib.h>
int main( int argc, char*argv[]) {
if ( argc != 3) {
std::cerr << "Usage: " << argv[0] <<" <in-file> <out-file>\n";
return EXIT_FAILURE;
}
// check alternate way of opening file
bz::ibzstream in2;
in2.open( argv[1]);
if ( ! in2.good()) {
std::cerr << "ERROR: Opening file `" << argv[1] << "' failed.\n";
return EXIT_FAILURE;
}
in2.close();
if ( ! in2.good()) {
std::cerr << "ERROR: Closing file `" << argv[1] << "' failed.\n";
return EXIT_FAILURE;
}
// now use the shorter way with the constructor to open the same file
bz::ibzstream in( argv[1]);
if ( ! in.good()) {
std::cerr << "ERROR: Opening file `" << argv[1] << "' failed.\n";
return EXIT_FAILURE;
}
std::ofstream out( argv[2]);
if ( ! out.good()) {
std::cerr << "ERROR: Opening file `" << argv[2] << "' failed.\n";
return EXIT_FAILURE;
}
char c;
while ( in.get(c))
out << c;
in.close();
out.close();
if ( ! in.eof()) {
std::cerr << "ERROR: Reading file `" << argv[1] << "' failed.\n";
return EXIT_FAILURE;
}
if ( ! out.good()) {
std::cerr << "ERROR: Writing file `" << argv[2] << "' failed.\n";
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
// ============================================================================
// EOF