]> git.lyx.org Git - lyx.git/blob - src/ConverterCache.cpp
'using namespace lyx::support' instead of 'using support::xxx'
[lyx.git] / src / ConverterCache.cpp
1 /**
2  * \file ConverterCache.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Baruch Even
7  * \author Angus Leeming
8  * \author Georg Baum
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "ConverterCache.h"
16
17 #include "Format.h"
18 #include "Lexer.h"
19 #include "LyXRC.h"
20 #include "Mover.h"
21
22 #include "support/convert.h"
23 #include "support/debug.h"
24 #include "support/filetools.h"
25 #include "support/lyxlib.h"
26 #include "support/lyxtime.h"
27 #include "support/Package.h"
28
29 #include <boost/assert.hpp>
30 #include <boost/crc.hpp>
31
32 #include <algorithm>
33 #include <fstream>
34 #include <iomanip>
35 #include <map>
36 #include <sstream>
37
38 using namespace std;
39 using namespace lyx::support;
40
41 namespace lyx {
42
43 namespace {
44
45 unsigned long do_crc(string const & s)
46 {
47         boost::crc_32_type crc;
48         crc = std::for_each(s.begin(), s.end(), crc);
49         return crc.checksum();
50 }
51
52
53 static FileName cache_dir;
54
55
56 class CacheItem {
57 public:
58         CacheItem() {}
59         CacheItem(FileName const & orig_from, string const & to_format,
60                   time_t t, unsigned long c)
61                 : timestamp(t), checksum(c)
62         {
63                 std::ostringstream os;
64                 os << std::setw(10) << std::setfill('0') << do_crc(orig_from.absFilename())
65                    << '-' << to_format;
66                 cache_name = FileName(addName(cache_dir.absFilename(), os.str()));
67                 LYXERR(Debug::FILES, "Add file cache item " << orig_from
68                                      << ' ' << to_format << ' ' << cache_name
69                                      << ' ' << long(timestamp) << ' ' << checksum << '.');
70         }
71         ~CacheItem() {}
72         FileName cache_name;
73         time_t timestamp;
74         unsigned long checksum;
75 };
76
77 }
78
79
80 /** The cache contains one item per orig file and target format, so use a
81  *  nested map to find the cache item quickly by filename and format.
82  */
83 typedef std::map<string, CacheItem> FormatCacheType;
84 class FormatCache {
85 public:
86         /// Format of the source file
87         string from_format;
88         /// Cache target format -> item to quickly find the item by format
89         FormatCacheType cache;
90 };
91 typedef std::map<FileName, FormatCache> CacheType;
92
93
94 class ConverterCache::Impl {
95 public:
96         ///
97         void readIndex();
98         ///
99         void writeIndex();
100         ///
101         CacheItem * find(FileName const & from, string const & format);
102         CacheType cache;
103 };
104
105
106 void ConverterCache::Impl::readIndex()
107 {
108         time_t const now = current_time();
109         FileName const index(addName(cache_dir.absFilename(), "index"));
110         std::ifstream is(index.toFilesystemEncoding().c_str());
111         Lexer lex(0, 0);
112         lex.setStream(is);
113         while (lex.isOK()) {
114                 if (!lex.next(true))
115                         break;
116                 string const orig_from = lex.getString();
117                 if (!lex.next())
118                         break;
119                 string const to_format = lex.getString();
120                 if (!lex.next())
121                         break;
122                 time_t const timestamp =
123                         convert<unsigned long>(lex.getString());
124                 if (!lex.next())
125                         break;
126                 unsigned long const checksum =
127                         convert<unsigned long>(lex.getString());
128                 FileName const orig_from_name(orig_from);
129                 CacheItem item(orig_from_name, to_format, timestamp, checksum);
130
131                 // Don't cache files that do not exist anymore
132                 if (!orig_from_name.exists()) {
133                         LYXERR(Debug::FILES, "Not caching file `"
134                                 << orig_from << "' (does not exist anymore).");
135                         item.cache_name.removeFile();
136                         continue;
137                 }
138
139                 // Don't add items that are not in the cache anymore
140                 // This can happen if two instances of LyX are running
141                 // at the same time and update the index file independantly.
142                 if (!item.cache_name.exists()) {
143                         LYXERR(Debug::FILES, "Not caching file `" << orig_from
144                                 << "' (cached copy does not exist anymore).");
145                         continue;
146                 }
147
148                 // Delete the cached file if it is too old
149                 if (difftime(now, item.cache_name.lastModified())
150                                 > lyxrc.converter_cache_maxage) {
151                         LYXERR(Debug::FILES, "Not caching file `"
152                                 << orig_from << "' (too old).");
153                         item.cache_name.removeFile();
154                         continue;
155                 }
156
157                 FormatCache & format_cache = cache[orig_from_name];
158                 if (format_cache.from_format.empty())
159                         format_cache.from_format =
160                                 formats.getFormatFromFile(orig_from_name);
161                 format_cache.cache[to_format] = item;
162         }
163         is.close();
164 }
165
166
167 void ConverterCache::Impl::writeIndex()
168 {
169         FileName const index(addName(cache_dir.absFilename(), "index"));
170         std::ofstream os(index.toFilesystemEncoding().c_str());
171         os.close();
172         if (!lyx::support::chmod(index, 0600))
173                 return;
174         os.open(index.toFilesystemEncoding().c_str());
175         CacheType::iterator it1 = cache.begin();
176         CacheType::iterator const end1 = cache.end();
177         for (; it1 != end1; ++it1) {
178                 FormatCacheType const & format_cache = it1->second.cache;
179                 FormatCacheType::const_iterator it2 = format_cache.begin();
180                 FormatCacheType::const_iterator const end2 = format_cache.end();
181                 for (; it2 != end2; ++it2)
182                         os << Lexer::quoteString(it1->first.absFilename())
183                            << ' ' << it2->first << ' '
184                            << it2->second.timestamp << ' '
185                            << it2->second.checksum << '\n';
186         }
187         os.close();
188 }
189
190
191 CacheItem * ConverterCache::Impl::find(FileName const & from,
192                 string const & format)
193 {
194         if (!lyxrc.use_converter_cache)
195                 return 0;
196         CacheType::iterator const it1 = cache.find(from);
197         if (it1 == cache.end())
198                 return 0;
199         FormatCacheType & format_cache = it1->second.cache;
200         FormatCacheType::iterator const it2 = format_cache.find(format);
201         if (it2 == format_cache.end())
202                 return 0;
203         return &(it2->second);
204 }
205
206
207 /////////////////////////////////////////////////////////////////////
208 //
209 // ConverterCache
210 //
211 /////////////////////////////////////////////////////////////////////
212
213 ConverterCache::ConverterCache()
214         : pimpl_(new Impl)
215 {}
216
217
218 ConverterCache::~ConverterCache()
219 {
220         if (!lyxrc.use_converter_cache)
221                 return;
222         pimpl_->writeIndex();
223         delete pimpl_;
224 }
225
226
227 ConverterCache & ConverterCache::get()
228 {
229         // Now return the cache
230         static ConverterCache singleton;
231         return singleton;
232 }
233
234
235 void ConverterCache::init()
236 {
237         if (!lyxrc.use_converter_cache)
238                 return;
239         // We do this here and not in the constructor because package() gets
240         // initialized after all static variables.
241         cache_dir = FileName(addName(support::package().user_support().absFilename(), "cache"));
242         if (!cache_dir.exists())
243                 if (support::mkdir(cache_dir, 0700) != 0) {
244                         lyxerr << "Could not create cache directory `"
245                                << cache_dir << "'." << std::endl;
246                         exit(EXIT_FAILURE);
247                 }
248         get().pimpl_->readIndex();
249 }
250
251
252 void ConverterCache::add(FileName const & orig_from, string const & to_format,
253                 FileName const & converted_file) const
254 {
255         if (!lyxrc.use_converter_cache || orig_from.empty() ||
256             converted_file.empty())
257                 return;
258         LYXERR(Debug::FILES, ' ' << orig_from
259                              << ' ' << to_format << ' ' << converted_file);
260
261         // FIXME: Should not hardcode this (see bug 3819 for details)
262         if (to_format == "pstex") {
263                 FileName const converted_eps(support::changeExtension(converted_file.absFilename(), "eps"));
264                 add(orig_from, "eps", converted_eps);
265         } else if (to_format == "pdftex") {
266                 FileName const converted_pdf(support::changeExtension(converted_file.absFilename(), "pdf"));
267                 add(orig_from, "pdf", converted_pdf);
268         }
269
270         // Is the file in the cache already?
271         CacheItem * item = pimpl_->find(orig_from, to_format);
272
273         time_t const timestamp = orig_from.lastModified();
274         Mover const & mover = getMover(to_format);
275         if (item) {
276                 LYXERR(Debug::FILES, "ConverterCache::add(" << orig_from << "):\n"
277                                         "The file is already in the cache.");
278                 // First test for timestamp
279                 if (timestamp == item->timestamp) {
280                         LYXERR(Debug::FILES, "Same timestamp.");
281                         return;
282                 }
283                 // Maybe the contents is still the same?
284                 item->timestamp = timestamp;
285                 unsigned long const checksum = orig_from.checksum();
286                 if (checksum == item->checksum) {
287                         LYXERR(Debug::FILES, "Same checksum.");
288                         return;
289                 }
290                 item->checksum = checksum;
291                 if (!mover.copy(converted_file, item->cache_name,
292                                 support::onlyFilename(item->cache_name.absFilename()), 0600)) {
293                         LYXERR(Debug::FILES, "ConverterCache::add(" << orig_from << "):\n"
294                                                 "Could not copy file.");
295                 }
296         } else {
297                 CacheItem new_item(orig_from, to_format, timestamp,
298                                 orig_from.checksum());
299                 if (mover.copy(converted_file, new_item.cache_name,
300                                support::onlyFilename(new_item.cache_name.absFilename()), 0600)) {
301                         FormatCache & format_cache = pimpl_->cache[orig_from];
302                         if (format_cache.from_format.empty())
303                                 format_cache.from_format =
304                                         formats.getFormatFromFile(orig_from);
305                         format_cache.cache[to_format] = new_item;
306                 } else
307                         LYXERR(Debug::FILES, "ConverterCache::add(" << orig_from << "):\n"
308                                                 "Could not copy file.");
309         }
310 }
311
312
313 void ConverterCache::remove(FileName const & orig_from,
314                 string const & to_format) const
315 {
316         if (!lyxrc.use_converter_cache || orig_from.empty())
317                 return;
318         LYXERR(Debug::FILES, orig_from << ' ' << to_format);
319
320         CacheType::iterator const it1 = pimpl_->cache.find(orig_from);
321         if (it1 == pimpl_->cache.end())
322                 return;
323         FormatCacheType & format_cache = it1->second.cache;
324         FormatCacheType::iterator const it2 = format_cache.find(to_format);
325         if (it2 == format_cache.end())
326                 return;
327
328         format_cache.erase(it2);
329         if (format_cache.empty())
330                 pimpl_->cache.erase(it1);
331 }
332
333
334 void ConverterCache::remove_all(string const & from_format,
335                 string const & to_format) const
336 {
337         if (!lyxrc.use_converter_cache)
338                 return;
339         CacheType::iterator it1 = pimpl_->cache.begin();
340         while (it1 != pimpl_->cache.end()) {
341                 if (it1->second.from_format != from_format) {
342                         ++it1;
343                         continue;
344                 }
345                 FormatCacheType & format_cache = it1->second.cache;
346                 FormatCacheType::iterator it2 = format_cache.begin();
347                 while (it2 != format_cache.end()) {
348                         if (it2->first == to_format) {
349                                 LYXERR(Debug::FILES, "Removing file cache item "
350                                         << it1->first << ' ' << to_format);
351                                 it2->second.cache_name.removeFile();
352                                 format_cache.erase(it2);
353                                 // Have to start over again since items in a
354                                 // map are not ordered
355                                 it2 = format_cache.begin();
356                         } else {
357                                 ++it2;
358                         }
359                 }
360                 if (format_cache.empty()) {
361                         pimpl_->cache.erase(it1);
362                         // Have to start over again since items in a map are
363                         // not ordered
364                         it1 = pimpl_->cache.begin();
365                 } else {
366                         ++it1;
367                 }
368         }
369         pimpl_->writeIndex();
370 }
371
372
373 bool ConverterCache::inCache(FileName const & orig_from,
374                 string const & to_format) const
375 {
376         if (!lyxrc.use_converter_cache || orig_from.empty())
377                 return false;
378         LYXERR(Debug::FILES, orig_from << ' ' << to_format);
379
380         CacheItem * const item = pimpl_->find(orig_from, to_format);
381         if (!item) {
382                 LYXERR(Debug::FILES, "not in cache.");
383                 return false;
384         }
385         time_t const timestamp = orig_from.lastModified();
386         if (item->timestamp == timestamp) {
387                 LYXERR(Debug::FILES, "identical timestamp.");
388                 return true;
389         }
390         if (item->checksum == orig_from.checksum()) {
391                 item->timestamp = timestamp;
392                 LYXERR(Debug::FILES, "identical checksum.");
393                 return true;
394         }
395         LYXERR(Debug::FILES, "in cache, but too old.");
396         return false;
397 }
398
399
400 FileName const & ConverterCache::cacheName(FileName const & orig_from,
401                 string const & to_format) const
402 {
403         LYXERR(Debug::FILES, orig_from << ' ' << to_format);
404
405         CacheItem * const item = pimpl_->find(orig_from, to_format);
406         BOOST_ASSERT(item);
407         return item->cache_name;
408 }
409
410
411 bool ConverterCache::copy(FileName const & orig_from, string const & to_format,
412                 FileName const & dest) const
413 {
414         if (!lyxrc.use_converter_cache || orig_from.empty() || dest.empty())
415                 return false;
416         LYXERR(Debug::FILES, orig_from << ' ' << to_format << ' ' << dest);
417
418         // FIXME: Should not hardcode this (see bug 3819 for details)
419         if (to_format == "pstex") {
420                 FileName const dest_eps(support::changeExtension(dest.absFilename(), "eps"));
421                 if (!copy(orig_from, "eps", dest_eps))
422                         return false;
423         } else if (to_format == "pdftex") {
424                 FileName const dest_pdf(support::changeExtension(dest.absFilename(), "pdf"));
425                 if (!copy(orig_from, "pdf", dest_pdf))
426                         return false;
427         }
428
429         CacheItem * const item = pimpl_->find(orig_from, to_format);
430         BOOST_ASSERT(item);
431         Mover const & mover = getMover(to_format);
432         return mover.copy(item->cache_name, dest,
433                           support::onlyFilename(dest.absFilename()));
434 }
435
436 } // namespace lyx