forked from pocoproject/poco
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase64encode.cpp
More file actions
58 lines (47 loc) · 1.18 KB
/
Copy pathbase64encode.cpp
File metadata and controls
58 lines (47 loc) · 1.18 KB
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
//
// base64encode.cpp
//
// $Id: //poco/1.4/Foundation/samples/base64encode/src/base64encode.cpp#1 $
//
// This sample demonstrates the Base64Encoder and StreamCopier classes.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/Base64Encoder.h"
#include "Poco/StreamCopier.h"
#include <iostream>
#include <fstream>
using Poco::Base64Encoder;
using Poco::StreamCopier;
int main(int argc, char** argv)
{
if (argc != 3)
{
std::cout << "usage: " << argv[0] << ": <input_file> <output_file>" << std::endl
<< " read <input_file>, base64-encode it and write the result to <output_file>" << std::endl;
return 1;
}
std::ifstream istr(argv[1], std::ios::binary);
if (!istr)
{
std::cerr << "cannot open input file: " << argv[1] << std::endl;
return 2;
}
std::ofstream ostr(argv[2]);
if (!ostr)
{
std::cerr << "cannot open output file: " << argv[2] << std::endl;
return 3;
}
Base64Encoder encoder(ostr);
StreamCopier::copyStream(istr, encoder);
if (!ostr)
{
std::cerr << "error writing output file: " << argv[2] << std::endl;
return 4;
}
return 0;
}