]> git.lyx.org Git - lyx.git/blob - src/support/FileName.h
I'll find a solution for the 'dirList problem', Abdel.
[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/strfwd.h"
16
17 #include <ctime>
18
19
20 namespace lyx {
21 namespace support {
22
23 /**
24  * Class for storing file names.
25  * The file name may be empty. If it is not empty it is an absolute path.
26  * The file may or may not exist.
27  */
28 class FileName {
29 public:
30         /// Constructor for empty filenames
31         FileName();
32         /** Constructor for nonempty filenames.
33          * explicit because we don't want implicit conversion of relative
34          * paths in function arguments (e.g. of unlink).
35          * \param abs_filename the file in question. Must have an absolute path.
36          * Encoding is always UTF-8.
37          */
38         explicit FileName(std::string const & abs_filename);
39
40         /// copy constructor.
41         FileName(FileName const &);
42
43         ///
44         FileName & operator=(FileName const &);
45
46         virtual ~FileName() {}
47         /** Set a new filename.
48          * \param filename the file in question. Must have an absolute path.
49          * Encoding is always UTF-8.
50          */
51         virtual void set(std::string const & filename);
52         virtual void erase();
53         /// Is this filename empty?
54         bool empty() const;
55         /// get the absolute file name in UTF-8 encoding
56         std::string absFilename() const;
57         /**
58          * Get the file name in the encoding used by the file system.
59          * Only use this for accessing the file, e.g. with an fstream.
60          */
61         std::string toFilesystemEncoding() const;
62
63         /// returns true if the file exists
64         bool exists() const;
65         /// \return true if this object points to a symbolic link.
66         bool isSymLink() const;
67         /// \return true if the file is empty.
68         bool isFileEmpty() const;
69         /// returns time of last write access
70         std::time_t lastModified() const;
71         /// generates a checksum of a file
72         unsigned long checksum() const;
73         /// return true when file is readable but not writabel
74         bool isReadOnly() const;
75         /// return true when it names a directory
76         bool isDirectory() const;
77         /// return true when file/directory is readable
78         bool isReadableDirectory() const;
79         /// return true when it is a file and readable
80         bool isReadableFile() const;
81         /// return true when file/directory is writable
82         bool isWritable() const;
83         /// return true when file/directory is writable (write test file)
84         bool isDirWritable() const;
85         
86         /// copy a file
87         /// \return true when file/directory is writable (write test file)
88         /// \param overwrite: set to true if we should erase the \c target 
89         /// file if it exists,
90         bool copyTo(FileName const & target, bool overwrite = false) const;
91
92         /// remove pointed file.
93         /// \retrun true on success.
94         bool removeFile() const;
95
96         /// remove directory and all contents, returns true on success
97         bool destroyDirectory() const;
98         /// Creates directory. Returns true on success
99         bool createDirectory(int permissions) const;
100
101         /// Get the contents of a file as a huge std::string
102         std::string fileContents() const;
103         /**
104          * Get a FileName from \p name in the encoding used by the file system.
105          * Only use this for filenames you got directly from the file system,
106          * e.g. from reading a directory.
107          * \p name must have an absolute path.
108          */
109
110         /// Change extension.
111         /**
112         * If oldname does not have an extension, it is appended.
113         * If the extension is empty, any extension is removed from the name.
114         */
115         void changeExtension(std::string const & extension);
116
117         /** Guess the file format name (as in Format::name()) from contents.
118          Normally you don't want to use this directly, but rather
119          Formats::getFormatFromFile().
120          */
121         std::string guessFormatFromContents() const;
122
123         /// check for zipped file
124         bool isZippedFile() const;
125
126         static FileName fromFilesystemEncoding(std::string const & name);
127         /// (securely) create a temporary file in the given dir with the given mask
128         /// \p mask must be in filesystem encoding
129         static FileName tempName(FileName const & dir = FileName(),
130                                                 std::string const & mask = empty_string());
131
132         /// filename without path
133         std::string onlyFileName() const;
134         /// path without file name
135         FileName onlyPath() const;
136         /// used for display in the Gui
137         docstring displayName(int threshold = 1000) const;
138
139 //private:
140         friend class DocFileName;
141         ///
142         struct Private;
143         Private * const d;
144 };
145
146
147 bool operator==(FileName const &, FileName const &);
148 bool operator!=(FileName const &, FileName const &);
149 bool operator<(FileName const &, FileName const &);
150 bool operator>(FileName const &, FileName const &);
151 std::ostream & operator<<(std::ostream &, FileName const &);
152
153
154 /**
155  * Class for storing file names that appear in documents (e. g. child
156  * documents, included figures etc).
157  * The file name must not denote a file in our temporary directory, but a
158  * file that the user chose.
159  */
160 class DocFileName : public FileName {
161 public:
162         DocFileName();
163         /** \param abs_filename the file in question. Must have an absolute path.
164          *  \param save_abs_path how is the file to be output to file?
165          */
166         DocFileName(std::string const & abs_filename, bool save_abs_path = true);
167         DocFileName(FileName const & abs_filename, bool save_abs_path = true);
168
169         /** \param filename the file in question. May have either a relative
170          *  or an absolute path.
171          *  \param buffer_path if \c filename has a relative path, generate
172          *  the absolute path using this.
173          */
174         void set(std::string const & filename, std::string const & buffer_path);
175
176         void erase();
177
178         bool saveAbsPath() const { return save_abs_path_; }
179         /// \param buffer_path if empty, uses `pwd`
180         std::string relFilename(std::string const & buffer_path = empty_string()) const;
181         /// \param buf_path if empty, uses `pwd`
182         std::string outputFilename(std::string const & buf_path = empty_string()) const;
183         
184         /** @returns a mangled representation of the absolute file name
185          *  suitable for use in the temp dir when, for example, converting
186          *  an image file to another format.
187          *
188          *  @param dir the directory that will contain this file with
189          *  its mangled name. This information is used by the mangling
190          *  algorithm when determining the maximum allowable length of
191          *  the mangled name.
192          *
193          *  An example of a mangled name:
194          *  C:/foo bar/baz.eps -> 0C__foo_bar_baz.eps
195          *
196          *  It is guaranteed that
197          *  - two different filenames have different mangled names
198          *  - two FileName instances with the same filename have identical
199          *    mangled names.
200          *
201          *  Only the mangled file name is returned. It is not prepended
202          *  with @c dir.
203          */
204         std::string
205         mangledFilename(std::string const & dir = empty_string()) const;
206
207         /// \return true if the file is compressed.
208         bool isZipped() const;
209         /// \return the absolute file name without its .gz, .z, .Z extension
210         std::string unzippedFilename() const;
211
212 private:
213         bool save_abs_path_;
214         /// Cache for isZipped() because zippedFile() is expensive
215         mutable bool zipped_;
216         /// Is zipped_ valid?
217         mutable bool zipped_valid_;
218 };
219
220
221 bool operator==(DocFileName const &, DocFileName const &);
222 bool operator!=(DocFileName const &, DocFileName const &);
223
224
225 } // namespace support
226 } // namespace lyx
227
228 #endif