sl@0
|
1 |
///////////////////////////////////////////////////////////////////////////////
|
sl@0
|
2 |
/// \file regex_traits.hpp
|
sl@0
|
3 |
/// Includes the C regex traits or the CPP regex traits header file depending on the
|
sl@0
|
4 |
/// BOOST_XPRESSIVE_USE_C_TRAITS macro.
|
sl@0
|
5 |
//
|
sl@0
|
6 |
// Copyright 2004 Eric Niebler. Distributed under the Boost
|
sl@0
|
7 |
// Software License, Version 1.0. (See accompanying file
|
sl@0
|
8 |
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
9 |
|
sl@0
|
10 |
#ifndef BOOST_XPRESSIVE_REGEX_TRAITS_HPP_EAN_10_04_2005
|
sl@0
|
11 |
#define BOOST_XPRESSIVE_REGEX_TRAITS_HPP_EAN_10_04_2005
|
sl@0
|
12 |
|
sl@0
|
13 |
// MS compatible compilers support #pragma once
|
sl@0
|
14 |
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
sl@0
|
15 |
# pragma once
|
sl@0
|
16 |
#endif
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <boost/xpressive/detail/detail_fwd.hpp>
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifdef BOOST_XPRESSIVE_USE_C_TRAITS
|
sl@0
|
21 |
# include <boost/xpressive/traits/c_regex_traits.hpp>
|
sl@0
|
22 |
#else
|
sl@0
|
23 |
# include <boost/xpressive/traits/cpp_regex_traits.hpp>
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
|
sl@0
|
26 |
namespace boost { namespace xpressive
|
sl@0
|
27 |
{
|
sl@0
|
28 |
|
sl@0
|
29 |
///////////////////////////////////////////////////////////////////////////////
|
sl@0
|
30 |
// regex_traits_version_1_tag
|
sl@0
|
31 |
/// Tag used to denote that a traits class conforms to the version 1 traits
|
sl@0
|
32 |
/// interface.
|
sl@0
|
33 |
struct regex_traits_version_1_tag
|
sl@0
|
34 |
{
|
sl@0
|
35 |
};
|
sl@0
|
36 |
|
sl@0
|
37 |
///////////////////////////////////////////////////////////////////////////////
|
sl@0
|
38 |
// regex_traits_version_1_case_fold_tag
|
sl@0
|
39 |
/// Tag used to denote that a traits class has the fold_case member function.
|
sl@0
|
40 |
struct regex_traits_version_1_case_fold_tag
|
sl@0
|
41 |
: regex_traits_version_1_tag
|
sl@0
|
42 |
{
|
sl@0
|
43 |
};
|
sl@0
|
44 |
|
sl@0
|
45 |
///////////////////////////////////////////////////////////////////////////////
|
sl@0
|
46 |
// regex_traits
|
sl@0
|
47 |
/// Thin wrapper around the default regex_traits implementation, either
|
sl@0
|
48 |
/// cpp_regex_traits or c_regex_traits
|
sl@0
|
49 |
///
|
sl@0
|
50 |
template<typename Char, typename Impl>
|
sl@0
|
51 |
struct regex_traits
|
sl@0
|
52 |
: Impl
|
sl@0
|
53 |
{
|
sl@0
|
54 |
typedef typename Impl::locale_type locale_type;
|
sl@0
|
55 |
|
sl@0
|
56 |
regex_traits()
|
sl@0
|
57 |
: Impl()
|
sl@0
|
58 |
{
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
explicit regex_traits(locale_type const &loc)
|
sl@0
|
62 |
: Impl(loc)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
}
|
sl@0
|
65 |
};
|
sl@0
|
66 |
|
sl@0
|
67 |
///////////////////////////////////////////////////////////////////////////////
|
sl@0
|
68 |
// lookup_classname
|
sl@0
|
69 |
/// INTERNAL ONLY
|
sl@0
|
70 |
template<typename Traits, std::size_t N>
|
sl@0
|
71 |
inline typename Traits::char_class_type
|
sl@0
|
72 |
lookup_classname(Traits const &traits, char const (&cname)[N], bool icase)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
typename Traits::char_type name[N] = {0};
|
sl@0
|
75 |
for(std::size_t j = 0; j < N-1; ++j)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
name[j] = traits.widen(cname[j]);
|
sl@0
|
78 |
}
|
sl@0
|
79 |
return traits.lookup_classname(name, name + N - 1, icase);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
}}
|
sl@0
|
83 |
|
sl@0
|
84 |
#endif
|