]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsCacheItem.cpp
Merge branch 'rowpainter2'
[lyx.git] / src / graphics / GraphicsCacheItem.cpp
index 3359682ce875e5b79c8cbc16eb391251289a46d7..2e8c415f36b6709d849389281d2a084f6e031a64 100644 (file)
@@ -4,7 +4,7 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Baruch Even
- * \author Herbert Voß
+ * \author Herbert Voß
  * \author Angus Leeming
  *
  * Full author contact details are available in file CREDITS.
 #include "support/FileName.h"
 #include "support/filetools.h"
 #include "support/FileMonitor.h"
+#include "support/lassert.h"
 
-#include <boost/bind.hpp>
+#include "support/bind.h"
+#include "support/TempFile.h"
 
 using namespace std;
 using namespace lyx::support;
@@ -44,7 +46,7 @@ public:
        /**
         *  If no file conversion is needed, then tryDisplayFormat() calls
         *  loadImage() directly.
-        * \return true if a conversion is necessary.
+        * \return true if a conversion is necessary and no error occurred. 
         */
        bool tryDisplayFormat(FileName & filename, string & from);
 
@@ -63,7 +65,7 @@ public:
        /** Load the image into memory. This is called either from
         *  convertToDisplayFormat() direct or from imageConverted().
         */
-       void loadImage();
+       bool loadImage();
 
        /** Get a notification when the image conversion is done.
         *  Connected to a signal on_finish_ which is passed to
@@ -107,7 +109,7 @@ public:
        bool remove_loaded_file_;
 
        /// The image and its loading status.
-       boost::shared_ptr<Image> image_;
+       shared_ptr<Image> image_;
        ///
        ImageStatus status_;
 
@@ -145,7 +147,11 @@ bool CacheItem::tryDisplayFormat() const
                pimpl_->reset();
        FileName filename;
        string from;
-       return pimpl_->tryDisplayFormat(filename, from);
+       bool const conversion_needed = pimpl_->tryDisplayFormat(filename, from);
+       bool const success = status() == Loaded && !conversion_needed;
+       if (!success)
+               pimpl_->reset();
+       return success;
 }
 
 
@@ -204,7 +210,7 @@ CacheItem::Impl::Impl(FileName const & file)
          remove_loaded_file_(false),
          status_(WaitingToLoad)
 {
-       monitor_.connect(boost::bind(&Impl::startLoading, this));
+       monitor_.connect(bind(&Impl::startLoading, this));
 }
 
 
@@ -230,7 +236,7 @@ void CacheItem::Impl::reset()
        file_to_load_.erase();
        to_.erase();
 
-       if (image_.get())
+       if (image_)
                image_.reset();
 
        status_ = WaitingToLoad;
@@ -278,18 +284,17 @@ void CacheItem::Impl::imageConverted(bool success)
        // Add the converted file to the file cache
        ConverterCache::get().add(filename_, to_, file_to_load_);
 
-       loadImage();
+       setStatus(loadImage() ? Loaded : ErrorLoading);
 }
 
 
 // This function gets called from the callback after the image has been
 // converted successfully.
-void CacheItem::Impl::loadImage()
+bool CacheItem::Impl::loadImage()
 {
-       setStatus(Loading);
        LYXERR(Debug::GRAPHICS, "Loading image.");
 
-       image_.reset(Image::newImage());
+       image_.reset(newImage());
 
        bool success = image_->load(file_to_load_);
        string const text = success ? "succeeded" : "failed";
@@ -302,13 +307,7 @@ void CacheItem::Impl::loadImage()
        if (remove_loaded_file_ && unzipped_filename_ != file_to_load_)
                file_to_load_.removeFile();
 
-       if (!success) {
-               setStatus(ErrorLoading);
-               return;
-       }
-
-       // Inform the outside world.
-       setStatus(Loaded);
+       return success;
 }
 
 
@@ -318,7 +317,7 @@ static string const findTargetFormat(string const & from)
        FormatList const & formats = Cache::get().loadableFormats();
 
         // There must be a format to load from.
-       LASSERT(!formats.empty(), /**/);
+       LASSERT(!formats.empty(), return string());
 
        // Use the standard converter if we don't know the format to load
        // from.
