operations.hpp 51 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346
  1. // boost/filesystem/operations.hpp ---------------------------------------------------//
  2. // Copyright Beman Dawes 2002-2009
  3. // Copyright Jan Langer 2002
  4. // Copyright Dietmar Kuehl 2001
  5. // Copyright Vladimir Prus 2002
  6. // Distributed under the Boost Software License, Version 1.0.
  7. // See http://www.boost.org/LICENSE_1_0.txt
  8. // Library home page: http://www.boost.org/libs/filesystem
  9. //--------------------------------------------------------------------------------------//
  10. #ifndef BOOST_FILESYSTEM3_OPERATIONS_HPP
  11. #define BOOST_FILESYSTEM3_OPERATIONS_HPP
  12. #include <boost/config.hpp>
  13. # if defined( BOOST_NO_STD_WSTRING )
  14. # error Configuration not supported: Boost.Filesystem V3 and later requires std::wstring support
  15. # endif
  16. #include <boost/filesystem/config.hpp>
  17. #include <boost/filesystem/path.hpp>
  18. #include <boost/detail/scoped_enum_emulation.hpp>
  19. #include <boost/detail/bitmask.hpp>
  20. #include <boost/system/error_code.hpp>
  21. #include <boost/system/system_error.hpp>
  22. #include <boost/shared_ptr.hpp>
  23. #include <boost/utility/enable_if.hpp>
  24. #include <boost/type_traits/is_same.hpp>
  25. #include <boost/cstdint.hpp>
  26. #include <boost/range/mutable_iterator.hpp>
  27. #include <boost/range/const_iterator.hpp>
  28. #include <boost/assert.hpp>
  29. #include <string>
  30. #include <utility> // for pair
  31. #include <ctime>
  32. #include <vector>
  33. #include <stack>
  34. #ifdef BOOST_WINDOWS_API
  35. # include <fstream>
  36. #endif
  37. #include <boost/config/abi_prefix.hpp> // must be the last #include
  38. //--------------------------------------------------------------------------------------//
  39. namespace boost
  40. {
  41. namespace filesystem
  42. {
  43. //--------------------------------------------------------------------------------------//
  44. // //
  45. // class filesystem_error //
  46. // //
  47. //--------------------------------------------------------------------------------------//
  48. class BOOST_SYMBOL_VISIBLE filesystem_error : public system::system_error
  49. {
  50. // see http://www.boost.org/more/error_handling.html for design rationale
  51. // all functions are inline to avoid issues with crossing dll boundaries
  52. // functions previously throw() are now BOOST_NOEXCEPT_OR_NOTHROW
  53. // functions previously without throw() are now BOOST_NOEXCEPT
  54. public:
  55. // compiler generates copy constructor and copy assignment
  56. filesystem_error(
  57. const std::string & what_arg, system::error_code ec) BOOST_NOEXCEPT
  58. : system::system_error(ec, what_arg)
  59. {
  60. try
  61. {
  62. m_imp_ptr.reset(new m_imp);
  63. }
  64. catch (...) { m_imp_ptr.reset(); }
  65. }
  66. filesystem_error(
  67. const std::string & what_arg, const path& path1_arg,
  68. system::error_code ec) BOOST_NOEXCEPT
  69. : system::system_error(ec, what_arg)
  70. {
  71. try
  72. {
  73. m_imp_ptr.reset(new m_imp);
  74. m_imp_ptr->m_path1 = path1_arg;
  75. }
  76. catch (...) { m_imp_ptr.reset(); }
  77. }
  78. filesystem_error(
  79. const std::string & what_arg, const path& path1_arg,
  80. const path& path2_arg, system::error_code ec) BOOST_NOEXCEPT
  81. : system::system_error(ec, what_arg)
  82. {
  83. try
  84. {
  85. m_imp_ptr.reset(new m_imp);
  86. m_imp_ptr->m_path1 = path1_arg;
  87. m_imp_ptr->m_path2 = path2_arg;
  88. }
  89. catch (...) { m_imp_ptr.reset(); }
  90. }
  91. ~filesystem_error() BOOST_NOEXCEPT_OR_NOTHROW{}
  92. const path& path1() const BOOST_NOEXCEPT
  93. {
  94. static const path empty_path;
  95. return m_imp_ptr.get() ? m_imp_ptr->m_path1 : empty_path;
  96. }
  97. const path& path2() const BOOST_NOEXCEPT
  98. {
  99. static const path empty_path;
  100. return m_imp_ptr.get() ? m_imp_ptr->m_path2 : empty_path;
  101. }
  102. const char* what() const BOOST_NOEXCEPT_OR_NOTHROW
  103. {
  104. if (!m_imp_ptr.get())
  105. return system::system_error::what();
  106. try
  107. {
  108. if (m_imp_ptr->m_what.empty())
  109. {
  110. m_imp_ptr->m_what = system::system_error::what();
  111. if (!m_imp_ptr->m_path1.empty())
  112. {
  113. m_imp_ptr->m_what += ": \"";
  114. m_imp_ptr->m_what += m_imp_ptr->m_path1.string();
  115. m_imp_ptr->m_what += "\"";
  116. }
  117. if (!m_imp_ptr->m_path2.empty())
  118. {
  119. m_imp_ptr->m_what += ", \"";
  120. m_imp_ptr->m_what += m_imp_ptr->m_path2.string();
  121. m_imp_ptr->m_what += "\"";
  122. }
  123. }
  124. return m_imp_ptr->m_what.c_str();
  125. }
  126. catch (...)
  127. {
  128. return system::system_error::what();
  129. }
  130. }
  131. private:
  132. struct m_imp
  133. {
  134. path m_path1; // may be empty()
  135. path m_path2; // may be empty()
  136. std::string m_what; // not built until needed
  137. };
  138. boost::shared_ptr<m_imp> m_imp_ptr;
  139. };
  140. //--------------------------------------------------------------------------------------//
  141. // file_type //
  142. //--------------------------------------------------------------------------------------//
  143. enum file_type
  144. {
  145. status_error,
  146. # ifndef BOOST_FILESYSTEM_NO_DEPRECATED
  147. status_unknown = status_error,
  148. # endif
  149. file_not_found,
  150. regular_file,
  151. directory_file,
  152. // the following may not apply to some operating systems or file systems
  153. symlink_file,
  154. block_file,
  155. character_file,
  156. fifo_file,
  157. socket_file,
  158. reparse_file, // Windows: FILE_ATTRIBUTE_REPARSE_POINT that is not a symlink
  159. type_unknown, // file does exist, but isn't one of the above types or
  160. // we don't have strong enough permission to find its type
  161. _detail_directory_symlink // internal use only; never exposed to users
  162. };
  163. //--------------------------------------------------------------------------------------//
  164. // perms //
  165. //--------------------------------------------------------------------------------------//
  166. enum perms
  167. {
  168. no_perms = 0, // file_not_found is no_perms rather than perms_not_known
  169. // POSIX equivalent macros given in comments.
  170. // Values are from POSIX and are given in octal per the POSIX standard.
  171. // permission bits
  172. owner_read = 0400, // S_IRUSR, Read permission, owner
  173. owner_write = 0200, // S_IWUSR, Write permission, owner
  174. owner_exe = 0100, // S_IXUSR, Execute/search permission, owner
  175. owner_all = 0700, // S_IRWXU, Read, write, execute/search by owner
  176. group_read = 040, // S_IRGRP, Read permission, group
  177. group_write = 020, // S_IWGRP, Write permission, group
  178. group_exe = 010, // S_IXGRP, Execute/search permission, group
  179. group_all = 070, // S_IRWXG, Read, write, execute/search by group
  180. others_read = 04, // S_IROTH, Read permission, others
  181. others_write = 02, // S_IWOTH, Write permission, others
  182. others_exe = 01, // S_IXOTH, Execute/search permission, others
  183. others_all = 07, // S_IRWXO, Read, write, execute/search by others
  184. all_all = 0777, // owner_all|group_all|others_all
  185. // other POSIX bits
  186. set_uid_on_exe = 04000, // S_ISUID, Set-user-ID on execution
  187. set_gid_on_exe = 02000, // S_ISGID, Set-group-ID on execution
  188. sticky_bit = 01000, // S_ISVTX,
  189. // (POSIX XSI) On directories, restricted deletion flag
  190. // (V7) 'sticky bit': save swapped text even after use
  191. // (SunOS) On non-directories: don't cache this file
  192. // (SVID-v4.2) On directories: restricted deletion flag
  193. // Also see http://en.wikipedia.org/wiki/Sticky_bit
  194. perms_mask = 07777, // all_all|set_uid_on_exe|set_gid_on_exe|sticky_bit
  195. perms_not_known = 0xFFFF, // present when directory_entry cache not loaded
  196. // options for permissions() function
  197. add_perms = 0x1000, // adds the given permission bits to the current bits
  198. remove_perms = 0x2000, // removes the given permission bits from the current bits;
  199. // choose add_perms or remove_perms, not both; if neither add_perms
  200. // nor remove_perms is given, replace the current bits with
  201. // the given bits.
  202. symlink_perms = 0x4000 // on POSIX, don't resolve symlinks; implied on Windows
  203. };
  204. BOOST_BITMASK(perms)
  205. //--------------------------------------------------------------------------------------//
  206. // file_status //
  207. //--------------------------------------------------------------------------------------//
  208. class BOOST_FILESYSTEM_DECL file_status
  209. {
  210. public:
  211. file_status() BOOST_NOEXCEPT
  212. : m_value(status_error), m_perms(perms_not_known) {}
  213. explicit file_status(file_type v) BOOST_NOEXCEPT
  214. : m_value(v), m_perms(perms_not_known) {}
  215. file_status(file_type v, perms prms) BOOST_NOEXCEPT
  216. : m_value(v), m_perms(prms) {}
  217. // As of October 2015 the interaction between noexcept and =default is so troublesome
  218. // for VC++, GCC, and probably other compilers, that =default is not used with noexcept
  219. // functions. GCC is not even consistent for the same release on different platforms.
  220. file_status(const file_status& rhs) BOOST_NOEXCEPT
  221. : m_value(rhs.m_value), m_perms(rhs.m_perms) {}
  222. file_status& operator=(const file_status& rhs) BOOST_NOEXCEPT
  223. {
  224. m_value = rhs.m_value;
  225. m_perms = rhs.m_perms;
  226. return *this;
  227. }
  228. # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
  229. file_status(file_status&& rhs) BOOST_NOEXCEPT
  230. {
  231. m_value = std::move(rhs.m_value);
  232. m_perms = std::move(rhs.m_perms);
  233. }
  234. file_status& operator=(file_status&& rhs) BOOST_NOEXCEPT
  235. {
  236. m_value = std::move(rhs.m_value);
  237. m_perms = std::move(rhs.m_perms);
  238. return *this;
  239. }
  240. # endif
  241. // observers
  242. file_type type() const BOOST_NOEXCEPT { return m_value; }
  243. perms permissions() const BOOST_NOEXCEPT { return m_perms; }
  244. // modifiers
  245. void type(file_type v) BOOST_NOEXCEPT { m_value = v; }
  246. void permissions(perms prms) BOOST_NOEXCEPT { m_perms = prms; }
  247. bool operator==(const file_status& rhs) const BOOST_NOEXCEPT
  248. { return type() == rhs.type() &&
  249. permissions() == rhs.permissions(); }
  250. bool operator!=(const file_status& rhs) const BOOST_NOEXCEPT
  251. { return !(*this == rhs); }
  252. private:
  253. file_type m_value;
  254. enum perms m_perms;
  255. };
  256. inline bool type_present(file_status f) BOOST_NOEXCEPT
  257. { return f.type() != status_error; }
  258. inline bool permissions_present(file_status f) BOOST_NOEXCEPT
  259. {return f.permissions() != perms_not_known;}
  260. inline bool status_known(file_status f) BOOST_NOEXCEPT
  261. { return type_present(f) && permissions_present(f); }
  262. inline bool exists(file_status f) BOOST_NOEXCEPT
  263. { return f.type() != status_error
  264. && f.type() != file_not_found; }
  265. inline bool is_regular_file(file_status f) BOOST_NOEXCEPT
  266. { return f.type() == regular_file; }
  267. inline bool is_directory(file_status f) BOOST_NOEXCEPT
  268. { return f.type() == directory_file; }
  269. inline bool is_symlink(file_status f) BOOST_NOEXCEPT
  270. { return f.type() == symlink_file; }
  271. inline bool is_other(file_status f) BOOST_NOEXCEPT
  272. { return exists(f) && !is_regular_file(f)
  273. && !is_directory(f) && !is_symlink(f); }
  274. # ifndef BOOST_FILESYSTEM_NO_DEPRECATED
  275. inline bool is_regular(file_status f) BOOST_NOEXCEPT { return f.type() == regular_file; }
  276. # endif
  277. struct space_info
  278. {
  279. // all values are byte counts
  280. boost::uintmax_t capacity;
  281. boost::uintmax_t free; // <= capacity
  282. boost::uintmax_t available; // <= free
  283. };
  284. BOOST_SCOPED_ENUM_START(copy_option)
  285. {none=0, fail_if_exists = none, overwrite_if_exists};
  286. BOOST_SCOPED_ENUM_END
  287. //--------------------------------------------------------------------------------------//
  288. // implementation details //
  289. //--------------------------------------------------------------------------------------//
  290. namespace detail
  291. {
  292. // We cannot pass a BOOST_SCOPED_ENUM to a compled function because it will result
  293. // in an undefined reference if the library is compled with -std=c++0x but the use
  294. // is compiled in C++03 mode, or visa versa. See tickets 6124, 6779, 10038.
  295. enum copy_option {none=0, fail_if_exists = none, overwrite_if_exists};
  296. BOOST_FILESYSTEM_DECL
  297. file_status status(const path&p, system::error_code* ec=0);
  298. BOOST_FILESYSTEM_DECL
  299. file_status symlink_status(const path& p, system::error_code* ec=0);
  300. BOOST_FILESYSTEM_DECL
  301. bool is_empty(const path& p, system::error_code* ec=0);
  302. BOOST_FILESYSTEM_DECL
  303. path initial_path(system::error_code* ec=0);
  304. BOOST_FILESYSTEM_DECL
  305. path canonical(const path& p, const path& base, system::error_code* ec=0);
  306. BOOST_FILESYSTEM_DECL
  307. void copy(const path& from, const path& to, system::error_code* ec=0);
  308. BOOST_FILESYSTEM_DECL
  309. void copy_directory(const path& from, const path& to, system::error_code* ec=0);
  310. BOOST_FILESYSTEM_DECL
  311. void copy_file(const path& from, const path& to, // See ticket #2925
  312. detail::copy_option option, system::error_code* ec=0);
  313. BOOST_FILESYSTEM_DECL
  314. void copy_symlink(const path& existing_symlink, const path& new_symlink, system::error_code* ec=0);
  315. BOOST_FILESYSTEM_DECL
  316. bool create_directories(const path& p, system::error_code* ec=0);
  317. BOOST_FILESYSTEM_DECL
  318. bool create_directory(const path& p, system::error_code* ec=0);
  319. BOOST_FILESYSTEM_DECL
  320. void create_directory_symlink(const path& to, const path& from,
  321. system::error_code* ec=0);
  322. BOOST_FILESYSTEM_DECL
  323. void create_hard_link(const path& to, const path& from, system::error_code* ec=0);
  324. BOOST_FILESYSTEM_DECL
  325. void create_symlink(const path& to, const path& from, system::error_code* ec=0);
  326. BOOST_FILESYSTEM_DECL
  327. path current_path(system::error_code* ec=0);
  328. BOOST_FILESYSTEM_DECL
  329. void current_path(const path& p, system::error_code* ec=0);
  330. BOOST_FILESYSTEM_DECL
  331. bool equivalent(const path& p1, const path& p2, system::error_code* ec=0);
  332. BOOST_FILESYSTEM_DECL
  333. boost::uintmax_t file_size(const path& p, system::error_code* ec=0);
  334. BOOST_FILESYSTEM_DECL
  335. boost::uintmax_t hard_link_count(const path& p, system::error_code* ec=0);
  336. BOOST_FILESYSTEM_DECL
  337. std::time_t last_write_time(const path& p, system::error_code* ec=0);
  338. BOOST_FILESYSTEM_DECL
  339. void last_write_time(const path& p, const std::time_t new_time,
  340. system::error_code* ec=0);
  341. BOOST_FILESYSTEM_DECL
  342. void permissions(const path& p, perms prms, system::error_code* ec=0);
  343. BOOST_FILESYSTEM_DECL
  344. path read_symlink(const path& p, system::error_code* ec=0);
  345. BOOST_FILESYSTEM_DECL
  346. path relative(const path& p, const path& base, system::error_code* ec = 0);
  347. BOOST_FILESYSTEM_DECL
  348. bool remove(const path& p, system::error_code* ec=0);
  349. BOOST_FILESYSTEM_DECL
  350. boost::uintmax_t remove_all(const path& p, system::error_code* ec=0);
  351. BOOST_FILESYSTEM_DECL
  352. void rename(const path& old_p, const path& new_p, system::error_code* ec=0);
  353. BOOST_FILESYSTEM_DECL
  354. void resize_file(const path& p, uintmax_t size, system::error_code* ec=0);
  355. BOOST_FILESYSTEM_DECL
  356. space_info space(const path& p, system::error_code* ec=0);
  357. BOOST_FILESYSTEM_DECL
  358. path system_complete(const path& p, system::error_code* ec=0);
  359. BOOST_FILESYSTEM_DECL
  360. path temp_directory_path(system::error_code* ec=0);
  361. BOOST_FILESYSTEM_DECL
  362. path unique_path(const path& p, system::error_code* ec=0);
  363. BOOST_FILESYSTEM_DECL
  364. path weakly_canonical(const path& p, system::error_code* ec = 0);
  365. } // namespace detail
  366. //--------------------------------------------------------------------------------------//
  367. // //
  368. // status query functions //
  369. // //
  370. //--------------------------------------------------------------------------------------//
  371. inline
  372. file_status status(const path& p) {return detail::status(p);}
  373. inline
  374. file_status status(const path& p, system::error_code& ec)
  375. {return detail::status(p, &ec);}
  376. inline
  377. file_status symlink_status(const path& p) {return detail::symlink_status(p);}
  378. inline
  379. file_status symlink_status(const path& p, system::error_code& ec)
  380. {return detail::symlink_status(p, &ec);}
  381. inline
  382. bool exists(const path& p) {return exists(detail::status(p));}
  383. inline
  384. bool exists(const path& p, system::error_code& ec)
  385. {return exists(detail::status(p, &ec));}
  386. inline
  387. bool is_directory(const path& p) {return is_directory(detail::status(p));}
  388. inline
  389. bool is_directory(const path& p, system::error_code& ec)
  390. {return is_directory(detail::status(p, &ec));}
  391. inline
  392. bool is_regular_file(const path& p) {return is_regular_file(detail::status(p));}
  393. inline
  394. bool is_regular_file(const path& p, system::error_code& ec)
  395. {return is_regular_file(detail::status(p, &ec));}
  396. inline
  397. bool is_other(const path& p) {return is_other(detail::status(p));}
  398. inline
  399. bool is_other(const path& p, system::error_code& ec)
  400. {return is_other(detail::status(p, &ec));}
  401. inline
  402. bool is_symlink(const path& p) {return is_symlink(detail::symlink_status(p));}
  403. inline
  404. bool is_symlink(const path& p, system::error_code& ec)
  405. {return is_symlink(detail::symlink_status(p, &ec));}
  406. # ifndef BOOST_FILESYSTEM_NO_DEPRECATED
  407. inline
  408. bool is_regular(const path& p) {return is_regular(detail::status(p));}
  409. inline
  410. bool is_regular(const path& p, system::error_code& ec)
  411. {return is_regular(detail::status(p, &ec));}
  412. # endif
  413. inline
  414. bool is_empty(const path& p) {return detail::is_empty(p);}
  415. inline
  416. bool is_empty(const path& p, system::error_code& ec)
  417. {return detail::is_empty(p, &ec);}
  418. //--------------------------------------------------------------------------------------//
  419. // //
  420. // operational functions //
  421. // in alphabetical order, unless otherwise noted //
  422. // //
  423. //--------------------------------------------------------------------------------------//
  424. // forward declarations
  425. path current_path(); // fwd declaration
  426. path initial_path();
  427. BOOST_FILESYSTEM_DECL
  428. path absolute(const path& p, const path& base=current_path());
  429. // If base.is_absolute(), throws nothing. Thus no need for ec argument
  430. inline
  431. path canonical(const path& p, const path& base=current_path())
  432. {return detail::canonical(p, base);}
  433. inline
  434. path canonical(const path& p, system::error_code& ec)
  435. {return detail::canonical(p, current_path(), &ec);}
  436. inline
  437. path canonical(const path& p, const path& base, system::error_code& ec)
  438. {return detail::canonical(p, base, &ec);}
  439. # ifndef BOOST_FILESYSTEM_NO_DEPRECATED
  440. inline
  441. path complete(const path& p)
  442. {
  443. return absolute(p, initial_path());
  444. }
  445. inline
  446. path complete(const path& p, const path& base)
  447. {
  448. return absolute(p, base);
  449. }
  450. # endif
  451. inline
  452. void copy(const path& from, const path& to) {detail::copy(from, to);}
  453. inline
  454. void copy(const path& from, const path& to, system::error_code& ec) BOOST_NOEXCEPT
  455. {detail::copy(from, to, &ec);}
  456. inline
  457. void copy_directory(const path& from, const path& to)
  458. {detail::copy_directory(from, to);}
  459. inline
  460. void copy_directory(const path& from, const path& to, system::error_code& ec) BOOST_NOEXCEPT
  461. {detail::copy_directory(from, to, &ec);}
  462. inline
  463. void copy_file(const path& from, const path& to, // See ticket #2925
  464. BOOST_SCOPED_ENUM(copy_option) option)
  465. {
  466. detail::copy_file(from, to, static_cast<detail::copy_option>(option));
  467. }
  468. inline
  469. void copy_file(const path& from, const path& to)
  470. {
  471. detail::copy_file(from, to, detail::fail_if_exists);
  472. }
  473. inline
  474. void copy_file(const path& from, const path& to, // See ticket #2925
  475. BOOST_SCOPED_ENUM(copy_option) option, system::error_code& ec) BOOST_NOEXCEPT
  476. {
  477. detail::copy_file(from, to, static_cast<detail::copy_option>(option), &ec);
  478. }
  479. inline
  480. void copy_file(const path& from, const path& to, system::error_code& ec) BOOST_NOEXCEPT
  481. {
  482. detail::copy_file(from, to, detail::fail_if_exists, &ec);
  483. }
  484. inline
  485. void copy_symlink(const path& existing_symlink,
  486. const path& new_symlink) {detail::copy_symlink(existing_symlink, new_symlink);}
  487. inline
  488. void copy_symlink(const path& existing_symlink, const path& new_symlink,
  489. system::error_code& ec) BOOST_NOEXCEPT
  490. {detail::copy_symlink(existing_symlink, new_symlink, &ec);}
  491. inline
  492. bool create_directories(const path& p) {return detail::create_directories(p);}
  493. inline
  494. bool create_directories(const path& p, system::error_code& ec) BOOST_NOEXCEPT
  495. {return detail::create_directories(p, &ec);}
  496. inline
  497. bool create_directory(const path& p) {return detail::create_directory(p);}
  498. inline
  499. bool create_directory(const path& p, system::error_code& ec) BOOST_NOEXCEPT
  500. {return detail::create_directory(p, &ec);}
  501. inline
  502. void create_directory_symlink(const path& to, const path& from)
  503. {detail::create_directory_symlink(to, from);}
  504. inline
  505. void create_directory_symlink(const path& to, const path& from, system::error_code& ec) BOOST_NOEXCEPT
  506. {detail::create_directory_symlink(to, from, &ec);}
  507. inline
  508. void create_hard_link(const path& to, const path& new_hard_link) {detail::create_hard_link(to, new_hard_link);}
  509. inline
  510. void create_hard_link(const path& to, const path& new_hard_link, system::error_code& ec) BOOST_NOEXCEPT
  511. {detail::create_hard_link(to, new_hard_link, &ec);}
  512. inline
  513. void create_symlink(const path& to, const path& new_symlink) {detail::create_symlink(to, new_symlink);}
  514. inline
  515. void create_symlink(const path& to, const path& new_symlink, system::error_code& ec) BOOST_NOEXCEPT
  516. {detail::create_symlink(to, new_symlink, &ec);}
  517. inline
  518. path current_path() {return detail::current_path();}
  519. inline
  520. path current_path(system::error_code& ec) BOOST_NOEXCEPT {return detail::current_path(&ec);}
  521. inline
  522. void current_path(const path& p) {detail::current_path(p);}
  523. inline
  524. void current_path(const path& p, system::error_code& ec) BOOST_NOEXCEPT {detail::current_path(p, &ec);}
  525. inline
  526. bool equivalent(const path& p1, const path& p2) {return detail::equivalent(p1, p2);}
  527. inline
  528. bool equivalent(const path& p1, const path& p2, system::error_code& ec) BOOST_NOEXCEPT
  529. {return detail::equivalent(p1, p2, &ec);}
  530. inline
  531. boost::uintmax_t file_size(const path& p) {return detail::file_size(p);}
  532. inline
  533. boost::uintmax_t file_size(const path& p, system::error_code& ec) BOOST_NOEXCEPT
  534. {return detail::file_size(p, &ec);}
  535. inline
  536. boost::uintmax_t hard_link_count(const path& p) {return detail::hard_link_count(p);}
  537. inline
  538. boost::uintmax_t hard_link_count(const path& p, system::error_code& ec) BOOST_NOEXCEPT
  539. {return detail::hard_link_count(p, &ec);}
  540. inline
  541. path initial_path() {return detail::initial_path();}
  542. inline
  543. path initial_path(system::error_code& ec) {return detail::initial_path(&ec);}
  544. template <class Path>
  545. path initial_path() {return initial_path();}
  546. template <class Path>
  547. path initial_path(system::error_code& ec) {return detail::initial_path(&ec);}
  548. inline
  549. std::time_t last_write_time(const path& p) {return detail::last_write_time(p);}
  550. inline
  551. std::time_t last_write_time(const path& p, system::error_code& ec) BOOST_NOEXCEPT
  552. {return detail::last_write_time(p, &ec);}
  553. inline
  554. void last_write_time(const path& p, const std::time_t new_time)
  555. {detail::last_write_time(p, new_time);}
  556. inline
  557. void last_write_time(const path& p, const std::time_t new_time,
  558. system::error_code& ec) BOOST_NOEXCEPT
  559. {detail::last_write_time(p, new_time, &ec);}
  560. inline
  561. void permissions(const path& p, perms prms)
  562. {detail::permissions(p, prms);}
  563. inline
  564. void permissions(const path& p, perms prms, system::error_code& ec) BOOST_NOEXCEPT
  565. {detail::permissions(p, prms, &ec);}
  566. inline
  567. path read_symlink(const path& p) {return detail::read_symlink(p);}
  568. inline
  569. path read_symlink(const path& p, system::error_code& ec)
  570. {return detail::read_symlink(p, &ec);}
  571. inline
  572. // For standardization, if the committee doesn't like "remove", consider "eliminate"
  573. bool remove(const path& p) {return detail::remove(p);}
  574. inline
  575. bool remove(const path& p, system::error_code& ec) BOOST_NOEXCEPT
  576. {return detail::remove(p, &ec);}
  577. inline
  578. boost::uintmax_t remove_all(const path& p) {return detail::remove_all(p);}
  579. inline
  580. boost::uintmax_t remove_all(const path& p, system::error_code& ec) BOOST_NOEXCEPT
  581. {return detail::remove_all(p, &ec);}
  582. inline
  583. void rename(const path& old_p, const path& new_p) {detail::rename(old_p, new_p);}
  584. inline
  585. void rename(const path& old_p, const path& new_p, system::error_code& ec) BOOST_NOEXCEPT
  586. {detail::rename(old_p, new_p, &ec);}
  587. inline // name suggested by Scott McMurray
  588. void resize_file(const path& p, uintmax_t size) {detail::resize_file(p, size);}
  589. inline
  590. void resize_file(const path& p, uintmax_t size, system::error_code& ec) BOOST_NOEXCEPT
  591. {detail::resize_file(p, size, &ec);}
  592. inline
  593. path relative(const path& p, const path& base=current_path())
  594. {return detail::relative(p, base);}
  595. inline
  596. path relative(const path& p, system::error_code& ec)
  597. {return detail::relative(p, current_path(), &ec);}
  598. inline
  599. path relative(const path& p, const path& base, system::error_code& ec)
  600. {return detail::relative(p, base, &ec);}
  601. inline
  602. space_info space(const path& p) {return detail::space(p);}
  603. inline
  604. space_info space(const path& p, system::error_code& ec) BOOST_NOEXCEPT
  605. {return detail::space(p, &ec);}
  606. # ifndef BOOST_FILESYSTEM_NO_DEPRECATED
  607. inline bool symbolic_link_exists(const path& p)
  608. { return is_symlink(symlink_status(p)); }
  609. # endif
  610. inline
  611. path system_complete(const path& p) {return detail::system_complete(p);}
  612. inline
  613. path system_complete(const path& p, system::error_code& ec)
  614. {return detail::system_complete(p, &ec);}
  615. inline
  616. path temp_directory_path() {return detail::temp_directory_path();}
  617. inline
  618. path temp_directory_path(system::error_code& ec)
  619. {return detail::temp_directory_path(&ec);}
  620. inline
  621. path unique_path(const path& p="%%%%-%%%%-%%%%-%%%%")
  622. {return detail::unique_path(p);}
  623. inline
  624. path unique_path(const path& p, system::error_code& ec)
  625. {return detail::unique_path(p, &ec);}
  626. inline
  627. path weakly_canonical(const path& p) {return detail::weakly_canonical(p);}
  628. inline
  629. path weakly_canonical(const path& p, system::error_code& ec)
  630. {return detail::weakly_canonical(p, &ec);}
  631. //--------------------------------------------------------------------------------------//
  632. // //
  633. // directory_entry //
  634. // //
  635. //--------------------------------------------------------------------------------------//
  636. // GCC has a problem with a member function named path within a namespace or
  637. // sub-namespace that also has a class named path. The workaround is to always
  638. // fully qualify the name path when it refers to the class name.
  639. class BOOST_FILESYSTEM_DECL directory_entry
  640. {
  641. public:
  642. typedef boost::filesystem::path::value_type value_type; // enables class path ctor taking directory_entry
  643. directory_entry() BOOST_NOEXCEPT {}
  644. explicit directory_entry(const boost::filesystem::path& p)
  645. : m_path(p), m_status(file_status()), m_symlink_status(file_status())
  646. {}
  647. directory_entry(const boost::filesystem::path& p,
  648. file_status st, file_status symlink_st = file_status())
  649. : m_path(p), m_status(st), m_symlink_status(symlink_st) {}
  650. directory_entry(const directory_entry& rhs)
  651. : m_path(rhs.m_path), m_status(rhs.m_status), m_symlink_status(rhs.m_symlink_status){}
  652. directory_entry& operator=(const directory_entry& rhs)
  653. {
  654. m_path = rhs.m_path;
  655. m_status = rhs.m_status;
  656. m_symlink_status = rhs.m_symlink_status;
  657. return *this;
  658. }
  659. // As of October 2015 the interaction between noexcept and =default is so troublesome
  660. // for VC++, GCC, and probably other compilers, that =default is not used with noexcept
  661. // functions. GCC is not even consistent for the same release on different platforms.
  662. #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
  663. directory_entry(directory_entry&& rhs) BOOST_NOEXCEPT
  664. {
  665. m_path = std::move(rhs.m_path);
  666. m_status = std::move(rhs.m_status);
  667. m_symlink_status = std::move(rhs.m_symlink_status);
  668. }
  669. directory_entry& operator=(directory_entry&& rhs) BOOST_NOEXCEPT
  670. {
  671. m_path = std::move(rhs.m_path);
  672. m_status = std::move(rhs.m_status);
  673. m_symlink_status = std::move(rhs.m_symlink_status);
  674. return *this;
  675. }
  676. #endif
  677. void assign(const boost::filesystem::path& p,
  678. file_status st = file_status(), file_status symlink_st = file_status())
  679. { m_path = p; m_status = st; m_symlink_status = symlink_st; }
  680. void replace_filename(const boost::filesystem::path& p,
  681. file_status st = file_status(), file_status symlink_st = file_status())
  682. {
  683. m_path.remove_filename();
  684. m_path /= p;
  685. m_status = st;
  686. m_symlink_status = symlink_st;
  687. }
  688. # ifndef BOOST_FILESYSTEM_NO_DEPRECATED
  689. void replace_leaf(const boost::filesystem::path& p,
  690. file_status st, file_status symlink_st)
  691. { replace_filename(p, st, symlink_st); }
  692. # endif
  693. const boost::filesystem::path& path() const BOOST_NOEXCEPT {return m_path;}
  694. operator const boost::filesystem::path&() const BOOST_NOEXCEPT
  695. {return m_path;}
  696. file_status status() const {return m_get_status();}
  697. file_status status(system::error_code& ec) const BOOST_NOEXCEPT
  698. {return m_get_status(&ec); }
  699. file_status symlink_status() const {return m_get_symlink_status();}
  700. file_status symlink_status(system::error_code& ec) const BOOST_NOEXCEPT
  701. {return m_get_symlink_status(&ec); }
  702. bool operator==(const directory_entry& rhs) const BOOST_NOEXCEPT {return m_path == rhs.m_path; }
  703. bool operator!=(const directory_entry& rhs) const BOOST_NOEXCEPT {return m_path != rhs.m_path;}
  704. bool operator< (const directory_entry& rhs) const BOOST_NOEXCEPT {return m_path < rhs.m_path;}
  705. bool operator<=(const directory_entry& rhs) const BOOST_NOEXCEPT {return m_path <= rhs.m_path;}
  706. bool operator> (const directory_entry& rhs) const BOOST_NOEXCEPT {return m_path > rhs.m_path;}
  707. bool operator>=(const directory_entry& rhs) const BOOST_NOEXCEPT {return m_path >= rhs.m_path;}
  708. private:
  709. boost::filesystem::path m_path;
  710. mutable file_status m_status; // stat()-like
  711. mutable file_status m_symlink_status; // lstat()-like
  712. file_status m_get_status(system::error_code* ec=0) const;
  713. file_status m_get_symlink_status(system::error_code* ec=0) const;
  714. }; // directory_entry
  715. //--------------------------------------------------------------------------------------//
  716. // //
  717. // directory_iterator helpers //
  718. // //
  719. //--------------------------------------------------------------------------------------//
  720. class directory_iterator;
  721. namespace detail
  722. {
  723. BOOST_FILESYSTEM_DECL
  724. system::error_code dir_itr_close(// never throws()
  725. void *& handle
  726. # if defined(BOOST_POSIX_API)
  727. , void *& buffer
  728. # endif
  729. );
  730. struct dir_itr_imp
  731. {
  732. directory_entry dir_entry;
  733. void* handle;
  734. # ifdef BOOST_POSIX_API
  735. void* buffer; // see dir_itr_increment implementation
  736. # endif
  737. dir_itr_imp() : handle(0)
  738. # ifdef BOOST_POSIX_API
  739. , buffer(0)
  740. # endif
  741. {}
  742. ~dir_itr_imp() // never throws
  743. {
  744. dir_itr_close(handle
  745. # if defined(BOOST_POSIX_API)
  746. , buffer
  747. # endif
  748. );
  749. }
  750. };
  751. // see path::iterator: comment below
  752. BOOST_FILESYSTEM_DECL void directory_iterator_construct(directory_iterator& it,
  753. const path& p, system::error_code* ec);
  754. BOOST_FILESYSTEM_DECL void directory_iterator_increment(directory_iterator& it,
  755. system::error_code* ec);
  756. } // namespace detail
  757. //--------------------------------------------------------------------------------------//
  758. // //
  759. // directory_iterator //
  760. // //
  761. //--------------------------------------------------------------------------------------//
  762. class directory_iterator
  763. : public boost::iterator_facade< directory_iterator,
  764. directory_entry,
  765. boost::single_pass_traversal_tag >
  766. {
  767. public:
  768. directory_iterator() BOOST_NOEXCEPT {} // creates the "end" iterator
  769. // iterator_facade derived classes don't seem to like implementations in
  770. // separate translation unit dll's, so forward to detail functions
  771. explicit directory_iterator(const path& p)
  772. : m_imp(new detail::dir_itr_imp)
  773. { detail::directory_iterator_construct(*this, p, 0); }
  774. directory_iterator(const path& p, system::error_code& ec) BOOST_NOEXCEPT
  775. : m_imp(new detail::dir_itr_imp)
  776. { detail::directory_iterator_construct(*this, p, &ec); }
  777. ~directory_iterator() {}
  778. directory_iterator& increment(system::error_code& ec) BOOST_NOEXCEPT
  779. {
  780. detail::directory_iterator_increment(*this, &ec);
  781. return *this;
  782. }
  783. private:
  784. friend struct detail::dir_itr_imp;
  785. friend BOOST_FILESYSTEM_DECL void detail::directory_iterator_construct(directory_iterator& it,
  786. const path& p, system::error_code* ec);
  787. friend BOOST_FILESYSTEM_DECL void detail::directory_iterator_increment(directory_iterator& it,
  788. system::error_code* ec);
  789. // shared_ptr provides shallow-copy semantics required for InputIterators.
  790. // m_imp.get()==0 indicates the end iterator.
  791. boost::shared_ptr< detail::dir_itr_imp > m_imp;
  792. friend class boost::iterator_core_access;
  793. boost::iterator_facade<
  794. directory_iterator,
  795. directory_entry,
  796. boost::single_pass_traversal_tag >::reference dereference() const
  797. {
  798. BOOST_ASSERT_MSG(m_imp.get(), "attempt to dereference end iterator");
  799. return m_imp->dir_entry;
  800. }
  801. void increment() { detail::directory_iterator_increment(*this, 0); }
  802. bool equal(const directory_iterator& rhs) const
  803. { return m_imp == rhs.m_imp; }
  804. }; // directory_iterator
  805. // enable directory_iterator C++11 range-base for statement use --------------------//
  806. // begin() and end() are only used by a range-based for statement in the context of
  807. // auto - thus the top-level const is stripped - so returning const is harmless and
  808. // emphasizes begin() is just a pass through.
  809. inline
  810. const directory_iterator& begin(const directory_iterator& iter) BOOST_NOEXCEPT
  811. {return iter;}
  812. inline
  813. directory_iterator end(const directory_iterator&) BOOST_NOEXCEPT
  814. {return directory_iterator();}
  815. // enable directory_iterator BOOST_FOREACH -----------------------------------------//
  816. inline
  817. directory_iterator& range_begin(directory_iterator& iter) BOOST_NOEXCEPT
  818. {return iter;}
  819. inline
  820. directory_iterator range_begin(const directory_iterator& iter) BOOST_NOEXCEPT
  821. {return iter;}
  822. inline
  823. directory_iterator range_end(const directory_iterator&) BOOST_NOEXCEPT
  824. {return directory_iterator();}
  825. } // namespace filesystem
  826. // namespace boost template specializations
  827. template<>
  828. struct range_mutable_iterator<boost::filesystem::directory_iterator>
  829. { typedef boost::filesystem::directory_iterator type; };
  830. template<>
  831. struct range_const_iterator <boost::filesystem::directory_iterator>
  832. { typedef boost::filesystem::directory_iterator type; };
  833. namespace filesystem
  834. {
  835. //--------------------------------------------------------------------------------------//
  836. // //
  837. // recursive_directory_iterator helpers //
  838. // //
  839. //--------------------------------------------------------------------------------------//
  840. BOOST_SCOPED_ENUM_START(symlink_option)
  841. {
  842. none,
  843. no_recurse = none, // don't follow directory symlinks (default behavior)
  844. recurse, // follow directory symlinks
  845. _detail_no_push = recurse << 1 // internal use only
  846. };
  847. BOOST_SCOPED_ENUM_END
  848. BOOST_BITMASK(BOOST_SCOPED_ENUM(symlink_option))
  849. namespace detail
  850. {
  851. struct recur_dir_itr_imp
  852. {
  853. typedef directory_iterator element_type;
  854. std::stack< element_type, std::vector< element_type > > m_stack;
  855. int m_level;
  856. BOOST_SCOPED_ENUM(symlink_option) m_options;
  857. recur_dir_itr_imp() : m_level(0), m_options(symlink_option::none) {}
  858. void increment(system::error_code* ec); // ec == 0 means throw on error
  859. bool push_directory(system::error_code& ec) BOOST_NOEXCEPT;
  860. void pop();
  861. };
  862. // Implementation is inline to avoid dynamic linking difficulties with m_stack:
  863. // Microsoft warning C4251, m_stack needs to have dll-interface to be used by
  864. // clients of struct 'boost::filesystem::detail::recur_dir_itr_imp'
  865. inline
  866. bool recur_dir_itr_imp::push_directory(system::error_code& ec) BOOST_NOEXCEPT
  867. // Returns: true if push occurs, otherwise false. Always returns false on error.
  868. {
  869. ec.clear();
  870. // Discover if the iterator is for a directory that needs to be recursed into,
  871. // taking symlinks and options into account.
  872. if ((m_options & symlink_option::_detail_no_push) == symlink_option::_detail_no_push)
  873. m_options &= ~symlink_option::_detail_no_push;
  874. else
  875. {
  876. // Logic for following predicate was contributed by Daniel Aarno to handle cyclic
  877. // symlinks correctly and efficiently, fixing ticket #5652.
  878. // if (((m_options & symlink_option::recurse) == symlink_option::recurse
  879. // || !is_symlink(m_stack.top()->symlink_status()))
  880. // && is_directory(m_stack.top()->status())) ...
  881. // The predicate code has since been rewritten to pass error_code arguments,
  882. // per ticket #5653.
  883. file_status symlink_stat;
  884. if ((m_options & symlink_option::recurse) != symlink_option::recurse)
  885. {
  886. symlink_stat = m_stack.top()->symlink_status(ec);
  887. if (ec)
  888. return false;
  889. }
  890. if ((m_options & symlink_option::recurse) == symlink_option::recurse
  891. || !is_symlink(symlink_stat))
  892. {
  893. file_status stat = m_stack.top()->status(ec);
  894. if (ec || !is_directory(stat))
  895. return false;
  896. directory_iterator next(m_stack.top()->path(), ec);
  897. if (!ec && next != directory_iterator())
  898. {
  899. m_stack.push(next);
  900. ++m_level;
  901. return true;
  902. }
  903. }
  904. }
  905. return false;
  906. }
  907. inline
  908. void recur_dir_itr_imp::increment(system::error_code* ec)
  909. // ec == 0 means throw on error
  910. //
  911. // Invariant: On return, the top of the iterator stack is the next valid (possibly
  912. // end) iterator, regardless of whether or not an error is reported, and regardless of
  913. // whether any error is reported by exception or error code. In other words, progress
  914. // is always made so a loop on the iterator will always eventually terminate
  915. // regardless of errors.
  916. {
  917. system::error_code ec_push_directory;
  918. // if various conditions are met, push a directory_iterator into the iterator stack
  919. if (push_directory(ec_push_directory))
  920. {
  921. if (ec)
  922. ec->clear();
  923. return;
  924. }
  925. // Do the actual increment operation on the top iterator in the iterator
  926. // stack, popping the stack if necessary, until either the stack is empty or a
  927. // non-end iterator is reached.
  928. while (!m_stack.empty() && ++m_stack.top() == directory_iterator())
  929. {
  930. m_stack.pop();
  931. --m_level;
  932. }
  933. // report errors if any
  934. if (ec_push_directory)
  935. {
  936. if (ec)
  937. *ec = ec_push_directory;
  938. else
  939. {
  940. BOOST_FILESYSTEM_THROW(filesystem_error(
  941. "filesystem::recursive_directory_iterator directory error",
  942. ec_push_directory));
  943. }
  944. }
  945. else if (ec)
  946. ec->clear();
  947. }
  948. inline
  949. void recur_dir_itr_imp::pop()
  950. {
  951. BOOST_ASSERT_MSG(m_level > 0,
  952. "pop() on recursive_directory_iterator with level < 1");
  953. do
  954. {
  955. m_stack.pop();
  956. --m_level;
  957. }
  958. while (!m_stack.empty() && ++m_stack.top() == directory_iterator());
  959. }
  960. } // namespace detail
  961. //--------------------------------------------------------------------------------------//
  962. // //
  963. // recursive_directory_iterator //
  964. // //
  965. //--------------------------------------------------------------------------------------//
  966. class recursive_directory_iterator
  967. : public boost::iterator_facade<
  968. recursive_directory_iterator,
  969. directory_entry,
  970. boost::single_pass_traversal_tag >
  971. {
  972. public:
  973. recursive_directory_iterator() BOOST_NOEXCEPT {} // creates the "end" iterator
  974. explicit recursive_directory_iterator(const path& dir_path) // throws if !exists()
  975. : m_imp(new detail::recur_dir_itr_imp)
  976. {
  977. m_imp->m_options = symlink_option::none;
  978. m_imp->m_stack.push(directory_iterator(dir_path));
  979. if (m_imp->m_stack.top() == directory_iterator())
  980. { m_imp.reset(); }
  981. }
  982. recursive_directory_iterator(const path& dir_path,
  983. BOOST_SCOPED_ENUM(symlink_option) opt) // throws if !exists()
  984. : m_imp(new detail::recur_dir_itr_imp)
  985. {
  986. m_imp->m_options = opt;
  987. m_imp->m_stack.push(directory_iterator(dir_path));
  988. if (m_imp->m_stack.top() == directory_iterator())
  989. { m_imp.reset (); }
  990. }
  991. recursive_directory_iterator(const path& dir_path,
  992. BOOST_SCOPED_ENUM(symlink_option) opt,
  993. system::error_code & ec) BOOST_NOEXCEPT
  994. : m_imp(new detail::recur_dir_itr_imp)
  995. {
  996. m_imp->m_options = opt;
  997. m_imp->m_stack.push(directory_iterator(dir_path, ec));
  998. if (m_imp->m_stack.top() == directory_iterator())
  999. { m_imp.reset (); }
  1000. }
  1001. recursive_directory_iterator(const path& dir_path,
  1002. system::error_code & ec) BOOST_NOEXCEPT
  1003. : m_imp(new detail::recur_dir_itr_imp)
  1004. {
  1005. m_imp->m_options = symlink_option::none;
  1006. m_imp->m_stack.push(directory_iterator(dir_path, ec));
  1007. if (m_imp->m_stack.top() == directory_iterator())
  1008. { m_imp.reset (); }
  1009. }
  1010. recursive_directory_iterator& increment(system::error_code& ec) BOOST_NOEXCEPT
  1011. {
  1012. BOOST_ASSERT_MSG(m_imp.get(),
  1013. "increment() on end recursive_directory_iterator");
  1014. m_imp->increment(&ec);
  1015. if (m_imp->m_stack.empty())
  1016. m_imp.reset(); // done, so make end iterator
  1017. return *this;
  1018. }
  1019. int depth() const BOOST_NOEXCEPT
  1020. {
  1021. BOOST_ASSERT_MSG(m_imp.get(),
  1022. "depth() on end recursive_directory_iterator");
  1023. return m_imp->m_level;
  1024. }
  1025. int level() const BOOST_NOEXCEPT { return depth(); }
  1026. bool recursion_pending() const BOOST_NOEXCEPT
  1027. {
  1028. BOOST_ASSERT_MSG(m_imp.get(),
  1029. "is_no_push_requested() on end recursive_directory_iterator");
  1030. return (m_imp->m_options & symlink_option::_detail_no_push)
  1031. == symlink_option::_detail_no_push;
  1032. }
  1033. bool no_push_pending() const BOOST_NOEXCEPT { return recursion_pending(); }
  1034. # ifndef BOOST_FILESYSTEM_NO_DEPRECATED
  1035. bool no_push_request() const BOOST_NOEXCEPT { return no_push_pending(); }
  1036. # endif
  1037. void pop()
  1038. {
  1039. BOOST_ASSERT_MSG(m_imp.get(),
  1040. "pop() on end recursive_directory_iterator");
  1041. m_imp->pop();
  1042. if (m_imp->m_stack.empty()) m_imp.reset(); // done, so make end iterator
  1043. }
  1044. void disable_recursion_pending(bool value=true) BOOST_NOEXCEPT
  1045. {
  1046. BOOST_ASSERT_MSG(m_imp.get(),
  1047. "no_push() on end recursive_directory_iterator");
  1048. if (value)
  1049. m_imp->m_options |= symlink_option::_detail_no_push;
  1050. else
  1051. m_imp->m_options &= ~symlink_option::_detail_no_push;
  1052. }
  1053. void no_push(bool value=true) BOOST_NOEXCEPT { disable_recursion_pending(value); }
  1054. file_status status() const
  1055. {
  1056. BOOST_ASSERT_MSG(m_imp.get(),
  1057. "status() on end recursive_directory_iterator");
  1058. return m_imp->m_stack.top()->status();
  1059. }
  1060. file_status symlink_status() const
  1061. {
  1062. BOOST_ASSERT_MSG(m_imp.get(),
  1063. "symlink_status() on end recursive_directory_iterator");
  1064. return m_imp->m_stack.top()->symlink_status();
  1065. }
  1066. private:
  1067. // shared_ptr provides shallow-copy semantics required for InputIterators.
  1068. // m_imp.get()==0 indicates the end iterator.
  1069. boost::shared_ptr< detail::recur_dir_itr_imp > m_imp;
  1070. friend class boost::iterator_core_access;
  1071. boost::iterator_facade<
  1072. recursive_directory_iterator,
  1073. directory_entry,
  1074. boost::single_pass_traversal_tag >::reference
  1075. dereference() const
  1076. {
  1077. BOOST_ASSERT_MSG(m_imp.get(),
  1078. "dereference of end recursive_directory_iterator");
  1079. return *m_imp->m_stack.top();
  1080. }
  1081. void increment()
  1082. {
  1083. BOOST_ASSERT_MSG(m_imp.get(),
  1084. "increment of end recursive_directory_iterator");
  1085. m_imp->increment(0);
  1086. if (m_imp->m_stack.empty())
  1087. m_imp.reset(); // done, so make end iterator
  1088. }
  1089. bool equal(const recursive_directory_iterator& rhs) const
  1090. { return m_imp == rhs.m_imp; }
  1091. }; // recursive directory iterator
  1092. // enable recursive directory iterator C++11 range-base for statement use ----------//
  1093. // begin() and end() are only used by a range-based for statement in the context of
  1094. // auto - thus the top-level const is stripped - so returning const is harmless and
  1095. // emphasizes begin() is just a pass through.
  1096. inline
  1097. const recursive_directory_iterator&
  1098. begin(const recursive_directory_iterator& iter) BOOST_NOEXCEPT
  1099. {return iter;}
  1100. inline
  1101. recursive_directory_iterator end(const recursive_directory_iterator&) BOOST_NOEXCEPT
  1102. {return recursive_directory_iterator();}
  1103. // enable recursive directory iterator BOOST_FOREACH -------------------------------//
  1104. inline
  1105. recursive_directory_iterator&
  1106. range_begin(recursive_directory_iterator& iter) BOOST_NOEXCEPT
  1107. {return iter;}
  1108. inline
  1109. recursive_directory_iterator
  1110. range_begin(const recursive_directory_iterator& iter) BOOST_NOEXCEPT
  1111. {return iter;}
  1112. inline
  1113. recursive_directory_iterator range_end(const recursive_directory_iterator&) BOOST_NOEXCEPT
  1114. {return recursive_directory_iterator();}
  1115. } // namespace filesystem
  1116. // namespace boost template specializations
  1117. template<>
  1118. struct range_mutable_iterator<boost::filesystem::recursive_directory_iterator>
  1119. { typedef boost::filesystem::recursive_directory_iterator type; };
  1120. template<>
  1121. struct range_const_iterator <boost::filesystem::recursive_directory_iterator>
  1122. { typedef boost::filesystem::recursive_directory_iterator type; };
  1123. namespace filesystem
  1124. {
  1125. # if !defined(BOOST_FILESYSTEM_NO_DEPRECATED)
  1126. typedef recursive_directory_iterator wrecursive_directory_iterator;
  1127. # endif
  1128. // test helper -----------------------------------------------------------------------//
  1129. // Not part of the documented interface since false positives are possible;
  1130. // there is no law that says that an OS that has large stat.st_size
  1131. // actually supports large file sizes.
  1132. namespace detail
  1133. {
  1134. BOOST_FILESYSTEM_DECL bool possible_large_file_size_support();
  1135. }
  1136. } // namespace filesystem
  1137. } // namespace boost
  1138. #include <boost/config/abi_suffix.hpp> // pops abi_prefix.hpp pragmas
  1139. #endif // BOOST_FILESYSTEM3_OPERATIONS_HPP