]> git.lyx.org Git - lyx.git/blob - src/support/filename.C
* src/LaTeX.C (deplog): fix the regex to parse filenames in the log file
[lyx.git] / src / support / filename.C
1 /**
2  * \file filename.C
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 <QFile>
20
21 #include <boost/assert.hpp>
22
23 #include <map>
24 #include <sstream>
25 #include <algorithm>
26
27
28 using std::map;
29 using std::string;
30
31
32 namespace lyx {
33 namespace support {
34
35
36 FileName::FileName()
37 {}
38
39
40 FileName::~FileName()
41 {}
42
43
44 FileName::FileName(string const & abs_filename)
45         : name_(abs_filename)
46 {
47         BOOST_ASSERT(empty() || absolutePath(name_));
48 #if defined(_WIN32)
49         BOOST_ASSERT(!contains(name_, '\\'));
50 #endif
51 }
52
53
54 void FileName::set(string const & name)
55 {
56         name_ = name;
57         BOOST_ASSERT(absolutePath(name_));
58 #if defined(_WIN32)
59         BOOST_ASSERT(!contains(name_, '\\'));
60 #endif
61 }
62
63
64 void FileName::erase()
65 {
66         name_.erase();
67 }
68
69
70 string const FileName::toFilesystemEncoding() const
71 {
72         QByteArray const encoded = QFile::encodeName(toqstr(name_));
73         return string(encoded.begin(), encoded.end());
74 }
75
76
77 FileName const FileName::fromFilesystemEncoding(string const & name)
78 {
79         QByteArray const encoded(name.c_str(), name.length());
80         return FileName(fromqstr(QFile::decodeName(encoded)));
81 }
82
83
84 bool operator==(FileName const & lhs, FileName const & rhs)
85 {
86         return lhs.absFilename() == rhs.absFilename();
87 }
88
89
90 bool operator!=(FileName const & lhs, FileName const & rhs)
91 {
92         return lhs.absFilename() != rhs.absFilename();
93 }
94
95
96 bool operator<(FileName const & lhs, FileName const & rhs)
97 {
98         return lhs.absFilename() < rhs.absFilename();
99 }
100
101
102 bool operator>(FileName const & lhs, FileName const & rhs)
103 {
104         return lhs.absFilename() > rhs.absFilename();
105 }
106
107
108 std::ostream & operator<<(std::ostream & os, FileName const & filename)
109 {
110         return os << filename.absFilename();
111 }
112
113
114 DocFileName::DocFileName()
115         : save_abs_path_(true)
116 {}
117
118
119 DocFileName::DocFileName(string const & abs_filename, bool save_abs)
120         : FileName(abs_filename), save_abs_path_(save_abs), zipped_valid_(false)
121 {}
122
123
124 DocFileName::DocFileName(FileName const & abs_filename, bool save_abs)
125         : FileName(abs_filename), save_abs_path_(save_abs), zipped_valid_(false)
126 {}
127
128
129 void DocFileName::set(string const & name, string const & buffer_path)
130 {
131         save_abs_path_ = absolutePath(name);
132         name_ = save_abs_path_ ? name : makeAbsPath(name, buffer_path).absFilename();
133         zipped_valid_ = false;
134 }
135
136
137 void DocFileName::erase()
138 {
139         name_.erase();
140         zipped_valid_ = false;
141 }
142
143
144 string const DocFileName::relFilename(string const & path) const
145 {
146         return makeRelPath(name_, path);
147 }
148
149
150 string const DocFileName::outputFilename(string const & path) const
151 {
152         return save_abs_path_ ? name_ : makeRelPath(name_, path);
153 }
154
155
156 string const DocFileName::mangledFilename(std::string const & dir) const
157 {
158         // We need to make sure that every DocFileName instance for a given
159         // filename returns the same mangled name.
160         typedef map<string, string> MangledMap;
161         static MangledMap mangledNames;
162         MangledMap::const_iterator const it = mangledNames.find(name_);
163         if (it != mangledNames.end())
164                 return (*it).second;
165
166         // Now the real work
167         string mname = os::internal_path(name_);
168         // Remove the extension.
169         mname = changeExtension(name_, string());
170         // Replace '/' in the file name with '_'
171         mname = subst(mname, "/", "_");
172         // Replace '.' in the file name with '_'
173         mname = subst(mname, ".", "_");
174         // Replace ' ' in the file name with '_'
175         mname = subst(mname, " ", "_");
176         // Replace ':' in the file name with '_'
177         mname = subst(mname, ":", "_");
178         // Add the extension back on
179         mname = changeExtension(mname, getExtension(name_));
180
181         // Prepend a counter to the filename. This is necessary to make
182         // the mangled name unique.
183         static int counter = 0;
184         std::ostringstream s;
185         s << counter++ << mname;
186         mname = s.str();
187
188         // MiKTeX's YAP (version 2.4.1803) crashes if the file name
189         // is longer than about 160 characters. MiKTeX's pdflatex
190         // is even pickier. A maximum length of 100 has been proven to work.
191         // If dir.size() > max length, all bets are off for YAP. We truncate
192         // the filename nevertheless, keeping a minimum of 10 chars.
193
194         string::size_type max_length = std::max(100 - ((int)dir.size() + 1), 10);
195
196         // If the mangled file name is too long, hack it to fit.
197         // We know we're guaranteed to have a unique file name because
198         // of the counter.
199         if (mname.size() > max_length) {
200                 int const half = (int(max_length) / 2) - 2;
201                 if (half > 0) {
202                         mname = mname.substr(0, half) + "___" +
203                                 mname.substr(mname.size() - half);
204                 }
205         }
206
207         mangledNames[name_] = mname;
208         return mname;
209 }
210
211
212 bool DocFileName::isZipped() const
213 {
214         if (!zipped_valid_) {
215                 zipped_ = zippedFile(*this);
216                 zipped_valid_ = true;
217         }
218         return zipped_;
219 }
220
221
222 string const DocFileName::unzippedFilename() const
223 {
224         return unzippedFileName(name_);
225 }
226
227
228 bool operator==(DocFileName const & lhs, DocFileName const & rhs)
229 {
230         return lhs.absFilename() == rhs.absFilename() &&
231                 lhs.saveAbsPath() == rhs.saveAbsPath();
232 }
233
234
235 bool operator!=(DocFileName const & lhs, DocFileName const & rhs)
236 {
237         return !(lhs == rhs);
238 }
239
240 } // namespace support
241 } // namespace lyx