aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/serializer/validating/string-common.cxx
blob: 20a1b3450ddc615a622e38bbfbb44cbcedf67011 (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
// file      : xsde/cxx/serializer/validating/string-common.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 <string.h> // strlen, strcmp
#include <xsde/cxx/serializer/validating/string-common.hxx>

namespace xsde
{
  namespace cxx
  {
    namespace serializer
    {
      namespace validating
      {
        void string_common::
        validate_facets (const char* s,
#ifdef XSDE_STL
                         size_t n,
#endif
                         const string_facets::facets& f,
                         context& ctx)
        {
#ifndef XSDE_STL
          size_t n;
          if (f.length_set_ || f.min_length_set_ || f.max_length_set_)
            n = strlen (s);
#endif

          if (f.length_set_ && n != f.length_)
          {
            ctx.schema_error (schema_error::length_not_equal_prescribed);
            return;
          }

          if (f.min_length_set_ && n < f.min_length_)
          {
            ctx.schema_error (schema_error::length_less_than_min);
            return;
          }

          if (f.max_length_set_ && n > f.max_length_)
          {
            ctx.schema_error (schema_error::length_greater_than_max);
            return;
          }

          if (f.enum_count_ != 0)
          {
            size_t i = 0;

            for (; i < f.enum_count_; ++i)
            {
              if (strcmp (s, f.enum_[i]) == 0)
                break;
            }

            if (i == f.enum_count_)
            {
              ctx.schema_error (schema_error::value_not_in_enumeration);
              return;
            }
          }
        }
      }
    }
  }
}