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