File: regression_unicode_char.cpp

package info (click to toggle)
boost1.74 1.74.0-9
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 464,084 kB
  • sloc: cpp: 3,338,324; xml: 131,293; python: 33,088; ansic: 14,336; asm: 4,034; sh: 3,351; makefile: 1,193; perl: 1,036; yacc: 478; php: 212; ruby: 102; lisp: 24; sql: 13; csh: 6
file content (63 lines) | stat: -rw-r--r-- 1,905 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//  Copyright (c) 2012 David Bailey
//  Copyright (c) 2001-2012 Hartmut Kaiser
// 
//  Distributed under the Boost Software License, Version 1.0. (See accompanying 
//  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

#include <boost/config/warning_disable.hpp>
#include <boost/detail/lightweight_test.hpp>

#ifndef BOOST_SPIRIT_UNICODE
#define BOOST_SPIRIT_UNICODE
#endif

#include <boost/spirit/home/karma/nonterminal/grammar.hpp>
#include <boost/spirit/home/karma/nonterminal/rule.hpp>
#include <boost/spirit/home/karma/char.hpp>

#include "test.hpp"

using namespace spirit_test;

///////////////////////////////////////////////////////////////////////////////
template <typename OutputIterator>
struct unicode_char_grammar_
  : public boost::spirit::karma::grammar<
        OutputIterator, boost::spirit::char_encoding::unicode::char_type()>
{
    unicode_char_grammar_() : unicode_char_grammar_::base_type(thechar)
    {
        using boost::spirit::karma::unicode::char_;
        thechar = char_;
    }

    boost::spirit::karma::rule<
        OutputIterator, boost::spirit::char_encoding::unicode::char_type()
    > thechar;
};

int
main()
{
    using namespace boost::spirit;

    {
        typedef std::basic_string<char_encoding::unicode::char_type> unicode_string;
        typedef std::back_insert_iterator<unicode_string> unicode_back_insert_iterator_type;

        using namespace boost::spirit::unicode;

        BOOST_TEST(test("x", char_, 'x'));
        BOOST_TEST(test(L"x", char_, L'x'));

        char_encoding::unicode::char_type unicodeCharacter = 0x00000078u;
        std::basic_string<char_encoding::unicode::char_type> expected;
        expected.push_back(unicodeCharacter);

        unicode_char_grammar_<unicode_back_insert_iterator_type> unichar;

        BOOST_TEST(test(expected, unichar, unicodeCharacter));
    }

    return boost::report_errors();
}