]> git.lyx.org Git - lyx.git/blob - src/graphics/GraphicsCacheItem.C
Removed annoying popup.
[lyx.git] / src / graphics / GraphicsCacheItem.C
1 /* This file is part of
2  * =================================================
3  * 
4  *          LyX, The Document Processor
5  *          Copyright 1995 Matthias Ettrich.
6  *          Copyright 1995-2001 The LyX Team.
7  *
8  *          This file Copyright 2000 Baruch Even
9  * ================================================= */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "graphics/GraphicsCache.h"
18 #include "graphics/GraphicsCacheItem.h"
19 #include "frontends/support/LyXImage.h"
20 #include "graphics/ImageLoaderXPM.h"
21 #include "converter.h"
22 #include "support/filetools.h"
23 #include "support/lyxlib.h"
24 #include "lyx_gui_misc.h"
25 #include "debug.h"
26 #include "support/LAssert.h"
27 #include "gettext.h"
28
29 using std::endl;
30
31 /*
32  * The order of conversion:
33  *
34  * The c-tor calls convertImage()
35  * 
36  * convertImage() verifies that we need to do conversion, if not it will just
37  * call the loadImage()
38  * if conversion is needed, it will initiate the conversion.
39  *
40  * When the conversion is completed imageConverted() is called, which in turn
41  * calls loadImage().
42  *
43  * Since we currently do everything synchronously, convertImage() calls
44  * imageConverted() right after it does the call to the conversion process.
45 */
46
47 GraphicsCacheItem::GraphicsCacheItem(string const & filename)
48         : imageStatus_(GraphicsCacheItem::Loading)
49 {
50         filename_ = filename;
51         
52         bool success = convertImage(filename);
53         if (! success) // Conversion failed miserably (couldn't even start).
54                 setStatus(ErrorConverting);
55 }
56
57
58 GraphicsCacheItem::~GraphicsCacheItem()
59 {}
60
61
62 GraphicsCacheItem::ImageStatus 
63 GraphicsCacheItem::getImageStatus() const { return imageStatus_; }
64
65
66 void GraphicsCacheItem::setStatus(ImageStatus new_status)
67 {
68         imageStatus_ = new_status;
69 }
70
71
72 LyXImage * 
73 GraphicsCacheItem::getImage() const { return image_.get(); }
74
75
76 void
77 GraphicsCacheItem::imageConverted(bool success)
78 {
79         lyxerr << "imageConverted, status=" << success << endl;
80
81         if (! success) {
82                 lyxerr << "(GraphicsCacheItem::imageConverter) "
83                         "Error converting image." << endl;
84                 setStatus(GraphicsCacheItem::ErrorConverting);
85                 return;
86         }
87
88         // Do the actual image loading from file to memory.
89         loadImage();    
90 }
91
92
93 namespace {
94
95 string const findTargetFormat(string const & from)
96 {
97         typedef ImageLoader::FormatList FormatList;
98         FormatList formats = ImageLoaderXPM().loadableFormats();
99         lyx::Assert(formats.size() > 0); // There must be a format to load from.
100
101         FormatList::const_iterator iter = formats.begin();
102         FormatList::const_iterator end  = formats.end();
103
104         for (; iter != end; ++iter) {
105                 if (converters.IsReachable(from, *iter))
106                         break;
107         }
108         
109         if (iter == end) {
110                 // We do not know how to convert the image to something loadable.
111                 lyxerr << "ERROR: Do not know how to convert image." << std::endl;
112                 return string();
113         }
114
115         return (*iter);
116 }
117
118 } // anon namespace
119
120         
121 bool
122 GraphicsCacheItem::convertImage(string const & filename)
123 {
124         string const from = GetExtension(filename);
125         string const to = findTargetFormat(from);
126         if (to.empty()) 
127                 return false;
128         
129         // Take only the filename part of the file, without path or extension.
130         string temp = OnlyFilename(filename);
131         temp = ChangeExtension(filename, string());
132         
133         // Add some stuff to have it a unique temp file.
134         // This tempfile is deleted in loadImage after it is loaded to memory.
135         tempfile = lyx::tempName(string(), temp);
136         // Remove the temp file, we only want the name...
137         lyx::unlink(tempfile);
138
139         bool result = converters.Convert(0, filename, tempfile, from, to);
140         tempfile.append(".xpm");
141
142         // For now we are synchronous
143         imageConverted(result);
144
145         // Cleanup after the conversion.
146         lyx::unlink(tempfile);
147         tempfile = string();
148
149         return true;
150 }
151
152
153 // This function gets called from the callback after the image has been
154 // converted successfully.
155 void
156 GraphicsCacheItem::loadImage()
157 {
158         lyxerr << "Loading XPM Image... ";
159
160         ImageLoaderXPM imageLoader;
161         if (imageLoader.loadImage(tempfile) == ImageLoader::OK) {
162                 lyxerr << "Success." << endl;
163                 image_.reset(imageLoader.getImage());
164                 setStatus(GraphicsCacheItem::Loaded);
165         } else {
166                 lyxerr << "Loading " << tempfile << "Failed" << endl;
167                 setStatus(GraphicsCacheItem::ErrorReading);
168         }
169 }