123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710 |
- #ifndef BOOST_FILESYSTEM_PATH_HPP
- #define BOOST_FILESYSTEM_PATH_HPP
- #include <boost/filesystem/config.hpp>
- #include <cstddef>
- #include <iosfwd>
- #include <locale>
- #include <string>
- #include <iterator>
- #include <type_traits>
- #if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW)
- #include <string_view>
- #endif
- #include <boost/assert.hpp>
- #include <boost/iterator/iterator_facade.hpp>
- #include <boost/iterator/iterator_categories.hpp>
- #include <boost/io/quoted.hpp>
- #include <boost/functional/hash_fwd.hpp>
- #include <boost/filesystem/detail/path_traits.hpp>
- #include <boost/filesystem/detail/type_traits/negation.hpp>
- #include <boost/filesystem/detail/type_traits/conjunction.hpp>
- #include <boost/filesystem/detail/type_traits/disjunction.hpp>
- #include <boost/filesystem/detail/header.hpp> // must be the last #include
- namespace boost {
- namespace filesystem {
- class path;
- namespace path_detail {
- template< typename Char, Char Separator, Char PreferredSeparator, Char Dot >
- struct path_constants
- {
- typedef path_constants< Char, Separator, PreferredSeparator, Dot > path_constants_base;
- typedef Char value_type;
- static BOOST_CONSTEXPR_OR_CONST value_type separator = Separator;
- static BOOST_CONSTEXPR_OR_CONST value_type preferred_separator = PreferredSeparator;
- static BOOST_CONSTEXPR_OR_CONST value_type dot = Dot;
- };
- #if defined(BOOST_NO_CXX17_INLINE_VARIABLES)
- template< typename Char, Char Separator, Char PreferredSeparator, Char Dot >
- BOOST_CONSTEXPR_OR_CONST typename path_constants< Char, Separator, PreferredSeparator, Dot >::value_type
- path_constants< Char, Separator, PreferredSeparator, Dot >::separator;
- template< typename Char, Char Separator, Char PreferredSeparator, Char Dot >
- BOOST_CONSTEXPR_OR_CONST typename path_constants< Char, Separator, PreferredSeparator, Dot >::value_type
- path_constants< Char, Separator, PreferredSeparator, Dot >::preferred_separator;
- template< typename Char, Char Separator, Char PreferredSeparator, Char Dot >
- BOOST_CONSTEXPR_OR_CONST typename path_constants< Char, Separator, PreferredSeparator, Dot >::value_type
- path_constants< Char, Separator, PreferredSeparator, Dot >::dot;
- #endif
- class path_iterator;
- class path_reverse_iterator;
- }
- namespace detail {
- struct path_algorithms
- {
-
- struct substring
- {
- std::size_t pos;
- std::size_t size;
- };
- typedef path_traits::path_native_char_type value_type;
- typedef std::basic_string< value_type > string_type;
- static bool has_filename_v3(path const& p);
- static bool has_filename_v4(path const& p);
- BOOST_FILESYSTEM_DECL static path filename_v3(path const& p);
- static path filename_v4(path const& p);
- BOOST_FILESYSTEM_DECL static path stem_v3(path const& p);
- BOOST_FILESYSTEM_DECL static path stem_v4(path const& p);
- BOOST_FILESYSTEM_DECL static path extension_v3(path const& p);
- static path extension_v4(path const& p);
- BOOST_FILESYSTEM_DECL static void remove_filename_v3(path& p);
- BOOST_FILESYSTEM_DECL static void remove_filename_v4(path& p);
- BOOST_FILESYSTEM_DECL static void replace_extension_v3(path& p, path const& new_extension);
- BOOST_FILESYSTEM_DECL static void replace_extension_v4(path& p, path const& new_extension);
- BOOST_FILESYSTEM_DECL static path lexically_normal_v3(path const& p);
- BOOST_FILESYSTEM_DECL static path lexically_normal_v4(path const& p);
- BOOST_FILESYSTEM_DECL static path generic_path_v3(path const& p);
- BOOST_FILESYSTEM_DECL static path generic_path_v4(path const& p);
- #if defined(BOOST_WINDOWS_API)
- BOOST_FILESYSTEM_DECL static void make_preferred_v3(path& p);
- BOOST_FILESYSTEM_DECL static void make_preferred_v4(path& p);
- #endif
- BOOST_FILESYSTEM_DECL static int compare_v3(path const& left, path const& right);
- BOOST_FILESYSTEM_DECL static int compare_v4(path const& left, path const& right);
- BOOST_FILESYSTEM_DECL static void append_v3(path& p, const value_type* b, const value_type* e);
- BOOST_FILESYSTEM_DECL static void append_v4(path& p, const value_type* b, const value_type* e);
- static void append_v4(path& left, path const& right);
-
-
- BOOST_FILESYSTEM_DECL static string_type::size_type append_separator_if_needed(path& p);
- BOOST_FILESYSTEM_DECL static void erase_redundant_separator(path& p, string_type::size_type sep_pos);
- BOOST_FILESYSTEM_DECL static string_type::size_type find_root_name_size(path const& p);
- BOOST_FILESYSTEM_DECL static string_type::size_type find_root_path_size(path const& p);
- BOOST_FILESYSTEM_DECL static substring find_root_directory(path const& p);
- BOOST_FILESYSTEM_DECL static substring find_relative_path(path const& p);
- BOOST_FILESYSTEM_DECL static string_type::size_type find_parent_path_size(path const& p);
- BOOST_FILESYSTEM_DECL static string_type::size_type find_filename_v4_size(path const& p);
- BOOST_FILESYSTEM_DECL static string_type::size_type find_extension_v4_size(path const& p);
- BOOST_FILESYSTEM_DECL static int lex_compare_v3
- (
- path_detail::path_iterator first1, path_detail::path_iterator const& last1,
- path_detail::path_iterator first2, path_detail::path_iterator const& last2
- );
- BOOST_FILESYSTEM_DECL static int lex_compare_v4
- (
- path_detail::path_iterator first1, path_detail::path_iterator const& last1,
- path_detail::path_iterator first2, path_detail::path_iterator const& last2
- );
- BOOST_FILESYSTEM_DECL static void increment_v3(path_detail::path_iterator& it);
- BOOST_FILESYSTEM_DECL static void increment_v4(path_detail::path_iterator& it);
- BOOST_FILESYSTEM_DECL static void decrement_v3(path_detail::path_iterator& it);
- BOOST_FILESYSTEM_DECL static void decrement_v4(path_detail::path_iterator& it);
- };
- }
- class path :
- public filesystem::path_detail::path_constants<
- #ifdef BOOST_WINDOWS_API
- detail::path_traits::path_native_char_type, L'/', L'\\', L'.'
- #else
- detail::path_traits::path_native_char_type, '/', '/', '.'
- #endif
- >
- {
- friend class path_detail::path_iterator;
- friend class path_detail::path_reverse_iterator;
- friend struct detail::path_algorithms;
- public:
-
-
- typedef detail::path_algorithms::value_type value_type;
- typedef detail::path_algorithms::string_type string_type;
- typedef detail::path_traits::codecvt_type codecvt_type;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- private:
-
- class assign_op
- {
- private:
- path& m_self;
- public:
- typedef void result_type;
- explicit assign_op(path& self) noexcept : m_self(self) {}
- result_type operator() (const value_type* source, const value_type* source_end, const codecvt_type* = nullptr) const
- {
- m_self.m_pathname.assign(source, source_end);
- }
- template< typename OtherChar >
- result_type operator() (const OtherChar* source, const OtherChar* source_end, const codecvt_type* cvt = nullptr) const
- {
- m_self.m_pathname.clear();
- detail::path_traits::convert(source, source_end, m_self.m_pathname, cvt);
- }
- };
-
- class concat_op
- {
- private:
- path& m_self;
- public:
- typedef void result_type;
- explicit concat_op(path& self) noexcept : m_self(self) {}
- result_type operator() (const value_type* source, const value_type* source_end, const codecvt_type* = nullptr) const
- {
- m_self.m_pathname.append(source, source_end);
- }
- template< typename OtherChar >
- result_type operator() (const OtherChar* source, const OtherChar* source_end, const codecvt_type* cvt = nullptr) const
- {
- detail::path_traits::convert(source, source_end, m_self.m_pathname, cvt);
- }
- };
-
- class append_op
- {
- private:
- path& m_self;
- public:
- typedef void result_type;
- explicit append_op(path& self) noexcept : m_self(self) {}
- BOOST_FORCEINLINE result_type operator() (const value_type* source, const value_type* source_end, const codecvt_type* = nullptr) const
- {
- m_self.append(source, source_end);
- }
- template< typename OtherChar >
- BOOST_FORCEINLINE result_type operator() (const OtherChar* source, const OtherChar* source_end, const codecvt_type* cvt = nullptr) const
- {
- string_type src;
- detail::path_traits::convert(source, source_end, src, cvt);
- m_self.append(src.data(), src.data() + src.size());
- }
- };
-
- class compare_op
- {
- private:
- path const& m_self;
- public:
- typedef int result_type;
- explicit compare_op(path const& self) noexcept : m_self(self) {}
- result_type operator() (const value_type* source, const value_type* source_end, const codecvt_type* = nullptr) const;
- template< typename OtherChar >
- result_type operator() (const OtherChar* source, const OtherChar* source_end, const codecvt_type* cvt = nullptr) const;
- };
- public:
- typedef path_detail::path_iterator iterator;
- typedef iterator const_iterator;
- typedef path_detail::path_reverse_iterator reverse_iterator;
- typedef reverse_iterator const_reverse_iterator;
- public:
-
- path() noexcept {}
- path(path const& p) : m_pathname(p.m_pathname) {}
- path(path const& p, codecvt_type const&) : m_pathname(p.m_pathname) {}
- path(const value_type* s) : m_pathname(s) {}
- path(const value_type* s, codecvt_type const&) : m_pathname(s) {}
- path(string_type const& s) : m_pathname(s) {}
- path(string_type const& s, codecvt_type const&) : m_pathname(s) {}
- #if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW)
- path(std::basic_string_view< value_type > const& s) : m_pathname(s) {}
- path(std::basic_string_view< value_type > const& s, codecvt_type const&) : m_pathname(s) {}
- #endif
- template<
- typename Source,
- typename = typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >,
- detail::negation< detail::path_traits::is_native_path_source< typename std::remove_cv< Source >::type > >
- >::value
- >::type
- >
- path(Source const& source)
- {
- assign(source);
- }
- template<
- typename Source,
- typename = typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >,
- detail::negation< detail::path_traits::is_native_path_source< typename std::remove_cv< Source >::type > >
- >::value
- >::type
- >
- explicit path(Source const& source, codecvt_type const& cvt)
- {
- assign(source, cvt);
- }
- path(path&& p) noexcept : m_pathname(static_cast< string_type&& >(p.m_pathname))
- {
- }
- path(path&& p, codecvt_type const&) noexcept : m_pathname(static_cast< string_type&& >(p.m_pathname))
- {
- }
- path& operator=(path&& p) noexcept
- {
- m_pathname = static_cast< string_type&& >(p.m_pathname);
- return *this;
- }
- path& assign(path&& p) noexcept
- {
- m_pathname = static_cast< string_type&& >(p.m_pathname);
- return *this;
- }
- path& assign(path&& p, codecvt_type const&) noexcept
- {
- m_pathname = static_cast< string_type&& >(p.m_pathname);
- return *this;
- }
- path(string_type&& s) noexcept : m_pathname(static_cast< string_type&& >(s))
- {
- }
- path(string_type&& s, codecvt_type const&) noexcept : m_pathname(static_cast< string_type&& >(s))
- {
- }
- path& operator=(string_type&& p) noexcept
- {
- m_pathname = static_cast< string_type&& >(p);
- return *this;
- }
- path& assign(string_type&& p) noexcept
- {
- m_pathname = static_cast< string_type&& >(p);
- return *this;
- }
- path& assign(string_type&& p, codecvt_type const&) noexcept
- {
- m_pathname = static_cast< string_type&& >(p);
- return *this;
- }
- path(const value_type* begin, const value_type* end) : m_pathname(begin, end) {}
- path(const value_type* begin, const value_type* end, codecvt_type const&) : m_pathname(begin, end) {}
- template<
- typename InputIterator,
- typename = typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_path_source_iterator< InputIterator >,
- detail::negation< detail::path_traits::is_native_char_ptr< InputIterator > >
- >::value
- >::type
- >
- path(InputIterator begin, InputIterator end)
- {
- if (begin != end)
- {
- typedef std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source_t;
- source_t source(begin, end);
- assign(static_cast< source_t&& >(source));
- }
- }
- template<
- typename InputIterator,
- typename = typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_path_source_iterator< InputIterator >,
- detail::negation< detail::path_traits::is_native_char_ptr< InputIterator > >
- >::value
- >::type
- >
- path(InputIterator begin, InputIterator end, codecvt_type const& cvt)
- {
- if (begin != end)
- {
- typedef std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source_t;
- source_t source(begin, end);
- assign(static_cast< source_t&& >(source), cvt);
- }
- }
- path(std::nullptr_t) = delete;
- path& operator= (std::nullptr_t) = delete;
- public:
-
-
- path& operator=(path const& p);
- template< typename Source >
- typename std::enable_if<
- detail::disjunction<
- detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- path&
- >::type operator=(Source const& source)
- {
- return assign(source);
- }
- path& assign(path const& p)
- {
- m_pathname = p.m_pathname;
- return *this;
- }
- template< typename Source >
- typename std::enable_if<
- detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >::value,
- path&
- >::type assign(Source const& source)
- {
- detail::path_traits::dispatch(source, assign_op(*this));
- return *this;
- }
- template< typename Source >
- typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >,
- detail::negation< detail::path_traits::is_path_source< typename std::remove_cv< Source >::type > >
- >::value,
- path&
- >::type assign(Source const& source)
- {
- detail::path_traits::dispatch_convertible(source, assign_op(*this));
- return *this;
- }
- path& assign(path const& p, codecvt_type const&)
- {
- m_pathname = p.m_pathname;
- return *this;
- }
- template< typename Source >
- typename std::enable_if<
- detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >::value,
- path&
- >::type assign(Source const& source, codecvt_type const& cvt)
- {
- detail::path_traits::dispatch(source, assign_op(*this), &cvt);
- return *this;
- }
- template< typename Source >
- typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >,
- detail::negation< detail::path_traits::is_path_source< typename std::remove_cv< Source >::type > >
- >::value,
- path&
- >::type assign(Source const& source, codecvt_type const& cvt)
- {
- detail::path_traits::dispatch_convertible(source, assign_op(*this), &cvt);
- return *this;
- }
- path& assign(const value_type* begin, const value_type* end)
- {
- m_pathname.assign(begin, end);
- return *this;
- }
- template< typename InputIterator >
- typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_path_source_iterator< InputIterator >,
- detail::negation< detail::path_traits::is_native_char_ptr< InputIterator > >
- >::value,
- path&
- >::type assign(InputIterator begin, InputIterator end)
- {
- m_pathname.clear();
- if (begin != end)
- {
- typedef std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source_t;
- source_t source(begin, end);
- assign(static_cast< source_t&& >(source));
- }
- return *this;
- }
- path& assign(const value_type* begin, const value_type* end, codecvt_type const&)
- {
- m_pathname.assign(begin, end);
- return *this;
- }
- template< typename InputIterator >
- typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_path_source_iterator< InputIterator >,
- detail::negation< detail::path_traits::is_native_char_ptr< InputIterator > >
- >::value,
- path&
- >::type assign(InputIterator begin, InputIterator end, codecvt_type const& cvt)
- {
- m_pathname.clear();
- if (begin != end)
- {
- typedef std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source_t;
- source_t source(begin, end);
- assign(static_cast< source_t&& >(source), cvt);
- }
- return *this;
- }
-
- path& operator+=(path const& p);
- template< typename Source >
- typename std::enable_if<
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >::value,
- path&
- >::type operator+=(Source const& source)
- {
- return concat(source);
- }
- path& operator+=(value_type c)
- {
- m_pathname.push_back(c);
- return *this;
- }
- template< typename CharT >
- typename std::enable_if<
- detail::path_traits::is_path_char_type< CharT >::value,
- path&
- >::type operator+=(CharT c)
- {
- CharT tmp[2];
- tmp[0] = c;
- tmp[1] = static_cast< CharT >(0);
- concat_op(*this)(tmp, tmp + 1);
- return *this;
- }
- path& concat(path const& p)
- {
- m_pathname.append(p.m_pathname);
- return *this;
- }
- template< typename Source >
- typename std::enable_if<
- detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >::value,
- path&
- >::type concat(Source const& source)
- {
- detail::path_traits::dispatch(source, concat_op(*this));
- return *this;
- }
- template< typename Source >
- typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >,
- detail::negation< detail::path_traits::is_path_source< typename std::remove_cv< Source >::type > >
- >::value,
- path&
- >::type concat(Source const& source)
- {
- detail::path_traits::dispatch_convertible(source, concat_op(*this));
- return *this;
- }
- path& concat(path const& p, codecvt_type const&)
- {
- m_pathname.append(p.m_pathname);
- return *this;
- }
- template< typename Source >
- typename std::enable_if<
- detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >::value,
- path&
- >::type concat(Source const& source, codecvt_type const& cvt)
- {
- detail::path_traits::dispatch(source, concat_op(*this), &cvt);
- return *this;
- }
- template< typename Source >
- typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >,
- detail::negation< detail::path_traits::is_path_source< typename std::remove_cv< Source >::type > >
- >::value,
- path&
- >::type concat(Source const& source, codecvt_type const& cvt)
- {
- detail::path_traits::dispatch_convertible(source, concat_op(*this), &cvt);
- return *this;
- }
- path& concat(const value_type* begin, const value_type* end)
- {
- m_pathname.append(begin, end);
- return *this;
- }
- template< typename InputIterator >
- typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_path_source_iterator< InputIterator >,
- detail::negation< detail::path_traits::is_native_char_ptr< InputIterator > >
- >::value,
- path&
- >::type concat(InputIterator begin, InputIterator end)
- {
- if (begin != end)
- {
- std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source(begin, end);
- detail::path_traits::dispatch(source, concat_op(*this));
- }
- return *this;
- }
- path& concat(const value_type* begin, const value_type* end, codecvt_type const&)
- {
- m_pathname.append(begin, end);
- return *this;
- }
- template< typename InputIterator >
- typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_path_source_iterator< InputIterator >,
- detail::negation< detail::path_traits::is_native_char_ptr< InputIterator > >
- >::value,
- path&
- >::type concat(InputIterator begin, InputIterator end, codecvt_type const& cvt)
- {
- if (begin != end)
- {
- std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source(begin, end);
- detail::path_traits::dispatch(source, concat_op(*this), &cvt);
- }
- return *this;
- }
-
-
-
- path& operator/=(path const& p);
- template< typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >::value,
- path&
- >::type operator/=(Source const& source)
- {
- return append(source);
- }
- path& append(path const& p);
- template< typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >::value,
- path&
- >::type append(Source const& source)
- {
- detail::path_traits::dispatch(source, append_op(*this));
- return *this;
- }
- template< typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >,
- detail::negation< detail::path_traits::is_path_source< typename std::remove_cv< Source >::type > >
- >::value,
- path&
- >::type append(Source const& source)
- {
- detail::path_traits::dispatch_convertible(source, append_op(*this));
- return *this;
- }
- path& append(path const& p, codecvt_type const&);
- template< typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >::value,
- path&
- >::type append(Source const& source, codecvt_type const& cvt)
- {
- detail::path_traits::dispatch(source, append_op(*this), &cvt);
- return *this;
- }
- template< typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >,
- detail::negation< detail::path_traits::is_path_source< typename std::remove_cv< Source >::type > >
- >::value,
- path&
- >::type append(Source const& source, codecvt_type const& cvt)
- {
- detail::path_traits::dispatch_convertible(source, append_op(*this), &cvt);
- return *this;
- }
- path& append(const value_type* begin, const value_type* end);
- template< typename InputIterator >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_path_source_iterator< InputIterator >,
- detail::negation< detail::path_traits::is_native_char_ptr< InputIterator > >
- >::value,
- path&
- >::type append(InputIterator begin, InputIterator end)
- {
- std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source(begin, end);
- detail::path_traits::dispatch(source, append_op(*this));
- return *this;
- }
- path& append(const value_type* begin, const value_type* end, codecvt_type const&);
- template< typename InputIterator >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_path_source_iterator< InputIterator >,
- detail::negation< detail::path_traits::is_native_char_ptr< InputIterator > >
- >::value,
- path&
- >::type append(InputIterator begin, InputIterator end, const codecvt_type& cvt)
- {
- std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source(begin, end);
- detail::path_traits::dispatch(source, append_op(*this), &cvt);
- return *this;
- }
-
- void clear() noexcept { m_pathname.clear(); }
- path& make_preferred();
- path& remove_filename();
- BOOST_FILESYSTEM_DECL path& remove_filename_and_trailing_separators();
- BOOST_FILESYSTEM_DECL path& remove_trailing_separator();
- BOOST_FILESYSTEM_DECL path& replace_filename(path const& replacement);
- path& replace_extension(path const& new_extension = path());
- void swap(path& rhs) noexcept { m_pathname.swap(rhs.m_pathname); }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string_type const& native() const noexcept { return m_pathname; }
- const value_type* c_str() const noexcept { return m_pathname.c_str(); }
- string_type::size_type size() const noexcept { return m_pathname.size(); }
- template< typename String >
- String string() const;
- template< typename String >
- String string(codecvt_type const& cvt) const;
- #ifdef BOOST_WINDOWS_API
- std::string string() const
- {
- std::string tmp;
- if (!m_pathname.empty())
- detail::path_traits::convert(m_pathname.data(), m_pathname.data() + m_pathname.size(), tmp);
- return tmp;
- }
- std::string string(codecvt_type const& cvt) const
- {
- std::string tmp;
- if (!m_pathname.empty())
- detail::path_traits::convert(m_pathname.data(), m_pathname.data() + m_pathname.size(), tmp, &cvt);
- return tmp;
- }
-
- std::wstring const& wstring() const { return m_pathname; }
- std::wstring const& wstring(codecvt_type const&) const { return m_pathname; }
- #else
-
- std::string const& string() const { return m_pathname; }
- std::string const& string(codecvt_type const&) const { return m_pathname; }
- std::wstring wstring() const
- {
- std::wstring tmp;
- if (!m_pathname.empty())
- detail::path_traits::convert(m_pathname.data(), m_pathname.data() + m_pathname.size(), tmp);
- return tmp;
- }
- std::wstring wstring(codecvt_type const& cvt) const
- {
- std::wstring tmp;
- if (!m_pathname.empty())
- detail::path_traits::convert(m_pathname.data(), m_pathname.data() + m_pathname.size(), tmp, &cvt);
- return tmp;
- }
- #endif
-
-
-
-
- path generic_path() const;
- template< typename String >
- String generic_string() const;
- template< typename String >
- String generic_string(codecvt_type const& cvt) const;
- std::string generic_string() const { return generic_path().string(); }
- std::string generic_string(codecvt_type const& cvt) const { return generic_path().string(cvt); }
- std::wstring generic_wstring() const { return generic_path().wstring(); }
- std::wstring generic_wstring(codecvt_type const& cvt) const { return generic_path().wstring(cvt); }
-
- int compare(path const& p) const;
- template< typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >::value,
- int
- >::type compare(Source const& source) const
- {
- return detail::path_traits::dispatch(source, compare_op(*this));
- }
- template< typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >,
- detail::negation< detail::path_traits::is_path_source< typename std::remove_cv< Source >::type > >
- >::value,
- int
- >::type compare(Source const& source) const
- {
- return detail::path_traits::dispatch_convertible(source, compare_op(*this));
- }
- template< typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::path_traits::is_path_source< typename std::remove_cv< Source >::type >::value,
- int
- >::type compare(Source const& source, codecvt_type const& cvt) const
- {
- return detail::path_traits::dispatch(source, compare_op(*this), &cvt);
- }
- template< typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >,
- detail::negation< detail::path_traits::is_path_source< typename std::remove_cv< Source >::type > >
- >::value,
- int
- >::type compare(Source const& source, codecvt_type const& cvt) const
- {
- return detail::path_traits::dispatch_convertible(source, compare_op(*this), &cvt);
- }
-
- path root_path() const { return path(m_pathname.c_str(), m_pathname.c_str() + detail::path_algorithms::find_root_path_size(*this)); }
-
- path root_name() const { return path(m_pathname.c_str(), m_pathname.c_str() + detail::path_algorithms::find_root_name_size(*this)); }
-
- path root_directory() const
- {
- detail::path_algorithms::substring root_dir = detail::path_algorithms::find_root_directory(*this);
- const value_type* p = m_pathname.c_str() + root_dir.pos;
- return path(p, p + root_dir.size);
- }
- path relative_path() const
- {
- detail::path_algorithms::substring rel_path = detail::path_algorithms::find_relative_path(*this);
- const value_type* p = m_pathname.c_str() + rel_path.pos;
- return path(p, p + rel_path.size);
- }
- path parent_path() const { return path(m_pathname.c_str(), m_pathname.c_str() + detail::path_algorithms::find_parent_path_size(*this)); }
- path filename() const;
- path stem() const;
- path extension() const;
-
- bool empty() const noexcept { return m_pathname.empty(); }
- bool filename_is_dot() const;
- bool filename_is_dot_dot() const;
- bool has_root_path() const { return detail::path_algorithms::find_root_path_size(*this) > 0; }
- bool has_root_name() const { return detail::path_algorithms::find_root_name_size(*this) > 0; }
- bool has_root_directory() const { return detail::path_algorithms::find_root_directory(*this).size > 0; }
- bool has_relative_path() const { return detail::path_algorithms::find_relative_path(*this).size > 0; }
- bool has_parent_path() const { return detail::path_algorithms::find_parent_path_size(*this) > 0; }
- bool has_filename() const;
- bool has_stem() const { return !stem().empty(); }
- bool has_extension() const { return !extension().empty(); }
- bool is_relative() const { return !is_absolute(); }
- bool is_absolute() const
- {
- #if defined(BOOST_WINDOWS_API)
- return has_root_name() && has_root_directory();
- #else
- return has_root_directory();
- #endif
- }
-
- path lexically_normal() const;
- BOOST_FILESYSTEM_DECL path lexically_relative(path const& base) const;
- path lexically_proximate(path const& base) const;
-
- BOOST_FILESYSTEM_DECL iterator begin() const;
- BOOST_FILESYSTEM_DECL iterator end() const;
- reverse_iterator rbegin() const;
- reverse_iterator rend() const;
-
- static BOOST_FILESYSTEM_DECL std::locale imbue(std::locale const& loc);
- static BOOST_FILESYSTEM_DECL codecvt_type const& codecvt();
-
-
-
- private:
-
- string_type m_pathname;
-
- };
- namespace detail {
- BOOST_FILESYSTEM_DECL path const& dot_path();
- BOOST_FILESYSTEM_DECL path const& dot_dot_path();
- }
- namespace path_detail {
- class path_iterator :
- public boost::iterator_facade<
- path_iterator,
- const path,
- boost::bidirectional_traversal_tag
- >
- {
- private:
- friend class boost::iterator_core_access;
- friend class boost::filesystem::path;
- friend class path_reverse_iterator;
- friend struct boost::filesystem::detail::path_algorithms;
- path const& dereference() const { return m_element; }
- bool equal(path_iterator const& rhs) const noexcept
- {
- return m_path_ptr == rhs.m_path_ptr && m_pos == rhs.m_pos;
- }
- void increment();
- void decrement();
- private:
-
- path m_element;
-
- const path* m_path_ptr;
-
-
-
-
-
- path::string_type::size_type m_pos;
- };
- class path_reverse_iterator :
- public boost::iterator_facade<
- path_reverse_iterator,
- const path,
- boost::bidirectional_traversal_tag
- >
- {
- public:
- explicit path_reverse_iterator(path_iterator itr) :
- m_itr(itr)
- {
- if (itr != itr.m_path_ptr->begin())
- m_element = *--itr;
- }
- private:
- friend class boost::iterator_core_access;
- friend class boost::filesystem::path;
- path const& dereference() const { return m_element; }
- bool equal(path_reverse_iterator const& rhs) const noexcept { return m_itr == rhs.m_itr; }
- void increment()
- {
- --m_itr;
- if (m_itr != m_itr.m_path_ptr->begin())
- {
- path_iterator tmp = m_itr;
- m_element = *--tmp;
- }
- }
- void decrement()
- {
- m_element = *m_itr;
- ++m_itr;
- }
- private:
- path_iterator m_itr;
- path m_element;
- };
- bool lexicographical_compare(path_iterator first1, path_iterator const& last1, path_iterator first2, path_iterator const& last2);
- }
- using path_detail::lexicographical_compare;
- BOOST_FORCEINLINE bool operator==(path const& lhs, path const& rhs)
- {
- return lhs.compare(rhs) == 0;
- }
- template< typename Path, typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator==(Path const& lhs, Source const& rhs)
- {
- return lhs.compare(rhs) == 0;
- }
- template< typename Source, typename Path >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator==(Source const& lhs, Path const& rhs)
- {
- return rhs.compare(lhs) == 0;
- }
- BOOST_FORCEINLINE bool operator!=(path const& lhs, path const& rhs)
- {
- return lhs.compare(rhs) != 0;
- }
- template< typename Path, typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator!=(Path const& lhs, Source const& rhs)
- {
- return lhs.compare(rhs) != 0;
- }
- template< typename Source, typename Path >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator!=(Source const& lhs, Path const& rhs)
- {
- return rhs.compare(lhs) != 0;
- }
- BOOST_FORCEINLINE bool operator<(path const& lhs, path const& rhs)
- {
- return lhs.compare(rhs) < 0;
- }
- template< typename Path, typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator<(Path const& lhs, Source const& rhs)
- {
- return lhs.compare(rhs) < 0;
- }
- template< typename Source, typename Path >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator<(Source const& lhs, Path const& rhs)
- {
- return rhs.compare(lhs) > 0;
- }
- BOOST_FORCEINLINE bool operator<=(path const& lhs, path const& rhs)
- {
- return lhs.compare(rhs) <= 0;
- }
- template< typename Path, typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator<=(Path const& lhs, Source const& rhs)
- {
- return lhs.compare(rhs) <= 0;
- }
- template< typename Source, typename Path >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator<=(Source const& lhs, Path const& rhs)
- {
- return rhs.compare(lhs) >= 0;
- }
- BOOST_FORCEINLINE bool operator>(path const& lhs, path const& rhs)
- {
- return lhs.compare(rhs) > 0;
- }
- template< typename Path, typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator>(Path const& lhs, Source const& rhs)
- {
- return lhs.compare(rhs) > 0;
- }
- template< typename Source, typename Path >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator>(Source const& lhs, Path const& rhs)
- {
- return rhs.compare(lhs) < 0;
- }
- BOOST_FORCEINLINE bool operator>=(path const& lhs, path const& rhs)
- {
- return lhs.compare(rhs) >= 0;
- }
- template< typename Path, typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator>=(Path const& lhs, Source const& rhs)
- {
- return lhs.compare(rhs) >= 0;
- }
- template< typename Source, typename Path >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::conjunction<
- std::is_same< Path, path >,
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >
- >::value,
- bool
- >::type operator>=(Source const& lhs, Path const& rhs)
- {
- return rhs.compare(lhs) <= 0;
- }
- template< typename Path >
- inline typename std::enable_if<
- std::is_same< Path, path >::value,
- std::size_t
- >::type hash_value(Path const& p) noexcept
- {
- #ifdef BOOST_WINDOWS_API
- std::size_t seed = 0u;
- for (typename Path::value_type const* it = p.c_str(); *it; ++it)
- hash_combine(seed, *it == L'/' ? L'\\' : *it);
- return seed;
- #else
- return hash_range(p.native().begin(), p.native().end());
- #endif
- }
- inline void swap(path& lhs, path& rhs) noexcept
- {
- lhs.swap(rhs);
- }
- BOOST_FORCEINLINE path operator/(path lhs, path const& rhs)
- {
- lhs.append(rhs);
- return lhs;
- }
- template< typename Source >
- BOOST_FORCEINLINE typename std::enable_if<
- detail::path_traits::is_convertible_to_path_source< typename std::remove_cv< Source >::type >::value,
- path
- >::type operator/(path lhs, Source const& rhs)
- {
- lhs.append(rhs);
- return lhs;
- }
- template< typename Char, typename Traits >
- inline std::basic_ostream< Char, Traits >&
- operator<<(std::basic_ostream< Char, Traits >& os, path const& p)
- {
- return os << boost::io::quoted(p.template string< std::basic_string< Char > >(), static_cast< Char >('&'));
- }
- template< typename Char, typename Traits >
- inline std::basic_istream< Char, Traits >&
- operator>>(std::basic_istream< Char, Traits >& is, path& p)
- {
- std::basic_string< Char > str;
- is >> boost::io::quoted(str, static_cast< Char >('&'));
- p = str;
- return is;
- }
- BOOST_FILESYSTEM_DECL bool portable_posix_name(std::string const& name);
- BOOST_FILESYSTEM_DECL bool windows_name(std::string const& name);
- BOOST_FILESYSTEM_DECL bool portable_name(std::string const& name);
- BOOST_FILESYSTEM_DECL bool portable_directory_name(std::string const& name);
- BOOST_FILESYSTEM_DECL bool portable_file_name(std::string const& name);
- BOOST_FILESYSTEM_DECL bool native(std::string const& name);
- namespace detail {
- inline bool is_directory_separator(path::value_type c) noexcept
- {
- return c == path::separator
- #ifdef BOOST_WINDOWS_API
- || c == path::preferred_separator
- #endif
- ;
- }
- inline bool is_element_separator(path::value_type c) noexcept
- {
- return c == path::separator
- #ifdef BOOST_WINDOWS_API
- || c == path::preferred_separator || c == L':'
- #endif
- ;
- }
- }
- namespace detail {
- inline bool path_algorithms::has_filename_v3(path const& p)
- {
- return !p.m_pathname.empty();
- }
- inline bool path_algorithms::has_filename_v4(path const& p)
- {
- return path_algorithms::find_filename_v4_size(p) > 0;
- }
- inline path path_algorithms::filename_v4(path const& p)
- {
- string_type::size_type filename_size = path_algorithms::find_filename_v4_size(p);
- string_type::size_type pos = p.m_pathname.size() - filename_size;
- const value_type* ptr = p.m_pathname.c_str() + pos;
- return path(ptr, ptr + filename_size);
- }
- inline path path_algorithms::extension_v4(path const& p)
- {
- string_type::size_type extension_size = path_algorithms::find_extension_v4_size(p);
- string_type::size_type pos = p.m_pathname.size() - extension_size;
- const value_type* ptr = p.m_pathname.c_str() + pos;
- return path(ptr, ptr + extension_size);
- }
- inline void path_algorithms::append_v4(path& left, path const& right)
- {
- path_algorithms::append_v4(left, right.m_pathname.c_str(), right.m_pathname.c_str() + right.m_pathname.size());
- }
- }
- BOOST_FORCEINLINE path::compare_op::result_type path::compare_op::operator() (const value_type* source, const value_type* source_end, const codecvt_type*) const
- {
- path src;
- src.m_pathname.assign(source, source_end);
- return m_self.compare(src);
- }
- template< typename OtherChar >
- BOOST_FORCEINLINE path::compare_op::result_type path::compare_op::operator() (const OtherChar* source, const OtherChar* source_end, const codecvt_type* cvt) const
- {
- path src;
- detail::path_traits::convert(source, source_end, src.m_pathname, cvt);
- return m_self.compare(src);
- }
- inline path& path::operator=(path const& p)
- {
- return assign(p);
- }
- inline path& path::operator+=(path const& p)
- {
- return concat(p);
- }
- BOOST_FORCEINLINE path& path::operator/=(path const& p)
- {
- return append(p);
- }
- inline path path::lexically_proximate(path const& base) const
- {
- path tmp(lexically_relative(base));
- return tmp.empty() ? *this : tmp;
- }
- inline path::reverse_iterator path::rbegin() const
- {
- return reverse_iterator(end());
- }
- inline path::reverse_iterator path::rend() const
- {
- return reverse_iterator(begin());
- }
- inline bool path::filename_is_dot() const
- {
-
-
- path p(filename());
- return p.size() == 1 && *p.c_str() == dot;
- }
- inline bool path::filename_is_dot_dot() const
- {
- return size() >= 2 && m_pathname[size() - 1] == dot && m_pathname[size() - 2] == dot && (m_pathname.size() == 2 || detail::is_element_separator(m_pathname[size() - 3]));
-
-
- }
- #if !defined(BOOST_FILESYSTEM_SOURCE)
- BOOST_FORCEINLINE path& path::append(path const& p)
- {
- BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::append)(*this, p.m_pathname.data(), p.m_pathname.data() + p.m_pathname.size());
- return *this;
- }
- BOOST_FORCEINLINE path& path::append(path const& p, codecvt_type const&)
- {
- BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::append)(*this, p.m_pathname.data(), p.m_pathname.data() + p.m_pathname.size());
- return *this;
- }
- BOOST_FORCEINLINE path& path::append(const value_type* begin, const value_type* end)
- {
- BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::append)(*this, begin, end);
- return *this;
- }
- BOOST_FORCEINLINE path& path::append(const value_type* begin, const value_type* end, codecvt_type const&)
- {
- BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::append)(*this, begin, end);
- return *this;
- }
- BOOST_FORCEINLINE path& path::remove_filename()
- {
- BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::remove_filename)(*this);
- return *this;
- }
- BOOST_FORCEINLINE path& path::replace_extension(path const& new_extension)
- {
- BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::replace_extension)(*this, new_extension);
- return *this;
- }
- BOOST_FORCEINLINE int path::compare(path const& p) const
- {
- return BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::compare)(*this, p);
- }
- BOOST_FORCEINLINE path path::filename() const
- {
- return BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::filename)(*this);
- }
- BOOST_FORCEINLINE path path::stem() const
- {
- return BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::stem)(*this);
- }
- BOOST_FORCEINLINE path path::extension() const
- {
- return BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::extension)(*this);
- }
- BOOST_FORCEINLINE bool path::has_filename() const
- {
- return BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::has_filename)(*this);
- }
- BOOST_FORCEINLINE path path::lexically_normal() const
- {
- return BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::lexically_normal)(*this);
- }
- BOOST_FORCEINLINE path path::generic_path() const
- {
- return BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::generic_path)(*this);
- }
- BOOST_FORCEINLINE path& path::make_preferred()
- {
-
- #if defined(BOOST_WINDOWS_API)
- BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::make_preferred)(*this);
- #endif
- return *this;
- }
- namespace path_detail {
- BOOST_FORCEINLINE void path_iterator::increment()
- {
- BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::increment)(*this);
- }
- BOOST_FORCEINLINE void path_iterator::decrement()
- {
- BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::decrement)(*this);
- }
- BOOST_FORCEINLINE bool lexicographical_compare(path_iterator first1, path_iterator const& last1, path_iterator first2, path_iterator const& last2)
- {
- return BOOST_FILESYSTEM_VERSIONED_SYM(detail::path_algorithms::lex_compare)(first1, last1, first2, last2) < 0;
- }
- }
- #endif
- template< >
- inline std::string path::string< std::string >() const
- {
- return string();
- }
- template< >
- inline std::wstring path::string< std::wstring >() const
- {
- return wstring();
- }
- template< >
- inline std::string path::string< std::string >(codecvt_type const& cvt) const
- {
- return string(cvt);
- }
- template< >
- inline std::wstring path::string< std::wstring >(codecvt_type const& cvt) const
- {
- return wstring(cvt);
- }
- template< >
- inline std::string path::generic_string< std::string >() const
- {
- return generic_string();
- }
- template< >
- inline std::wstring path::generic_string< std::wstring >() const
- {
- return generic_wstring();
- }
- template< >
- inline std::string path::generic_string< std::string >(codecvt_type const& cvt) const
- {
- return generic_string(cvt);
- }
- template< >
- inline std::wstring path::generic_string< std::wstring >(codecvt_type const& cvt) const
- {
- return generic_wstring(cvt);
- }
- }
- }
- #include <boost/filesystem/detail/footer.hpp>
- #endif
|