本文整理汇总了C++中Pathname::mtime方法的典型用法代码示例。如果您正苦于以下问题:C++ Pathname::mtime方法的具体用法?C++ Pathname::mtime怎么用?C++ Pathname::mtime使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pathname
的用法示例。
在下文中一共展示了Pathname::mtime方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: plf
PingusLevel
PLFResMgr::load_plf_raw(const std::string& res_name,
const Pathname& pathname)
{
pout(PINGUS_DEBUG_LOADING) << "PLFResMgr: '" << res_name << "' -> '" << pathname.str() << "'" << std::endl;
PLFMap::iterator i = plf_map.find(res_name);
if (i == plf_map.end())
{ // Entry not cached, so load it and add it to cache
pout(PINGUS_DEBUG_LOADING) << "PLFResMgr: Loading level from DISK: '" << res_name << "' -> '"
<< pathname.str() << "'" << std::endl;
PingusLevel plf(res_name, pathname);
PLFEntry entry;
entry.plf = plf;
entry.mtime = pathname.mtime();
plf_map[res_name] = entry;
// FIXME: leaking pointers to the outsite work is not such a good
// idea, could lead to trouble sooner or later
return PingusLevel (entry.plf);
}
else
{
uint64_t current_mtime = pathname.mtime();
if (current_mtime != i->second.mtime)
{
pout(PINGUS_DEBUG_LOADING) << "PLFResMgr: level changed on DISK, reloading: '" << res_name
<< "' -> '" << pathname.str() << "'" << std::endl;
// Reload the file since it has changed on disk
PingusLevel plf(res_name, pathname);
PLFEntry entry;
entry.plf = plf;
entry.mtime = pathname.mtime();
plf_map[res_name] = entry;
// FIXME: leaking pointers to the outsite work is not such a good
// idea, could lead to trouble sooner or later
return PingusLevel (entry.plf);
}
else
{ // File in cache is up to date, everything is all ready, return it
pout(PINGUS_DEBUG_LOADING) << "PLFResMgr: Loading level from CACHE: '" << res_name << "' -> '"
<< pathname.str() << "'" << std::endl;
return i->second.plf;
}
}
}