From 21644f82aaa8d0a214ed390768da4b23b95922bd Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Fri, 20 Jan 2023 17:31:29 +0100 Subject: [PATCH] Delete directory.h --- src/zipios++/directory.h | 369 --------------------------------------- 1 file changed, 369 deletions(-) delete mode 100644 src/zipios++/directory.h diff --git a/src/zipios++/directory.h b/src/zipios++/directory.h deleted file mode 100644 index 05ea776cda..0000000000 --- a/src/zipios++/directory.h +++ /dev/null @@ -1,369 +0,0 @@ -/** \file - This file and directory.cpp are borrowed from the dir_it library - available at http://www.boost.org. dir_it is a directory iterator. -*/ - -// -*-C++-*- directory.h -// -// -// -// -// -// -// -// -// -// -// - -// Author: Dietmar Kuehl dietmar.kuehl@claas-solutions.de -// Title: An input iterator used to list the entries in a directory -// Version: $Name: $ $Id: directory.h,v 1.2 2006/01/30 13:23:59 wmayer Exp $ - -// -------------------------------------------------------------------------- - -#if !defined(BOOST_DIRECTORY_H) -#define BOOST_DIRECTORY_H 1 - -// -------------------------------------------------------------------------- - -#include -#include -#include -#include -#include - -// #include Contents of boost.h - -// Allow control over DLL version being built -#if defined(unix) || defined(__unix) || defined(__unix__) || defined(__APPLE__) -# define BOOST_DECL -#elif defined(ZIPIOS_DLL) -# ifdef ZIPIOS_EXPORTS -# define BOOST_DECL __declspec(dllexport) -# else -# define BOOST_DECL __declspec(dllimport) -# endif -#else -# define BOOST_DECL -#endif -// end of contents of boost.h - -#if defined(unix) || defined(__unix) || defined(__unix__) || defined(__APPLE__) -#include -#endif - -// -------------------------------------------------------------------------- - -namespace boost -{ - namespace filesystem - { - class dir_it; - -#if defined(__GNUG__) - template - typename Property::value_type get(dir_it const &); - template - void set(dir_it const &, typename Property::value_type); -#else - template class get; - template class set; -#endif - - class BOOST_DECL dir_it //: public std::iterator - { -#if defined(__GNUG__) - template - friend typename Property::value_type get(dir_it const &); - template - friend void set(dir_it const &, typename Property::value_type); -#endif - - struct representation; - - public: - typedef ptrdiff_t difference_type; - typedef std::string value_type; - typedef std::string *pointer; - typedef std::string &reference; - - class proxy - { - friend class dir_it; - proxy(std::string const &ent): entry(ent) {} - public: - std::string operator*() const { return entry; } - private: - std::string entry; - }; - - dir_it(); - dir_it(std::string const &); - dir_it(dir_it const &); - ~dir_it(); - dir_it &operator= (dir_it const &); - - std::string operator* () const; - dir_it &operator++ (); - proxy operator++ (int); - - bool operator== (dir_it const &) const; - bool operator!= (dir_it const &) const; - -#if defined(__GNUG__) - private: -#endif - representation *rep; - }; - - struct size { typedef size_t value_type; }; - struct mtime { typedef time_t const *value_type; }; - - struct is_directory { typedef bool value_type; }; - struct is_regular { typedef bool value_type; }; - struct is_hidden { typedef bool value_type; }; - - struct user_read { typedef bool value_type; }; - struct user_write { typedef bool value_type; }; - struct user_execute { typedef bool value_type; }; - -#if defined(__GNUG__) - template <> size::value_type get(dir_it const &); - template <> mtime::value_type get(dir_it const &); - template <> bool get(dir_it const &); - template <> bool get(dir_it const &); - template <> bool get(dir_it const &); - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); -#else - template <> class BOOST_DECL get - { - typedef size::value_type value_type; - public: - get(dir_it const &it): m_it(it) {} - operator value_type() const; - private: - dir_it const &m_it; - }; - - template <> class BOOST_DECL get - { - typedef mtime::value_type value_type; - public: - get(dir_it const &it): m_it(it) {} - operator value_type() const; - private: - dir_it const &m_it; - }; - - template <> class BOOST_DECL get - { - typedef is_directory::value_type value_type; - public: - get(dir_it const &it): m_it(it) {} - operator value_type() const; - private: - dir_it const &m_it; - }; - - template <> class BOOST_DECL get - { - typedef is_regular::value_type value_type; - public: - get(dir_it const &it): m_it(it) {} - operator value_type() const; - private: - dir_it const &m_it; - }; - - template <> class BOOST_DECL get - { - typedef is_hidden::value_type value_type; - public: - get(dir_it const &it): m_it(it) {} - operator value_type() const; - private: - dir_it const &m_it; - }; - template <> class BOOST_DECL set - { - public: - set(dir_it const &, is_hidden::value_type); - }; - - template <> class BOOST_DECL get - { - typedef user_read::value_type value_type; - public: - get(dir_it const &it): m_it(it) {} - operator value_type() const; - private: - dir_it const &m_it; - }; - - template <> class BOOST_DECL get - { - typedef user_write::value_type value_type; - public: - get(dir_it const &it): m_it(it) {} - operator value_type() const; - private: - dir_it const &m_it; - }; - template <> class BOOST_DECL set - { - public: - set(dir_it const &, user_write::value_type); - }; - - template <> class BOOST_DECL get - { - typedef user_execute::value_type value_type; - public: - get(dir_it const &it): m_it(it) {} - operator value_type() const; - private: - dir_it const &m_it; - }; - -#endif - -#if defined(unix) || defined(__unix) || defined(__unix__) || defined(__APPLE__) - - struct is_link { typedef bool value_type; }; - template <> bool get(dir_it const &); - - struct is_char_device { typedef bool value_type; }; - template <> bool get(dir_it const &); - - struct is_block_device { typedef bool value_type; }; - template <> bool get(dir_it const &); - - struct is_fifo { typedef bool value_type; }; - template <> bool get(dir_it const &); - - struct is_socket { typedef bool value_type; }; - template <> bool get(dir_it const &); - - struct atime { typedef time_t *value_type; }; - template <> atime::value_type get(dir_it const &); - struct ctime { typedef time_t *value_type; }; - template <> ctime::value_type get(dir_it const &); - - struct group_read { typedef bool value_type; }; - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); - struct group_write { typedef bool value_type; }; - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); - struct group_execute { typedef bool value_type; }; - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); - struct other_read { typedef bool value_type; }; - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); - struct other_write { typedef bool value_type; }; - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); - struct other_execute { typedef bool value_type; }; - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); - - struct set_uid { typedef bool value_type; }; - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); - struct set_gid { typedef bool value_type; }; - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); - struct sticky { typedef bool value_type; }; - template <> bool get(dir_it const &); - template <> void set(dir_it const &, bool); - - struct mode { typedef mode_t value_type; }; - template <> mode_t get(dir_it const &); - template <> void set(dir_it const &, mode_t); - - struct links { typedef nlink_t value_type; }; - template<> nlink_t get(dir_it const &); - struct blocks { typedef unsigned long value_type; }; - template<> unsigned long get(dir_it const &); - struct blksize { typedef unsigned long value_type; }; - template<> unsigned long get(dir_it const &); - - class unknown_uid: public std::invalid_argument - { - public: - unknown_uid(uid_t u): std::invalid_argument("unknown user ID"), m_uid(u) {} - virtual ~unknown_uid() throw() {} - uid_t uid() const { return m_uid; } - private: - uid_t m_uid; - }; - struct uid { typedef uid_t value_type; }; - template<> uid_t get(dir_it const &); - template<> void set(dir_it const &, uid_t); - class unknown_uname: public std::invalid_argument - { - public: - unknown_uname(std::string u): std::invalid_argument("unknown user name"), m_uname(u) {} - virtual ~unknown_uname() throw() {} - std::string uname() const { return m_uname; } - private: - std::string m_uname; - }; - struct uname { typedef std::string value_type; }; - template<> std::string get(dir_it const &); - template<> void set(dir_it const &, std::string ); - - class unknown_gid: public std::invalid_argument - { - public: - unknown_gid(gid_t g): std::invalid_argument("unknown group ID"), m_gid(g) {} - virtual ~unknown_gid() throw() {} - gid_t gid() const { return m_gid; } - private: - gid_t m_gid; - }; - struct gid { typedef gid_t value_type; }; - template<> gid_t get(dir_it const &); - template<> void set(dir_it const &, gid_t); - class unknown_gname: public std::invalid_argument - { - public: - unknown_gname(std::string g): std::invalid_argument("unknown group name"), m_gname(g) {} - virtual ~unknown_gname() throw() {} - std::string gname() const { return m_gname; } - private: - std::string m_gname; - }; - struct gname { typedef std::string value_type; }; - template<> std::string get(dir_it const &); - template<> void set(dir_it const &, std::string ); - -#endif - - } // namespace filesystem -} // namespace boost - -namespace std -{ - template<> - struct iterator_traits - { - public: - typedef ptrdiff_t difference_type; - typedef std::string value_type; - typedef std::string *pointer; - typedef std::string &reference; - typedef input_iterator_tag iterator_category; - }; -} // namespace std - -// -------------------------------------------------------------------------- - -#endif /* BOOST_DIRECTORY_H */