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