2006-11-13 10:27:57 +00:00
|
|
|
/**
|
|
|
|
* \file ConverterCache.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Baruch Even
|
|
|
|
* \author Angus Leeming
|
|
|
|
* \author Georg Baum
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "ConverterCache.h"
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "mover.h"
|
|
|
|
|
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/lyxlib.h"
|
|
|
|
#include "support/lyxtime.h"
|
|
|
|
#include "support/package.h"
|
|
|
|
|
|
|
|
#include <boost/crc.hpp>
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
2006-11-15 18:39:20 +00:00
|
|
|
#include <boost/current_function.hpp>
|
2006-11-13 10:27:57 +00:00
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <map>
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
using lyx::support::addName;
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
using support::FileName;
|
|
|
|
|
2006-11-13 10:27:57 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
unsigned long do_crc(string const & s)
|
|
|
|
{
|
|
|
|
boost::crc_32_type crc;
|
|
|
|
crc = std::for_each(s.begin(), s.end(), crc);
|
|
|
|
return crc.checksum();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
static FileName cache_dir;
|
2006-11-13 10:27:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
class CacheItem {
|
|
|
|
public:
|
|
|
|
CacheItem() {}
|
2006-11-26 21:30:39 +00:00
|
|
|
CacheItem(FileName const & orig_from, string const & to_format,
|
2006-11-13 10:27:57 +00:00
|
|
|
time_t t, unsigned long c)
|
|
|
|
: timestamp(t), checksum(c)
|
|
|
|
{
|
|
|
|
std::ostringstream os;
|
2006-11-26 21:30:39 +00:00
|
|
|
os << std::setw(10) << std::setfill('0') << do_crc(orig_from.absFilename())
|
2006-11-13 10:27:57 +00:00
|
|
|
<< '-' << to_format;
|
2006-11-26 21:30:39 +00:00
|
|
|
cache_name = FileName(addName(cache_dir.absFilename(), os.str()));
|
2006-11-13 10:27:57 +00:00
|
|
|
lyxerr[Debug::FILES] << "Add file cache item " << orig_from
|
|
|
|
<< ' ' << to_format << ' ' << cache_name
|
|
|
|
<< ' ' << timestamp << ' ' << checksum
|
|
|
|
<< '.' << std::endl;
|
|
|
|
}
|
|
|
|
~CacheItem() {}
|
2006-11-26 21:30:39 +00:00
|
|
|
FileName cache_name;
|
2006-11-13 10:27:57 +00:00
|
|
|
time_t timestamp;
|
|
|
|
unsigned long checksum;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** The cache contains one item per orig file and target format, so use a
|
|
|
|
* nested map to find the cache item quickly by filename and format.
|
|
|
|
*/
|
|
|
|
typedef std::map<string, CacheItem> FormatCacheType;
|
2006-11-26 21:30:39 +00:00
|
|
|
typedef std::map<FileName, FormatCacheType> CacheType;
|
2006-11-13 10:27:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ConverterCache::Impl {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
void readIndex();
|
|
|
|
///
|
|
|
|
void writeIndex();
|
|
|
|
///
|
2006-11-26 21:30:39 +00:00
|
|
|
CacheItem * find(FileName const & from, string const & format);
|
2006-11-13 10:27:57 +00:00
|
|
|
CacheType cache;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void ConverterCache::Impl::readIndex()
|
|
|
|
{
|
|
|
|
time_t const now = current_time();
|
2006-11-26 21:30:39 +00:00
|
|
|
FileName const index(addName(cache_dir.absFilename(), "index"));
|
|
|
|
std::ifstream is(index.toFilesystemEncoding().c_str());
|
2006-11-13 10:27:57 +00:00
|
|
|
while (is.good()) {
|
|
|
|
string orig_from;
|
|
|
|
string to_format;
|
|
|
|
time_t timestamp;
|
|
|
|
unsigned long checksum;
|
|
|
|
if (!(is >> orig_from >> to_format >> timestamp >> checksum))
|
|
|
|
return;
|
2006-11-26 21:30:39 +00:00
|
|
|
FileName const orig_from_name(orig_from);
|
|
|
|
CacheItem item(orig_from_name, to_format, timestamp, checksum);
|
2006-11-13 10:27:57 +00:00
|
|
|
|
|
|
|
// Don't cache files that do not exist anymore
|
|
|
|
if (!fs::exists(orig_from)) {
|
|
|
|
lyxerr[Debug::FILES] << "Not caching file `"
|
|
|
|
<< orig_from << "' (does not exist anymore)."
|
|
|
|
<< std::endl;
|
|
|
|
support::unlink(item.cache_name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the cached file if it is too old
|
2006-11-26 21:30:39 +00:00
|
|
|
if (difftime(now, fs::last_write_time(item.cache_name.toFilesystemEncoding())) >
|
2006-11-13 10:27:57 +00:00
|
|
|
lyxrc.converter_cache_maxage) {
|
|
|
|
lyxerr[Debug::FILES] << "Not caching file `"
|
|
|
|
<< orig_from << "' (too old)." << std::endl;
|
|
|
|
support::unlink(item.cache_name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
cache[orig_from_name][to_format] = item;
|
2006-11-13 10:27:57 +00:00
|
|
|
}
|
|
|
|
is.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ConverterCache::Impl::writeIndex()
|
|
|
|
{
|
2006-11-26 21:30:39 +00:00
|
|
|
FileName const index(addName(cache_dir.absFilename(), "index"));
|
|
|
|
std::ofstream os(index.toFilesystemEncoding().c_str());
|
2006-11-13 10:27:57 +00:00
|
|
|
os.close();
|
2006-11-26 21:30:39 +00:00
|
|
|
if (!lyx::support::chmod(index, 0600))
|
2006-11-13 10:27:57 +00:00
|
|
|
return;
|
2006-11-26 21:30:39 +00:00
|
|
|
os.open(index.toFilesystemEncoding().c_str());
|
2006-11-13 10:27:57 +00:00
|
|
|
CacheType::iterator it1 = cache.begin();
|
|
|
|
CacheType::iterator const end1 = cache.end();
|
|
|
|
for (; it1 != end1; ++it1) {
|
|
|
|
FormatCacheType::iterator it2 = it1->second.begin();
|
|
|
|
FormatCacheType::iterator const end2 = it1->second.end();
|
|
|
|
for (; it2 != end2; ++it2)
|
|
|
|
os << it1->first << ' ' << it2->first << ' '
|
|
|
|
<< it2->second.timestamp << ' '
|
|
|
|
<< it2->second.checksum << '\n';
|
|
|
|
}
|
|
|
|
os.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
CacheItem * ConverterCache::Impl::find(FileName const & from,
|
2006-11-13 10:27:57 +00:00
|
|
|
string const & format)
|
|
|
|
{
|
|
|
|
if (!lyxrc.use_converter_cache)
|
|
|
|
return 0;
|
|
|
|
CacheType::iterator const it1 = cache.find(from);
|
|
|
|
if (it1 == cache.end())
|
|
|
|
return 0;
|
|
|
|
FormatCacheType::iterator const it2 = it1->second.find(format);
|
|
|
|
if (it2 == it1->second.end())
|
|
|
|
return 0;
|
|
|
|
return &(it2->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ConverterCache & ConverterCache::get()
|
|
|
|
{
|
|
|
|
// Now return the cache
|
|
|
|
static ConverterCache singleton;
|
|
|
|
return singleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ConverterCache::init()
|
|
|
|
{
|
|
|
|
if (!lyxrc.use_converter_cache)
|
|
|
|
return;
|
|
|
|
// We do this here and not in the constructor because package() gets
|
|
|
|
// initialized after all static variables.
|
2006-11-26 21:30:39 +00:00
|
|
|
cache_dir = FileName(addName(support::package().user_support(), "cache"));
|
|
|
|
if (!fs::exists(cache_dir.toFilesystemEncoding()))
|
2006-11-13 10:27:57 +00:00
|
|
|
if (support::mkdir(cache_dir, 0700) != 0) {
|
|
|
|
lyxerr << "Could not create cache directory `"
|
|
|
|
<< cache_dir << "'." << std::endl;
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
get().pimpl_->readIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ConverterCache::ConverterCache()
|
|
|
|
: pimpl_(new Impl)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
ConverterCache::~ConverterCache()
|
|
|
|
{
|
|
|
|
if (!lyxrc.use_converter_cache)
|
|
|
|
return;
|
|
|
|
pimpl_->writeIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
void ConverterCache::add(FileName const & orig_from, string const & to_format,
|
|
|
|
FileName const & converted_file) const
|
2006-11-13 10:27:57 +00:00
|
|
|
{
|
|
|
|
if (!lyxrc.use_converter_cache)
|
|
|
|
return;
|
|
|
|
lyxerr[Debug::FILES] << BOOST_CURRENT_FUNCTION << ' ' << orig_from
|
|
|
|
<< ' ' << to_format << ' ' << converted_file
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
// Is the file in the cache already?
|
|
|
|
CacheItem * item = pimpl_->find(orig_from, to_format);
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
time_t const timestamp = fs::last_write_time(orig_from.toFilesystemEncoding());
|
2006-11-13 10:27:57 +00:00
|
|
|
Mover const & mover = movers(to_format);
|
|
|
|
if (item) {
|
|
|
|
lyxerr[Debug::FILES] << "ConverterCache::add(" << orig_from << "):\n"
|
|
|
|
"The file is already in the cache."
|
|
|
|
<< std::endl;
|
|
|
|
// First test for timestamp
|
|
|
|
if (timestamp == item->timestamp) {
|
|
|
|
lyxerr[Debug::FILES] << "Same timestamp."
|
|
|
|
<< std::endl;
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
// Maybe the contents is still the same?
|
|
|
|
item->timestamp = timestamp;
|
|
|
|
unsigned long const checksum = support::sum(orig_from);
|
|
|
|
if (checksum == item->checksum) {
|
|
|
|
lyxerr[Debug::FILES] << "Same checksum."
|
|
|
|
<< std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
item->checksum = checksum;
|
|
|
|
}
|
|
|
|
if (!mover.copy(converted_file, item->cache_name, 0600))
|
|
|
|
lyxerr[Debug::FILES] << "ConverterCache::add("
|
|
|
|
<< orig_from << "):\n"
|
|
|
|
"Could not copy file."
|
|
|
|
<< std::endl;
|
|
|
|
} else {
|
|
|
|
CacheItem new_item = CacheItem(orig_from, to_format, timestamp,
|
|
|
|
support::sum(orig_from));
|
|
|
|
if (mover.copy(converted_file, new_item.cache_name, 0600))
|
|
|
|
pimpl_->cache[orig_from][to_format] = new_item;
|
|
|
|
else
|
|
|
|
lyxerr[Debug::FILES] << "ConverterCache::add("
|
|
|
|
<< orig_from << "):\n"
|
|
|
|
"Could not copy file."
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
void ConverterCache::remove(FileName const & orig_from,
|
2006-11-13 10:27:57 +00:00
|
|
|
string const & to_format) const
|
|
|
|
{
|
|
|
|
if (!lyxrc.use_converter_cache)
|
|
|
|
return;
|
|
|
|
lyxerr[Debug::FILES] << BOOST_CURRENT_FUNCTION << ' ' << orig_from
|
|
|
|
<< ' ' << to_format << std::endl;
|
|
|
|
|
|
|
|
CacheType::iterator const it1 = pimpl_->cache.find(orig_from);
|
|
|
|
if (it1 == pimpl_->cache.end())
|
|
|
|
return;
|
|
|
|
FormatCacheType::iterator const it2 = it1->second.find(to_format);
|
|
|
|
if (it2 == it1->second.end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
it1->second.erase(it2);
|
|
|
|
if (it1->second.empty())
|
|
|
|
pimpl_->cache.erase(it1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
bool ConverterCache::inCache(FileName const & orig_from,
|
2006-11-13 10:27:57 +00:00
|
|
|
string const & to_format) const
|
|
|
|
{
|
|
|
|
if (!lyxrc.use_converter_cache)
|
|
|
|
return false;
|
|
|
|
lyxerr[Debug::FILES] << BOOST_CURRENT_FUNCTION << ' ' << orig_from
|
|
|
|
<< ' ' << to_format << std::endl;
|
|
|
|
|
|
|
|
CacheItem * const item = pimpl_->find(orig_from, to_format);
|
|
|
|
if (!item) {
|
|
|
|
lyxerr[Debug::FILES] << "not in cache." << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2006-11-26 21:30:39 +00:00
|
|
|
time_t const timestamp = fs::last_write_time(orig_from.toFilesystemEncoding());
|
2006-11-13 10:27:57 +00:00
|
|
|
if (item->timestamp == timestamp) {
|
|
|
|
lyxerr[Debug::FILES] << "identical timestamp." << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (item->checksum == support::sum(orig_from)) {
|
|
|
|
item->timestamp = timestamp;
|
|
|
|
lyxerr[Debug::FILES] << "identical checksum." << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
lyxerr[Debug::FILES] << "in cache, but too old." << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
FileName const & ConverterCache::cacheName(FileName const & orig_from,
|
2006-11-13 10:27:57 +00:00
|
|
|
string const & to_format) const
|
|
|
|
{
|
|
|
|
lyxerr[Debug::FILES] << BOOST_CURRENT_FUNCTION << ' ' << orig_from
|
|
|
|
<< ' ' << to_format << std::endl;
|
|
|
|
|
|
|
|
CacheItem * const item = pimpl_->find(orig_from, to_format);
|
|
|
|
BOOST_ASSERT(item);
|
|
|
|
return item->cache_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
bool ConverterCache::copy(FileName const & orig_from, string const & to_format,
|
|
|
|
FileName const & dest) const
|
2006-11-13 10:27:57 +00:00
|
|
|
{
|
|
|
|
if (!lyxrc.use_converter_cache)
|
|
|
|
return false;
|
|
|
|
lyxerr[Debug::FILES] << BOOST_CURRENT_FUNCTION << ' ' << orig_from
|
|
|
|
<< ' ' << to_format << ' ' << dest << std::endl;
|
|
|
|
|
|
|
|
CacheItem * const item = pimpl_->find(orig_from, to_format);
|
|
|
|
BOOST_ASSERT(item);
|
|
|
|
Mover const & mover = movers(to_format);
|
|
|
|
return mover.copy(item->cache_name, dest);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace lyx
|