aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/xml/ncname.cxx
blob: e7e165cc8f4caa04cee913cdc9a2c0a1f6cc0d5d (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
// file      : xsde/cxx/xml/ncname.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/xml/char-table.hxx>
#include <xsde/cxx/xml/ncname.hxx>

namespace xsde
{
  namespace cxx
  {
    namespace xml
    {
      bool
      valid_ncname (const char* s, size_t size)
      {
        // For now we are only checking the US-ASCII characters.
        //

        bool ok = (size != 0);

        if (ok)
        {
          unsigned char c = static_cast<unsigned char> (s[0]);

          ok = c >= 0x80 ||
            ((char_table[c] & name_first_char_mask) && c != ':');

          for (size_t i = 1; ok && i < size; ++i)
          {
            c = static_cast<unsigned char> (s[i]);

            if (c < 0x80 && !(xml::char_table[c] & xml::ncname_char_mask))
              ok = false;
          }
        }

        return ok;
      }
    }
  }
}