mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
Added option to read from and write to files as well as console. This allows
transcode to process binary files properly - eg to Base64 an image.
This commit is contained in:
parent
e99734c401
commit
bf2c892506
1 changed files with 131 additions and 75 deletions
|
@ -15,10 +15,14 @@
|
|||
#include <Utils/utf16beucs2codecvt.h>
|
||||
#include <Utils/utf16leucs2codecvt.h>
|
||||
|
||||
using namespace Arabica::convert;
|
||||
#include <fstream>
|
||||
std::ifstream inputFile;
|
||||
std::ofstream outputFile;
|
||||
|
||||
using namespace Arabica::convert;
|
||||
iconvert_adaptor<char> iByteConvertor(std::cin);
|
||||
oconvert_adaptor<char> oByteConvertor(std::cout);
|
||||
bool needWCharIntermediary = false;
|
||||
|
||||
#ifndef ARABICA_NO_WCHAR_T
|
||||
typedef iconvert_adaptor<wchar_t, std::char_traits<wchar_t>, char, std::char_traits<char> > Widener;
|
||||
|
@ -28,21 +32,37 @@ Widener iCharAdaptor(iByteConvertor);
|
|||
Narrower oCharAdaptor(oByteConvertor);
|
||||
#endif
|
||||
|
||||
void transcode();
|
||||
void imbueCodecvts(int argc, const char* argv[]);
|
||||
void wchar_transcode();
|
||||
void byte_transcode();
|
||||
bool processArgs(int argc, const char* argv[]);
|
||||
bool imbueInput(int& argn, int argc, const char* argv[]);
|
||||
bool imbueOutput(int& argn, int argc, const char* argv[]);
|
||||
|
||||
|
||||
int main(int argc, const char* argv[])
|
||||
{
|
||||
imbueCodecvts(argc, argv);
|
||||
if(!processArgs(argc, argv))
|
||||
{
|
||||
std::cerr << argv[0] << "\n"
|
||||
<< " [(-ie|--input-encoding) input-encoding]\n"
|
||||
<< " [(-oe|--output-encoding) output-encoding]\n"
|
||||
<< " [(-i|--input) input-filename]\n"
|
||||
<< " [(-o|--output) output-filename]"
|
||||
<< std::endl;
|
||||
return 0;
|
||||
}
|
||||
|
||||
transcode();
|
||||
if(needWCharIntermediary)
|
||||
wchar_transcode();
|
||||
else
|
||||
byte_transcode();
|
||||
|
||||
return 0;
|
||||
} // main
|
||||
|
||||
#ifndef ARABICA_NO_WCHAR_T
|
||||
void transcode()
|
||||
void wchar_transcode()
|
||||
{
|
||||
#ifndef ARABICA_NO_WCHAR_T
|
||||
int count = 0;
|
||||
wchar_t c = iCharAdaptor.get();
|
||||
while(!iCharAdaptor.eof())
|
||||
|
@ -60,9 +80,10 @@ void transcode()
|
|||
}
|
||||
oCharAdaptor.flush();
|
||||
oByteConvertor.flush();
|
||||
} // transcode
|
||||
#else
|
||||
void transcode()
|
||||
#endif
|
||||
} // wchar_transcode
|
||||
|
||||
void byte_transcode()
|
||||
{
|
||||
int count = 0;
|
||||
char c = iByteConvertor.get();
|
||||
|
@ -80,40 +101,53 @@ void transcode()
|
|||
} // while
|
||||
|
||||
oByteConvertor.flush();
|
||||
} // transcode
|
||||
#endif
|
||||
} // byte_transcode
|
||||
|
||||
void imbueCodecvts(int argc, const char* argv[])
|
||||
bool processArgs(int argc, const char* argv[])
|
||||
{
|
||||
#ifndef ARABICA_NO_WCHAR_T
|
||||
oCharAdaptor.imbue(std::locale(oCharAdaptor.getloc(), new utf16beucs2codecvt()));
|
||||
#endif
|
||||
|
||||
for(int i = 1; i < argc; ++i)
|
||||
{
|
||||
std::string io(argv[i]);
|
||||
|
||||
bool input = true;
|
||||
if(io == "-i" || io == "--input")
|
||||
input = true;
|
||||
else if(io == "-o" || io == "--output")
|
||||
input = false;
|
||||
else
|
||||
if(io == "-ie" || io == "--input-encoding")
|
||||
{
|
||||
if(!(imbueInput(i, argc, argv)))
|
||||
return false;
|
||||
}
|
||||
else if(io == "-oe" || io == "--output-encoding")
|
||||
{
|
||||
if(!(imbueOutput(i, argc, argv)))
|
||||
return false;
|
||||
}
|
||||
else if(io == "-i" || io == "--input")
|
||||
{
|
||||
std::cerr << argv[0] << " [(-i|--input) input-encoding] [(-o|--output) output-encoding] " << std::endl;
|
||||
std::exit(0);
|
||||
} //
|
||||
|
||||
++i;
|
||||
if(i >= argc)
|
||||
return false;
|
||||
inputFile.open(argv[i], std::ios_base::in | std::ios_base::binary);
|
||||
iByteConvertor.set_stream(inputFile);
|
||||
}
|
||||
else if(io == "-o" || io == "--output")
|
||||
{
|
||||
std::cerr << argv[0] << " [(-i|--input) input-encoding] [(-o|--output) output-encoding] " << std::endl;
|
||||
std::exit(0);
|
||||
} //
|
||||
++i;
|
||||
if(i >= argc)
|
||||
return false;
|
||||
outputFile.open(argv[i], std::ios_base::out | std::ios_base::trunc | std::ios_base::binary);
|
||||
oByteConvertor.set_stream(outputFile);
|
||||
}
|
||||
else
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
} // processArgs
|
||||
|
||||
std::string cvt(argv[i]);
|
||||
if(input)
|
||||
bool imbueInput(int& argn, int argc, const char* argv[])
|
||||
{
|
||||
++argn;
|
||||
if(argn >= argc)
|
||||
return false;
|
||||
|
||||
std::string cvt(argv[argn]);
|
||||
if(cvt == "rot13")
|
||||
iByteConvertor.imbue(std::locale(iByteConvertor.getloc(), new rot13codecvt()));
|
||||
else if(cvt == "base64")
|
||||
|
@ -129,11 +163,26 @@ void imbueCodecvts(int argc, const char* argv[])
|
|||
else
|
||||
{
|
||||
std::cerr << cvt << " is not a valid input encoding." << std::endl;
|
||||
std::exit(0);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
#ifndef ARABICA_NO_WCHAR_T
|
||||
if((cvt == "utf8") ||
|
||||
(cvt == "utf16be") ||
|
||||
(cvt == "utf16le"))
|
||||
needWCharIntermediary = true;
|
||||
#endif
|
||||
|
||||
return true;
|
||||
} // imbueInput
|
||||
|
||||
bool imbueOutput(int& argn, int argc, const char* argv[])
|
||||
{
|
||||
++argn;
|
||||
if(argn >= argc)
|
||||
return false;
|
||||
|
||||
std::string cvt(argv[argn]);
|
||||
if(cvt == "rot13")
|
||||
oByteConvertor.imbue(std::locale(oByteConvertor.getloc(), new rot13codecvt()));
|
||||
else if(cvt == "base64")
|
||||
|
@ -149,9 +198,16 @@ void imbueCodecvts(int argc, const char* argv[])
|
|||
else
|
||||
{
|
||||
std::cerr << cvt << " is not a valid output encoding." << std::endl;
|
||||
std::exit(0);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
} // for ...
|
||||
} // imbueCodeCvts
|
||||
|
||||
#ifndef ARABICA_NO_WCHAR_T
|
||||
if((cvt == "utf8") ||
|
||||
(cvt == "utf16be") ||
|
||||
(cvt == "utf16le"))
|
||||
needWCharIntermediary = true;
|
||||
#endif
|
||||
|
||||
return true;
|
||||
} // imbueOutputs
|
||||
|
||||
|
|
Loading…
Reference in a new issue