aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/parser/non-validating/string-common.cxx
blob: 2e1255bec7a813e340c1eb2d70456c7a8d4eae94 (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// file      : xsde/cxx/parser/non-validating/string-common.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#include <xsde/cxx/parser/non-validating/string-common.hxx>

namespace xsde
{
  namespace cxx
  {
    namespace parser
    {
      namespace non_validating
      {
        void string_common::
        process_facets (
#ifdef XSDE_STL
          std::string& str,
#else
          string& str,
#endif
          const string_facets::facets& f)
        {
#ifdef XSDE_STL
          typedef std::string::size_type size_type;
#else
          typedef string::size_type size_type;
#endif

          if (f.whitespace_ == 2)
          {
            // Collapse. The left trimming has already been performed.
            //
            size_type size = str.size ();
            size_type j = 0;

            bool subs = false;

            for (size_type i = 0; i < size; ++i)
            {
              char c = str[i];

              if (c == 0x20 || c == 0x0A || c == 0x0D || c == 0x09)
              {
                subs = true;
              }
              else
              {
                if (subs)
                {
                  subs = false;
                  str[j++] = 0x20;
                }

                str[j++] = c;
              }
            }

#ifdef XSDE_STL
            str.resize (j);
#else
            str.truncate (j);
#endif
          }
          else if (f.whitespace_ == 1)
          {
            // Replace.
            //
            size_type size = str.size ();

            for (size_type i = 0; i < size; ++i)
            {
              char& c = str[i];

              if (c == 0x0A || c == 0x0D || c == 0x09)
                c = 0x20;
            }
          }
        }
      }
    }
  }
}