aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/serializer/validating/string-stl.cxx
blob: 1e9a37bd3a115517ca9be6c71f6c6cb8ba4b8f0f (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
// file      : xsde/cxx/serializer/validating/string-stl.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#include <xsde/cxx/serializer/validating/string-stl.hxx>

namespace xsde
{
  namespace cxx
  {
    namespace serializer
    {
      namespace validating
      {
        void string_simpl::
        pre (const std::string& value)
        {
          value_ = value;
        }

        void string_simpl::
        _serialize_content ()
        {
          // Check facets.
          //
          const facets& f = _facets ();

          if (f.length_set_ && value_.size () != f.length_)
          {
            _schema_error (schema_error::length_not_equal_prescribed);
            return;
          }

          if (f.min_length_set_ && value_.size () < f.min_length_)
          {
            _schema_error (schema_error::length_less_than_min);
            return;
          }

          if (f.max_length_set_ && value_.size () > f.max_length_)
          {
            _schema_error (schema_error::length_greater_than_max);
            return;
          }

          // Make sure we don't hold any references to the string.
          //
          std::string tmp;
          tmp.swap (value_);

          _characters (tmp.c_str (), tmp.size ());
        }
      }
    }
  }
}