本文整理汇总了C++中Printer::PrintText方法的典型用法代码示例。如果您正苦于以下问题:C++ Printer::PrintText方法的具体用法?C++ Printer::PrintText怎么用?C++ Printer::PrintText使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Printer
的用法示例。
在下文中一共展示了Printer::PrintText方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: UnPack
void UnPacker::UnPack(const std::string &aFileIn, const std::string &aDir)
{
FILE *fOut, *fIn;
if (fopen_s(&fIn, aFileIn.c_str(), "rb") || !fIn)
{
throw Error("Failed to open file " + aFileIn);
}
unsigned char cAlg;
if (!fscanf_s(fIn, "%c", &cAlg))
{
throw Error("Error reading file");
}
ProxyUnPacker *unP;
switch (cAlg)
{
case 0:
unP = new UnPackerRLE(bufSize);
break;
case 1:
unP = new UnPackerHuffman(bufSize);
break;
default:
throw Error("Unknown type of compression");
}
unsigned int fileCount = unP->ReadInt(fIn);
for (unsigned int i = 0; i < fileCount; ++i)
{
unsigned char fNameLen;
unP->_SetNext(fIn, &fNameLen);
std::string fName;
unsigned char ch;
for (unsigned int j = 0; j < fNameLen; ++j)
{
unP->_SetNext(fIn, &ch);
fName.push_back(ch);
}
fName = aDir + fName;
//**************************
//fName = "_" + fName;
//**************************
if (fopen_s(&fOut, fName.c_str(), "wb") || !fOut)
{
throw Error("Failed to create file " + fName);
}
Printer pr;
pr.PrintText("Decompression " + fName + ": 0%");
unP->_UnPack(fIn, fOut, pr);
pr.PrintPercent(100);
pr.PrintText("\n");
fclose(fOut);
}
delete unP;
fclose(fIn);
}
示例2: Pack
void Packer::Pack(const LstFile &aLstFileIn, const std::string &aFileOut)
{
FILE *fIn, *fOut;
if (fopen_s(&fOut, aFileOut.c_str(), "wb") || !fOut)
{
throw Error("Failed to create file " + aFileOut);
}
fprintf(fOut, "%c", (unsigned char)alg); //записываем в выходной файл вид алгоритма, на основании которого идет архивация
WriteInt(fOut, aLstFileIn.size()); //записываем в выходной файл количество файлов для архивации
for (LstFile::const_iterator it = aLstFileIn.begin(); it != aLstFileIn.end(); ++it)
{
time_t tBegin = time(0);
if (fopen_s(&fIn, (*it).c_str(), "rb") || !fIn)
{
throw Error("Failed to open file " + *it);
}
std::string shortFName = GetShortFileName(*it);
fprintf(fOut, "%c", (unsigned char)shortFName.size()); //записываем в выходной файл размер имени архивируемого файла
for (unsigned int i = 0; i < shortFName.size(); ++i) //записываем в выходной файл имя архивируемого файла
{
fprintf(fOut, "%c", shortFName[i]);
}
//Определяем размер файла
fseek(fIn, 0, SEEK_END);
unsigned int fSize = ftell(fIn);
fseek(fIn, 0, SEEK_SET);
Printer pr;
pr.PrintText("Compression " + *it + ": 0%");
_Pack(fIn, fOut, fSize, pr);
pr.PrintPercent(100);
pr.PrintText("\n");
fclose(fIn);
}
fclose(fOut);
}