none of the internal file abstraction should be exported from the library

This commit is contained in:
Arvid Norberg 2013-07-19 23:53:32 +00:00
parent 3c7503beaa
commit b6a917364f
1 changed files with 27 additions and 27 deletions

View File

@ -108,46 +108,46 @@ namespace libtorrent
int mode; int mode;
}; };
// TODO: why are all these functions exported? // flags for stat_file
enum stat_flags_t { dont_follow_links = 1 }; enum { dont_follow_links = 1 };
TORRENT_EXPORT void stat_file(std::string f, file_status* s TORRENT_EXTRA_EXPORT void stat_file(std::string f, file_status* s
, error_code& ec, int flags = 0); , error_code& ec, int flags = 0);
TORRENT_EXPORT void rename(std::string const& f TORRENT_EXTRA_EXPORT void rename(std::string const& f
, std::string const& newf, error_code& ec); , std::string const& newf, error_code& ec);
TORRENT_EXPORT void create_directories(std::string const& f TORRENT_EXTRA_EXPORT void create_directories(std::string const& f
, error_code& ec); , error_code& ec);
TORRENT_EXPORT void create_directory(std::string const& f TORRENT_EXTRA_EXPORT void create_directory(std::string const& f
, error_code& ec); , error_code& ec);
TORRENT_EXPORT void remove_all(std::string const& f TORRENT_EXTRA_EXPORT void remove_all(std::string const& f
, error_code& ec); , error_code& ec);
TORRENT_EXPORT void remove(std::string const& f, error_code& ec); TORRENT_EXTRA_EXPORT void remove(std::string const& f, error_code& ec);
TORRENT_EXPORT bool exists(std::string const& f); TORRENT_EXTRA_EXPORT bool exists(std::string const& f);
TORRENT_EXPORT size_type file_size(std::string const& f); TORRENT_EXTRA_EXPORT size_type file_size(std::string const& f);
TORRENT_EXPORT bool is_directory(std::string const& f TORRENT_EXTRA_EXPORT bool is_directory(std::string const& f
, error_code& ec); , error_code& ec);
TORRENT_EXPORT void recursive_copy(std::string const& old_path TORRENT_EXTRA_EXPORT void recursive_copy(std::string const& old_path
, std::string const& new_path, error_code& ec); , std::string const& new_path, error_code& ec);
TORRENT_EXPORT void copy_file(std::string const& f TORRENT_EXTRA_EXPORT void copy_file(std::string const& f
, std::string const& newf, error_code& ec); , std::string const& newf, error_code& ec);
TORRENT_EXPORT std::string split_path(std::string const& f); TORRENT_EXTRA_EXPORT std::string split_path(std::string const& f);
TORRENT_EXPORT char const* next_path_element(char const* p); TORRENT_EXTRA_EXPORT char const* next_path_element(char const* p);
TORRENT_EXPORT std::string extension(std::string const& f); TORRENT_EXTRA_EXPORT std::string extension(std::string const& f);
TORRENT_EXPORT void replace_extension(std::string& f, std::string const& ext); TORRENT_EXTRA_EXPORT void replace_extension(std::string& f, std::string const& ext);
TORRENT_EXPORT bool is_root_path(std::string const& f); TORRENT_EXTRA_EXPORT bool is_root_path(std::string const& f);
TORRENT_EXPORT std::string parent_path(std::string const& f); TORRENT_EXTRA_EXPORT std::string parent_path(std::string const& f);
TORRENT_EXPORT bool has_parent_path(std::string const& f); TORRENT_EXTRA_EXPORT bool has_parent_path(std::string const& f);
TORRENT_EXPORT std::string filename(std::string const& f); TORRENT_EXTRA_EXPORT std::string filename(std::string const& f);
TORRENT_EXPORT std::string combine_path(std::string const& lhs TORRENT_EXTRA_EXPORT std::string combine_path(std::string const& lhs
, std::string const& rhs); , std::string const& rhs);
TORRENT_EXPORT std::string complete(std::string const& f); TORRENT_EXTRA_EXPORT std::string complete(std::string const& f);
TORRENT_EXPORT bool is_complete(std::string const& f); TORRENT_EXTRA_EXPORT bool is_complete(std::string const& f);
TORRENT_EXPORT std::string current_working_directory(); TORRENT_EXTRA_EXPORT std::string current_working_directory();
#if TORRENT_USE_UNC_PATHS #if TORRENT_USE_UNC_PATHS
TORRENT_EXTRA_EXPORT std::string canonicalize_path(std::string const& f); TORRENT_EXTRA_EXPORT std::string canonicalize_path(std::string const& f);
#endif #endif
class TORRENT_EXPORT directory : public boost::noncopyable class TORRENT_EXTRA_EXPORT directory : public boost::noncopyable
{ {
public: public:
directory(std::string const& path, error_code& ec); directory(std::string const& path, error_code& ec);
@ -174,7 +174,7 @@ namespace libtorrent
bool m_done; bool m_done;
}; };
struct TORRENT_EXPORT file: boost::noncopyable, intrusive_ptr_base<file> struct TORRENT_EXTRA_EXPORT file: boost::noncopyable, intrusive_ptr_base<file>
{ {
enum enum
{ {