mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
02c64e55c7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16176 a592a061-630c-0410-9148-cb99ea01b6c8
115 lines
1.9 KiB
C
115 lines
1.9 KiB
C
/**
|
|
* \file GraphicsCache.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
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "GraphicsCache.h"
|
|
#include "GraphicsCacheItem.h"
|
|
#include "GraphicsImage.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "support/filetools.h"
|
|
|
|
#include <map>
|
|
|
|
using std::string;
|
|
|
|
|
|
namespace lyx {
|
|
|
|
using support::FileName;
|
|
|
|
namespace graphics {
|
|
|
|
/** The cache contains one item per file, so use a map to find the
|
|
* cache item quickly by filename.
|
|
*/
|
|
typedef std::map<FileName, Cache::ItemPtr> CacheType;
|
|
|
|
class Cache::Impl {
|
|
public:
|
|
///
|
|
CacheType cache;
|
|
};
|
|
|
|
|
|
Cache & Cache::get()
|
|
{
|
|
// Now return the cache
|
|
static Cache singleton;
|
|
return singleton;
|
|
}
|
|
|
|
|
|
Cache::Cache()
|
|
: pimpl_(new Impl)
|
|
{}
|
|
|
|
|
|
Cache::~Cache()
|
|
{}
|
|
|
|
|
|
std::vector<string> Cache::loadableFormats() const
|
|
{
|
|
return Image::loadableFormats();
|
|
}
|
|
|
|
|
|
void Cache::add(FileName const & file) const
|
|
{
|
|
// Is the file in the cache already?
|
|
if (inCache(file)) {
|
|
lyxerr[Debug::GRAPHICS] << "Cache::add(" << file << "):\n"
|
|
<< "The file is already in the cache."
|
|
<< std::endl;
|
|
return;
|
|
}
|
|
|
|
pimpl_->cache[file] = ItemPtr(new CacheItem(file));
|
|
}
|
|
|
|
|
|
void Cache::remove(FileName const & file) const
|
|
{
|
|
CacheType::iterator it = pimpl_->cache.find(file);
|
|
if (it == pimpl_->cache.end())
|
|
return;
|
|
|
|
ItemPtr & item = it->second;
|
|
|
|
if (item.use_count() == 1) {
|
|
// The graphics file is in the cache, but nothing else
|
|
// references it.
|
|
pimpl_->cache.erase(it);
|
|
}
|
|
}
|
|
|
|
|
|
bool Cache::inCache(FileName const & file) const
|
|
{
|
|
return pimpl_->cache.find(file) != pimpl_->cache.end();
|
|
}
|
|
|
|
|
|
Cache::ItemPtr const Cache::item(FileName const & file) const
|
|
{
|
|
CacheType::const_iterator it = pimpl_->cache.find(file);
|
|
if (it == pimpl_->cache.end())
|
|
return ItemPtr();
|
|
|
|
return it->second;
|
|
}
|
|
|
|
} // namespace graphics
|
|
} // namespace lyx
|