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