LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Path.h
Go to the documentation of this file.
1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the llvm::sys::path namespace. It is designed after
11 // TR2/boost filesystem (v3), but modified to remove exception handling and the
12 // path class.
13 //
14 //===----------------------------------------------------------------------===//
15 
16 #ifndef LLVM_SUPPORT_PATH_H
17 #define LLVM_SUPPORT_PATH_H
18 
19 #include "llvm/ADT/SmallString.h"
20 #include "llvm/ADT/Twine.h"
21 #include "llvm/Support/DataTypes.h"
22 #include <iterator>
23 
24 namespace llvm {
25 namespace sys {
26 namespace path {
27 
28 /// @name Lexical Component Iterator
29 /// @{
30 
31 /// @brief Path iterator.
32 ///
33 /// This is a bidirectional iterator that iterates over the individual
34 /// components in \a path. The forward traversal order is as follows:
35 /// * The root-name element, if present.
36 /// * The root-directory element, if present.
37 /// * Each successive filename element, if present.
38 /// * Dot, if one or more trailing non-root slash characters are present.
39 /// The backwards traversal order is the reverse of forward traversal.
40 ///
41 /// Iteration examples. Each component is separated by ',':
42 /// @code
43 /// / => /
44 /// /foo => /,foo
45 /// foo/ => foo,.
46 /// /foo/bar => /,foo,bar
47 /// ../ => ..,.
48 /// C:\foo\bar => C:,/,foo,bar
49 /// @endcode
51  StringRef Path; ///< The entire path.
52  StringRef Component; ///< The current component. Not necessarily in Path.
53  size_t Position; ///< The iterators current position within Path.
54 
55  // An end iterator has Position = Path.size() + 1.
56  friend const_iterator begin(StringRef path);
57  friend const_iterator end(StringRef path);
58 
59 public:
60  typedef const StringRef value_type;
61  typedef ptrdiff_t difference_type;
63  typedef value_type *pointer;
64  typedef std::bidirectional_iterator_tag iterator_category;
65 
66  reference operator*() const { return Component; }
67  pointer operator->() const { return &Component; }
68  const_iterator &operator++(); // preincrement
69  const_iterator &operator++(int); // postincrement
70  const_iterator &operator--(); // predecrement
71  const_iterator &operator--(int); // postdecrement
72  bool operator==(const const_iterator &RHS) const;
73  bool operator!=(const const_iterator &RHS) const;
74 
75  /// @brief Difference in bytes between this and RHS.
76  ptrdiff_t operator-(const const_iterator &RHS) const;
77 };
78 
79 typedef std::reverse_iterator<const_iterator> reverse_iterator;
80 
81 /// @brief Get begin iterator over \a path.
82 /// @param path Input path.
83 /// @returns Iterator initialized with the first component of \a path.
85 
86 /// @brief Get end iterator over \a path.
87 /// @param path Input path.
88 /// @returns Iterator initialized to the end of \a path.
90 
91 /// @brief Get reverse begin iterator over \a path.
92 /// @param path Input path.
93 /// @returns Iterator initialized with the first reverse component of \a path.
95  return reverse_iterator(end(path));
96 }
97 
98 /// @brief Get reverse end iterator over \a path.
99 /// @param path Input path.
100 /// @returns Iterator initialized to the reverse end of \a path.
102  return reverse_iterator(begin(path));
103 }
104 
105 /// @}
106 /// @name Lexical Modifiers
107 /// @{
108 
109 /// @brief Remove the last component from \a path unless it is the root dir.
110 ///
111 /// @code
112 /// directory/filename.cpp => directory/
113 /// directory/ => directory
114 /// filename.cpp => <empty>
115 /// / => /
116 /// @endcode
117 ///
118 /// @param path A path that is modified to not have a file component.
120 
121 /// @brief Replace the file extension of \a path with \a extension.
122 ///
123 /// @code
124 /// ./filename.cpp => ./filename.extension
125 /// ./filename => ./filename.extension
126 /// ./ => ./.extension
127 /// @endcode
128 ///
129 /// @param path A path that has its extension replaced with \a extension.
130 /// @param extension The extension to be added. It may be empty. It may also
131 /// optionally start with a '.', if it does not, one will be
132 /// prepended.
134 
135 /// @brief Append to path.
136 ///
137 /// @code
138 /// /foo + bar/f => /foo/bar/f
139 /// /foo/ + bar/f => /foo/bar/f
140 /// foo + bar/f => foo/bar/f
141 /// @endcode
142 ///
143 /// @param path Set to \a path + \a component.
144 /// @param a The component to be appended to \a path.
145 void append(SmallVectorImpl<char> &path, const Twine &a,
146  const Twine &b = "",
147  const Twine &c = "",
148  const Twine &d = "");
149 
150 /// @brief Append to path.
151 ///
152 /// @code
153 /// /foo + [bar,f] => /foo/bar/f
154 /// /foo/ + [bar,f] => /foo/bar/f
155 /// foo + [bar,f] => foo/bar/f
156 /// @endcode
157 ///
158 /// @param path Set to \a path + [\a begin, \a end).
159 /// @param begin Start of components to append.
160 /// @param end One past the end of components to append.
161 void append(SmallVectorImpl<char> &path,
162  const_iterator begin, const_iterator end);
163 
164 /// @}
165 /// @name Transforms (or some other better name)
166 /// @{
167 
168 /// Convert path to the native form. This is used to give paths to users and
169 /// operating system calls in the platform's normal way. For example, on Windows
170 /// all '/' are converted to '\'.
171 ///
172 /// @param path A path that is transformed to native format.
173 /// @param result Holds the result of the transformation.
174 void native(const Twine &path, SmallVectorImpl<char> &result);
175 
176 /// Convert path to the native form in place. This is used to give paths to
177 /// users and operating system calls in the platform's normal way. For example,
178 /// on Windows all '/' are converted to '\'.
179 ///
180 /// @param path A path that is transformed to native format.
181 void native(SmallVectorImpl<char> &path);
182 
183 /// @}
184 /// @name Lexical Observers
185 /// @{
186 
187 /// @brief Get root name.
188 ///
189 /// @code
190 /// //net/hello => //net
191 /// c:/hello => c: (on Windows, on other platforms nothing)
192 /// /hello => <empty>
193 /// @endcode
194 ///
195 /// @param path Input path.
196 /// @result The root name of \a path if it has one, otherwise "".
197 const StringRef root_name(StringRef path);
198 
199 /// @brief Get root directory.
200 ///
201 /// @code
202 /// /goo/hello => /
203 /// c:/hello => /
204 /// d/file.txt => <empty>
205 /// @endcode
206 ///
207 /// @param path Input path.
208 /// @result The root directory of \a path if it has one, otherwise
209 /// "".
211 
212 /// @brief Get root path.
213 ///
214 /// Equivalent to root_name + root_directory.
215 ///
216 /// @param path Input path.
217 /// @result The root path of \a path if it has one, otherwise "".
218 const StringRef root_path(StringRef path);
219 
220 /// @brief Get relative path.
221 ///
222 /// @code
223 /// C:\hello\world => hello\world
224 /// foo/bar => foo/bar
225 /// /foo/bar => foo/bar
226 /// @endcode
227 ///
228 /// @param path Input path.
229 /// @result The path starting after root_path if one exists, otherwise "".
230 const StringRef relative_path(StringRef path);
231 
232 /// @brief Get parent path.
233 ///
234 /// @code
235 /// / => <empty>
236 /// /foo => /
237 /// foo/../bar => foo/..
238 /// @endcode
239 ///
240 /// @param path Input path.
241 /// @result The parent path of \a path if one exists, otherwise "".
242 const StringRef parent_path(StringRef path);
243 
244 /// @brief Get filename.
245 ///
246 /// @code
247 /// /foo.txt => foo.txt
248 /// . => .
249 /// .. => ..
250 /// / => /
251 /// @endcode
252 ///
253 /// @param path Input path.
254 /// @result The filename part of \a path. This is defined as the last component
255 /// of \a path.
256 const StringRef filename(StringRef path);
257 
258 /// @brief Get stem.
259 ///
260 /// If filename contains a dot but not solely one or two dots, result is the
261 /// substring of filename ending at (but not including) the last dot. Otherwise
262 /// it is filename.
263 ///
264 /// @code
265 /// /foo/bar.txt => bar
266 /// /foo/bar => bar
267 /// /foo/.txt => <empty>
268 /// /foo/. => .
269 /// /foo/.. => ..
270 /// @endcode
271 ///
272 /// @param path Input path.
273 /// @result The stem of \a path.
274 const StringRef stem(StringRef path);
275 
276 /// @brief Get extension.
277 ///
278 /// If filename contains a dot but not solely one or two dots, result is the
279 /// substring of filename starting at (and including) the last dot, and ending
280 /// at the end of \a path. Otherwise "".
281 ///
282 /// @code
283 /// /foo/bar.txt => .txt
284 /// /foo/bar => <empty>
285 /// /foo/.txt => .txt
286 /// @endcode
287 ///
288 /// @param path Input path.
289 /// @result The extension of \a path.
290 const StringRef extension(StringRef path);
291 
292 /// @brief Check whether the given char is a path separator on the host OS.
293 ///
294 /// @param value a character
295 /// @result true if \a value is a path separator character on the host OS
296 bool is_separator(char value);
297 
298 /// @brief Get the typical temporary directory for the system, e.g.,
299 /// "/var/tmp" or "C:/TEMP"
300 ///
301 /// @param erasedOnReboot Whether to favor a path that is erased on reboot
302 /// rather than one that potentially persists longer. This parameter will be
303 /// ignored if the user or system has set the typical environment variable
304 /// (e.g., TEMP on Windows, TMPDIR on *nix) to specify a temporary directory.
305 ///
306 /// @param result Holds the resulting path name.
307 void system_temp_directory(bool erasedOnReboot, SmallVectorImpl<char> &result);
308 
309 /// @brief Has root name?
310 ///
311 /// root_name != ""
312 ///
313 /// @param path Input path.
314 /// @result True if the path has a root name, false otherwise.
315 bool has_root_name(const Twine &path);
316 
317 /// @brief Has root directory?
318 ///
319 /// root_directory != ""
320 ///
321 /// @param path Input path.
322 /// @result True if the path has a root directory, false otherwise.
323 bool has_root_directory(const Twine &path);
324 
325 /// @brief Has root path?
326 ///
327 /// root_path != ""
328 ///
329 /// @param path Input path.
330 /// @result True if the path has a root path, false otherwise.
331 bool has_root_path(const Twine &path);
332 
333 /// @brief Has relative path?
334 ///
335 /// relative_path != ""
336 ///
337 /// @param path Input path.
338 /// @result True if the path has a relative path, false otherwise.
339 bool has_relative_path(const Twine &path);
340 
341 /// @brief Has parent path?
342 ///
343 /// parent_path != ""
344 ///
345 /// @param path Input path.
346 /// @result True if the path has a parent path, false otherwise.
347 bool has_parent_path(const Twine &path);
348 
349 /// @brief Has filename?
350 ///
351 /// filename != ""
352 ///
353 /// @param path Input path.
354 /// @result True if the path has a filename, false otherwise.
355 bool has_filename(const Twine &path);
356 
357 /// @brief Has stem?
358 ///
359 /// stem != ""
360 ///
361 /// @param path Input path.
362 /// @result True if the path has a stem, false otherwise.
363 bool has_stem(const Twine &path);
364 
365 /// @brief Has extension?
366 ///
367 /// extension != ""
368 ///
369 /// @param path Input path.
370 /// @result True if the path has a extension, false otherwise.
371 bool has_extension(const Twine &path);
372 
373 /// @brief Is path absolute?
374 ///
375 /// @param path Input path.
376 /// @result True if the path is absolute, false if it is not.
377 bool is_absolute(const Twine &path);
378 
379 /// @brief Is path relative?
380 ///
381 /// @param path Input path.
382 /// @result True if the path is relative, false if it is not.
383 bool is_relative(const Twine &path);
384 
385 } // end namespace path
386 } // end namespace sys
387 } // end namespace llvm
388 
389 #endif
const_iterator end(StringRef path)
Get end iterator over path.
Definition: Path.cpp:181
bool is_relative(const Twine &path)
Is path relative?
Definition: Path.cpp:628
const StringRef parent_path(StringRef path)
Get parent path.
Definition: Path.cpp:419
void replace_extension(SmallVectorImpl< char > &path, const Twine &extension)
Replace the file extension of path with extension.
Definition: Path.cpp:433
bool has_stem(const Twine &path)
Has stem?
Definition: Path.cpp:600
const StringRef extension(StringRef path)
Get extension.
Definition: Path.cpp:484
const_iterator begin(StringRef path)
Get begin iterator over path.
Definition: Path.cpp:173
std::bidirectional_iterator_tag iterator_category
Definition: Path.h:64
bool has_root_directory(const Twine &path)
Has root directory?
Definition: Path.cpp:565
bool operator==(const const_iterator &RHS) const
Definition: Path.cpp:271
void append(SmallVectorImpl< char > &path, const Twine &a, const Twine &b="", const Twine &c="", const Twine &d="")
Append to path.
Definition: Path.cpp:372
void native(const Twine &path, SmallVectorImpl< char > &result)
Definition: Path.cpp:451
void remove_filename(SmallVectorImpl< char > &path)
Remove the last component from path unless it is the root dir.
Definition: Path.cpp:427
pointer operator->() const
Definition: Path.h:67
bool is_absolute(const Twine &path)
Is path absolute?
Definition: Path.cpp:614
bool operator!=(const const_iterator &RHS) const
Definition: Path.cpp:276
bool is_separator(char value)
Check whether the given char is a path separator on the host OS.
Definition: Path.cpp:497
const StringRef stem(StringRef path)
Get stem.
Definition: Path.cpp:471
bool has_relative_path(const Twine &path)
Has relative path?
Definition: Path.cpp:579
friend const_iterator end(StringRef path)
Get end iterator over path.
Definition: Path.cpp:181
bool has_filename(const Twine &path)
Has filename?
Definition: Path.cpp:586
reference operator*() const
Definition: Path.h:66
const StringRef root_directory(StringRef path)
Get root directory.
Definition: Path.cpp:338
const_iterator & operator++()
Definition: Path.cpp:188
ptrdiff_t operator-(const const_iterator &RHS) const
Difference in bytes between this and RHS.
Definition: Path.cpp:280
const StringRef root_path(StringRef path)
Get root path.
Definition: Path.cpp:284
const_iterator & operator--()
Definition: Path.cpp:241
friend const_iterator begin(StringRef path)
Get begin iterator over path.
Definition: Path.cpp:173
value_type & reference
Definition: Path.h:62
const StringRef value_type
Definition: Path.h:60
Path iterator.
Definition: Path.h:50
reverse_iterator rbegin(StringRef path)
Get reverse begin iterator over path.
Definition: Path.h:94
std::reverse_iterator< const_iterator > reverse_iterator
Definition: Path.h:79
bool has_root_path(const Twine &path)
Has root path?
Definition: Path.cpp:572
bool has_root_name(const Twine &path)
Has root name?
Definition: Path.cpp:558
const StringRef relative_path(StringRef path)
Get relative path.
Definition: Path.cpp:367
reverse_iterator rend(StringRef path)
Get reverse end iterator over path.
Definition: Path.h:101
void system_temp_directory(bool erasedOnReboot, SmallVectorImpl< char > &result)
Get the typical temporary directory for the system, e.g., "/var/tmp" or "C:/TEMP".
Definition: Path.cpp:507
bool has_extension(const Twine &path)
Has extension?
Definition: Path.cpp:607
const StringRef filename(StringRef path)
Get filename.
Definition: Path.cpp:467
const StringRef root_name(StringRef path)
Get root name.
Definition: Path.cpp:316
bool has_parent_path(const Twine &path)
Has parent path?
Definition: Path.cpp:593