faq.htm 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
  5. <meta name="ProgId" content="FrontPage.Editor.Document">
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  7. <title>Filesystem FAQ</title>
  8. <link href="styles.css" rel="stylesheet">
  9. </head>
  10. <body>
  11. <table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
  12. <tr>
  13. <td width="277">
  14. <a href="../../../index.htm">
  15. <img src="../../../boost.png" alt="boost.png (6897 bytes)" align="middle" width="300" height="86" border="0"></a></td>
  16. <td align="middle">
  17. <font size="7">Filesystem FAQ</font>
  18. </td>
  19. </tr>
  20. </table>
  21. <table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse"
  22. bordercolor="#111111" bgcolor="#D7EEFF" width="100%">
  23. <tr>
  24. <td><a href="index.htm">Home</a> &nbsp;&nbsp;
  25. <a href="tutorial.html">Tutorial</a> &nbsp;&nbsp;
  26. <a href="reference.html">Reference</a> &nbsp;&nbsp;
  27. <a href="faq.htm">FAQ</a> &nbsp;&nbsp;
  28. <a href="release_history.html">Releases</a> &nbsp;&nbsp;
  29. <a href="portability_guide.htm">Portability</a> &nbsp;&nbsp;
  30. <a href="v3.html">V3 Intro</a> &nbsp;&nbsp;
  31. <a href="v3_design.html">V3 Design</a> &nbsp;&nbsp;
  32. <a href="deprecated.html">Deprecated</a> &nbsp;&nbsp;
  33. <a href="issue_reporting.html">Bug Reports </a>&nbsp;&nbsp;
  34. </td>
  35. </table>
  36. <h1>
  37. Frequently Asked Questions</h1>
  38. <h2>General questions</h2>
  39. <p><b>Why not support a concept of specific kinds of file systems, such as posix_file_system or windows_file_system.</b></p>
  40. <p>Portability is one of the most important requirements for the
  41. library.&nbsp;Features specific to a particular operating system or file system
  42. can always be accessed by using the operating system's API.</p>
  43. <h2>
  44. Class <code><font size="6">path</font></code> questions </h2>
  45. <p><b>Why base the generic pathname format on POSIX?</b></p>
  46. <p><a href="design.htm#POSIX-01">POSIX</a> is an ISO Standard. It is the basis for the most familiar
  47. pathname formats,
  48. not just for POSIX-based operating systems but also for Windows and the
  49. URL portion of URI's. It is ubiquitous and
  50. familiar.&nbsp; On many systems, it is very easy to implement because it is
  51. either the native operating system format (Unix and Windows) or via an
  52. operating system supplied
  53. POSIX library (z/OS, OS/390, and many more.)</p>
  54. <p><b>Why not use a full URI (Universal Resource Identifier) based path?</b></p>
  55. <p><a href="design.htm#URI">URI's</a> would promise more than the Filesystem Library can actually deliver,
  56. since URI's extend far beyond what most operating systems consider a file or a
  57. directory.&nbsp; Thus for the primary &quot;portable script-style file system
  58. operations&quot; requirement of the Filesystem Library, full URI's appear to be over-specification.</p>
  59. <p><b>Why isn't <i>path</i> a base class with derived <i>directory_path</i> and
  60. <i>file_path</i> classes?</b></p>
  61. <p>Why bother?&nbsp; The behavior of all three classes is essentially identical.
  62. Several early versions did require users to identify each path as a file or
  63. directory path, and this seemed to increase coding errors and decrease code
  64. readability. There was no apparent upside benefit.</p>
  65. <p><b>Why do path decomposition functions yielding a single element return a
  66. path rather than a string?</b></p>
  67. <p>Interface simplicity. If they returned strings, flavors would be needed for
  68. <code>string</code>, <code>wstring</code>, <code>u16string</code>, <code>
  69. u32string</code>, and generic strings.</p>
  70. <p><b>Why don't path member functions have overloads with error_code&amp; arguments?</b></p>
  71. <p>They have not been requested by users; the need for error reporting via
  72. error_code seems limited to operations failures rather than path failures.</p>
  73. <h2>Operations function questions</h2>
  74. <p><b>Why not supply a 'handle' type, and let the file and directory operations
  75. traffic in it?</b></p>
  76. <p>It isn't clear there is any feasible way to meet the &quot;portable script-style
  77. file system operations&quot; requirement with such a system. File systems exist where operations are usually performed on
  78. some non-string handle type. The classic Mac OS has been mentioned explicitly as a case where
  79. trafficking in paths isn't always natural.&nbsp;&nbsp;&nbsp; </p>
  80. <p>The case for the &quot;handle&quot; (opaque data type to identify a file)
  81. style may be strongest for directory iterator value type.&nbsp; (See Jesse Jones' Jan 28,
  82. 2002, Boost postings). However, as class path has evolved, it seems sufficient
  83. even as the directory iterator value type.</p>
  84. <p><b>Why are the operations functions so low-level?</b></p>
  85. <p>To provide a toolkit from which higher-level functionality can be created.</p>
  86. <p>An
  87. extended attempt to add convenience functions on top of, or as a replacement
  88. for, the low-level functionality failed because there is no widely acceptable
  89. set of simple semantics for most convenience functions considered.&nbsp;
  90. Attempts to provide alternate semantics via either run-time options or
  91. compile-time polices became overly complicated in relation to the value
  92. delivered, or became contentious.&nbsp; OTOH, the specific functionality needed for several trial
  93. applications was very easy for the user to construct from the lower-level
  94. toolkit functions.&nbsp; See <a href="design.htm#Abandoned_Designs">Failed
  95. Attempts</a>.</p>
  96. <p><b>Isn't it inconsistent then to provide a few convenience functions?</b></p>
  97. <p>Yes, but experience with both this library, POSIX, and Windows, indicates
  98. the utility of certain convenience functions, and that it is possible to provide
  99. simple, yet widely acceptable, semantics for them. For example, <code>remove_all()</code>.</p>
  100. <p><b>Why are there directory_iterator overloads for operations.hpp
  101. predicate functions? Isn't two ways to do the same thing poor design?</b></p>
  102. <p>Yes, two ways to do the same thing is often a poor design practice. But the
  103. iterator versions are often much more efficient. Calling status() during
  104. iteration over a directory containing 15,000 files took 6 seconds for the path
  105. overload, and 1 second for the iterator overload, for tests on a freshly booted
  106. machine. Times were .90 seconds and .30 seconds, for tests after prior use of
  107. the directory. This performance gain is large enough to justify deviating from
  108. preferred design practices. Neither overload alone meets all needs.</p>
  109. <p><b>Why are the operations functions so picky about errors?</b></p>
  110. <p>Safety. The default is to be safe rather than sorry. This is particularly
  111. important given the reality that on many computer systems files and directories
  112. are globally shared resources, and thus subject to
  113. race conditions.</p>
  114. <p><b>Why are attributes accessed via named functions rather than property maps?</b></p>
  115. <p>For commonly used attributes (existence, directory or file, emptiness),
  116. simple syntax and guaranteed presence outweigh other considerations. Because
  117. access to many other attributes is inherently system dependent,
  118. property maps are viewed as the best hope for access and modification, but it is
  119. better design to provide such functionality in a separate library. (Historical
  120. note: even the apparently simple attribute &quot;read-only&quot; turned out to be so
  121. system depend as to be disqualified as a &quot;guaranteed presence&quot; operation.)</p>
  122. <p><b>Why isn't automatic name portability error detection provided?</b></p>
  123. <p>A number (at least six) of designs for name validity error
  124. detection were evaluated, including at least four complete implementations.&nbsp;
  125. While the details for rejection differed, all of the more powerful name validity checking
  126. designs distorted other
  127. otherwise simple aspects of the library. Even the simple name checking provided
  128. in prior library versions was a constant source of user complaints. While name checking can be helpful, it
  129. isn't important enough to justify added a lot of additional complexity.</p>
  130. <p><b>Why are paths sometimes manipulated by member functions and sometimes by
  131. non-member functions?</b></p>
  132. <p>The design rule is that purely lexical operations are supplied as <i>class
  133. path</i> member
  134. functions, while operations performed by the operating system are provided as
  135. free functions.</p>
  136. <hr>
  137. <p>Revised
  138. <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->29 December, 2014<!--webbot bot="Timestamp" endspan i-checksum="38652" --></p>
  139. <p>&copy; Copyright Beman Dawes, 2002</p>
  140. <p> Use, modification, and distribution are subject to the Boost Software
  141. License, Version 1.0. See <a href="http://www.boost.org/LICENSE_1_0.txt">
  142. www.boost.org/LICENSE_1_0.txt</a></p>
  143. </body>
  144. </html>