os/ossrv/ossrv_pub/boost_apis/boost/tokenizer.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Boost tokenizer.hpp  -----------------------------------------------------//
sl@0
     2
sl@0
     3
// © Copyright Jeremy Siek and John R. Bandela 2001. 
sl@0
     4
sl@0
     5
// Distributed under the Boost Software License, Version 1.0. (See
sl@0
     6
// accompanying file LICENSE_1_0.txt or copy at
sl@0
     7
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
     8
sl@0
     9
// See http://www.boost.org/libs/tokenizer for documenation
sl@0
    10
sl@0
    11
// Revision History:
sl@0
    12
// 03 Jul 2003   John Bandela
sl@0
    13
//      Converted to new iterator adapter
sl@0
    14
// 02 Feb 2002   Jeremy Siek
sl@0
    15
//      Removed tabs and a little cleanup.
sl@0
    16
sl@0
    17
#ifndef BOOST_TOKENIZER_JRB070303_HPP_
sl@0
    18
#define BOOST_TOKENIZER_JRB070303_HPP_
sl@0
    19
sl@0
    20
#include <boost/token_iterator.hpp>
sl@0
    21
sl@0
    22
namespace boost {
sl@0
    23
sl@0
    24
  
sl@0
    25
  //===========================================================================
sl@0
    26
  // A container-view of a tokenized "sequence"
sl@0
    27
  template <
sl@0
    28
    typename TokenizerFunc = char_delimiters_separator<char>, 
sl@0
    29
    typename Iterator = std::string::const_iterator,
sl@0
    30
    typename Type = std::string
sl@0
    31
  >
sl@0
    32
  class tokenizer {
sl@0
    33
  private:
sl@0
    34
    typedef token_iterator_generator<TokenizerFunc,Iterator,Type> TGen;
sl@0
    35
        
sl@0
    36
    // It seems that MSVC does not like the unqualified use of iterator,
sl@0
    37
    // Thus we use iter internally when it is used unqualified and
sl@0
    38
    // the users of this class will always qualify iterator.     
sl@0
    39
    typedef typename TGen::type iter;
sl@0
    40
    
sl@0
    41
  public:
sl@0
    42
    
sl@0
    43
    typedef iter iterator;
sl@0
    44
    typedef iter const_iterator;
sl@0
    45
    typedef Type value_type;
sl@0
    46
    typedef value_type& reference;
sl@0
    47
    typedef const value_type& const_reference;
sl@0
    48
    typedef value_type* pointer;
sl@0
    49
    typedef const pointer const_pointer;
sl@0
    50
    typedef void size_type;
sl@0
    51
    typedef void difference_type;
sl@0
    52
sl@0
    53
    tokenizer(Iterator first, Iterator last,
sl@0
    54
              const TokenizerFunc& f = TokenizerFunc()) 
sl@0
    55
      : first_(first), last_(last), f_(f) { }
sl@0
    56
        
sl@0
    57
    template <typename Container>
sl@0
    58
    tokenizer(const Container& c)
sl@0
    59
      : first_(c.begin()), last_(c.end()), f_() { }
sl@0
    60
    
sl@0
    61
    template <typename Container>
sl@0
    62
    tokenizer(const Container& c,const TokenizerFunc& f)
sl@0
    63
      : first_(c.begin()), last_(c.end()), f_(f) { }
sl@0
    64
    
sl@0
    65
    void assign(Iterator first, Iterator last){
sl@0
    66
      first_ = first;
sl@0
    67
      last_ = last;
sl@0
    68
    }
sl@0
    69
    
sl@0
    70
    void assign(Iterator first, Iterator last, const TokenizerFunc& f){
sl@0
    71
      assign(first,last);
sl@0
    72
      f_ = f;
sl@0
    73
    }
sl@0
    74
    
sl@0
    75
    template <typename Container>
sl@0
    76
    void assign(const Container& c){
sl@0
    77
      assign(c.begin(),c.end());
sl@0
    78
    }
sl@0
    79
    
sl@0
    80
    
sl@0
    81
    template <typename Container>
sl@0
    82
    void assign(const Container& c, const TokenizerFunc& f){
sl@0
    83
      assign(c.begin(),c.end(),f);
sl@0
    84
    }
sl@0
    85
    
sl@0
    86
    iter begin() const { return iter(f_,first_,last_); }
sl@0
    87
    iter end() const { return iter(f_,last_,last_); }
sl@0
    88
        
sl@0
    89
  private:
sl@0
    90
    Iterator first_;
sl@0
    91
    Iterator last_;
sl@0
    92
    TokenizerFunc f_;
sl@0
    93
  };
sl@0
    94
sl@0
    95
sl@0
    96
} // namespace boost
sl@0
    97
sl@0
    98
#endif