@@ -351,39 +350,44 @@ static string const findTargetFormat(string const & from)
 
 bool CacheItem::Impl::tryDisplayFormat(FileName & filename, string & from)
 {
-       setStatus(Converting);
-
        // First, check that the file exists!
+       filename_.refresh();
        if (!filename_.isReadableFile()) {
                if (status_ != ErrorNoFile) {
-                       setStatus(ErrorNoFile);
+                       status_ = ErrorNoFile;
                        LYXERR(Debug::GRAPHICS, "\tThe file is not readable");
                }
-               return true;
+               return false;
        }
 
-       zipped_ = filename_.isZippedFile();
+       zipped_ = formats.isZippedFile(filename_);
        if (zipped_) {
-               unzipped_filename_ = FileName::tempName(
-                       filename_.toFilesystemEncoding());
+               string tempname = unzippedFileName(filename_.toFilesystemEncoding());
+               string const ext = getExtension(tempname);
+               tempname = changeExtension(tempname, "") + "-XXXXXX";
+               if (!ext.empty())
+                       tempname = addExtension(tempname, ext);
+               TempFile tempfile(tempname);
+               tempfile.setAutoRemove(false);
+               unzipped_filename_ = tempfile.name();
                if (unzipped_filename_.empty()) {
-                       setStatus(ErrorConverting);
+                       status_ = ErrorConverting;
                        LYXERR(Debug::GRAPHICS, "\tCould not create temporary file.");
-                       return true;
+                       return false;
                }
                filename = unzipFile(filename_, unzipped_filename_.toFilesystemEncoding());
        } else {
                filename = filename_;
        }
 
-       docstring const displayed_filename = makeDisplayPath(filename_.absFilename());
+       docstring const displayed_filename = makeDisplayPath(filename_.absFileName());
        LYXERR(Debug::GRAPHICS, "[CacheItem::Impl::convertToDisplayFormat]\n"
                << "\tAttempting to convert image file: " << filename
                << "\n\twith displayed filename: " << to_utf8(displayed_filename));
 
        from = formats.getFormatFromFile(filename);
        if (from.empty()) {
-               setStatus(ErrorConverting);
+               status_ = ErrorConverting;
                LYXERR(Debug::GRAPHICS, "\tCould not determine file format.");
        }
        LYXERR(Debug::GRAPHICS, "\n\tThe file contains " << from << " format data.");
@@ -393,17 +397,17 @@ bool CacheItem::Impl::tryDisplayFormat(FileName & filename, string & from)
                // No conversion needed!
                LYXERR(Debug::GRAPHICS, "\tNo conversion needed (from == to)!");
                file_to_load_ = filename;
-               loadImage();
-               return true;
+               status_ = loadImage() ? Loaded : ErrorLoading;
+               return false;
        }
 
        if (ConverterCache::get().inCache(filename, to_)) {
                LYXERR(Debug::GRAPHICS, "\tNo conversion needed (file in file cache)!");
                file_to_load_ = ConverterCache::get().cacheName(filename, to_);
-               loadImage();
-               return true;
+               status_ = loadImage() ? Loaded : ErrorLoading;
+               return false;
        }
-       return false;
+       return true;
 }
 
 
@@ -414,23 +418,27 @@ void CacheItem::Impl::convertToDisplayFormat()
        // Make a local copy in case we unzip it
        FileName filename;
        string from;
-       if (tryDisplayFormat(filename, from))
+       if (!tryDisplayFormat(filename, from)) {
+               // The image status has changed, tell it to the outside world.
+               statusChanged();
                return;
+       }
+
+       // We will need a conversion, tell it to the outside world.
+       setStatus(Converting);
 
        // Add some stuff to create a uniquely named temporary file.
        // This file is deleted in loadImage after it is loaded into memory.
-       FileName const to_file_base = FileName::tempName("CacheItem");
+       TempFile tempfile("CacheItem");
+       tempfile.setAutoRemove(false);
+       FileName const to_file_base = tempfile.name();
        remove_loaded_file_ = true;
 
-       // Remove the temp file, we only want the name...
-       // FIXME: This is unsafe!
-       to_file_base.removeFile();
-
        // 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.absFilename(), from, to_));
-       converter_->connect(boost::bind(&Impl::imageConverted, this, _1));
+       converter_.reset(new Converter(filename, to_file_base.absFileName(), from, to_));
+       converter_->connect(bind(&Impl::imageConverted, this, _1));
        converter_->startConversion();
 }