Update doxygen comment to match renamed parameters.
[oota-llvm.git] / include / llvm / Support / FileSystem.h
1 //===- llvm/Support/FileSystem.h - File System OS 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::fs namespace. It is designed after
11 // TR2/boost filesystem (v3), but modified to remove exception handling and the
12 // path class.
13 //
14 // All functions return an error_code and their actual work via the last out
15 // argument. The out argument is defined if and only if errc::success is
16 // returned. A function may return any error code in the generic or system
17 // category. However, they shall be equivalent to any error conditions listed
18 // in each functions respective documentation if the condition applies. [ note:
19 // this does not guarantee that error_code will be in the set of explicitly
20 // listed codes, but it does guarantee that if any of the explicitly listed
21 // errors occur, the correct error_code will be used ]. All functions may
22 // return errc::not_enough_memory if there is not enough memory to complete the
23 // operation.
24 //
25 //===----------------------------------------------------------------------===//
26
27 #ifndef LLVM_SUPPORT_FILESYSTEM_H
28 #define LLVM_SUPPORT_FILESYSTEM_H
29
30 #include "llvm/ADT/IntrusiveRefCntPtr.h"
31 #include "llvm/ADT/OwningPtr.h"
32 #include "llvm/ADT/SmallString.h"
33 #include "llvm/ADT/Twine.h"
34 #include "llvm/Support/DataTypes.h"
35 #include "llvm/Support/ErrorHandling.h"
36 #include "llvm/Support/TimeValue.h"
37 #include "llvm/Support/system_error.h"
38 #include <ctime>
39 #include <iterator>
40 #include <stack>
41 #include <string>
42 #include <vector>
43
44 #ifdef HAVE_SYS_STAT_H
45 #include <sys/stat.h>
46 #endif
47
48 namespace llvm {
49 namespace sys {
50 namespace fs {
51
52 /// file_type - An "enum class" enumeration for the file system's view of the
53 ///             type.
54 struct file_type {
55   enum _ {
56     status_error,
57     file_not_found,
58     regular_file,
59     directory_file,
60     symlink_file,
61     block_file,
62     character_file,
63     fifo_file,
64     socket_file,
65     type_unknown
66   };
67
68   file_type(_ v) : v_(v) {}
69   explicit file_type(int v) : v_(_(v)) {}
70   operator int() const {return v_;}
71
72 private:
73   int v_;
74 };
75
76 /// copy_option - An "enum class" enumeration of copy semantics for copy
77 ///               operations.
78 struct copy_option {
79   enum _ {
80     fail_if_exists,
81     overwrite_if_exists
82   };
83
84   copy_option(_ v) : v_(v) {}
85   explicit copy_option(int v) : v_(_(v)) {}
86   operator int() const {return v_;}
87
88 private:
89   int v_;
90 };
91
92 /// space_info - Self explanatory.
93 struct space_info {
94   uint64_t capacity;
95   uint64_t free;
96   uint64_t available;
97 };
98
99 enum perms {
100   no_perms = 0,
101   owner_read = 0400,
102   owner_write = 0200,
103   owner_exe = 0100,
104   owner_all = owner_read | owner_write | owner_exe,
105   group_read = 040,
106   group_write = 020,
107   group_exe = 010,
108   group_all = group_read | group_write | group_exe,
109   others_read = 04,
110   others_write = 02,
111   others_exe = 01,
112   others_all = others_read | others_write | others_exe,
113   all_read = owner_read | group_read | others_read,
114   all_write = owner_write | group_write | others_write,
115   all_exe = owner_exe | group_exe | others_exe,
116   all_all = owner_all | group_all | others_all,
117   set_uid_on_exe = 04000,
118   set_gid_on_exe = 02000,
119   sticky_bit = 01000,
120   perms_not_known = 0xFFFF
121 };
122
123 // Helper functions so that you can use & and | to manipulate perms bits:
124 inline perms operator|(perms l , perms r) {
125   return static_cast<perms>(
126              static_cast<unsigned short>(l) | static_cast<unsigned short>(r)); 
127 }
128 inline perms operator&(perms l , perms r) {
129   return static_cast<perms>(
130              static_cast<unsigned short>(l) & static_cast<unsigned short>(r)); 
131 }
132 inline perms &operator|=(perms &l, perms r) {
133   l = l | r; 
134   return l; 
135 }
136 inline perms &operator&=(perms &l, perms r) {
137   l = l & r; 
138   return l; 
139 }
140 inline perms operator~(perms x) {
141   return static_cast<perms>(~static_cast<unsigned short>(x));
142 }
143
144
145  
146 /// file_status - Represents the result of a call to stat and friends. It has
147 ///               a platform specific member to store the result.
148 class file_status
149 {
150   #if defined(LLVM_ON_UNIX)
151   dev_t fs_st_dev;
152   ino_t fs_st_ino;
153   time_t fs_st_mtime;
154   uid_t fs_st_uid;
155   gid_t fs_st_gid;
156   off_t fs_st_size;
157   #elif defined (LLVM_ON_WIN32)
158   uint32_t LastWriteTimeHigh;
159   uint32_t LastWriteTimeLow;
160   uint32_t VolumeSerialNumber;
161   uint32_t FileSizeHigh;
162   uint32_t FileSizeLow;
163   uint32_t FileIndexHigh;
164   uint32_t FileIndexLow;
165   #endif
166   friend bool equivalent(file_status A, file_status B);
167   friend error_code status(const Twine &path, file_status &result);
168   friend error_code getUniqueID(const Twine Path, uint64_t &Result);
169   file_type Type;
170   perms Perms;
171 public:
172   explicit file_status(file_type v=file_type::status_error, 
173                       perms prms=perms_not_known)
174     : Type(v), Perms(prms) {}
175
176   // getters
177   file_type type() const { return Type; }
178   perms permissions() const { return Perms; }
179   TimeValue getLastModificationTime() const;
180
181   #if defined(LLVM_ON_UNIX)
182   uint32_t getUser() const { return fs_st_uid; }
183   uint32_t getGroup() const { return fs_st_gid; }
184   uint64_t getSize() const { return fs_st_size; }
185   #elif defined (LLVM_ON_WIN32)
186   uint32_t getUser() const {
187     return 9999; // Not applicable to Windows, so...
188   }
189   uint32_t getGroup() const {
190     return 9999; // Not applicable to Windows, so...
191   }
192   uint64_t getSize() const {
193     return (uint64_t(FileSizeHigh) << 32) + FileSizeLow;
194   }
195   #endif
196
197   // setters
198   void type(file_type v) { Type = v; }
199   void permissions(perms p) { Perms = p; }
200 };
201
202 /// file_magic - An "enum class" enumeration of file types based on magic (the first
203 ///         N bytes of the file).
204 struct file_magic {
205   enum Impl {
206     unknown = 0,              ///< Unrecognized file
207     bitcode,                  ///< Bitcode file
208     archive,                  ///< ar style archive file
209     elf_relocatable,          ///< ELF Relocatable object file
210     elf_executable,           ///< ELF Executable image
211     elf_shared_object,        ///< ELF dynamically linked shared lib
212     elf_core,                 ///< ELF core image
213     macho_object,             ///< Mach-O Object file
214     macho_executable,         ///< Mach-O Executable
215     macho_fixed_virtual_memory_shared_lib, ///< Mach-O Shared Lib, FVM
216     macho_core,               ///< Mach-O Core File
217     macho_preload_executable, ///< Mach-O Preloaded Executable
218     macho_dynamically_linked_shared_lib, ///< Mach-O dynlinked shared lib
219     macho_dynamic_linker,     ///< The Mach-O dynamic linker
220     macho_bundle,             ///< Mach-O Bundle file
221     macho_dynamically_linked_shared_lib_stub, ///< Mach-O Shared lib stub
222     macho_dsym_companion,     ///< Mach-O dSYM companion file
223     macho_universal_binary,   ///< Mach-O universal binary
224     coff_object,              ///< COFF object file
225     pecoff_executable         ///< PECOFF executable file
226   };
227
228   bool is_object() const {
229     return V == unknown ? false : true;
230   }
231
232   file_magic() : V(unknown) {}
233   file_magic(Impl V) : V(V) {}
234   operator Impl() const { return V; }
235
236 private:
237   Impl V;
238 };
239
240 /// @}
241 /// @name Physical Operators
242 /// @{
243
244 /// @brief Make \a path an absolute path.
245 ///
246 /// Makes \a path absolute using the current directory if it is not already. An
247 /// empty \a path will result in the current directory.
248 ///
249 /// /absolute/path   => /absolute/path
250 /// relative/../path => <current-directory>/relative/../path
251 ///
252 /// @param path A path that is modified to be an absolute path.
253 /// @returns errc::success if \a path has been made absolute, otherwise a
254 ///          platform specific error_code.
255 error_code make_absolute(SmallVectorImpl<char> &path);
256
257 /// @brief Copy the file at \a from to the path \a to.
258 ///
259 /// @param from The path to copy the file from.
260 /// @param to The path to copy the file to.
261 /// @param copt Behavior if \a to already exists.
262 /// @returns errc::success if the file has been successfully copied.
263 ///          errc::file_exists if \a to already exists and \a copt ==
264 ///          copy_option::fail_if_exists. Otherwise a platform specific
265 ///          error_code.
266 error_code copy_file(const Twine &from, const Twine &to,
267                      copy_option copt = copy_option::fail_if_exists);
268
269 /// @brief Create all the non-existent directories in path.
270 ///
271 /// @param path Directories to create.
272 /// @param existed Set to true if \a path already existed, false otherwise.
273 /// @returns errc::success if is_directory(path) and existed have been set,
274 ///          otherwise a platform specific error_code.
275 error_code create_directories(const Twine &path, bool &existed);
276
277 /// @brief Convenience function for clients that don't need to know if the
278 ///        directory existed or not.
279 inline error_code create_directories(const Twine &Path) {
280   bool Existed;
281   return create_directories(Path, Existed);
282 }
283
284 /// @brief Create the directory in path.
285 ///
286 /// @param path Directory to create.
287 /// @param existed Set to true if \a path already existed, false otherwise.
288 /// @returns errc::success if is_directory(path) and existed have been set,
289 ///          otherwise a platform specific error_code.
290 error_code create_directory(const Twine &path, bool &existed);
291
292 /// @brief Convenience function for clients that don't need to know if the
293 ///        directory existed or not.
294 inline error_code create_directory(const Twine &Path) {
295   bool Existed;
296   return create_directory(Path, Existed);
297 }
298
299 /// @brief Create a hard link from \a from to \a to.
300 ///
301 /// @param to The path to hard link to.
302 /// @param from The path to hard link from. This is created.
303 /// @returns errc::success if exists(to) && exists(from) && equivalent(to, from)
304 ///          , otherwise a platform specific error_code.
305 error_code create_hard_link(const Twine &to, const Twine &from);
306
307 /// @brief Create a symbolic link from \a from to \a to.
308 ///
309 /// @param to The path to symbolically link to.
310 /// @param from The path to symbolically link from. This is created.
311 /// @returns errc::success if exists(to) && exists(from) && is_symlink(from),
312 ///          otherwise a platform specific error_code.
313 error_code create_symlink(const Twine &to, const Twine &from);
314
315 /// @brief Get the current path.
316 ///
317 /// @param result Holds the current path on return.
318 /// @returns errc::success if the current path has been stored in result,
319 ///          otherwise a platform specific error_code.
320 error_code current_path(SmallVectorImpl<char> &result);
321
322 /// @brief Remove path. Equivalent to POSIX remove().
323 ///
324 /// @param path Input path.
325 /// @param existed Set to true if \a path existed, false if it did not.
326 ///                undefined otherwise.
327 /// @returns errc::success if path has been removed and existed has been
328 ///          successfully set, otherwise a platform specific error_code.
329 error_code remove(const Twine &path, bool &existed);
330
331 /// @brief Convenience function for clients that don't need to know if the file
332 ///        existed or not.
333 inline error_code remove(const Twine &Path) {
334   bool Existed;
335   return remove(Path, Existed);
336 }
337
338 /// @brief Recursively remove all files below \a path, then \a path. Files are
339 ///        removed as if by POSIX remove().
340 ///
341 /// @param path Input path.
342 /// @param num_removed Number of files removed.
343 /// @returns errc::success if path has been removed and num_removed has been
344 ///          successfully set, otherwise a platform specific error_code.
345 error_code remove_all(const Twine &path, uint32_t &num_removed);
346
347 /// @brief Convenience function for clients that don't need to know how many
348 ///        files were removed.
349 inline error_code remove_all(const Twine &Path) {
350   uint32_t Removed;
351   return remove_all(Path, Removed);
352 }
353
354 /// @brief Rename \a from to \a to. Files are renamed as if by POSIX rename().
355 ///
356 /// @param from The path to rename from.
357 /// @param to The path to rename to. This is created.
358 error_code rename(const Twine &from, const Twine &to);
359
360 /// @brief Resize path to size. File is resized as if by POSIX truncate().
361 ///
362 /// @param path Input path.
363 /// @param size Size to resize to.
364 /// @returns errc::success if \a path has been resized to \a size, otherwise a
365 ///          platform specific error_code.
366 error_code resize_file(const Twine &path, uint64_t size);
367
368 /// @}
369 /// @name Physical Observers
370 /// @{
371
372 /// @brief Does file exist?
373 ///
374 /// @param status A file_status previously returned from stat.
375 /// @returns True if the file represented by status exists, false if it does
376 ///          not.
377 bool exists(file_status status);
378
379 /// @brief Does file exist?
380 ///
381 /// @param path Input path.
382 /// @param result Set to true if the file represented by status exists, false if
383 ///               it does not. Undefined otherwise.
384 /// @returns errc::success if result has been successfully set, otherwise a
385 ///          platform specific error_code.
386 error_code exists(const Twine &path, bool &result);
387
388 /// @brief Simpler version of exists for clients that don't need to
389 ///        differentiate between an error and false.
390 inline bool exists(const Twine &path) {
391   bool result;
392   return !exists(path, result) && result;
393 }
394
395 /// @brief Can we execute this file?
396 ///
397 /// @param Path Input path.
398 /// @returns True if we can execute it, false otherwise.
399 bool can_execute(const Twine &Path);
400
401 /// @brief Can we write this file?
402 ///
403 /// @param Path Input path.
404 /// @returns True if we can write to it, false otherwise.
405 bool can_write(const Twine &Path);
406
407 /// @brief Do file_status's represent the same thing?
408 ///
409 /// @param A Input file_status.
410 /// @param B Input file_status.
411 ///
412 /// assert(status_known(A) || status_known(B));
413 ///
414 /// @returns True if A and B both represent the same file system entity, false
415 ///          otherwise.
416 bool equivalent(file_status A, file_status B);
417
418 /// @brief Do paths represent the same thing?
419 ///
420 /// assert(status_known(A) || status_known(B));
421 ///
422 /// @param A Input path A.
423 /// @param B Input path B.
424 /// @param result Set to true if stat(A) and stat(B) have the same device and
425 ///               inode (or equivalent).
426 /// @returns errc::success if result has been successfully set, otherwise a
427 ///          platform specific error_code.
428 error_code equivalent(const Twine &A, const Twine &B, bool &result);
429
430 /// @brief Simpler version of equivalent for clients that don't need to
431 ///        differentiate between an error and false.
432 inline bool equivalent(const Twine &A, const Twine &B) {
433   bool result;
434   return !equivalent(A, B, result) && result;
435 }
436
437 /// @brief Get file size.
438 ///
439 /// @param Path Input path.
440 /// @param Result Set to the size of the file in \a Path.
441 /// @returns errc::success if result has been successfully set, otherwise a
442 ///          platform specific error_code.
443 inline error_code file_size(const Twine &Path, uint64_t &Result) {
444   file_status Status;
445   error_code EC = status(Path, Status);
446   if (EC)
447     return EC;
448   Result = Status.getSize();
449   return error_code::success();
450 }
451
452 /// @brief Does status represent a directory?
453 ///
454 /// @param status A file_status previously returned from status.
455 /// @returns status.type() == file_type::directory_file.
456 bool is_directory(file_status status);
457
458 /// @brief Is path a directory?
459 ///
460 /// @param path Input path.
461 /// @param result Set to true if \a path is a directory, false if it is not.
462 ///               Undefined otherwise.
463 /// @returns errc::success if result has been successfully set, otherwise a
464 ///          platform specific error_code.
465 error_code is_directory(const Twine &path, bool &result);
466
467 /// @brief Does status represent a regular file?
468 ///
469 /// @param status A file_status previously returned from status.
470 /// @returns status_known(status) && status.type() == file_type::regular_file.
471 bool is_regular_file(file_status status);
472
473 /// @brief Is path a regular file?
474 ///
475 /// @param path Input path.
476 /// @param result Set to true if \a path is a regular file, false if it is not.
477 ///               Undefined otherwise.
478 /// @returns errc::success if result has been successfully set, otherwise a
479 ///          platform specific error_code.
480 error_code is_regular_file(const Twine &path, bool &result);
481
482 /// @brief Simpler version of is_regular_file for clients that don't need to
483 ///        differentiate between an error and false.
484 inline bool is_regular_file(const Twine &Path) {
485   bool Result;
486   if (is_regular_file(Path, Result))
487     return false;
488   return Result;
489 }
490
491 /// @brief Does this status represent something that exists but is not a
492 ///        directory, regular file, or symlink?
493 ///
494 /// @param status A file_status previously returned from status.
495 /// @returns exists(s) && !is_regular_file(s) && !is_directory(s) &&
496 ///          !is_symlink(s)
497 bool is_other(file_status status);
498
499 /// @brief Is path something that exists but is not a directory,
500 ///        regular file, or symlink?
501 ///
502 /// @param path Input path.
503 /// @param result Set to true if \a path exists, but is not a directory, regular
504 ///               file, or a symlink, false if it does not. Undefined otherwise.
505 /// @returns errc::success if result has been successfully set, otherwise a
506 ///          platform specific error_code.
507 error_code is_other(const Twine &path, bool &result);
508
509 /// @brief Does status represent a symlink?
510 ///
511 /// @param status A file_status previously returned from stat.
512 /// @returns status.type() == symlink_file.
513 bool is_symlink(file_status status);
514
515 /// @brief Is path a symlink?
516 ///
517 /// @param path Input path.
518 /// @param result Set to true if \a path is a symlink, false if it is not.
519 ///               Undefined otherwise.
520 /// @returns errc::success if result has been successfully set, otherwise a
521 ///          platform specific error_code.
522 error_code is_symlink(const Twine &path, bool &result);
523
524 /// @brief Get file status as if by POSIX stat().
525 ///
526 /// @param path Input path.
527 /// @param result Set to the file status.
528 /// @returns errc::success if result has been successfully set, otherwise a
529 ///          platform specific error_code.
530 error_code status(const Twine &path, file_status &result);
531
532 error_code setLastModificationAndAccessTime(int FD, TimeValue Time);
533
534 /// @brief Is status available?
535 ///
536 /// @param s Input file status.
537 /// @returns True if status() != status_error.
538 bool status_known(file_status s);
539
540 /// @brief Is status available?
541 ///
542 /// @param path Input path.
543 /// @param result Set to true if status() != status_error.
544 /// @returns errc::success if result has been successfully set, otherwise a
545 ///          platform specific error_code.
546 error_code status_known(const Twine &path, bool &result);
547
548 /// @brief Create a uniquely named file.
549 ///
550 /// Generates a unique path suitable for a temporary file and then opens it as a
551 /// file. The name is based on \a model with '%' replaced by a random char in
552 /// [0-9a-f]. If \a model is not an absolute path, a suitable temporary
553 /// directory will be prepended.
554 ///
555 /// Example: clang-%%-%%-%%-%%-%%.s => clang-a0-b1-c2-d3-e4.s
556 ///
557 /// This is an atomic operation. Either the file is created and opened, or the
558 /// file system is left untouched.
559 ///
560 /// The intendend use is for files that are to be kept, possibly after
561 /// renaming them. For example, when running 'clang -c foo.o', the file can
562 /// be first created as foo-abc123.o and then renamed.
563 ///
564 /// @param Model Name to base unique path off of.
565 /// @param ResultFD Set to the opened file's file descriptor.
566 /// @param ResultPath Set to the opened file's absolute path.
567 /// @returns errc::success if Result{FD,Path} have been successfully set,
568 ///          otherwise a platform specific error_code.
569 error_code createUniqueFile(const Twine &Model, int &ResultFD,
570                             SmallVectorImpl<char> &ResultPath,
571                             unsigned Mode = all_read | all_write);
572
573 /// @brief Simpler version for clients that don't want an open file.
574 error_code createUniqueFile(const Twine &Model,
575                             SmallVectorImpl<char> &ResultPath);
576
577 /// @brief Create a file in the system temporary directory.
578 ///
579 /// The filename is of the form prefix-random_chars.suffix. Since the directory
580 /// is not know to the caller, Prefix and Suffix cannot have path separators.
581 /// The files are created with mode 0600.
582 ///
583 /// This should be used for things like a temporary .s that is removed after
584 /// running the assembler.
585 error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
586                                int &ResultFD,
587                                SmallVectorImpl<char> &ResultPath);
588
589 /// @brief Simpler version for clients that don't want an open file.
590 error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
591                                SmallVectorImpl<char> &ResultPath);
592
593 error_code createUniqueDirectory(const Twine &Prefix,
594                                  SmallVectorImpl<char> &ResultPath);
595
596 /// @brief Canonicalize path.
597 ///
598 /// Sets result to the file system's idea of what path is. The result is always
599 /// absolute and has the same capitalization as the file system.
600 ///
601 /// @param path Input path.
602 /// @param result Set to the canonicalized version of \a path.
603 /// @returns errc::success if result has been successfully set, otherwise a
604 ///          platform specific error_code.
605 error_code canonicalize(const Twine &path, SmallVectorImpl<char> &result);
606
607 /// @brief Are \a path's first bytes \a magic?
608 ///
609 /// @param path Input path.
610 /// @param magic Byte sequence to compare \a path's first len(magic) bytes to.
611 /// @returns errc::success if result has been successfully set, otherwise a
612 ///          platform specific error_code.
613 error_code has_magic(const Twine &path, const Twine &magic, bool &result);
614
615 /// @brief Get \a path's first \a len bytes.
616 ///
617 /// @param path Input path.
618 /// @param len Number of magic bytes to get.
619 /// @param result Set to the first \a len bytes in the file pointed to by
620 ///               \a path. Or the entire file if file_size(path) < len, in which
621 ///               case result.size() returns the size of the file.
622 /// @returns errc::success if result has been successfully set,
623 ///          errc::value_too_large if len is larger then the file pointed to by
624 ///          \a path, otherwise a platform specific error_code.
625 error_code get_magic(const Twine &path, uint32_t len,
626                      SmallVectorImpl<char> &result);
627
628 /// @brief Identify the type of a binary file based on how magical it is.
629 file_magic identify_magic(StringRef magic);
630
631 /// @brief Get and identify \a path's type based on its content.
632 ///
633 /// @param path Input path.
634 /// @param result Set to the type of file, or file_magic::unknown.
635 /// @returns errc::success if result has been successfully set, otherwise a
636 ///          platform specific error_code.
637 error_code identify_magic(const Twine &path, file_magic &result);
638
639 error_code getUniqueID(const Twine Path, uint64_t &Result);
640
641 /// This class represents a memory mapped file. It is based on
642 /// boost::iostreams::mapped_file.
643 class mapped_file_region {
644   mapped_file_region() LLVM_DELETED_FUNCTION;
645   mapped_file_region(mapped_file_region&) LLVM_DELETED_FUNCTION;
646   mapped_file_region &operator =(mapped_file_region&) LLVM_DELETED_FUNCTION;
647
648 public:
649   enum mapmode {
650     readonly, ///< May only access map via const_data as read only.
651     readwrite, ///< May access map via data and modify it. Written to path.
652     priv ///< May modify via data, but changes are lost on destruction.
653   };
654
655 private:
656   /// Platform specific mapping state.
657   mapmode Mode;
658   uint64_t Size;
659   void *Mapping;
660 #ifdef LLVM_ON_WIN32
661   int FileDescriptor;
662   void *FileHandle;
663   void *FileMappingHandle;
664 #endif
665
666   error_code init(int FD, bool CloseFD, uint64_t Offset);
667
668 public:
669   typedef char char_type;
670
671 #if LLVM_HAS_RVALUE_REFERENCES
672   mapped_file_region(mapped_file_region&&);
673   mapped_file_region &operator =(mapped_file_region&&);
674 #endif
675
676   /// Construct a mapped_file_region at \a path starting at \a offset of length
677   /// \a length and with access \a mode.
678   ///
679   /// \param path Path to the file to map. If it does not exist it will be
680   ///             created.
681   /// \param mode How to map the memory.
682   /// \param length Number of bytes to map in starting at \a offset. If the file
683   ///               is shorter than this, it will be extended. If \a length is
684   ///               0, the entire file will be mapped.
685   /// \param offset Byte offset from the beginning of the file where the map
686   ///               should begin. Must be a multiple of
687   ///               mapped_file_region::alignment().
688   /// \param ec This is set to errc::success if the map was constructed
689   ///           sucessfully. Otherwise it is set to a platform dependent error.
690   mapped_file_region(const Twine &path,
691                      mapmode mode,
692                      uint64_t length,
693                      uint64_t offset,
694                      error_code &ec);
695
696   /// \param fd An open file descriptor to map. mapped_file_region takes
697   ///   ownership if closefd is true. It must have been opended in the correct
698   ///   mode.
699   mapped_file_region(int fd,
700                      bool closefd,
701                      mapmode mode,
702                      uint64_t length,
703                      uint64_t offset,
704                      error_code &ec);
705
706   ~mapped_file_region();
707
708   mapmode flags() const;
709   uint64_t size() const;
710   char *data() const;
711
712   /// Get a const view of the data. Modifying this memory has undefined
713   /// behavior.
714   const char *const_data() const;
715
716   /// \returns The minimum alignment offset must be.
717   static int alignment();
718 };
719
720 /// @brief Memory maps the contents of a file
721 ///
722 /// @param path Path to file to map.
723 /// @param file_offset Byte offset in file where mapping should begin.
724 /// @param size Byte length of range of the file to map.
725 /// @param map_writable If true, the file will be mapped in r/w such
726 ///        that changes to the mapped buffer will be flushed back
727 ///        to the file.  If false, the file will be mapped read-only
728 ///        and the buffer will be read-only.
729 /// @param result Set to the start address of the mapped buffer.
730 /// @returns errc::success if result has been successfully set, otherwise a
731 ///          platform specific error_code.
732 error_code map_file_pages(const Twine &path, off_t file_offset, size_t size,  
733                           bool map_writable, void *&result);
734
735
736 /// @brief Memory unmaps the contents of a file
737 ///
738 /// @param base Pointer to the start of the buffer.
739 /// @param size Byte length of the range to unmmap.
740 /// @returns errc::success if result has been successfully set, otherwise a
741 ///          platform specific error_code.
742 error_code unmap_file_pages(void *base, size_t size);
743
744 /// Return the path to the main executable, given the value of argv[0] from
745 /// program startup and the address of main itself. In extremis, this function
746 /// may fail and return an empty path.
747 std::string getMainExecutable(const char *argv0, void *MainExecAddr);
748
749 /// @}
750 /// @name Iterators
751 /// @{
752
753 /// directory_entry - A single entry in a directory. Caches the status either
754 /// from the result of the iteration syscall, or the first time status is
755 /// called.
756 class directory_entry {
757   std::string Path;
758   mutable file_status Status;
759
760 public:
761   explicit directory_entry(const Twine &path, file_status st = file_status())
762     : Path(path.str())
763     , Status(st) {}
764
765   directory_entry() {}
766
767   void assign(const Twine &path, file_status st = file_status()) {
768     Path = path.str();
769     Status = st;
770   }
771
772   void replace_filename(const Twine &filename, file_status st = file_status());
773
774   const std::string &path() const { return Path; }
775   error_code status(file_status &result) const;
776
777   bool operator==(const directory_entry& rhs) const { return Path == rhs.Path; }
778   bool operator!=(const directory_entry& rhs) const { return !(*this == rhs); }
779   bool operator< (const directory_entry& rhs) const;
780   bool operator<=(const directory_entry& rhs) const;
781   bool operator> (const directory_entry& rhs) const;
782   bool operator>=(const directory_entry& rhs) const;
783 };
784
785 namespace detail {
786   struct DirIterState;
787
788   error_code directory_iterator_construct(DirIterState&, StringRef);
789   error_code directory_iterator_increment(DirIterState&);
790   error_code directory_iterator_destruct(DirIterState&);
791
792   /// DirIterState - Keeps state for the directory_iterator. It is reference
793   /// counted in order to preserve InputIterator semantics on copy.
794   struct DirIterState : public RefCountedBase<DirIterState> {
795     DirIterState()
796       : IterationHandle(0) {}
797
798     ~DirIterState() {
799       directory_iterator_destruct(*this);
800     }
801
802     intptr_t IterationHandle;
803     directory_entry CurrentEntry;
804   };
805 }
806
807 /// directory_iterator - Iterates through the entries in path. There is no
808 /// operator++ because we need an error_code. If it's really needed we can make
809 /// it call report_fatal_error on error.
810 class directory_iterator {
811   IntrusiveRefCntPtr<detail::DirIterState> State;
812
813 public:
814   explicit directory_iterator(const Twine &path, error_code &ec) {
815     State = new detail::DirIterState;
816     SmallString<128> path_storage;
817     ec = detail::directory_iterator_construct(*State,
818             path.toStringRef(path_storage));
819   }
820
821   explicit directory_iterator(const directory_entry &de, error_code &ec) {
822     State = new detail::DirIterState;
823     ec = detail::directory_iterator_construct(*State, de.path());
824   }
825
826   /// Construct end iterator.
827   directory_iterator() : State(new detail::DirIterState) {}
828
829   // No operator++ because we need error_code.
830   directory_iterator &increment(error_code &ec) {
831     ec = directory_iterator_increment(*State);
832     return *this;
833   }
834
835   const directory_entry &operator*() const { return State->CurrentEntry; }
836   const directory_entry *operator->() const { return &State->CurrentEntry; }
837
838   bool operator==(const directory_iterator &RHS) const {
839     return State->CurrentEntry == RHS.State->CurrentEntry;
840   }
841
842   bool operator!=(const directory_iterator &RHS) const {
843     return !(*this == RHS);
844   }
845   // Other members as required by
846   // C++ Std, 24.1.1 Input iterators [input.iterators]
847 };
848
849 namespace detail {
850   /// RecDirIterState - Keeps state for the recursive_directory_iterator. It is
851   /// reference counted in order to preserve InputIterator semantics on copy.
852   struct RecDirIterState : public RefCountedBase<RecDirIterState> {
853     RecDirIterState()
854       : Level(0)
855       , HasNoPushRequest(false) {}
856
857     std::stack<directory_iterator, std::vector<directory_iterator> > Stack;
858     uint16_t Level;
859     bool HasNoPushRequest;
860   };
861 }
862
863 /// recursive_directory_iterator - Same as directory_iterator except for it
864 /// recurses down into child directories.
865 class recursive_directory_iterator {
866   IntrusiveRefCntPtr<detail::RecDirIterState> State;
867
868 public:
869   recursive_directory_iterator() {}
870   explicit recursive_directory_iterator(const Twine &path, error_code &ec)
871     : State(new detail::RecDirIterState) {
872     State->Stack.push(directory_iterator(path, ec));
873     if (State->Stack.top() == directory_iterator())
874       State.reset();
875   }
876   // No operator++ because we need error_code.
877   recursive_directory_iterator &increment(error_code &ec) {
878     static const directory_iterator end_itr;
879
880     if (State->HasNoPushRequest)
881       State->HasNoPushRequest = false;
882     else {
883       file_status st;
884       if ((ec = State->Stack.top()->status(st))) return *this;
885       if (is_directory(st)) {
886         State->Stack.push(directory_iterator(*State->Stack.top(), ec));
887         if (ec) return *this;
888         if (State->Stack.top() != end_itr) {
889           ++State->Level;
890           return *this;
891         }
892         State->Stack.pop();
893       }
894     }
895
896     while (!State->Stack.empty()
897            && State->Stack.top().increment(ec) == end_itr) {
898       State->Stack.pop();
899       --State->Level;
900     }
901
902     // Check if we are done. If so, create an end iterator.
903     if (State->Stack.empty())
904       State.reset();
905
906     return *this;
907   }
908
909   const directory_entry &operator*() const { return *State->Stack.top(); }
910   const directory_entry *operator->() const { return &*State->Stack.top(); }
911
912   // observers
913   /// Gets the current level. Starting path is at level 0.
914   int level() const { return State->Level; }
915
916   /// Returns true if no_push has been called for this directory_entry.
917   bool no_push_request() const { return State->HasNoPushRequest; }
918
919   // modifiers
920   /// Goes up one level if Level > 0.
921   void pop() {
922     assert(State && "Cannot pop and end itertor!");
923     assert(State->Level > 0 && "Cannot pop an iterator with level < 1");
924
925     static const directory_iterator end_itr;
926     error_code ec;
927     do {
928       if (ec)
929         report_fatal_error("Error incrementing directory iterator.");
930       State->Stack.pop();
931       --State->Level;
932     } while (!State->Stack.empty()
933              && State->Stack.top().increment(ec) == end_itr);
934
935     // Check if we are done. If so, create an end iterator.
936     if (State->Stack.empty())
937       State.reset();
938   }
939
940   /// Does not go down into the current directory_entry.
941   void no_push() { State->HasNoPushRequest = true; }
942
943   bool operator==(const recursive_directory_iterator &RHS) const {
944     return State == RHS.State;
945   }
946
947   bool operator!=(const recursive_directory_iterator &RHS) const {
948     return !(*this == RHS);
949   }
950   // Other members as required by
951   // C++ Std, 24.1.1 Input iterators [input.iterators]
952 };
953
954 /// @}
955
956 } // end namespace fs
957 } // end namespace sys
958 } // end namespace llvm
959
960 #endif