]> git.lyx.org Git - lyx.git/blob - src/support/FileName.cpp
reduce line noise
[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/filetools.h"
15 #include "support/lstrings.h"
16 #include "support/os.h"
17 #include "support/qstring_helpers.h"
18
19 #include "debug.h"
20 #include "lyxlib.h"
21
22 #include <QFile>
23 #include <QFileInfo>
24
25 #include <boost/filesystem/exception.hpp>
26 #include <boost/filesystem/operations.hpp>
27
28 #include <map>
29 #include <sstream>
30 #include <fstream>
31 #include <algorithm>
32
33
34 using std::map;
35 using std::string;
36 using std::ifstream;
37 using std::ostringstream;
38 using std::endl;
39
40 namespace fs = boost::filesystem;
41
42 // FIXME: merge this
43 //
44 #include <boost/filesystem/config.hpp>
45 #include <boost/detail/workaround.hpp>
46 #include <boost/throw_exception.hpp>
47
48 #ifdef HAVE_SYS_TYPES_H
49 # include <sys/types.h>
50 #endif
51 #ifdef HAVE_SYS_STAT_H
52 # include <sys/stat.h>
53 #endif
54 #include <cerrno>
55 #include <fcntl.h>
56
57
58 // BOOST_POSIX or BOOST_WINDOWS specify which API to use.
59 # if !defined( BOOST_WINDOWS ) && !defined( BOOST_POSIX )
60 #   if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__)
61 #     define BOOST_WINDOWS
62 #   else
63 #     define BOOST_POSIX
64 #   endif
65 # endif
66
67 #if defined (BOOST_WINDOWS)
68 # define WIN32_LEAN_AND_MEAN
69 # include <windows.h>
70 # undef min
71 # undef max
72 #endif
73
74
75 static bool copy_file(std::string const & source, std::string const & target, bool noclobber)
76 {
77
78 #ifdef BOOST_POSIX
79         int const infile = ::open(source.c_str(), O_RDONLY);
80         if (infile == -1)
81                 return false;
82
83         struct stat source_stat;
84         int const ret = ::fstat(infile, &source_stat);
85         if (ret == -1) {
86                 //int err = errno;
87                 ::close(infile);
88         }
89
90         int const flags = O_WRONLY | O_CREAT | (noclobber ? O_EXCL : O_TRUNC);
91
92         int const outfile = ::open(target.c_str(), flags, source_stat.st_mode);
93         if (outfile == -1) {
94                 //int err = errno;
95                 ::close(infile);
96                 return false;
97         }
98
99         std::size_t const buf_sz = 32768;
100         char buf[buf_sz];
101         ssize_t in = -1;
102         ssize_t out = -1;
103
104         while (true) {
105                 in = ::read(infile, buf, buf_sz);
106                 if (in == -1) {
107                         break;
108                 } else if (in == 0) {
109                         break;
110                 } else {
111                         out = ::write(outfile, buf, in);
112                         if (out == -1) {
113                                 break;
114                         }
115                 }
116         }
117
118         //int err = errno;
119
120         ::close(infile);
121         ::close(outfile);
122
123         if (in == -1 || out == -1)
124                 return false;
125 #endif
126
127 #ifdef BOOST_WINDOWS
128         if (::CopyFile(source.c_str(), target.c_str(), noclobber) == 0) {
129                 // CopyFile is probably not setting errno so this is most
130                 // likely wrong.
131                 return false;
132         }
133 #endif
134         return true;
135 }
136
137
138 namespace lyx {
139 namespace support {
140
141
142 /////////////////////////////////////////////////////////////////////
143 //
144 // FileName
145 //
146 /////////////////////////////////////////////////////////////////////
147
148
149 FileName::FileName(string const & abs_filename)
150         : name_(abs_filename)
151 {
152         BOOST_ASSERT(empty() || absolutePath(name_));
153 #if defined(_WIN32)
154         BOOST_ASSERT(!contains(name_, '\\'));
155 #endif
156 }
157
158
159 void FileName::set(string const & name)
160 {
161         name_ = name;
162         BOOST_ASSERT(absolutePath(name_));
163 #if defined(_WIN32)
164         BOOST_ASSERT(!contains(name_, '\\'));
165 #endif
166 }
167
168
169 void FileName::erase()
170 {
171         name_.erase();
172 }
173
174
175 bool FileName::copyTo(FileName const & name, bool noclobber) const
176 {
177         try {
178                 copy_file(toFilesystemEncoding(), name.toFilesystemEncoding(), noclobber);
179                 return true;
180         }
181         catch (...) {
182         }
183         return false;
184 }
185
186
187 string FileName::toFilesystemEncoding() const
188 {
189         QByteArray const encoded = QFile::encodeName(toqstr(name_));
190         return string(encoded.begin(), encoded.end());
191 }
192
193
194 FileName FileName::fromFilesystemEncoding(string const & name)
195 {
196         QByteArray const encoded(name.c_str(), name.length());
197         return FileName(fromqstr(QFile::decodeName(encoded)));
198 }
199
200
201 bool FileName::exists() const
202 {
203         return QFileInfo(toqstr(name_)).exists();
204 }
205
206
207 bool FileName::isDirectory() const
208 {
209         return QFileInfo(toqstr(name_)).isDir();
210 }
211
212
213 bool FileName::isReadOnly() const
214 {
215         QFileInfo const fi(toqstr(name_));
216         return fi.isReadable() && !fi.isWritable();
217 }
218
219
220 bool FileName::isReadable() const
221 {
222         QFileInfo const fi(toqstr(name_));
223         return fi.isReadable();
224 }
225
226
227 std::string FileName::onlyFileName() const
228 {
229         return support::onlyFilename(absFilename());
230 }
231
232
233 std::string FileName::onlyPath() const
234 {
235         return support::onlyPath(absFilename());
236 }
237
238
239 bool FileName::isFileReadable() const
240 {
241         QFileInfo const fi(toqstr(name_));
242         return fi.isFile() && fi.isReadable();
243 }
244
245
246 bool FileName::isWritable() const
247 {
248         QFileInfo const fi(toqstr(name_));
249         return fi.isWritable();
250 }
251
252
253 bool FileName::isDirWritable() const
254 {
255         LYXERR(Debug::FILES, "isDirWriteable: " << *this);
256
257         FileName const tmpfl(tempName(*this, "lyxwritetest"));
258
259         if (tmpfl.empty())
260                 return false;
261
262         unlink(tmpfl);
263         return true;
264 }
265
266
267 FileName FileName::tempName(FileName const & dir, std::string const & mask)
268 {
269         return support::tempName(dir, mask);
270 }
271
272
273 std::time_t FileName::lastModified() const
274 {
275         return fs::last_write_time(toFilesystemEncoding());
276 }
277
278
279 bool FileName::destroyDirectory() const
280 {
281         try {
282                 return fs::remove_all(toFilesystemEncoding()) > 0;
283         } catch (fs::filesystem_error const & fe){
284                 lyxerr << "Could not delete " << *this << ". (" << fe.what() << ")"
285                         << std::endl;
286                 return false;
287         }
288 }
289
290
291 bool FileName::createDirectory(int permission) const
292 {
293         BOOST_ASSERT(!empty());
294         return mkdir(*this, permission) == 0;
295 }
296
297
298 docstring FileName::displayName(int threshold) const
299 {
300         return makeDisplayPath(absFilename(), threshold);
301 }
302
303
304 string FileName::fileContents() const
305 {
306         if (exists()) {
307                 string const encodedname = toFilesystemEncoding();
308                 ifstream ifs(encodedname.c_str());
309                 ostringstream ofs;
310                 if (ifs && ofs) {
311                         ofs << ifs.rdbuf();
312                         ifs.close();
313                         return ofs.str();
314                 }
315         }
316         lyxerr << "LyX was not able to read file '" << *this << '\'' << std::endl;
317         return string();
318 }
319
320
321 string FileName::guessFormatFromContents() const
322 {
323         // the different filetypes and what they contain in one of the first lines
324         // (dots are any characters).           (Herbert 20020131)
325         // AGR  Grace...
326         // BMP  BM...
327         // EPS  %!PS-Adobe-3.0 EPSF...
328         // FIG  #FIG...
329         // FITS ...BITPIX...
330         // GIF  GIF...
331         // JPG  JFIF
332         // PDF  %PDF-...
333         // PNG  .PNG...
334         // PBM  P1... or P4     (B/W)
335         // PGM  P2... or P5     (Grayscale)
336         // PPM  P3... or P6     (color)
337         // PS   %!PS-Adobe-2.0 or 1.0,  no "EPSF"!
338         // SGI  \001\332...     (decimal 474)
339         // TGIF %TGIF...
340         // TIFF II... or MM...
341         // XBM  ..._bits[]...
342         // XPM  /* XPM */    sometimes missing (f.ex. tgif-export)
343         //      ...static char *...
344         // XWD  \000\000\000\151        (0x00006900) decimal 105
345         //
346         // GZIP \037\213        http://www.ietf.org/rfc/rfc1952.txt
347         // ZIP  PK...                   http://www.halyava.ru/document/ind_arch.htm
348         // Z    \037\235                UNIX compress
349         // paranoia check
350
351         if (empty() || !isReadable())
352                 return string();
353
354         ifstream ifs(toFilesystemEncoding().c_str());
355         if (!ifs)
356                 // Couldn't open file...
357                 return string();
358
359         // gnuzip
360         static string const gzipStamp = "\037\213";
361
362         // PKZIP
363         static string const zipStamp = "PK";
364
365         // compress
366         static string const compressStamp = "\037\235";
367
368         // Maximum strings to read
369         int const max_count = 50;
370         int count = 0;
371
372         string str;
373         string format;
374         bool firstLine = true;
375         while ((count++ < max_count) && format.empty()) {
376                 if (ifs.eof()) {
377                         LYXERR(Debug::GRAPHICS, "filetools(getFormatFromContents)\n"
378                                 << "\tFile type not recognised before EOF!");
379                         break;
380                 }
381
382                 getline(ifs, str);
383                 string const stamp = str.substr(0, 2);
384                 if (firstLine && str.size() >= 2) {
385                         // at first we check for a zipped file, because this
386                         // information is saved in the first bytes of the file!
387                         // also some graphic formats which save the information
388                         // in the first line, too.
389                         if (prefixIs(str, gzipStamp)) {
390                                 format =  "gzip";
391
392                         } else if (stamp == zipStamp) {
393                                 format =  "zip";
394
395                         } else if (stamp == compressStamp) {
396                                 format =  "compress";
397
398                         // the graphics part
399                         } else if (stamp == "BM") {
400                                 format =  "bmp";
401
402                         } else if (stamp == "\001\332") {
403                                 format =  "sgi";
404
405                         // PBM family
406                         // Don't need to use str.at(0), str.at(1) because
407                         // we already know that str.size() >= 2
408                         } else if (str[0] == 'P') {
409                                 switch (str[1]) {
410                                 case '1':
411                                 case '4':
412                                         format =  "pbm";
413                                     break;
414                                 case '2':
415                                 case '5':
416                                         format =  "pgm";
417                                     break;
418                                 case '3':
419                                 case '6':
420                                         format =  "ppm";
421                                 }
422                                 break;
423
424                         } else if ((stamp == "II") || (stamp == "MM")) {
425                                 format =  "tiff";
426
427                         } else if (prefixIs(str,"%TGIF")) {
428                                 format =  "tgif";
429
430                         } else if (prefixIs(str,"#FIG")) {
431                                 format =  "fig";
432
433                         } else if (prefixIs(str,"GIF")) {
434                                 format =  "gif";
435
436                         } else if (str.size() > 3) {
437                                 int const c = ((str[0] << 24) & (str[1] << 16) &
438                                                (str[2] << 8)  & str[3]);
439                                 if (c == 105) {
440                                         format =  "xwd";
441                                 }
442                         }
443
444                         firstLine = false;
445                 }
446
447                 if (!format.empty())
448                     break;
449                 else if (contains(str,"EPSF"))
450                         // dummy, if we have wrong file description like
451                         // %!PS-Adobe-2.0EPSF"
452                         format = "eps";
453
454                 else if (contains(str, "Grace"))
455                         format = "agr";
456
457                 else if (contains(str, "JFIF"))
458                         format = "jpg";
459
460                 else if (contains(str, "%PDF"))
461                         format = "pdf";
462
463                 else if (contains(str, "PNG"))
464                         format = "png";
465
466                 else if (contains(str, "%!PS-Adobe")) {
467                         // eps or ps
468                         ifs >> str;
469                         if (contains(str,"EPSF"))
470                                 format = "eps";
471                         else
472                             format = "ps";
473                 }
474
475                 else if (contains(str, "_bits[]"))
476                         format = "xbm";
477
478                 else if (contains(str, "XPM") || contains(str, "static char *"))
479                         format = "xpm";
480
481                 else if (contains(str, "BITPIX"))
482                         format = "fits";
483         }
484
485         if (!format.empty()) {
486                 LYXERR(Debug::GRAPHICS, "Recognised Fileformat: " << format);
487                 return format;
488         }
489
490         LYXERR(Debug::GRAPHICS, "filetools(getFormatFromContents)\n"
491                 << "\tCouldn't find a known format!");
492         return string();
493 }
494
495
496 bool FileName::isZippedFile() const
497 {
498         string const type = guessFormatFromContents();
499         return contains("gzip zip compress", type) && !type.empty();
500 }
501
502
503 bool operator==(FileName const & lhs, FileName const & rhs)
504 {
505         return lhs.absFilename() == rhs.absFilename();
506 }
507
508
509 bool operator!=(FileName const & lhs, FileName const & rhs)
510 {
511         return lhs.absFilename() != rhs.absFilename();
512 }
513
514
515 bool operator<(FileName const & lhs, FileName const & rhs)
516 {
517         return lhs.absFilename() < rhs.absFilename();
518 }
519
520
521 bool operator>(FileName const & lhs, FileName const & rhs)
522 {
523         return lhs.absFilename() > rhs.absFilename();
524 }
525
526
527 std::ostream & operator<<(std::ostream & os, FileName const & filename)
528 {
529         return os << filename.absFilename();
530 }
531
532
533 /////////////////////////////////////////////////////////////////////
534 //
535 // DocFileName
536 //
537 /////////////////////////////////////////////////////////////////////
538
539
540 DocFileName::DocFileName()
541         : save_abs_path_(true)
542 {}
543
544
545 DocFileName::DocFileName(string const & abs_filename, bool save_abs)
546         : FileName(abs_filename), save_abs_path_(save_abs), zipped_valid_(false)
547 {}
548
549
550 DocFileName::DocFileName(FileName const & abs_filename, bool save_abs)
551         : FileName(abs_filename), save_abs_path_(save_abs), zipped_valid_(false)
552 {}
553
554
555 void DocFileName::set(string const & name, string const & buffer_path)
556 {
557         save_abs_path_ = absolutePath(name);
558         name_ = save_abs_path_ ? name : makeAbsPath(name, buffer_path).absFilename();
559         zipped_valid_ = false;
560 }
561
562
563 void DocFileName::erase()
564 {
565         name_.erase();
566         zipped_valid_ = false;
567 }
568
569
570 string const DocFileName::relFilename(string const & path) const
571 {
572         // FIXME UNICODE
573         return to_utf8(makeRelPath(from_utf8(name_), from_utf8(path)));
574 }
575
576
577 string const DocFileName::outputFilename(string const & path) const
578 {
579         // FIXME UNICODE
580         return save_abs_path_ ? name_ : to_utf8(makeRelPath(from_utf8(name_), from_utf8(path)));
581 }
582
583
584 string const DocFileName::mangledFilename(std::string const & dir) const
585 {
586         // We need to make sure that every DocFileName instance for a given
587         // filename returns the same mangled name.
588         typedef map<string, string> MangledMap;
589         static MangledMap mangledNames;
590         MangledMap::const_iterator const it = mangledNames.find(name_);
591         if (it != mangledNames.end())
592                 return (*it).second;
593
594         // Now the real work
595         string mname = os::internal_path(name_);
596         // Remove the extension.
597         mname = changeExtension(name_, string());
598         // The mangled name must be a valid LaTeX name.
599         // The list of characters to keep is probably over-restrictive,
600         // but it is not really a problem.
601         // Apart from non-ASCII characters, at least the following characters
602         // are forbidden: '/', '.', ' ', and ':'.
603         // On windows it is not possible to create files with '<', '>' or '?'
604         // in the name.
605         static string const keep = "abcdefghijklmnopqrstuvwxyz"
606                                    "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
607                                    "+,-0123456789;=";
608         string::size_type pos = 0;
609         while ((pos = mname.find_first_not_of(keep, pos)) != string::npos)
610                 mname[pos++] = '_';
611         // Add the extension back on
612         mname = changeExtension(mname, getExtension(name_));
613
614         // Prepend a counter to the filename. This is necessary to make
615         // the mangled name unique.
616         static int counter = 0;
617         std::ostringstream s;
618         s << counter++ << mname;
619         mname = s.str();
620
621         // MiKTeX's YAP (version 2.4.1803) crashes if the file name
622         // is longer than about 160 characters. MiKTeX's pdflatex
623         // is even pickier. A maximum length of 100 has been proven to work.
624         // If dir.size() > max length, all bets are off for YAP. We truncate
625         // the filename nevertheless, keeping a minimum of 10 chars.
626
627         string::size_type max_length = std::max(100 - ((int)dir.size() + 1), 10);
628
629         // If the mangled file name is too long, hack it to fit.
630         // We know we're guaranteed to have a unique file name because
631         // of the counter.
632         if (mname.size() > max_length) {
633                 int const half = (int(max_length) / 2) - 2;
634                 if (half > 0) {
635                         mname = mname.substr(0, half) + "___" +
636                                 mname.substr(mname.size() - half);
637                 }
638         }
639
640         mangledNames[name_] = mname;
641         return mname;
642 }
643
644
645 bool DocFileName::isZipped() const
646 {
647         if (!zipped_valid_) {
648                 zipped_ = isZippedFile();
649                 zipped_valid_ = true;
650         }
651         return zipped_;
652 }
653
654
655 string const DocFileName::unzippedFilename() const
656 {
657         return unzippedFileName(name_);
658 }
659
660
661 bool operator==(DocFileName const & lhs, DocFileName const & rhs)
662 {
663         return lhs.absFilename() == rhs.absFilename()
664                 && lhs.saveAbsPath() == rhs.saveAbsPath();
665 }
666
667
668 bool operator!=(DocFileName const & lhs, DocFileName const & rhs)
669 {
670         return !(lhs == rhs);
671 }
672
673 } // namespace support
674 } // namespace lyx
675
676
677