token_functions.hpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651
  1. // Boost token_functions.hpp ------------------------------------------------//
  2. // Copyright John R. Bandela 2001.
  3. // Distributed under the Boost Software License, Version 1.0. (See
  4. // accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. // See http://www.boost.org/libs/tokenizer/ for documentation.
  7. // Revision History:
  8. // 01 Oct 2004 Joaquin M Lopez Munoz
  9. // Workaround for a problem with string::assign in msvc-stlport
  10. // 06 Apr 2004 John Bandela
  11. // Fixed a bug involving using char_delimiter with a true input iterator
  12. // 28 Nov 2003 Robert Zeh and John Bandela
  13. // Converted into "fast" functions that avoid using += when
  14. // the supplied iterator isn't an input_iterator; based on
  15. // some work done at Archelon and a version that was checked into
  16. // the boost CVS for a short period of time.
  17. // 20 Feb 2002 John Maddock
  18. // Removed using namespace std declarations and added
  19. // workaround for BOOST_NO_STDC_NAMESPACE (the library
  20. // can be safely mixed with regex).
  21. // 06 Feb 2002 Jeremy Siek
  22. // Added char_separator.
  23. // 02 Feb 2002 Jeremy Siek
  24. // Removed tabs and a little cleanup.
  25. #ifndef BOOST_TOKEN_FUNCTIONS_JRB120303_HPP_
  26. #define BOOST_TOKEN_FUNCTIONS_JRB120303_HPP_
  27. #include <vector>
  28. #include <stdexcept>
  29. #include <string>
  30. #include <cctype>
  31. #include <algorithm> // for find_if
  32. #include <boost/config.hpp>
  33. #include <boost/assert.hpp>
  34. #include <boost/detail/workaround.hpp>
  35. #include <boost/mpl/if.hpp>
  36. #include <boost/throw_exception.hpp>
  37. #if !defined(BOOST_NO_CWCTYPE)
  38. #include <cwctype>
  39. #endif
  40. //
  41. // the following must not be macros if we are to prefix them
  42. // with std:: (they shouldn't be macros anyway...)
  43. //
  44. #ifdef ispunct
  45. # undef ispunct
  46. #endif
  47. #ifdef iswpunct
  48. # undef iswpunct
  49. #endif
  50. #ifdef isspace
  51. # undef isspace
  52. #endif
  53. #ifdef iswspace
  54. # undef iswspace
  55. #endif
  56. //
  57. // fix namespace problems:
  58. //
  59. #ifdef BOOST_NO_STDC_NAMESPACE
  60. namespace std{
  61. using ::ispunct;
  62. using ::isspace;
  63. #if !defined(BOOST_NO_CWCTYPE)
  64. using ::iswpunct;
  65. using ::iswspace;
  66. #endif
  67. }
  68. #endif
  69. namespace boost{
  70. //===========================================================================
  71. // The escaped_list_separator class. Which is a model of TokenizerFunction
  72. // An escaped list is a super-set of what is commonly known as a comma
  73. // separated value (csv) list.It is separated into fields by a comma or
  74. // other character. If the delimiting character is inside quotes, then it is
  75. // counted as a regular character.To allow for embedded quotes in a field,
  76. // there can be escape sequences using the \ much like C.
  77. // The role of the comma, the quotation mark, and the escape
  78. // character (backslash \), can be assigned to other characters.
  79. struct escaped_list_error : public std::runtime_error{
  80. escaped_list_error(const std::string& what_arg):std::runtime_error(what_arg) { }
  81. };
  82. // The out of the box GCC 2.95 on cygwin does not have a char_traits class.
  83. // MSVC does not like the following typename
  84. template <class Char,
  85. class Traits = BOOST_DEDUCED_TYPENAME std::basic_string<Char>::traits_type >
  86. class escaped_list_separator {
  87. private:
  88. typedef std::basic_string<Char,Traits> string_type;
  89. struct char_eq {
  90. Char e_;
  91. char_eq(Char e):e_(e) { }
  92. bool operator()(Char c) {
  93. return Traits::eq(e_,c);
  94. }
  95. };
  96. string_type escape_;
  97. string_type c_;
  98. string_type quote_;
  99. bool last_;
  100. bool is_escape(Char e) {
  101. char_eq f(e);
  102. return std::find_if(escape_.begin(),escape_.end(),f)!=escape_.end();
  103. }
  104. bool is_c(Char e) {
  105. char_eq f(e);
  106. return std::find_if(c_.begin(),c_.end(),f)!=c_.end();
  107. }
  108. bool is_quote(Char e) {
  109. char_eq f(e);
  110. return std::find_if(quote_.begin(),quote_.end(),f)!=quote_.end();
  111. }
  112. template <typename iterator, typename Token>
  113. void do_escape(iterator& next,iterator end,Token& tok) {
  114. if (++next == end)
  115. BOOST_THROW_EXCEPTION(escaped_list_error(std::string("cannot end with escape")));
  116. if (Traits::eq(*next,'n')) {
  117. tok+='\n';
  118. return;
  119. }
  120. else if (is_quote(*next)) {
  121. tok+=*next;
  122. return;
  123. }
  124. else if (is_c(*next)) {
  125. tok+=*next;
  126. return;
  127. }
  128. else if (is_escape(*next)) {
  129. tok+=*next;
  130. return;
  131. }
  132. else
  133. BOOST_THROW_EXCEPTION(escaped_list_error(std::string("unknown escape sequence")));
  134. }
  135. public:
  136. explicit escaped_list_separator(Char e = '\\',
  137. Char c = ',',Char q = '\"')
  138. : escape_(1,e), c_(1,c), quote_(1,q), last_(false) { }
  139. escaped_list_separator(string_type e, string_type c, string_type q)
  140. : escape_(e), c_(c), quote_(q), last_(false) { }
  141. void reset() {last_=false;}
  142. template <typename InputIterator, typename Token>
  143. bool operator()(InputIterator& next,InputIterator end,Token& tok) {
  144. bool bInQuote = false;
  145. tok = Token();
  146. if (next == end) {
  147. if (last_) {
  148. last_ = false;
  149. return true;
  150. }
  151. else
  152. return false;
  153. }
  154. last_ = false;
  155. for (;next != end;++next) {
  156. if (is_escape(*next)) {
  157. do_escape(next,end,tok);
  158. }
  159. else if (is_c(*next)) {
  160. if (!bInQuote) {
  161. // If we are not in quote, then we are done
  162. ++next;
  163. // The last character was a c, that means there is
  164. // 1 more blank field
  165. last_ = true;
  166. return true;
  167. }
  168. else tok+=*next;
  169. }
  170. else if (is_quote(*next)) {
  171. bInQuote=!bInQuote;
  172. }
  173. else {
  174. tok += *next;
  175. }
  176. }
  177. return true;
  178. }
  179. };
  180. //===========================================================================
  181. // The classes here are used by offset_separator and char_separator to implement
  182. // faster assigning of tokens using assign instead of +=
  183. namespace tokenizer_detail {
  184. //===========================================================================
  185. // Tokenizer was broken for wide character separators, at least on Windows, since
  186. // CRT functions isspace etc only expect values in [0, 0xFF]. Debug build asserts
  187. // if higher values are passed in. The traits extension class should take care of this.
  188. // Assuming that the conditional will always get optimized out in the function
  189. // implementations, argument types are not a problem since both forms of character classifiers
  190. // expect an int.
  191. #if !defined(BOOST_NO_CWCTYPE)
  192. template<typename traits, int N>
  193. struct traits_extension_details : public traits {
  194. typedef typename traits::char_type char_type;
  195. static bool isspace(char_type c)
  196. {
  197. return std::iswspace(c) != 0;
  198. }
  199. static bool ispunct(char_type c)
  200. {
  201. return std::iswpunct(c) != 0;
  202. }
  203. };
  204. template<typename traits>
  205. struct traits_extension_details<traits, 1> : public traits {
  206. typedef typename traits::char_type char_type;
  207. static bool isspace(char_type c)
  208. {
  209. return std::isspace(c) != 0;
  210. }
  211. static bool ispunct(char_type c)
  212. {
  213. return std::ispunct(c) != 0;
  214. }
  215. };
  216. #endif
  217. // In case there is no cwctype header, we implement the checks manually.
  218. // We make use of the fact that the tested categories should fit in ASCII.
  219. template<typename traits>
  220. struct traits_extension : public traits {
  221. typedef typename traits::char_type char_type;
  222. static bool isspace(char_type c)
  223. {
  224. #if !defined(BOOST_NO_CWCTYPE)
  225. return traits_extension_details<traits, sizeof(char_type)>::isspace(c);
  226. #else
  227. return static_cast< unsigned >(c) <= 255 && std::isspace(c) != 0;
  228. #endif
  229. }
  230. static bool ispunct(char_type c)
  231. {
  232. #if !defined(BOOST_NO_CWCTYPE)
  233. return traits_extension_details<traits, sizeof(char_type)>::ispunct(c);
  234. #else
  235. return static_cast< unsigned >(c) <= 255 && std::ispunct(c) != 0;
  236. #endif
  237. }
  238. };
  239. // The assign_or_plus_equal struct contains functions that implement
  240. // assign, +=, and clearing based on the iterator type. The
  241. // generic case does nothing for plus_equal and clearing, while
  242. // passing through the call for assign.
  243. //
  244. // When an input iterator is being used, the situation is reversed.
  245. // The assign method does nothing, plus_equal invokes operator +=,
  246. // and the clearing method sets the supplied token to the default
  247. // token constructor's result.
  248. //
  249. template<class IteratorTag>
  250. struct assign_or_plus_equal {
  251. template<class Iterator, class Token>
  252. static void assign(Iterator b, Iterator e, Token &t) {
  253. t.assign(b, e);
  254. }
  255. template<class Token, class Value>
  256. static void plus_equal(Token &, const Value &) { }
  257. // If we are doing an assign, there is no need for the
  258. // the clear.
  259. //
  260. template<class Token>
  261. static void clear(Token &) { }
  262. };
  263. template <>
  264. struct assign_or_plus_equal<std::input_iterator_tag> {
  265. template<class Iterator, class Token>
  266. static void assign(Iterator , Iterator , Token &) { }
  267. template<class Token, class Value>
  268. static void plus_equal(Token &t, const Value &v) {
  269. t += v;
  270. }
  271. template<class Token>
  272. static void clear(Token &t) {
  273. t = Token();
  274. }
  275. };
  276. template<class Iterator>
  277. struct pointer_iterator_category{
  278. typedef std::random_access_iterator_tag type;
  279. };
  280. template<class Iterator>
  281. struct class_iterator_category{
  282. typedef typename Iterator::iterator_category type;
  283. };
  284. // This portably gets the iterator_tag without partial template specialization
  285. template<class Iterator>
  286. struct get_iterator_category{
  287. typedef typename mpl::if_<is_pointer<Iterator>,
  288. pointer_iterator_category<Iterator>,
  289. class_iterator_category<Iterator>
  290. >::type cat;
  291. typedef typename cat::type iterator_category;
  292. };
  293. } // namespace tokenizer_detail
  294. //===========================================================================
  295. // The offset_separator class, which is a model of TokenizerFunction.
  296. // Offset breaks a string into tokens based on a range of offsets
  297. class offset_separator {
  298. private:
  299. std::vector<int> offsets_;
  300. unsigned int current_offset_;
  301. bool wrap_offsets_;
  302. bool return_partial_last_;
  303. public:
  304. template <typename Iter>
  305. offset_separator(Iter begin, Iter end, bool wrap_offsets = true,
  306. bool return_partial_last = true)
  307. : offsets_(begin,end), current_offset_(0),
  308. wrap_offsets_(wrap_offsets),
  309. return_partial_last_(return_partial_last) { }
  310. offset_separator()
  311. : offsets_(1,1), current_offset_(),
  312. wrap_offsets_(true), return_partial_last_(true) { }
  313. void reset() {
  314. current_offset_ = 0;
  315. }
  316. template <typename InputIterator, typename Token>
  317. bool operator()(InputIterator& next, InputIterator end, Token& tok)
  318. {
  319. typedef tokenizer_detail::assign_or_plus_equal<
  320. BOOST_DEDUCED_TYPENAME tokenizer_detail::get_iterator_category<
  321. InputIterator
  322. >::iterator_category
  323. > assigner;
  324. BOOST_ASSERT(!offsets_.empty());
  325. assigner::clear(tok);
  326. InputIterator start(next);
  327. if (next == end)
  328. return false;
  329. if (current_offset_ == offsets_.size())
  330. {
  331. if (wrap_offsets_)
  332. current_offset_=0;
  333. else
  334. return false;
  335. }
  336. int c = offsets_[current_offset_];
  337. int i = 0;
  338. for (; i < c; ++i) {
  339. if (next == end)break;
  340. assigner::plus_equal(tok,*next++);
  341. }
  342. assigner::assign(start,next,tok);
  343. if (!return_partial_last_)
  344. if (i < (c-1) )
  345. return false;
  346. ++current_offset_;
  347. return true;
  348. }
  349. };
  350. //===========================================================================
  351. // The char_separator class breaks a sequence of characters into
  352. // tokens based on the character delimiters (very much like bad old
  353. // strtok). A delimiter character can either be kept or dropped. A
  354. // kept delimiter shows up as an output token, whereas a dropped
  355. // delimiter does not.
  356. // This class replaces the char_delimiters_separator class. The
  357. // constructor for the char_delimiters_separator class was too
  358. // confusing and needed to be deprecated. However, because of the
  359. // default arguments to the constructor, adding the new constructor
  360. // would cause ambiguity, so instead I deprecated the whole class.
  361. // The implementation of the class was also simplified considerably.
  362. enum empty_token_policy { drop_empty_tokens, keep_empty_tokens };
  363. // The out of the box GCC 2.95 on cygwin does not have a char_traits class.
  364. template <typename Char,
  365. typename Tr = BOOST_DEDUCED_TYPENAME std::basic_string<Char>::traits_type >
  366. class char_separator
  367. {
  368. typedef tokenizer_detail::traits_extension<Tr> Traits;
  369. typedef std::basic_string<Char,Tr> string_type;
  370. public:
  371. explicit
  372. char_separator(const Char* dropped_delims,
  373. const Char* kept_delims = 0,
  374. empty_token_policy empty_tokens = drop_empty_tokens)
  375. : m_dropped_delims(dropped_delims),
  376. m_use_ispunct(false),
  377. m_use_isspace(false),
  378. m_empty_tokens(empty_tokens),
  379. m_output_done(false)
  380. {
  381. // Borland workaround
  382. if (kept_delims)
  383. m_kept_delims = kept_delims;
  384. }
  385. // use ispunct() for kept delimiters and isspace for dropped.
  386. explicit
  387. char_separator()
  388. : m_use_ispunct(true),
  389. m_use_isspace(true),
  390. m_empty_tokens(drop_empty_tokens) { }
  391. void reset() { }
  392. template <typename InputIterator, typename Token>
  393. bool operator()(InputIterator& next, InputIterator end, Token& tok)
  394. {
  395. typedef tokenizer_detail::assign_or_plus_equal<
  396. BOOST_DEDUCED_TYPENAME tokenizer_detail::get_iterator_category<
  397. InputIterator
  398. >::iterator_category
  399. > assigner;
  400. assigner::clear(tok);
  401. // skip past all dropped_delims
  402. if (m_empty_tokens == drop_empty_tokens)
  403. for (; next != end && is_dropped(*next); ++next)
  404. { }
  405. InputIterator start(next);
  406. if (m_empty_tokens == drop_empty_tokens) {
  407. if (next == end)
  408. return false;
  409. // if we are on a kept_delims move past it and stop
  410. if (is_kept(*next)) {
  411. assigner::plus_equal(tok,*next);
  412. ++next;
  413. } else
  414. // append all the non delim characters
  415. for (; next != end && !is_dropped(*next) && !is_kept(*next); ++next)
  416. assigner::plus_equal(tok,*next);
  417. }
  418. else { // m_empty_tokens == keep_empty_tokens
  419. // Handle empty token at the end
  420. if (next == end)
  421. {
  422. if (m_output_done == false)
  423. {
  424. m_output_done = true;
  425. assigner::assign(start,next,tok);
  426. return true;
  427. }
  428. else
  429. return false;
  430. }
  431. if (is_kept(*next)) {
  432. if (m_output_done == false)
  433. m_output_done = true;
  434. else {
  435. assigner::plus_equal(tok,*next);
  436. ++next;
  437. m_output_done = false;
  438. }
  439. }
  440. else if (m_output_done == false && is_dropped(*next)) {
  441. m_output_done = true;
  442. }
  443. else {
  444. if (is_dropped(*next))
  445. start=++next;
  446. for (; next != end && !is_dropped(*next) && !is_kept(*next); ++next)
  447. assigner::plus_equal(tok,*next);
  448. m_output_done = true;
  449. }
  450. }
  451. assigner::assign(start,next,tok);
  452. return true;
  453. }
  454. private:
  455. string_type m_kept_delims;
  456. string_type m_dropped_delims;
  457. bool m_use_ispunct;
  458. bool m_use_isspace;
  459. empty_token_policy m_empty_tokens;
  460. bool m_output_done;
  461. bool is_kept(Char E) const
  462. {
  463. if (m_kept_delims.length())
  464. return m_kept_delims.find(E) != string_type::npos;
  465. else if (m_use_ispunct) {
  466. return Traits::ispunct(E) != 0;
  467. } else
  468. return false;
  469. }
  470. bool is_dropped(Char E) const
  471. {
  472. if (m_dropped_delims.length())
  473. return m_dropped_delims.find(E) != string_type::npos;
  474. else if (m_use_isspace) {
  475. return Traits::isspace(E) != 0;
  476. } else
  477. return false;
  478. }
  479. };
  480. //===========================================================================
  481. // The following class is DEPRECATED, use class char_separators instead.
  482. //
  483. // The char_delimiters_separator class, which is a model of
  484. // TokenizerFunction. char_delimiters_separator breaks a string
  485. // into tokens based on character delimiters. There are 2 types of
  486. // delimiters. returnable delimiters can be returned as
  487. // tokens. These are often punctuation. nonreturnable delimiters
  488. // cannot be returned as tokens. These are often whitespace
  489. // The out of the box GCC 2.95 on cygwin does not have a char_traits class.
  490. template <class Char,
  491. class Tr = BOOST_DEDUCED_TYPENAME std::basic_string<Char>::traits_type >
  492. class char_delimiters_separator {
  493. private:
  494. typedef tokenizer_detail::traits_extension<Tr> Traits;
  495. typedef std::basic_string<Char,Tr> string_type;
  496. string_type returnable_;
  497. string_type nonreturnable_;
  498. bool return_delims_;
  499. bool no_ispunct_;
  500. bool no_isspace_;
  501. bool is_ret(Char E)const
  502. {
  503. if (returnable_.length())
  504. return returnable_.find(E) != string_type::npos;
  505. else{
  506. if (no_ispunct_) {return false;}
  507. else{
  508. int r = Traits::ispunct(E);
  509. return r != 0;
  510. }
  511. }
  512. }
  513. bool is_nonret(Char E)const
  514. {
  515. if (nonreturnable_.length())
  516. return nonreturnable_.find(E) != string_type::npos;
  517. else{
  518. if (no_isspace_) {return false;}
  519. else{
  520. int r = Traits::isspace(E);
  521. return r != 0;
  522. }
  523. }
  524. }
  525. public:
  526. explicit char_delimiters_separator(bool return_delims = false,
  527. const Char* returnable = 0,
  528. const Char* nonreturnable = 0)
  529. : returnable_(returnable ? returnable : string_type().c_str()),
  530. nonreturnable_(nonreturnable ? nonreturnable:string_type().c_str()),
  531. return_delims_(return_delims), no_ispunct_(returnable!=0),
  532. no_isspace_(nonreturnable!=0) { }
  533. void reset() { }
  534. public:
  535. template <typename InputIterator, typename Token>
  536. bool operator()(InputIterator& next, InputIterator end,Token& tok) {
  537. tok = Token();
  538. // skip past all nonreturnable delims
  539. // skip past the returnable only if we are not returning delims
  540. for (;next!=end && ( is_nonret(*next) || (is_ret(*next)
  541. && !return_delims_ ) );++next) { }
  542. if (next == end) {
  543. return false;
  544. }
  545. // if we are to return delims and we are one a returnable one
  546. // move past it and stop
  547. if (is_ret(*next) && return_delims_) {
  548. tok+=*next;
  549. ++next;
  550. }
  551. else
  552. // append all the non delim characters
  553. for (;next!=end && !is_nonret(*next) && !is_ret(*next);++next)
  554. tok+=*next;
  555. return true;
  556. }
  557. };
  558. } //namespace boost
  559. #endif