aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/serializer/validating/token-stl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/cxx/serializer/validating/token-stl.cxx')
-rw-r--r--libxsde/xsde/cxx/serializer/validating/token-stl.cxx58
1 files changed, 58 insertions, 0 deletions
diff --git a/libxsde/xsde/cxx/serializer/validating/token-stl.cxx b/libxsde/xsde/cxx/serializer/validating/token-stl.cxx
new file mode 100644
index 0000000..0de2a54
--- /dev/null
+++ b/libxsde/xsde/cxx/serializer/validating/token-stl.cxx
@@ -0,0 +1,58 @@
+// file : xsde/cxx/serializer/validating/token-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/serializer/validating/token-stl.hxx>
+
+namespace xsde
+{
+ namespace cxx
+ {
+ namespace serializer
+ {
+ namespace validating
+ {
+ void token_simpl::
+ pre (const std::string& value)
+ {
+ value_ = value;
+ }
+
+ void token_simpl::
+ _serialize_content ()
+ {
+ // Make sure we don't hold any references to the string.
+ //
+ std::string tmp;
+ tmp.swap (value_);
+
+ bool ok = true;
+ const char* s = tmp.c_str ();
+
+ // No leading whitespaces.
+ //
+ if (*s == 0x20)
+ ok = false;
+
+ for (; ok && *s != '\0'; ++s)
+ {
+ if (*s == 0x0A || *s == 0x0D || *s == 0x09 ||
+ (*s == 0x20 && *(s + 1) == 0x20))
+ ok = false;
+ }
+
+ // No trailing whitespaces.
+ //
+ if (ok && s != tmp.c_str () && *(s - 1) == 0x20)
+ ok = false;
+
+ if (ok)
+ _characters (tmp.c_str (), tmp.size ());
+ else
+ _schema_error (schema_error::invalid_token_value);
+ }
+ }
+ }
+ }
+}