]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsCacheItem.C
* src/LaTeX.C
[lyx.git] / src / graphics / GraphicsCacheItem.C
index ee9441d125911d73b6c040cba0e88a9236904d5f..ac99adb2144a2a8eb97aec73c981485cec718260 100644 (file)
@@ -16,6 +16,7 @@
 #include "GraphicsConverter.h"
 #include "GraphicsImage.h"
 
+#include "ConverterCache.h"
 #include "debug.h"
 #include "format.h"
 
 #include <boost/bind.hpp>
 
 
-namespace support = lyx::support;
+namespace lyx {
 
-using support::ChangeExtension;
 using support::FileMonitor;
-using support::IsFileReadable;
-using support::MakeDisplayPath;
-using support::OnlyFilename;
+using support::FileName;
+using support::isFileReadable;
+using support::makeDisplayPath;
+using support::onlyFilename;
 using support::tempName;
 using support::unlink;
 using support::unzipFile;
-using support::unzippedFileName;
 using support::zippedFile;
 
 using std::endl;
 using std::string;
 
 
-namespace lyx {
 namespace graphics {
 
 class CacheItem::Impl : public boost::signals::trackable {
 public:
 
        ///
-       Impl(string const & file);
+       Impl(FileName const & file);
 
        /** Start the image conversion process, checking first that it is
         *  necessary. If it is necessary, then a conversion task is started.
@@ -102,16 +101,18 @@ public:
        void reset();
 
        /// The filename we refer too.
-       string const filename_;
+       FileName const filename_;
        ///
        FileMonitor const monitor_;
 
        /// Is the file compressed?
        bool zipped_;
        /// If so, store the uncompressed file in this temporary file.
-       string unzipped_filename_;
+       FileName unzipped_filename_;
+       /// The target format
+       string to_;
        /// What file are we trying to load?
-       string file_to_load_;
+       FileName file_to_load_;
        /** Should we delete the file after loading? True if the file is
         *  the result of a conversion process.
         */
@@ -136,7 +137,7 @@ public:
 };
 
 
-CacheItem::CacheItem(string const & file)
+CacheItem::CacheItem(FileName const & file)
        : pimpl_(new Impl(file))
 {}
 
@@ -145,7 +146,7 @@ CacheItem::~CacheItem()
 {}
 
 
-string const & CacheItem::filename() const
+FileName const & CacheItem::filename() const
 {
        return pimpl_->filename_;
 }
@@ -199,7 +200,7 @@ boost::signals::connection CacheItem::connect(slot_type const & slot) const
 //------------------------------
 
 
-CacheItem::Impl::Impl(string const & file)
+CacheItem::Impl::Impl(FileName const & file)
        : filename_(file),
          monitor_(file, 2000),
          zipped_(false),
@@ -230,6 +231,7 @@ void CacheItem::Impl::reset()
                unlink(file_to_load_);
        remove_loaded_file_ = false;
        file_to_load_.erase();
+       to_.erase();
 
        if (image_.get())
                image_.reset();
@@ -263,11 +265,11 @@ void CacheItem::Impl::imageConverted(bool success)
        lyxerr[Debug::GRAPHICS] << "Image conversion " << text << '.' << endl;
 
        file_to_load_ = converter_.get() ?
-               converter_->convertedFile() : string();
+               FileName(converter_->convertedFile()) : FileName();
        converter_.reset();
        cc_.disconnect();
 
-       success = !file_to_load_.empty() && IsFileReadable(file_to_load_);
+       success = !file_to_load_.empty() && isFileReadable(file_to_load_);
 
        if (!success) {
                lyxerr[Debug::GRAPHICS] << "Unable to find converted file!"
@@ -280,6 +282,9 @@ void CacheItem::Impl::imageConverted(bool success)
                return;
        }
 
+       // Add the converted file to the file cache
+       ConverterCache::get().add(filename_, to_, file_to_load_);
+
        loadImage();
 }
 
@@ -324,13 +329,7 @@ void CacheItem::Impl::imageLoaded(bool success)
 }
 
 
-} // namespace graphics
-} // namespace lyx
-
-
-namespace {
-
-string const findTargetFormat(string const & from)
+static string const findTargetFormat(string const & from)
 {
        typedef lyx::graphics::Image::FormatList FormatList;
        FormatList const formats = lyx::graphics::Image::loadableFormats();
@@ -367,18 +366,13 @@ string const findTargetFormat(string const & from)
        return string("ppm");
 }
 
-} // anon namespace
-
-
-namespace lyx {
-namespace graphics {
 
 void CacheItem::Impl::convertToDisplayFormat()
 {
        setStatus(Converting);
 
        // First, check that the file exists!
-       if (!IsFileReadable(filename_)) {
+       if (!isFileReadable(filename_)) {
                if (status_ != ErrorNoFile) {
                        setStatus(ErrorNoFile);
                        lyxerr[Debug::GRAPHICS]
@@ -388,24 +382,24 @@ void CacheItem::Impl::convertToDisplayFormat()
        }
 
        // Make a local copy in case we unzip it
-       string filename;
+       FileName filename;
        zipped_ = zippedFile(filename_);
        if (zipped_) {
-               unzipped_filename_ = tempName(string(), filename_);
+               unzipped_filename_ = tempName(FileName(), filename_.toFilesystemEncoding());
                if (unzipped_filename_.empty()) {
                        setStatus(ErrorConverting);
                        lyxerr[Debug::GRAPHICS]
                                << "\tCould not create temporary file." << endl;
                        return;
                }
-               filename = unzipFile(filename_, unzipped_filename_);
+               filename = unzipFile(filename_, unzipped_filename_.toFilesystemEncoding());
        } else
                filename = filename_;
 
-       string const displayed_filename = MakeDisplayPath(filename_);
+       docstring const displayed_filename = makeDisplayPath(filename_.absFilename());
        lyxerr[Debug::GRAPHICS] << "[GrahicsCacheItem::convertToDisplayFormat]\n"
                << "\tAttempting to convert image file: " << filename
-               << "\n\twith displayed filename: " << displayed_filename
+               << "\n\twith displayed filename: " << lyx::to_utf8(displayed_filename)
                << endl;
 
        string const from = formats.getFormatFromFile(filename);
@@ -416,9 +410,9 @@ void CacheItem::Impl::convertToDisplayFormat()
        }
        lyxerr[Debug::GRAPHICS]
                << "\n\tThe file contains " << from << " format data." << endl;
-       string const to = findTargetFormat(from);
+       to_ = findTargetFormat(from);
 
-       if (from == to) {
+       if (from == to_) {
                // No conversion needed!
                lyxerr[Debug::GRAPHICS] << "\tNo conversion needed (from == to)!" << endl;
                file_to_load_ = filename;
@@ -426,13 +420,19 @@ void CacheItem::Impl::convertToDisplayFormat()
                return;
        }
 
-       lyxerr[Debug::GRAPHICS] << "\tConverting it to " << to << " format." << endl;
-       // Take only the filename part of the file, without path or extension.
-       string const temp = ChangeExtension(OnlyFilename(filename), string());
+       if (ConverterCache::get().inCache(filename, to_)) {
+               lyxerr[Debug::GRAPHICS] << "\tNo conversion needed (file in file cache)!"
+                                       << endl;
+               file_to_load_ = ConverterCache::get().cacheName(filename, to_);
+               loadImage();
+               return;
+       }
+
+       lyxerr[Debug::GRAPHICS] << "\tConverting it to " << to_ << " format." << endl;
 
        // Add some stuff to create a uniquely named temporary file.
        // This file is deleted in loadImage after it is loaded into memory.
-       string const to_file_base = tempName(string(), temp);
+       FileName const to_file_base(tempName(FileName(), "CacheItem"));
        remove_loaded_file_ = true;
 
        // Remove the temp file, we only want the name...
@@ -442,7 +442,7 @@ void CacheItem::Impl::convertToDisplayFormat()
        // Connect a signal to this->imageConverted and pass this signal to
        // the graphics converter so that we can load the modified file
        // on completion of the conversion process.
-       converter_.reset(new Converter(filename, to_file_base, from, to));
+       converter_.reset(new Converter(filename, to_file_base.absFilename(), from, to_));
        converter_->connect(boost::bind(&Impl::imageConverted, this, _1));
        converter_->startConversion();
 }