]> git.lyx.org Git - lyx.git/blob - src/support/FileName.h
Always require a mask to get a temporary filename
[lyx.git] / src / support / FileName.h
1 // -*- C++ -*-
2 /**
3  * \file FileName.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef FILENAME_H
13 #define FILENAME_H
14
15 #include "support/os.h"
16 #include "support/strfwd.h"
17
18 #include <ctime>
19
20
21 namespace lyx {
22 namespace support {
23
24 /// Defined in "FileNameList.h".
25 class FileNameList;
26
27 /**
28  * Class for storing file names.
29  * The file name may be empty. If it is not empty it is an absolute path.
30  * The file may or may not exist.
31  */
32 class FileName {
33 public:
34         /// Constructor for empty filenames
35         FileName();
36         /** Constructor for nonempty filenames.
37          * explicit because we don't want implicit conversion of relative
38          * paths in function arguments (e.g. of unlink).
39          * \param abs_filename the file in question. Must have an absolute path.
40          * Encoding is always UTF-8.
41          */
42         explicit FileName(std::string const & abs_filename);
43
44         /// copy constructor.
45         FileName(FileName const &);
46
47         /// constructor with base name and suffix.
48         FileName(FileName const & fn, std::string const & suffix);
49
50         ///
51         FileName & operator=(FileName const &);
52
53         virtual ~FileName();
54         /** Set a new filename.
55          * \param filename the file in question. Must have an absolute path.
56          * Encoding is always UTF-8.
57          */
58         virtual void set(std::string const & filename);
59         virtual void set(FileName const & fn, std::string const & suffix);
60         virtual void erase();
61         /// Is this filename empty?
62         bool empty() const;
63         /// Is the filename absolute?
64         static bool isAbsolute(std::string const & name);
65
66         /// get the absolute file name in UTF-8 encoding
67         std::string absFileName() const;
68
69         /** returns an absolute pathname (whose resolution does not involve
70           * '.', '..', or symbolic links) in UTF-8 encoding
71           */
72         std::string realPath() const;
73
74         /**
75          * Get the file name in the encoding used by the file system.
76          * Only use this for passing file names to external commands.
77          * Warning: On Windows this is not unicode safe and should not
78          * be used for accessing files with an fstream, for example.
79          */
80         std::string toFilesystemEncoding() const;
81
82         /**
83          * Get the file name in a unicode safe encoding used by the file system.
84          * Only use this for accessing the file with standard I/O functions
85          * non explicitly unicode aware, e.g. with an fstream. This can also
86          * be used for passing file names to external commands, but only if
87          * you are sure that the stem of the name will not be used for
88          * producing derivative files. For example, don't use this for passing
89          * file names to LaTeX, as the stem of the .dvi file will not correspond
90          * to the stem of the .tex file anymore.
91          * Use os::CREATE if the file is to be accessed for writing.
92          */
93         std::string toSafeFilesystemEncoding(os::file_access how = os::EXISTING) const;
94
95         /// returns true if the file exists
96         bool exists() const;
97         /// refreshes the file info
98         void refresh() const;
99         /// \return true if this object points to a symbolic link.
100         bool isSymLink() const;
101         /// \return true if the file is empty.
102         bool isFileEmpty() const;
103         /// returns time of last write access
104         std::time_t lastModified() const;
105         /// generates a checksum of a file
106         virtual unsigned long checksum() const;
107         /// return true when file is readable but not writable
108         bool isReadOnly() const;
109         /// return true when it names a directory
110         bool isDirectory() const;
111         /// return true when directory is readable
112         bool isReadableDirectory() const;
113         /// return true when it is a file and readable
114         virtual bool isReadableFile() const;
115         /// return true when file/directory is writable
116         bool isWritable() const;
117         /// return true when file/directory is writable (write test file)
118         bool isDirWritable() const;
119         /// \return list other files in the directory having optional extension 'ext'.
120         FileNameList dirList(std::string const & ext) const;
121         
122         /// copy a file
123         /// \return true when file/directory is writable (write test file)
124         /// \warning This methods has different semantics when system level
125         /// copy command, it will overwrite the \c target file if it exists,
126         bool copyTo(FileName const & target) const;
127
128         /// remove pointed file.
129         /// \return true on success.
130         bool removeFile() const;
131
132         /// rename pointed file.
133         /// \return false if the operation fails or if the \param target file
134         /// already exists.
135         /// \return true on success.
136         bool renameTo(FileName const & target) const;
137
138         /// move pointed file to \param target.
139         /// \return true on success.
140         bool moveTo(FileName const & target) const;
141
142         /// change mode of pointed file.
143         /// This methods does nothing and return true on platforms that does not
144         /// support this.
145         /// \return true on success.
146         bool changePermission(unsigned long int mode) const;
147
148         /// remove pointed directory and all contents.
149         /// \return true on success.
150         bool destroyDirectory() const;
151         /// Creates pointed directory.
152         /// \return true on success.
153         bool createDirectory(int permissions) const;
154         /// Creates pointed path.
155         /// \return true on success.
156         bool createPath() const;
157
158         /// Get the contents of a file as a huge docstring.
159         /// \param encoding defines the encoding of the file contents.
160         /// Only four encodings are supported:
161         /// "UTF-8", "ascii", "latin1" and "local8bit" which uses the
162         /// current system locale.
163         docstring fileContents(std::string const & encoding) const;
164
165         /// Change extension.
166         /**
167         * If oldname does not have an extension, it is appended.
168         * If the extension is empty, any extension is removed from the name.
169         */
170         void changeExtension(std::string const & extension);
171
172         static FileName fromFilesystemEncoding(std::string const & name);
173         /// (securely) create a temporary file with the given mask.
174         /// \p mask must be in filesystem encoding, if it contains a
175         /// relative path, the template file will be created in the global
176         /// temporary directory as given by 'package().temp_dir()'.
177         static FileName tempName(std::string const & mask);
178         static FileName tempName(FileName const & temp_dir,
179                 std::string const & mask);
180
181         /// get the current working directory
182         static FileName getcwd();
183
184         static FileName tempPath();
185
186         /// filename without path
187         std::string onlyFileName() const;
188         /// filename without path and without extension
189         std::string onlyFileNameWithoutExt() const;
190         /// only extension after the last dot.
191         std::string extension() const;
192         /** checks if the file has the given extension
193                 on Windows and Mac it compares case insensitive */
194         bool hasExtension(const std::string & ext);
195         /// path without file name
196         FileName onlyPath() const;
197         /// path of parent directory
198         /// returns empty path for root directory
199         FileName parentPath() const;
200         /// used for display in the Gui
201         docstring displayName(int threshold = 1000) const;
202
203         /// change to a directory, return success
204         bool chdir() const;
205         
206         /// \param buffer_path if empty, uses `pwd`
207         docstring const relPath(std::string const & path) const;
208         
209         docstring const absoluteFilePath() const;
210
211 private:
212         friend bool equivalent(FileName const &, FileName const &);
213         ///
214         struct Private;
215         Private * const d;
216 };
217
218
219 /// \return true if lhs and rhs represent the same file. E.g.,
220 /// they might be hardlinks of one another.
221 bool equivalent(FileName const & lhs, FileName const & rhs);
222 /// \return true if the absolute path names are the same.
223 bool operator==(FileName const &, FileName const &);
224 ///
225 bool operator!=(FileName const &, FileName const &);
226 /// Lexically compares the absolute path names.
227 bool operator<(FileName const &, FileName const &);
228 /// Lexically compares the absolute path names.
229 bool operator>(FileName const &, FileName const &);
230 /// Writes the absolute path name to the stream.
231 std::ostream & operator<<(std::ostream &, FileName const &);
232
233
234 /**
235  * Class for storing file names that appear in documents (e. g. child
236  * documents, included figures etc).
237  * The file name must not denote a file in our temporary directory, but a
238  * file that the user chose.
239  */
240 class DocFileName : public FileName {
241 public:
242         DocFileName();
243         /** \param abs_filename the file in question. Must have an absolute path.
244          *  \param save_abs_path how is the filename to be output?
245          */
246         DocFileName(std::string const & abs_filename, bool save_abs_path = true);
247         DocFileName(FileName const & abs_filename, bool save_abs_path = true);
248
249         /** \param filename the file in question. May have either a relative
250          *  or an absolute path.
251          *  \param buffer_path if \c filename has a relative path, generate
252          *  the absolute path using this.
253          */
254         virtual void set(std::string const & filename, std::string const & buffer_path);
255         ///
256         void erase();
257         ///
258         bool saveAbsPath() const { return save_abs_path_; }
259         /// \param buffer_path if empty, uses `pwd`
260         std::string relFileName(std::string const & buffer_path = empty_string()) const;
261         /// \param buf_path if empty, uses `pwd`
262         std::string outputFileName(std::string const & buf_path = empty_string()) const;
263         
264         /** @returns a mangled representation of the absolute file name
265          *  suitable for use in the temp dir when, for example, converting
266          *  an image file to another format.
267          *
268          *  @param dir the directory that will contain this file with
269          *  its mangled name. This information is used by the mangling
270          *  algorithm when determining the maximum allowable length of
271          *  the mangled name.
272          *
273          *  An example of a mangled name:
274          *  C:/foo bar/baz.eps -> 0C__foo_bar_baz.eps
275          *
276          *  It is guaranteed that
277          *  - two different filenames have different mangled names
278          *  - two FileName instances with the same filename have identical
279          *    mangled names.
280          *
281          *  Only the mangled file name is returned. It is not prepended
282          *  with @c dir.
283          */
284         std::string
285         mangledFileName(std::string const & dir = empty_string()) const;
286
287         /// \return the absolute file name without its .gz, .z, .Z extension
288         std::string unzippedFileName() const;
289
290 private:
291         /// Records whether we should save (or export) the filename as a relative
292         /// or absolute path.
293         bool save_abs_path_;
294 };
295
296
297 /// \return true if these have the same absolute path name AND 
298 /// if save_abs_path_ has the same value in both cases.
299 bool operator==(DocFileName const &, DocFileName const &);
300 ///
301 bool operator!=(DocFileName const &, DocFileName const &);
302
303 } // namespace support
304 } // namespace lyx
305
306 #endif