]> git.lyx.org Git - lyx.git/blob - src/support/FileName.cpp
gcc compile fix: vector::insert() requires an iterator, not a const_iterator.
[lyx.git] / src / support / FileName.cpp
1 /**
2  * \file FileName.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "support/FileName.h"
14 #include "support/FileNameList.h"
15
16 #include "support/convert.h"
17 #include "support/debug.h"
18 #include "support/filetools.h"
19 #include "support/lassert.h"
20 #include "support/lstrings.h"
21 #include "support/qstring_helpers.h"
22 #include "support/os.h"
23 #include "support/Package.h"
24 #include "support/qstring_helpers.h"
25
26 #include <QDateTime>
27 #include <QDir>
28 #include <QFile>
29 #include <QFileInfo>
30 #include <QList>
31 #include <QTemporaryFile>
32 #include <QTime>
33
34 #include <boost/crc.hpp>
35 #include <boost/scoped_array.hpp>
36
37 #include <algorithm>
38 #include <iterator>
39 #include <fstream>
40 #include <iomanip>
41 #include <map>
42 #include <sstream>
43
44 #ifdef HAVE_SYS_TYPES_H
45 # include <sys/types.h>
46 #endif
47 #ifdef HAVE_SYS_STAT_H
48 # include <sys/stat.h>
49 #endif
50 #ifdef HAVE_UNISTD_H
51 # include <unistd.h>
52 #endif
53 #ifdef HAVE_DIRECT_H
54 # include <direct.h>
55 #endif
56 #ifdef _WIN32
57 # include <windows.h>
58 #endif
59
60 #include <cerrno>
61 #include <fcntl.h>
62
63 #if defined(HAVE_MKSTEMP) && ! defined(HAVE_DECL_MKSTEMP)
64 extern "C" int mkstemp(char *);
65 #endif
66
67 #if !defined(HAVE_MKSTEMP) && defined(HAVE_MKTEMP)
68 # ifdef HAVE_IO_H
69 #  include <io.h>
70 # endif
71 # ifdef HAVE_PROCESS_H
72 #  include <process.h>
73 # endif
74 #endif
75
76 // Three implementations of checksum(), depending on having mmap support or not.
77 #if defined(HAVE_MMAP) && defined(HAVE_MUNMAP)
78 #define SUM_WITH_MMAP
79 #include <sys/mman.h>
80 #endif // SUM_WITH_MMAP
81
82 using namespace std;
83
84 // OK, this is ugly, but it is the only workaround I found to compile
85 // with gcc (any version) on a system which uses a non-GNU toolchain.
86 // The problem is that gcc uses a weak symbol for a particular
87 // instantiation and that the system linker usually does not
88 // understand those weak symbols (seen on HP-UX, tru64, AIX and
89 // others). Thus we force an explicit instanciation of this particular
90 // template (JMarc)
91 template struct boost::detail::crc_table_t<32, 0x04C11DB7, true>;
92
93 namespace lyx {
94 namespace support {
95
96 /////////////////////////////////////////////////////////////////////
97 //
98 // FileName::Private
99 //
100 /////////////////////////////////////////////////////////////////////
101
102 struct FileName::Private
103 {
104         Private() {}
105
106         Private(string const & abs_filename) : fi(toqstr(abs_filename))
107         {
108                 fi.setCaching(fi.exists() ? true : false);
109         }
110         ///
111         inline void refresh() 
112         {
113 // There seems to be a bug in Qt >= 4.2.0, at least, that causes problems with
114 // QFileInfo::refresh() on *nix. So we recreate the object in that case.
115 // FIXME: When Trolltech fixes the bug, we will have to replace 0x999999 below
116 // with the actual working minimum version.
117 #if defined(_WIN32) || (QT_VERSION >= 0x999999)
118                 fi.refresh();
119 #else
120                 fi = QFileInfo(fi.absoluteFilePath());
121 #endif
122         }
123
124         ///
125         QFileInfo fi;
126 };
127
128 /////////////////////////////////////////////////////////////////////
129 //
130 // FileName
131 //
132 /////////////////////////////////////////////////////////////////////
133
134
135 FileName::FileName() : d(new Private)
136 {
137 }
138
139
140 FileName::FileName(string const & abs_filename)
141         : d(abs_filename.empty() ? new Private : new Private(abs_filename))
142 {
143 }
144
145
146 FileName::~FileName()
147 {
148         delete d;
149 }
150
151
152 FileName::FileName(FileName const & rhs) : d(new Private)
153 {
154         d->fi = rhs.d->fi;
155 }
156
157
158 FileName::FileName(FileName const & rhs, string const & suffix) : d(new Private)
159 {
160         set(rhs, suffix);
161 }
162
163
164 FileName & FileName::operator=(FileName const & rhs)
165 {
166         d->fi = rhs.d->fi;
167         return *this;
168 }
169
170
171 bool FileName::empty() const
172 {
173         return d->fi.absoluteFilePath().isEmpty();
174 }
175
176
177 bool FileName::isAbsolute() const
178 {
179         return d->fi.isAbsolute();
180 }
181
182
183 string FileName::absFilename() const
184 {
185         return fromqstr(d->fi.absoluteFilePath());
186 }
187
188
189 void FileName::set(string const & name)
190 {
191         d->fi.setFile(toqstr(name));
192 }
193
194
195 void FileName::set(FileName const & rhs, string const & suffix)
196 {
197         if (!rhs.d->fi.isDir())
198                 d->fi.setFile(rhs.d->fi.filePath() + toqstr(suffix));
199         else
200                 d->fi.setFile(QDir(rhs.d->fi.absoluteFilePath()), toqstr(suffix));
201 }
202
203
204 void FileName::erase()
205 {
206         d->fi = QFileInfo();
207 }
208
209
210 bool FileName::copyTo(FileName const & name) const
211 {
212         LYXERR(Debug::FILES, "Copying " << name);
213         QFile::remove(name.d->fi.absoluteFilePath());
214         bool success = QFile::copy(d->fi.absoluteFilePath(), name.d->fi.absoluteFilePath());
215         if (!success)
216                 LYXERR0("FileName::copyTo(): Could not copy file "
217                         << *this << " to " << name);
218         return success;
219 }
220
221
222 bool FileName::renameTo(FileName const & name) const
223 {
224         bool success = QFile::rename(d->fi.absoluteFilePath(), name.d->fi.absoluteFilePath());
225         if (!success)
226                 LYXERR0("Could not rename file " << *this << " to " << name);
227         return success;
228 }
229
230
231 bool FileName::moveTo(FileName const & name) const
232 {
233         QFile::remove(name.d->fi.absoluteFilePath());
234
235         bool success = QFile::rename(d->fi.absoluteFilePath(),
236                 name.d->fi.absoluteFilePath());
237         if (!success)
238                 LYXERR0("Could not move file " << *this << " to " << name);
239         return success;
240 }
241
242
243 bool FileName::changePermission(unsigned long int mode) const
244 {
245 #if defined (HAVE_CHMOD) && defined (HAVE_MODE_T)
246         if (::chmod(toFilesystemEncoding().c_str(), mode_t(mode)) != 0) {
247                 LYXERR0("File " << *this << ": cannot change permission to "
248                         << mode << ".");
249                 return false;
250         }
251 #endif
252         return true;
253 }
254
255
256 string FileName::toFilesystemEncoding() const
257 {
258         // FIXME: This doesn't work on Windows for non ascii file names with Qt < 4.4.
259         // Provided that Windows package uses Qt4.4, this isn't a problem.
260         QByteArray const encoded = QFile::encodeName(d->fi.absoluteFilePath());
261         return string(encoded.begin(), encoded.end());
262 }
263
264
265 FileName FileName::fromFilesystemEncoding(string const & name)
266 {
267         QByteArray const encoded(name.c_str(), name.length());
268         return FileName(fromqstr(QFile::decodeName(encoded)));
269 }
270
271
272 bool FileName::exists() const
273 {
274         return d->fi.exists();
275 }
276
277
278 bool FileName::isSymLink() const
279 {
280         return d->fi.isSymLink();
281 }
282
283
284 bool FileName::isFileEmpty() const
285 {
286         return d->fi.size() == 0;
287 }
288
289
290 bool FileName::isDirectory() const
291 {
292         return d->fi.isDir();
293 }
294
295
296 bool FileName::isReadOnly() const
297 {
298         return d->fi.isReadable() && !d->fi.isWritable();
299 }
300
301
302 bool FileName::isReadableDirectory() const
303 {
304         return d->fi.isDir() && d->fi.isReadable();
305 }
306
307
308 string FileName::onlyFileName() const
309 {
310         return fromqstr(d->fi.fileName());
311 }
312
313
314 string FileName::onlyFileNameWithoutExt() const
315 {
316        return fromqstr(d->fi.baseName());
317 }
318
319
320 string FileName::extension() const
321 {
322        return fromqstr(d->fi.suffix());
323 }
324
325
326 FileName FileName::onlyPath() const
327 {
328         FileName path;
329         path.d->fi.setFile(d->fi.path());
330         return path;
331 }
332
333
334 bool FileName::isReadableFile() const
335 {
336         return d->fi.isFile() && d->fi.isReadable();
337 }
338
339
340 bool FileName::isWritable() const
341 {
342         return d->fi.isWritable();
343 }
344
345
346 bool FileName::isDirWritable() const
347 {
348         LASSERT(d->fi.isDir(), return false);
349         QFileInfo tmp(d->fi.absoluteDir(), "lyxwritetest");
350         QTemporaryFile qt_tmp(tmp.absoluteFilePath());
351         if (qt_tmp.open()) {
352                 LYXERR(Debug::FILES, "Directory " << *this << " is writable");
353                 return true;
354         }
355         LYXERR(Debug::FILES, "Directory " << *this << " is not writable");
356         return false;
357 }
358
359
360 FileNameList FileName::dirList(string const & ext) const
361 {
362         FileNameList dirlist;
363         if (!isDirectory()) {
364                 LYXERR0("Directory '" << *this << "' does not exist!");
365                 return dirlist;
366         }
367
368         QDir dir = d->fi.absoluteDir();
369
370         if (!ext.empty()) {
371                 QString filter;
372                 switch (ext[0]) {
373                 case '.': filter = "*" + toqstr(ext); break;
374                 case '*': filter = toqstr(ext); break;
375                 default: filter = "*." + toqstr(ext);
376                 }
377                 dir.setNameFilters(QStringList(filter));
378                 LYXERR(Debug::FILES, "filtering on extension "
379                         << fromqstr(filter) << " is requested.");
380         }
381
382         QFileInfoList list = dir.entryInfoList();
383         for (int i = 0; i != list.size(); ++i) {
384                 FileName fi(fromqstr(list.at(i).absoluteFilePath()));
385                 dirlist.push_back(fi);
386                 LYXERR(Debug::FILES, "found file " << fi);
387         }
388
389         return dirlist;
390 }
391
392
393 static string createTempFile(QString const & mask)
394 {
395         QTemporaryFile qt_tmp(mask);
396         if (qt_tmp.open()) {
397                 string const temp_file = fromqstr(qt_tmp.fileName());
398                 LYXERR(Debug::FILES, "Temporary file `" << temp_file << "' created.");
399                 return temp_file;
400         }
401         LYXERR(Debug::FILES, "Unable to create temporary file with following template: "
402                 << qt_tmp.fileTemplate());
403         return string();
404 }
405
406
407 FileName FileName::tempName(FileName const & temp_dir, string const & mask)
408 {
409         QFileInfo tmp_fi(QDir(temp_dir.d->fi.absoluteFilePath()), toqstr(mask));
410         LYXERR(Debug::FILES, "Temporary file in " << tmp_fi.absoluteFilePath());
411         return FileName(createTempFile(tmp_fi.absoluteFilePath()));
412 }
413
414
415 FileName FileName::tempName(string const & mask)
416 {
417         return tempName(package().temp_dir(), mask);
418 }
419
420
421 FileName FileName::getcwd()
422 {
423         return FileName(".");
424 }
425
426
427 FileName FileName::tempPath()
428 {
429         return FileName(fromqstr(QDir::tempPath()));
430 }
431
432
433 time_t FileName::lastModified() const
434 {
435         // QFileInfo caches information about the file. So, in case this file has
436         // been touched between the object creation and now, we refresh the file
437         // information.
438         d->refresh();
439         return d->fi.lastModified().toTime_t();
440 }
441
442
443 bool FileName::chdir() const
444 {
445         return QDir::setCurrent(d->fi.absoluteFilePath());
446 }
447
448
449 unsigned long FileName::checksum() const
450 {
451         unsigned long result = 0;
452
453         if (!exists()) {
454                 //LYXERR0("File \"" << absFilename() << "\" does not exist!");
455                 return result;
456         }
457         // a directory may be passed here so we need to test it. (bug 3622)
458         if (isDirectory()) {
459                 LYXERR0('"' << absFilename() << "\" is a directory!");
460                 return result;
461         }
462
463         // This is used in the debug output at the end of the method.
464         static QTime t;
465         if (lyxerr.debugging(Debug::FILES))
466                 t.restart();
467
468 #if QT_VERSION >= 0x999999
469         // First version of checksum uses Qt4.4 mmap support.
470         // FIXME: This code is not ready with Qt4.4.2,
471         // see http://bugzilla.lyx.org/show_bug.cgi?id=5293
472         // FIXME: should we check if the MapExtension extension is supported?
473         // see QAbstractFileEngine::supportsExtension() and 
474         // QAbstractFileEngine::MapExtension)
475         QFile qf(fi.filePath());
476         if (!qf.open(QIODevice::ReadOnly))
477                 return result;
478         qint64 size = fi.size();
479         uchar * ubeg = qf.map(0, size);
480         uchar * uend = ubeg + size;
481         boost::crc_32_type ucrc;
482         ucrc.process_block(ubeg, uend);
483         qf.unmap(ubeg);
484         qf.close();
485         result = ucrc.checksum();
486
487 #else // QT_VERSION
488
489         string const encoded = toFilesystemEncoding();
490         char const * file = encoded.c_str();
491
492  #ifdef SUM_WITH_MMAP
493         //LYXERR(Debug::FILES, "using mmap (lightning fast)");
494
495         int fd = open(file, O_RDONLY);
496         if (!fd)
497                 return result;
498
499         struct stat info;
500         fstat(fd, &info);
501
502         void * mm = mmap(0, info.st_size, PROT_READ,
503                          MAP_PRIVATE, fd, 0);
504         // Some platforms have the wrong type for MAP_FAILED (compaq cxx).
505         if (mm == reinterpret_cast<void*>(MAP_FAILED)) {
506                 close(fd);
507                 return result;
508         }
509
510         char * beg = static_cast<char*>(mm);
511         char * end = beg + info.st_size;
512
513         boost::crc_32_type crc;
514         crc.process_block(beg, end);
515         result = crc.checksum();
516
517         munmap(mm, info.st_size);
518         close(fd);
519
520  #else // no SUM_WITH_MMAP
521
522         //LYXERR(Debug::FILES, "lyx::sum() using istreambuf_iterator (fast)");
523         ifstream ifs(file, ios_base::in | ios_base::binary);
524         if (!ifs)
525                 return result;
526
527         istreambuf_iterator<char> beg(ifs);
528         istreambuf_iterator<char> end;
529         boost::crc_32_type crc;
530         crc = for_each(beg, end, crc);
531         result = crc.checksum();
532
533  #endif // SUM_WITH_MMAP
534 #endif // QT_VERSION
535
536         LYXERR(Debug::FILES, "Checksumming \"" << absFilename() << "\" "
537                 << result << " lasted " << t.elapsed() << " ms.");
538         return result;
539 }
540
541
542 bool FileName::removeFile() const
543 {
544         bool const success = QFile::remove(d->fi.absoluteFilePath());
545         if (!success && exists())
546                 LYXERR0("Could not delete file " << *this);
547         return success;
548 }
549
550
551 static bool rmdir(QFileInfo const & fi)
552 {
553         QDir dir(fi.absoluteFilePath());
554         QFileInfoList list = dir.entryInfoList();
555         bool success = true;
556         for (int i = 0; i != list.size(); ++i) {
557                 if (list.at(i).fileName() == ".")
558                         continue;
559                 if (list.at(i).fileName() == "..")
560                         continue;
561                 bool removed;
562                 if (list.at(i).isDir()) {
563                         LYXERR(Debug::FILES, "Removing dir " 
564                                 << fromqstr(list.at(i).absoluteFilePath()));
565                         removed = rmdir(list.at(i));
566                 }
567                 else {
568                         LYXERR(Debug::FILES, "Removing file " 
569                                 << fromqstr(list.at(i).absoluteFilePath()));
570                         removed = dir.remove(list.at(i).fileName());
571                 }
572                 if (!removed) {
573                         success = false;
574                         LYXERR0("Could not delete "
575                                 << fromqstr(list.at(i).absoluteFilePath()));
576                 }
577         } 
578         QDir parent = fi.absolutePath();
579         success &= parent.rmdir(fi.fileName());
580         return success;
581 }
582
583
584 bool FileName::destroyDirectory() const
585 {
586         bool const success = rmdir(d->fi);
587         if (!success)
588                 LYXERR0("Could not delete " << *this);
589
590         return success;
591 }
592
593
594 static int mymkdir(char const * pathname, unsigned long int mode)
595 {
596         // FIXME: why don't we have mode_t in lyx::mkdir prototype ??
597 #if HAVE_MKDIR
598 # if MKDIR_TAKES_ONE_ARG
599         // MinGW32
600         return ::mkdir(pathname);
601         // FIXME: "Permissions of created directories are ignored on this system."
602 # else
603         // POSIX
604         return ::mkdir(pathname, mode_t(mode));
605 # endif
606 #elif defined(_WIN32)
607         // plain Windows 32
608         return CreateDirectory(pathname, 0) != 0 ? 0 : -1;
609         // FIXME: "Permissions of created directories are ignored on this system."
610 #elif HAVE__MKDIR
611         return ::_mkdir(pathname);
612         // FIXME: "Permissions of created directories are ignored on this system."
613 #else
614 #   error "Don't know how to create a directory on this system."
615 #endif
616
617 }
618
619
620 bool FileName::createDirectory(int permission) const
621 {
622         LASSERT(!empty(), /**/);
623         return mymkdir(toFilesystemEncoding().c_str(), permission) == 0;
624 }
625
626
627 bool FileName::createPath() const
628 {
629         LASSERT(!empty(), /**/);
630         if (isDirectory())
631                 return true;
632
633         QDir dir;
634         bool success = dir.mkpath(d->fi.absoluteFilePath());
635         if (!success)
636                 LYXERR0("Cannot create path '" << *this << "'!");
637         return success;
638 }
639
640
641 docstring const FileName::absoluteFilePath() const
642 {
643         return qstring_to_ucs4(d->fi.absoluteFilePath());
644 }
645
646
647 docstring FileName::displayName(int threshold) const
648 {
649         return makeDisplayPath(absFilename(), threshold);
650 }
651
652
653 docstring FileName::fileContents(string const & encoding) const
654 {
655         if (!isReadableFile()) {
656                 LYXERR0("File '" << *this << "' is not redable!");
657                 return docstring();
658         }
659
660         QFile file(d->fi.absoluteFilePath());
661         if (!file.open(QIODevice::ReadOnly)) {
662                 LYXERR0("File '" << *this
663                         << "' could not be opened in read only mode!");
664                 return docstring();
665         }
666         QByteArray contents = file.readAll();
667         file.close();
668
669         if (contents.isEmpty()) {
670                 LYXERR(Debug::FILES, "File '" << *this
671                         << "' is either empty or some error happened while reading it.");
672                 return docstring();
673         }
674
675         QString s;
676         if (encoding.empty() || encoding == "UTF-8")
677                 s = QString::fromUtf8(contents.data());
678         else if (encoding == "ascii")
679                 s = QString::fromAscii(contents.data());
680         else if (encoding == "local8bit")
681                 s = QString::fromLocal8Bit(contents.data());
682         else if (encoding == "latin1")
683                 s = QString::fromLatin1(contents.data());
684
685         return qstring_to_ucs4(s);
686 }
687
688
689 void FileName::changeExtension(string const & extension)
690 {
691         // FIXME: use Qt native methods...
692         string const oldname = absFilename();
693         string::size_type const last_slash = oldname.rfind('/');
694         string::size_type last_dot = oldname.rfind('.');
695         if (last_dot < last_slash && last_slash != string::npos)
696                 last_dot = string::npos;
697
698         string ext;
699         // Make sure the extension starts with a dot
700         if (!extension.empty() && extension[0] != '.')
701                 ext= '.' + extension;
702         else
703                 ext = extension;
704
705         set(oldname.substr(0, last_dot) + ext);
706 }
707
708
709 string FileName::guessFormatFromContents() const
710 {
711         // the different filetypes and what they contain in one of the first lines
712         // (dots are any characters).           (Herbert 20020131)
713         // AGR  Grace...
714         // BMP  BM...
715         // EPS  %!PS-Adobe-3.0 EPSF...
716         // FIG  #FIG...
717         // FITS ...BITPIX...
718         // GIF  GIF...
719         // JPG  JFIF
720         // PDF  %PDF-...
721         // PNG  .PNG...
722         // PBM  P1... or P4     (B/W)
723         // PGM  P2... or P5     (Grayscale)
724         // PPM  P3... or P6     (color)
725         // PS   %!PS-Adobe-2.0 or 1.0,  no "EPSF"!
726         // SGI  \001\332...     (decimal 474)
727         // TGIF %TGIF...
728         // TIFF II... or MM...
729         // XBM  ..._bits[]...
730         // XPM  /* XPM */    sometimes missing (f.ex. tgif-export)
731         //      ...static char *...
732         // XWD  \000\000\000\151        (0x00006900) decimal 105
733         //
734         // GZIP \037\213        http://www.ietf.org/rfc/rfc1952.txt
735         // ZIP  PK...                   http://www.halyava.ru/document/ind_arch.htm
736         // Z    \037\235                UNIX compress
737
738         // paranoia check
739         if (empty() || !isReadableFile())
740                 return string();
741
742         ifstream ifs(toFilesystemEncoding().c_str());
743         if (!ifs)
744                 // Couldn't open file...
745                 return string();
746
747         // gnuzip
748         static string const gzipStamp = "\037\213";
749
750         // PKZIP
751         static string const zipStamp = "PK";
752
753         // compress
754         static string const compressStamp = "\037\235";
755
756         // Maximum strings to read
757         int const max_count = 50;
758         int count = 0;
759
760         string str;
761         string format;
762         bool firstLine = true;
763         while ((count++ < max_count) && format.empty()) {
764                 if (ifs.eof()) {
765                         LYXERR(Debug::GRAPHICS, "filetools(getFormatFromContents)\n"
766                                 << "\tFile type not recognised before EOF!");
767                         break;
768                 }
769
770                 getline(ifs, str);
771                 string const stamp = str.substr(0, 2);
772                 if (firstLine && str.size() >= 2) {
773                         // at first we check for a zipped file, because this
774                         // information is saved in the first bytes of the file!
775                         // also some graphic formats which save the information
776                         // in the first line, too.
777                         if (prefixIs(str, gzipStamp)) {
778                                 format =  "gzip";
779
780                         } else if (stamp == zipStamp) {
781                                 format =  "zip";
782
783                         } else if (stamp == compressStamp) {
784                                 format =  "compress";
785
786                         // the graphics part
787                         } else if (stamp == "BM") {
788                                 format =  "bmp";
789
790                         } else if (stamp == "\001\332") {
791                                 format =  "sgi";
792
793                         // PBM family
794                         // Don't need to use str.at(0), str.at(1) because
795                         // we already know that str.size() >= 2
796                         } else if (str[0] == 'P') {
797                                 switch (str[1]) {
798                                 case '1':
799                                 case '4':
800                                         format =  "pbm";
801                                     break;
802                                 case '2':
803                                 case '5':
804                                         format =  "pgm";
805                                     break;
806                                 case '3':
807                                 case '6':
808                                         format =  "ppm";
809                                 }
810                                 break;
811
812                         } else if ((stamp == "II") || (stamp == "MM")) {
813                                 format =  "tiff";
814
815                         } else if (prefixIs(str,"%TGIF")) {
816                                 format =  "tgif";
817
818                         } else if (prefixIs(str,"#FIG")) {
819                                 format =  "fig";
820
821                         } else if (prefixIs(str,"GIF")) {
822                                 format =  "gif";
823
824                         } else if (str.size() > 3) {
825                                 int const c = ((str[0] << 24) & (str[1] << 16) &
826                                                (str[2] << 8)  & str[3]);
827                                 if (c == 105) {
828                                         format =  "xwd";
829                                 }
830                         }
831
832                         firstLine = false;
833                 }
834
835                 if (!format.empty())
836                     break;
837                 else if (contains(str,"EPSF"))
838                         // dummy, if we have wrong file description like
839                         // %!PS-Adobe-2.0EPSF"
840                         format = "eps";
841
842                 else if (contains(str, "Grace"))
843                         format = "agr";
844
845                 else if (contains(str, "JFIF"))
846                         format = "jpg";
847
848                 else if (contains(str, "%PDF"))
849                         format = "pdf";
850
851                 else if (contains(str, "PNG"))
852                         format = "png";
853
854                 else if (contains(str, "%!PS-Adobe")) {
855                         // eps or ps
856                         ifs >> str;
857                         if (contains(str,"EPSF"))
858                                 format = "eps";
859                         else
860                             format = "ps";
861                 }
862
863                 else if (contains(str, "_bits[]"))
864                         format = "xbm";
865
866                 else if (contains(str, "XPM") || contains(str, "static char *"))
867                         format = "xpm";
868
869                 else if (contains(str, "BITPIX"))
870                         format = "fits";
871         }
872
873         if (!format.empty()) {
874                 LYXERR(Debug::GRAPHICS, "Recognised Fileformat: " << format);
875                 return format;
876         }
877
878         LYXERR(Debug::GRAPHICS, "filetools(getFormatFromContents)\n"
879                 << "\tCouldn't find a known format!");
880         return string();
881 }
882
883
884 bool FileName::isZippedFile() const
885 {
886         string const type = guessFormatFromContents();
887         return contains("gzip zip compress", type) && !type.empty();
888 }
889
890
891 docstring const FileName::relPath(string const & path) const
892 {
893         // FIXME UNICODE
894         return makeRelPath(absoluteFilePath(), from_utf8(path));
895 }
896
897
898 bool operator==(FileName const & lhs, FileName const & rhs)
899 {
900         // FIXME: We need to solve this warning from Qt documentation:
901         // * Long and short file names that refer to the same file on Windows are
902         //   treated as if they referred to different files.
903         // This is supposed to be fixed for Qt5.
904
905         if (lhs.empty())
906                 // QFileInfo::operator==() returns false if the two QFileInfo are empty.
907                 return rhs.empty();
908
909         if (rhs.empty())
910                 // Avoid unnecessary checks below.
911                 return false;
912
913         lhs.d->refresh();
914         rhs.d->refresh();
915         
916         if (!lhs.d->fi.isSymLink() && !rhs.d->fi.isSymLink())
917                 return lhs.d->fi == rhs.d->fi;
918
919         // FIXME: When/if QFileInfo support symlink comparison, remove this code.
920         QFileInfo fi1(lhs.d->fi);
921         if (fi1.isSymLink())
922                 fi1 = QFileInfo(fi1.symLinkTarget());
923         QFileInfo fi2(rhs.d->fi);
924         if (fi2.isSymLink())
925                 fi2 = QFileInfo(fi2.symLinkTarget());
926         return fi1 == fi2;
927 }
928
929
930 bool operator!=(FileName const & lhs, FileName const & rhs)
931 {
932         return !(operator==(lhs, rhs));
933 }
934
935
936 bool operator<(FileName const & lhs, FileName const & rhs)
937 {
938         return lhs.absFilename() < rhs.absFilename();
939 }
940
941
942 bool operator>(FileName const & lhs, FileName const & rhs)
943 {
944         return lhs.absFilename() > rhs.absFilename();
945 }
946
947
948 ostream & operator<<(ostream & os, FileName const & filename)
949 {
950         return os << filename.absFilename();
951 }
952
953
954 /////////////////////////////////////////////////////////////////////
955 //
956 // DocFileName
957 //
958 /////////////////////////////////////////////////////////////////////
959
960
961 DocFileName::DocFileName()
962         : save_abs_path_(true)
963 {}
964
965
966 DocFileName::DocFileName(string const & abs_filename, bool save_abs)
967         : FileName(abs_filename), save_abs_path_(save_abs), zipped_valid_(false)
968 {}
969
970
971 DocFileName::DocFileName(FileName const & abs_filename, bool save_abs)
972         : FileName(abs_filename), save_abs_path_(save_abs), zipped_valid_(false)
973 {}
974
975
976 void DocFileName::set(string const & name, string const & buffer_path)
977 {
978         FileName::set(name);
979         bool const nameIsAbsolute = isAbsolute();
980         save_abs_path_ = nameIsAbsolute;
981         if (!nameIsAbsolute)
982                 FileName::set(makeAbsPath(name, buffer_path).absFilename());
983         zipped_valid_ = false;
984 }
985
986
987 void DocFileName::erase()
988 {
989         FileName::erase();
990         zipped_valid_ = false;
991 }
992
993
994 string DocFileName::relFilename(string const & path) const
995 {
996         // FIXME UNICODE
997         return to_utf8(relPath(path));
998 }
999
1000
1001 string DocFileName::outputFilename(string const & path) const
1002 {
1003         return save_abs_path_ ? absFilename() : relFilename(path);
1004 }
1005
1006
1007 string DocFileName::mangledFilename(string const & dir) const
1008 {
1009         // We need to make sure that every DocFileName instance for a given
1010         // filename returns the same mangled name.
1011         typedef map<string, string> MangledMap;
1012         static MangledMap mangledNames;
1013         MangledMap::const_iterator const it = mangledNames.find(absFilename());
1014         if (it != mangledNames.end())
1015                 return (*it).second;
1016
1017         string const name = absFilename();
1018         // Now the real work
1019         string mname = os::internal_path(name);
1020         // Remove the extension.
1021         mname = support::changeExtension(name, string());
1022         // The mangled name must be a valid LaTeX name.
1023         // The list of characters to keep is probably over-restrictive,
1024         // but it is not really a problem.
1025         // Apart from non-ASCII characters, at least the following characters
1026         // are forbidden: '/', '.', ' ', and ':'.
1027         // On windows it is not possible to create files with '<', '>' or '?'
1028         // in the name.
1029         static string const keep = "abcdefghijklmnopqrstuvwxyz"
1030                                    "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1031                                    "+,-0123456789;=";
1032         string::size_type pos = 0;
1033         while ((pos = mname.find_first_not_of(keep, pos)) != string::npos)
1034                 mname[pos++] = '_';
1035         // Add the extension back on
1036         mname = support::changeExtension(mname, getExtension(name));
1037
1038         // Prepend a counter to the filename. This is necessary to make
1039         // the mangled name unique.
1040         static int counter = 0;
1041         ostringstream s;
1042         s << counter++ << mname;
1043         mname = s.str();
1044
1045         // MiKTeX's YAP (version 2.4.1803) crashes if the file name
1046         // is longer than about 160 characters. MiKTeX's pdflatex
1047         // is even pickier. A maximum length of 100 has been proven to work.
1048         // If dir.size() > max length, all bets are off for YAP. We truncate
1049         // the filename nevertheless, keeping a minimum of 10 chars.
1050
1051         string::size_type max_length = max(100 - ((int)dir.size() + 1), 10);
1052
1053         // If the mangled file name is too long, hack it to fit.
1054         // We know we're guaranteed to have a unique file name because
1055         // of the counter.
1056         if (mname.size() > max_length) {
1057                 int const half = (int(max_length) / 2) - 2;
1058                 if (half > 0) {
1059                         mname = mname.substr(0, half) + "___" +
1060                                 mname.substr(mname.size() - half);
1061                 }
1062         }
1063
1064         mangledNames[absFilename()] = mname;
1065         return mname;
1066 }
1067
1068
1069 bool DocFileName::isZipped() const
1070 {
1071         if (!zipped_valid_) {
1072                 zipped_ = isZippedFile();
1073                 zipped_valid_ = true;
1074         }
1075         return zipped_;
1076 }
1077
1078
1079 string DocFileName::unzippedFilename() const
1080 {
1081         return unzippedFileName(absFilename());
1082 }
1083
1084
1085 bool operator==(DocFileName const & lhs, DocFileName const & rhs)
1086 {
1087         return static_cast<FileName const &>(lhs)
1088                 == static_cast<FileName const &>(rhs)
1089                 && lhs.saveAbsPath() == rhs.saveAbsPath();
1090 }
1091
1092
1093 bool operator!=(DocFileName const & lhs, DocFileName const & rhs)
1094 {
1095         return !(lhs == rhs);
1096 }
1097
1098 } // namespace support
1099 } // namespace lyx