]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsCacheItem.C
* src/LaTeX.C
[lyx.git] / src / graphics / GraphicsCacheItem.C
index 68eb0a4c1dc746a4275556c0a0ccdb5dde689dd6..ac99adb2144a2a8eb97aec73c981485cec718260 100644 (file)
@@ -16,7 +16,9 @@
 #include "GraphicsConverter.h"
 #include "GraphicsImage.h"
 
+#include "ConverterCache.h"
 #include "debug.h"
+#include "format.h"
 
 #include "support/filetools.h"
 #include "support/FileMonitor.h"
 
 #include <boost/bind.hpp>
 
-namespace support = lyx::support;
 
-using support::ChangeExtension;
+namespace lyx {
+
 using support::FileMonitor;
-using support::IsFileReadable;
-using support::MakeDisplayPath;
-using support::OnlyFilename;
-using support::getExtFromContents;
+using support::FileName;
+using support::isFileReadable;
+using support::makeDisplayPath;
+using support::onlyFilename;
 using support::tempName;
 using support::unlink;
 using support::unzipFile;
 using support::zippedFile;
 
 using std::endl;
+using std::string;
+
 
-namespace lyx {
 namespace graphics {
 
-struct CacheItem::Impl : public boost::signals::trackable {
+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.
@@ -97,16 +101,18 @@ struct CacheItem::Impl : public boost::signals::trackable {
        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.
         */
@@ -118,7 +124,7 @@ struct CacheItem::Impl : public boost::signals::trackable {
        ImageStatus status_;
 
        /// This signal is emitted when the image loading status changes.
-       boost::signal0<void> statusChanged;
+       boost::signal<void()> statusChanged;
 
        /// The connection to the signal Image::finishedLoading
        boost::signals::connection cl_;
@@ -131,7 +137,7 @@ struct CacheItem::Impl : public boost::signals::trackable {
 };
 
 
-CacheItem::CacheItem(string const & file)
+CacheItem::CacheItem(FileName const & file)
        : pimpl_(new Impl(file))
 {}
 
@@ -140,7 +146,7 @@ CacheItem::~CacheItem()
 {}
 
 
-string const & CacheItem::filename() const
+FileName const & CacheItem::filename() const
 {
        return pimpl_->filename_;
 }
@@ -194,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),
@@ -225,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();
@@ -258,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!"
@@ -275,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();
 }
 
@@ -319,20 +329,19 @@ 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();
 
-       // There must be a format to load from.
+        // There must be a format to load from.
        BOOST_ASSERT(!formats.empty());
 
+       // Use the standard converter if we don't know the format to load
+       // from.
+       if (from.empty())
+               return string("ppm");
+
        // First ascertain if we can load directly with no conversion
        FormatList::const_iterator it  = formats.begin();
        FormatList::const_iterator end = formats.end();
@@ -357,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]
@@ -378,20 +382,37 @@ void CacheItem::Impl::convertToDisplayFormat()
        }
 
        // Make a local copy in case we unzip it
-       string const filename = zippedFile(filename_) ?
-               unzipFile(filename_) : filename_;
-       string const displayed_filename = MakeDisplayPath(filename_);
+       FileName filename;
+       zipped_ = zippedFile(filename_);
+       if (zipped_) {
+               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_.toFilesystemEncoding());
+       } else
+               filename = 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 from = getExtFromContents(filename);
+       string const from = formats.getFormatFromFile(filename);
+       if (from.empty()) {
+               setStatus(ErrorConverting);
+               lyxerr[Debug::GRAPHICS]
+                       << "\tCould not determine file format." << endl;
+       }
        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;
@@ -399,22 +420,29 @@ 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...
+       // FIXME: This is unsafe!
        unlink(to_file_base);
 
        // 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();
 }