本文整理汇总了C++中Filename::getFullFilename方法的典型用法代码示例。如果您正苦于以下问题:C++ Filename::getFullFilename方法的具体用法?C++ Filename::getFullFilename怎么用?C++ Filename::getFullFilename使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Filename
的用法示例。
在下文中一共展示了Filename::getFullFilename方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
/**
* Program entry point.
*/
int main(int argc, char *argv[ ])
{
SetupSharedThread::install();
SetupSharedDebug::install(4096);
{
SetupSharedFoundation::Data data(SetupSharedFoundation::Data::D_console);
#ifdef WIN32
char buffer[1024];
GetModuleFileName(GetModuleHandle(NULL), buffer, 1024);
Filename configName;
configName.setName(buffer);
configName.setName("templateCompiler.cfg");
data.configFile = configName.getFullFilename().c_str();
#endif
SetupSharedFoundation::install (data);
}
SetupSharedRegex::install();
SetupSharedCompression::install();
SetupSharedFile::install(false);
// setup the random number generator
// @todo need a better seed
SetupSharedRandom::install(static_cast<uint32>(time(NULL)));
int result = processArgs(argc, argv);
// cleanup
SetupSharedFoundation::remove();
PerThreadData::threadRemove();
return result;
} // main
示例2: writeTemplateSource
/**
* Writes the source file for a template.
*
* @param tdfFile parsed template definition file
* @param filename file to write to
*
* @resurn 0 on success, -1 on error
*/
int writeTemplateSource(const TemplateDefinitionFile &tdfFile, const Filename &filename)
{
static const int BUFFER_SIZE = 1024;
File fp;
int result;
const TemplateData *currentTemplate = tdfFile.getTemplateData(tdfFile.getHighestVersion());
NOT_NULL(currentTemplate);
Filename sourcename = filename;
sourcename.setExtension(".cpp");
#ifndef ALWAYS_OVERWRITE
char buffer[BUFFER_SIZE];
// see if the template source already exists
if (!fp.exists(sourcename))
{
#endif
// this is a new template source
if (!fp.open(sourcename, "wt"))
{
fprintf(stderr, "error opening file [%s]\n", fp.getFilename().getFullFilename().c_str());
return -1;
}
tdfFile.writeClassSourceBegin(fp, *currentTemplate);
result = currentTemplate->writeSourceMethods(fp);
fp.close();
if (result != 0)
return result;
#ifndef ALWAYS_OVERWRITE
}
else
{
// the template source exists, make a copy and replace the auto-generated
// code
if (!fp.open(sourcename, "rt"))
{
fprintf(stderr, "error opening template source file %s\n", sourcename.getFullFilename().c_str());
return -1;
}
File temp_fp;
if (!temp_fp.open(tmpnam(NULL), "wt"))
{
fprintf(stderr, "error opening temp file for template source "
"replacement [%s]\n", temp_fp.getFilename().getFullFilename().c_str());
return -1;
}
for (;;)
{
int result = fp.readRawLine(buffer, BUFFER_SIZE);
if (result < 0)
{
if (result == -1)
break;
else
{
fp.printError("error reading old template source file");
return -1;
}
}
if (strncmp(buffer, TDF_TEMPLATE_REFS_BEGIN, strlen(TDF_TEMPLATE_REFS_BEGIN)) == 0)
{
// write out the new tdf data
currentTemplate->writeSourceTemplateIncludes(temp_fp);
// skip the old tdf data
if (!skipOldCode(fp, TDF_TEMPLATE_REFS_END, buffer, BUFFER_SIZE))
return -1;
}
else if (strncmp(buffer, TDF_INIT_BEGIN, strlen(TDF_INIT_BEGIN)) == 0)
{
// write out the new tdf data
currentTemplate->writeSourceLoadedFlagInit(temp_fp);
// skip the old tdf data
if (!skipOldCode(fp, TDF_INIT_END, buffer, BUFFER_SIZE))
return -1;
}
else if (strncmp(buffer, TDF_CLEANUP_BEGIN, strlen(TDF_CLEANUP_BEGIN)) == 0)
{
// write out the new tdf data
currentTemplate->writeSourceCleanup(temp_fp);
// skip the old tdf data
if (!skipOldCode(fp, TDF_CLEANUP_END, buffer, BUFFER_SIZE))
return -1;
}
else if (strncmp(buffer, TDF_BEGIN, strlen(TDF_BEGIN)) == 0)
{
// write out the new tdf data
result = currentTemplate->writeSourceMethods(temp_fp);
if (result != 0)
//.........这里部分代码省略.........