当前位置: 首页>>代码示例>>C++>>正文


C++ Printer::PrintPercent方法代码示例

本文整理汇总了C++中Printer::PrintPercent方法的典型用法代码示例。如果您正苦于以下问题:C++ Printer::PrintPercent方法的具体用法?C++ Printer::PrintPercent怎么用?C++ Printer::PrintPercent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Printer的用法示例。


在下文中一共展示了Printer::PrintPercent方法的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);
}
开发者ID:VasayXTX,项目名称:Packer,代码行数:58,代码来源:unPacker.cpp

示例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);
}
开发者ID:VasayXTX,项目名称:Packer,代码行数:41,代码来源:packer.cpp


注:本文中的Printer::PrintPercent方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。