fileiter.hpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455
  1. /*
  2. *
  3. * Copyright (c) 1998-2002
  4. * John Maddock
  5. *
  6. * Use, modification and distribution are subject to the
  7. * Boost Software License, Version 1.0. (See accompanying file
  8. * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. *
  10. */
  11. /*
  12. * LOCATION: see http://www.boost.org for most recent version.
  13. * FILE fileiter.hpp
  14. * VERSION see <boost/version.hpp>
  15. * DESCRIPTION: Declares various platform independent file and
  16. * directory iterators, plus binary file input in
  17. * the form of class map_file.
  18. */
  19. #ifndef BOOST_RE_FILEITER_HPP_INCLUDED
  20. #define BOOST_RE_FILEITER_HPP_INCLUDED
  21. #ifndef BOOST_REGEX_CONFIG_HPP
  22. #include <boost/regex/config.hpp>
  23. #endif
  24. #include <boost/assert.hpp>
  25. #ifndef BOOST_REGEX_NO_FILEITER
  26. #if (defined(__CYGWIN__) || defined(__CYGWIN32__)) && !defined(BOOST_REGEX_NO_W32)
  27. #error "Sorry, can't mix <windows.h> with STL code and gcc compiler: if you ran configure, try again with configure --disable-ms-windows"
  28. #define BOOST_REGEX_FI_WIN32_MAP
  29. #define BOOST_REGEX_FI_POSIX_DIR
  30. #elif (defined(__WIN32__) || defined(_WIN32) || defined(WIN32)) && !defined(BOOST_REGEX_NO_W32)
  31. #define BOOST_REGEX_FI_WIN32_MAP
  32. #define BOOST_REGEX_FI_WIN32_DIR
  33. #else
  34. #define BOOST_REGEX_FI_POSIX_MAP
  35. #define BOOST_REGEX_FI_POSIX_DIR
  36. #endif
  37. #if defined(BOOST_REGEX_FI_WIN32_MAP)||defined(BOOST_REGEX_FI_WIN32_DIR)
  38. #include <windows.h>
  39. #endif
  40. #if defined(BOOST_REGEX_FI_WIN32_DIR)
  41. #include <cstddef>
  42. namespace boost{
  43. namespace BOOST_REGEX_DETAIL_NS{
  44. #ifndef BOOST_NO_ANSI_APIS
  45. typedef WIN32_FIND_DATAA _fi_find_data;
  46. #else
  47. typedef WIN32_FIND_DATAW _fi_find_data;
  48. #endif
  49. typedef HANDLE _fi_find_handle;
  50. } // namespace BOOST_REGEX_DETAIL_NS
  51. } // namespace boost
  52. #define _fi_invalid_handle INVALID_HANDLE_VALUE
  53. #define _fi_dir FILE_ATTRIBUTE_DIRECTORY
  54. #elif defined(BOOST_REGEX_FI_POSIX_DIR)
  55. #include <cstddef>
  56. #include <cstdio>
  57. #include <cctype>
  58. #include <iterator>
  59. #include <list>
  60. #include <cassert>
  61. #include <dirent.h>
  62. #if defined(__SUNPRO_CC)
  63. using std::list;
  64. #endif
  65. #ifndef MAX_PATH
  66. #define MAX_PATH 256
  67. #endif
  68. namespace boost{
  69. namespace BOOST_REGEX_DETAIL_NS{
  70. #ifdef BOOST_HAS_ABI_HEADERS
  71. # include BOOST_ABI_PREFIX
  72. #endif
  73. struct _fi_find_data
  74. {
  75. unsigned dwFileAttributes;
  76. char cFileName[MAX_PATH];
  77. };
  78. struct _fi_priv_data;
  79. typedef _fi_priv_data* _fi_find_handle;
  80. #define _fi_invalid_handle 0
  81. #define _fi_dir 1
  82. _fi_find_handle _fi_FindFirstFile(const char* lpFileName, _fi_find_data* lpFindFileData);
  83. bool _fi_FindNextFile(_fi_find_handle hFindFile, _fi_find_data* lpFindFileData);
  84. bool _fi_FindClose(_fi_find_handle hFindFile);
  85. #ifdef BOOST_HAS_ABI_HEADERS
  86. # include BOOST_ABI_SUFFIX
  87. #endif
  88. } // namespace BOOST_REGEX_DETAIL_NS
  89. } // namespace boost
  90. #ifdef FindFirstFile
  91. #undef FindFirstFile
  92. #endif
  93. #ifdef FindNextFile
  94. #undef FindNextFile
  95. #endif
  96. #ifdef FindClose
  97. #undef FindClose
  98. #endif
  99. #define FindFirstFileA _fi_FindFirstFile
  100. #define FindNextFileA _fi_FindNextFile
  101. #define FindClose _fi_FindClose
  102. #endif
  103. namespace boost{
  104. namespace BOOST_REGEX_DETAIL_NS{
  105. #ifdef BOOST_HAS_ABI_HEADERS
  106. # include BOOST_ABI_PREFIX
  107. #endif
  108. #ifdef BOOST_REGEX_FI_WIN32_MAP // win32 mapfile
  109. class BOOST_REGEX_DECL mapfile
  110. {
  111. HANDLE hfile;
  112. HANDLE hmap;
  113. const char* _first;
  114. const char* _last;
  115. public:
  116. typedef const char* iterator;
  117. mapfile(){ hfile = hmap = 0; _first = _last = 0; }
  118. mapfile(const char* file){ hfile = hmap = 0; _first = _last = 0; open(file); }
  119. ~mapfile(){ close(); }
  120. void open(const char* file);
  121. void close();
  122. const char* begin(){ return _first; }
  123. const char* end(){ return _last; }
  124. size_t size(){ return _last - _first; }
  125. bool valid(){ return (hfile != 0) && (hfile != INVALID_HANDLE_VALUE); }
  126. };
  127. #else
  128. class BOOST_REGEX_DECL mapfile_iterator;
  129. class BOOST_REGEX_DECL mapfile
  130. {
  131. typedef char* pointer;
  132. std::FILE* hfile;
  133. long int _size;
  134. pointer* _first;
  135. pointer* _last;
  136. mutable std::list<pointer*> condemed;
  137. enum sizes
  138. {
  139. buf_size = 4096
  140. };
  141. void lock(pointer* node)const;
  142. void unlock(pointer* node)const;
  143. public:
  144. typedef mapfile_iterator iterator;
  145. mapfile(){ hfile = 0; _size = 0; _first = _last = 0; }
  146. mapfile(const char* file){ hfile = 0; _size = 0; _first = _last = 0; open(file); }
  147. ~mapfile(){ close(); }
  148. void open(const char* file);
  149. void close();
  150. iterator begin()const;
  151. iterator end()const;
  152. unsigned long size()const{ return _size; }
  153. bool valid()const{ return hfile != 0; }
  154. friend class mapfile_iterator;
  155. };
  156. class BOOST_REGEX_DECL mapfile_iterator
  157. #if !defined(BOOST_NO_STD_ITERATOR) || defined(BOOST_MSVC_STD_ITERATOR)
  158. : public std::iterator<std::random_access_iterator_tag, char>
  159. #endif
  160. {
  161. typedef mapfile::pointer internal_pointer;
  162. internal_pointer* node;
  163. const mapfile* file;
  164. unsigned long offset;
  165. long position()const
  166. {
  167. return file ? ((node - file->_first) * mapfile::buf_size + offset) : 0;
  168. }
  169. void position(long pos)
  170. {
  171. if(file)
  172. {
  173. node = file->_first + (pos / mapfile::buf_size);
  174. offset = pos % mapfile::buf_size;
  175. }
  176. }
  177. public:
  178. typedef std::ptrdiff_t difference_type;
  179. typedef char value_type;
  180. typedef const char* pointer;
  181. typedef const char& reference;
  182. typedef std::random_access_iterator_tag iterator_category;
  183. mapfile_iterator() { node = 0; file = 0; offset = 0; }
  184. mapfile_iterator(const mapfile* f, long arg_position)
  185. {
  186. BOOST_ASSERT(f);
  187. file = f;
  188. node = f->_first + arg_position / mapfile::buf_size;
  189. offset = arg_position % mapfile::buf_size;
  190. file->lock(node);
  191. }
  192. mapfile_iterator(const mapfile_iterator& i)
  193. {
  194. file = i.file;
  195. node = i.node;
  196. offset = i.offset;
  197. if(file)
  198. file->lock(node);
  199. }
  200. ~mapfile_iterator()
  201. {
  202. if(file && node)
  203. file->unlock(node);
  204. }
  205. mapfile_iterator& operator = (const mapfile_iterator& i);
  206. char operator* ()const
  207. {
  208. BOOST_ASSERT(node >= file->_first);
  209. BOOST_ASSERT(node < file->_last);
  210. return file ? *(*node + sizeof(int) + offset) : char(0);
  211. }
  212. char operator[] (long off)const
  213. {
  214. mapfile_iterator tmp(*this);
  215. tmp += off;
  216. return *tmp;
  217. }
  218. mapfile_iterator& operator++ ();
  219. mapfile_iterator operator++ (int);
  220. mapfile_iterator& operator-- ();
  221. mapfile_iterator operator-- (int);
  222. mapfile_iterator& operator += (long off)
  223. {
  224. position(position() + off);
  225. return *this;
  226. }
  227. mapfile_iterator& operator -= (long off)
  228. {
  229. position(position() - off);
  230. return *this;
  231. }
  232. friend inline bool operator==(const mapfile_iterator& i, const mapfile_iterator& j)
  233. {
  234. return (i.file == j.file) && (i.node == j.node) && (i.offset == j.offset);
  235. }
  236. friend inline bool operator!=(const mapfile_iterator& i, const mapfile_iterator& j)
  237. {
  238. return !(i == j);
  239. }
  240. friend inline bool operator<(const mapfile_iterator& i, const mapfile_iterator& j)
  241. {
  242. return i.position() < j.position();
  243. }
  244. friend inline bool operator>(const mapfile_iterator& i, const mapfile_iterator& j)
  245. {
  246. return i.position() > j.position();
  247. }
  248. friend inline bool operator<=(const mapfile_iterator& i, const mapfile_iterator& j)
  249. {
  250. return i.position() <= j.position();
  251. }
  252. friend inline bool operator>=(const mapfile_iterator& i, const mapfile_iterator& j)
  253. {
  254. return i.position() >= j.position();
  255. }
  256. friend mapfile_iterator operator + (const mapfile_iterator& i, long off);
  257. friend mapfile_iterator operator + (long off, const mapfile_iterator& i)
  258. {
  259. mapfile_iterator tmp(i);
  260. return tmp += off;
  261. }
  262. friend mapfile_iterator operator - (const mapfile_iterator& i, long off);
  263. friend inline long operator - (const mapfile_iterator& i, const mapfile_iterator& j)
  264. {
  265. return i.position() - j.position();
  266. }
  267. };
  268. #endif
  269. // _fi_sep determines the directory separator, either '\\' or '/'
  270. BOOST_REGEX_DECL extern const char* _fi_sep;
  271. struct file_iterator_ref
  272. {
  273. _fi_find_handle hf;
  274. _fi_find_data _data;
  275. long count;
  276. };
  277. class BOOST_REGEX_DECL file_iterator
  278. {
  279. char* _root;
  280. char* _path;
  281. char* ptr;
  282. file_iterator_ref* ref;
  283. public:
  284. typedef std::ptrdiff_t difference_type;
  285. typedef const char* value_type;
  286. typedef const char** pointer;
  287. typedef const char*& reference;
  288. typedef std::input_iterator_tag iterator_category;
  289. file_iterator();
  290. file_iterator(const char* wild);
  291. ~file_iterator();
  292. file_iterator(const file_iterator&);
  293. file_iterator& operator=(const file_iterator&);
  294. const char* root()const { return _root; }
  295. const char* path()const { return _path; }
  296. const char* name()const { return ptr; }
  297. _fi_find_data* data() { return &(ref->_data); }
  298. void next();
  299. file_iterator& operator++() { next(); return *this; }
  300. file_iterator operator++(int);
  301. const char* operator*() { return path(); }
  302. friend inline bool operator == (const file_iterator& f1, const file_iterator& f2)
  303. {
  304. return ((f1.ref->hf == _fi_invalid_handle) && (f2.ref->hf == _fi_invalid_handle));
  305. }
  306. friend inline bool operator != (const file_iterator& f1, const file_iterator& f2)
  307. {
  308. return !(f1 == f2);
  309. }
  310. };
  311. // dwa 9/13/00 - suppress unused parameter warning
  312. inline bool operator < (const file_iterator&, const file_iterator&)
  313. {
  314. return false;
  315. }
  316. class BOOST_REGEX_DECL directory_iterator
  317. {
  318. char* _root;
  319. char* _path;
  320. char* ptr;
  321. file_iterator_ref* ref;
  322. public:
  323. typedef std::ptrdiff_t difference_type;
  324. typedef const char* value_type;
  325. typedef const char** pointer;
  326. typedef const char*& reference;
  327. typedef std::input_iterator_tag iterator_category;
  328. directory_iterator();
  329. directory_iterator(const char* wild);
  330. ~directory_iterator();
  331. directory_iterator(const directory_iterator& other);
  332. directory_iterator& operator=(const directory_iterator& other);
  333. const char* root()const { return _root; }
  334. const char* path()const { return _path; }
  335. const char* name()const { return ptr; }
  336. _fi_find_data* data() { return &(ref->_data); }
  337. void next();
  338. directory_iterator& operator++() { next(); return *this; }
  339. directory_iterator operator++(int);
  340. const char* operator*() { return path(); }
  341. static const char* separator() { return _fi_sep; }
  342. friend inline bool operator == (const directory_iterator& f1, const directory_iterator& f2)
  343. {
  344. return ((f1.ref->hf == _fi_invalid_handle) && (f2.ref->hf == _fi_invalid_handle));
  345. }
  346. friend inline bool operator != (const directory_iterator& f1, const directory_iterator& f2)
  347. {
  348. return !(f1 == f2);
  349. }
  350. };
  351. inline bool operator < (const directory_iterator&, const directory_iterator&)
  352. {
  353. return false;
  354. }
  355. #ifdef BOOST_HAS_ABI_HEADERS
  356. # include BOOST_ABI_SUFFIX
  357. #endif
  358. } // namespace BOOST_REGEX_DETAIL_NS
  359. using boost::BOOST_REGEX_DETAIL_NS::directory_iterator;
  360. using boost::BOOST_REGEX_DETAIL_NS::file_iterator;
  361. using boost::BOOST_REGEX_DETAIL_NS::mapfile;
  362. } // namespace boost
  363. #endif // BOOST_REGEX_NO_FILEITER
  364. #endif // BOOST_RE_FILEITER_HPP