]> git.lyx.org Git - lyx.git/blob - src/support/FileName.h
Use libmagic for file format detection if available.
[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         /** Guess the file format name (as in Format::name()) from contents.
173          Normally you don't want to use this directly, but rather
174          Formats::getFormatFromFile().
175          */
176         std::string guessFormatFromContents() const;
177
178         static FileName fromFilesystemEncoding(std::string const & name);
179         /// (securely) create a temporary file with the given mask.
180         /// \p mask must be in filesystem encoding, if it contains a
181         /// relative path, the template file will be created in the global
182         /// temporary directory as given by 'package().temp_dir()'.
183         static FileName tempName(std::string const & mask = empty_string());
184         static FileName tempName(FileName const & temp_dir,
185                 std::string const & mask);
186
187         /// get the current working directory
188         static FileName getcwd();
189
190         static FileName tempPath();
191
192         /// filename without path
193         std::string onlyFileName() const;
194         /// filename without path and without extension
195         std::string onlyFileNameWithoutExt() const;
196         /// only extension after the last dot.
197         std::string extension() const;
198         /** checks if the file has the given extension
199                 on Windows and Mac it compares case insensitive */
200         bool hasExtension(const std::string & ext);
201         /// path without file name
202         FileName onlyPath() const;
203         /// used for display in the Gui
204         docstring displayName(int threshold = 1000) const;
205
206         /// change to a directory, return success
207         bool chdir() const;
208         
209         /// \param buffer_path if empty, uses `pwd`
210         docstring const relPath(std::string const & path) const;
211         
212         docstring const absoluteFilePath() const;
213
214 private:
215         friend bool equivalent(FileName const &, FileName const &);
216         ///
217         struct Private;
218         Private * const d;
219 };
220
221
222 /// \return true if lhs and rhs represent the same file. E.g.,
223 /// they might be hardlinks of one another.
224 bool equivalent(FileName const & lhs, FileName const & rhs);
225 /// \return true if the absolute path names are the same.
226 bool operator==(FileName const &, FileName const &);
227 ///
228 bool operator!=(FileName const &, FileName const &);
229 /// Lexically compares the absolute path names.
230 bool operator<(FileName const &, FileName const &);
231 /// Lexically compares the absolute path names.
232 bool operator>(FileName const &, FileName const &);
233 /// Writes the absolute path name to the stream.
234 std::ostream & operator<<(std::ostream &, FileName const &);
235
236
237 /**
238  * Class for storing file names that appear in documents (e. g. child
239  * documents, included figures etc).
240  * The file name must not denote a file in our temporary directory, but a
241  * file that the user chose.
242  */
243 class DocFileName : public FileName {
244 public:
245         DocFileName();
246         /** \param abs_filename the file in question. Must have an absolute path.
247          *  \param save_abs_path how is the filename to be output?
248          */
249         DocFileName(std::string const & abs_filename, bool save_abs_path = true);
250         DocFileName(FileName const & abs_filename, bool save_abs_path = true);
251
252         /** \param filename the file in question. May have either a relative
253          *  or an absolute path.
254          *  \param buffer_path if \c filename has a relative path, generate
255          *  the absolute path using this.
256          */
257         virtual void set(std::string const & filename, std::string const & buffer_path);
258         ///
259         void erase();
260         ///
261         bool saveAbsPath() const { return save_abs_path_; }
262         /// \param buffer_path if empty, uses `pwd`
263         std::string relFileName(std::string const & buffer_path = empty_string()) const;
264         /// \param buf_path if empty, uses `pwd`
265         std::string outputFileName(std::string const & buf_path = empty_string()) const;
266         
267         /** @returns a mangled representation of the absolute file name
268          *  suitable for use in the temp dir when, for example, converting
269          *  an image file to another format.
270          *
271          *  @param dir the directory that will contain this file with
272          *  its mangled name. This information is used by the mangling
273          *  algorithm when determining the maximum allowable length of
274          *  the mangled name.
275          *
276          *  An example of a mangled name:
277          *  C:/foo bar/baz.eps -> 0C__foo_bar_baz.eps
278          *
279          *  It is guaranteed that
280          *  - two different filenames have different mangled names
281          *  - two FileName instances with the same filename have identical
282          *    mangled names.
283          *
284          *  Only the mangled file name is returned. It is not prepended
285          *  with @c dir.
286          */
287         std::string
288         mangledFileName(std::string const & dir = empty_string()) const;
289
290         /// \return the absolute file name without its .gz, .z, .Z extension
291         std::string unzippedFileName() const;
292
293 private:
294         /// Records whether we should save (or export) the filename as a relative
295         /// or absolute path.
296         bool save_abs_path_;
297 };
298
299
300 /// \return true if these have the same absolute path name AND 
301 /// if save_abs_path_ has the same value in both cases.
302 bool operator==(DocFileName const &, DocFileName const &);
303 ///
304 bool operator!=(DocFileName const &, DocFileName const &);
305
306 } // namespace support
307 } // namespace lyx
308
309 #endif