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