lyx_mirror/src/ConverterCache.h

102 lines
3.0 KiB
C
Raw Normal View History

Add a cache for converted image files. This needs to be enabled in the preferences file with \use_converter_cache true. It is disabled by default, and no GUI support for changing the preferences is yet implemented. * src/insets/insetgraphics.C (InsetGraphics::prepareFile): Use image file cache * src/insets/ExternalSupport.C (updateExternal): Use image file cache * src/exporter.C (Exporter::Export): Do not use image file cache * src/graphics/GraphicsCacheItem.C (CacheItem::Impl::imageConverted): Add the converted file to the image file cache (CacheItem::Impl::convertToDisplayFo): Use image file cache * src/converter.C (Converters::convert): Use image file cache if the caller allowed that * src/converter.h (Converters::convert): Adjust arguments * src/Makefile.am: Add new files * src/support/lyxlib.h (chmod): new function (copy): add mode argument * src/support/copy.C (chmod): new function (copy): implement mode argument * src/support/mkdir.C (lyx::support::mkdir): Add warning if permissions are ignored * src/lyxrc.[Ch]: Add new settings \converter_cache_maxage and \use_converter_cache * src/ConverterCache.[Ch]: New image file cache * src/importer.C (Importer::Import): Do nut use the image file cache * src/lyx_main.C (LyX::init): Initialize the image file cache * src/mover.[Ch] (Mover::do_copy): Add mode argument (SpecialisedMover::do_copy): ditto * configure.ac: Check for chmod * development/cmake/ConfigureChecks.cmake: ditto * development/cmake/config.h.cmake: ditto * development/scons/SConstruct: ditto * development/scons/scons_manifest.py: Add new files git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15897 a592a061-630c-0410-9148-cb99ea01b6c8
2006-11-13 10:27:57 +00:00
// -*- C++ -*-
/**
* \file ConverterCache.h
* 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.
*
* lyx::ConverterCache is the manager of the file cache.
* It is responsible for creating the lyx::ConverterCacheItem's
* and maintaining them.
*
* lyx::ConverterCache is a singleton class. It is possible to have
* only one instance of it at any moment.
*/
#ifndef CONVERTERCACHE_H
#define CONVERTERCACHE_H
#include <boost/utility.hpp>
#include <boost/scoped_ptr.hpp>
#include <string>
namespace lyx {
/**
* Cache for converted files. The cache works as follows:
*
* The key for a cache item consists of the absolute name of the original
* file and the format name of the target format. The original file in the
* user directory is named \c orig_from in the code, the format name is named
* \c to_format. Example:
* \c orig_from = "/home/me/myfigure.fig"
* \c to_format = "eps"
* A cache item is considered up to date (inCache() returns \c true) if
* - The cache contains an item with key (\c orig_to, \c to_format)
* - The stored timestamp of the item is identical with the actual timestamp
* of \c orig_from, or, if that is not the case, the stored checksum is
* identical with the actual checksum of \c orig_from.
* Otherwise the item is not considered up to date, and add() will refresh it.
*
* There is no cache maintenance yet (max size, max age etc.)
*/
class ConverterCache : boost::noncopyable {
public:
/// This is a singleton class. Get the instance.
static ConverterCache & get();
/// Init the cache. This must be done after package initialization.
static void init();
/**
* Add \c converted_file (\c orig_from converted to \c to_format) to
* the cache if it is not already in or not up to date.
*/
void add(std::string const & orig_from, std::string const & to_format,
std::string const & converted_file) const;
/// Remove a file from the cache.
void remove(std::string const & orig_from,
std::string const & to_format) const;
/**
* Returns \c true if \c orig_from converted to \c to_format is in
* the cache and up to date.
*/
bool inCache(std::string const & orig_from,
std::string const & to_format) const;
/// Get the name of the cached file
std::string const cacheName(std::string const & orig_from,
std::string const & to_format) const;
/// Copy the file from the cache to \p dest
bool copy(std::string const & orig_from, std::string const & to_format,
std::string const & dest) const;
private:
/** Make the c-tor, d-tor private so we can control how many objects
* are instantiated.
*/
ConverterCache();
///
~ConverterCache();
/// Use the Pimpl idiom to hide the internals.
class Impl;
/// The pointer never changes although *pimpl_'s contents may.
boost::scoped_ptr<Impl> const pimpl_;
};
} // namespace lyx
#endif