iohelpers and output redirection
This commit is contained in:
parent
d3b377179f
commit
fef4002138
37
src/iohelpers.cpp
Normal file
37
src/iohelpers.cpp
Normal file
|
@ -0,0 +1,37 @@
|
|||
|
||||
/*
|
||||
* This file is part of Codecrypt.
|
||||
*
|
||||
* Codecrypt 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 3 of the License, or (at
|
||||
* your option) any later version.
|
||||
*
|
||||
* Codecrypt 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 Codecrypt. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "iohelpers.h"
|
||||
|
||||
bool redirect_cin (const std::string& fn)
|
||||
{
|
||||
static std::ifstream alt_cin;
|
||||
alt_cin.open (fn.c_str(), std::ios::in | std::ios::binary);
|
||||
if (alt_cin.fail() ) return false;
|
||||
std::cin.rdbuf (alt_cin.rdbuf() );
|
||||
return true;
|
||||
}
|
||||
|
||||
bool redirect_cout (const std::string& fn)
|
||||
{
|
||||
static std::ifstream alt_cout;
|
||||
alt_cout.open (fn.c_str(), std::ios::out | std::ios::binary);
|
||||
if (alt_cout.fail() ) return false;
|
||||
std::cout.rdbuf (alt_cout.rdbuf() );
|
||||
return true;
|
||||
}
|
|
@ -16,19 +16,25 @@
|
|||
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef _ccr_outhelpers_h_
|
||||
#define _ccr_outhelpers_h_
|
||||
#ifndef _ccr_iohelpers_h_
|
||||
#define _ccr_iohelpers_h_
|
||||
|
||||
/*
|
||||
* output helpers
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
|
||||
#define out(x) std::cout << x << std::endl
|
||||
#define outeol std::cout << std::endl
|
||||
#define err(x) std::cerr << x << std::endl
|
||||
#define erreol std::cerr << std::endl
|
||||
#define progerr(x) std::cerr << argv[0] << ": " << x << std::endl
|
||||
#define in(x) std::cin >> x;
|
||||
|
||||
bool redirect_cin (const std::string& fn);
|
||||
bool redirect_cout (const std::string& fn);
|
||||
|
||||
#endif
|
24
src/main.cpp
24
src/main.cpp
|
@ -16,7 +16,7 @@
|
|||
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "outhelpers.h"
|
||||
#include "iohelpers.h"
|
||||
|
||||
void print_version()
|
||||
{
|
||||
|
@ -301,19 +301,35 @@ int main (int argc, char**argv)
|
|||
if (!KR.load() ) {
|
||||
err ("could not load keyring!");
|
||||
exitval = 1;
|
||||
goto exit_ok;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
//register all available algorithms
|
||||
fill_algorithm_suite (AS);
|
||||
|
||||
/*
|
||||
* cin/cout redirection
|
||||
*/
|
||||
|
||||
if (input.length() && !redirect_cin (input) ) {
|
||||
progerr ("could not open input file");
|
||||
exitval = 1;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
if (output.length() && !redirect_cout (output) ) {
|
||||
progerr ("could not redirect to output file");
|
||||
exitval = 1;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
/*
|
||||
* check the option flags and do whatever was requested
|
||||
*/
|
||||
|
||||
if (do_test) {
|
||||
test();
|
||||
goto exit_ok;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
switch (action) {
|
||||
|
@ -402,7 +418,7 @@ int main (int argc, char**argv)
|
|||
* also ensure and verify that it was written back correctly.
|
||||
*/
|
||||
|
||||
exit_ok:
|
||||
exit:
|
||||
if (!KR.close() ) {
|
||||
err ("could not close keyring, "
|
||||
"something weird is going to happen.");
|
||||
|
|
Loading…
Reference in a new issue