aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/serializer/validating/name-stl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/cxx/serializer/validating/name-stl.cxx')
-rw-r--r--libxsde/xsde/cxx/serializer/validating/name-stl.cxx62
1 files changed, 62 insertions, 0 deletions
diff --git a/libxsde/xsde/cxx/serializer/validating/name-stl.cxx b/libxsde/xsde/cxx/serializer/validating/name-stl.cxx
new file mode 100644
index 0000000..e80bf9b
--- /dev/null
+++ b/libxsde/xsde/cxx/serializer/validating/name-stl.cxx
@@ -0,0 +1,62 @@
+// file : xsde/cxx/serializer/validating/name-stl.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#include <xsde/cxx/xml/char-table.hxx>
+
+#include <xsde/cxx/serializer/validating/name-stl.hxx>
+
+namespace xsde
+{
+ namespace cxx
+ {
+ namespace serializer
+ {
+ namespace validating
+ {
+ void name_simpl::
+ pre (const std::string& value)
+ {
+ value_ = value;
+ }
+
+ void name_simpl::
+ _serialize_content ()
+ {
+ // Make sure we don't hold any references to the string.
+ //
+ std::string tmp;
+ tmp.swap (value_);
+
+ const char* s = tmp.c_str ();
+ bool ok = (*s != '\0');
+
+ // For now we are only checking the US-ASCII characters.
+ //
+ if (ok)
+ {
+ // First character.
+ //
+ unsigned char c = static_cast<unsigned char> (*s);
+
+ ok = c >= 0x80 || (xml::char_table[c] & xml::name_first_char_mask);
+
+ for (++s; ok && *s != '\0'; ++s)
+ {
+ c = static_cast<unsigned char> (*s);
+
+ if (c < 0x80 && !(xml::char_table[c] & xml::name_char_mask))
+ ok = false;
+ }
+ }
+
+ if (ok)
+ _characters (tmp.c_str (), tmp.size ());
+ else
+ _schema_error (schema_error::invalid_name_value);
+ }
+ }
+ }
+ }
+}