aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/hybrid/xdr/ostream.txx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-03-08 17:23:30 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-03-08 17:23:30 +0200
commit0bce70a0e483294b83b8bf9d5468838a63405612 (patch)
treed11afb4998d6980435c15c4df6e40b1979531672 /libxsde/xsde/cxx/hybrid/xdr/ostream.txx
parent6c63b913179127e09ed7d9da8920493ccceec6ce (diff)
Add support for binary representations
xsde/cxx/hybrid/insertion-*: insertion operators generator xsde/cxx/hybrid/extraction-*: extraction operators generator libxsde/xsde/cxx/hybrid/cdr/: CDR support code libxsde/xsde/cxx/hybrid/xdr/: XDR support code tests/cxx/hybrid/binary/: new tests examples/cxx/hybrid/binary/: new examples documentation/cxx/hybrid/guide/: new chapter
Diffstat (limited to 'libxsde/xsde/cxx/hybrid/xdr/ostream.txx')
-rw-r--r--libxsde/xsde/cxx/hybrid/xdr/ostream.txx110
1 files changed, 110 insertions, 0 deletions
diff --git a/libxsde/xsde/cxx/hybrid/xdr/ostream.txx b/libxsde/xsde/cxx/hybrid/xdr/ostream.txx
new file mode 100644
index 0000000..5211b80
--- /dev/null
+++ b/libxsde/xsde/cxx/hybrid/xdr/ostream.txx
@@ -0,0 +1,110 @@
+// file : xsde/cxx/hybrid/xdr/ostream.txx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+namespace xsde
+{
+ namespace cxx
+ {
+ namespace hybrid
+ {
+
+#ifdef XSDE_EXCEPTIONS
+
+ template <typename T>
+ void
+ operator<< (oxdrstream& s, const pod_seq<T>& x)
+ {
+ s << oxdrstream::as_size (x.size ());
+
+ for (typename pod_seq<T>::const_iterator i = x.begin ();
+ i != x.end (); ++i)
+ {
+ s << *i;
+ }
+ }
+
+ template <typename T>
+ void
+ operator<< (oxdrstream& s, const fix_seq<T>& x)
+ {
+ s << oxdrstream::as_size (x.size ());
+
+ for (typename fix_seq<T>::const_iterator i = x.begin ();
+ i != x.end (); ++i)
+ {
+ s << *i;
+ }
+ }
+
+ template <typename T>
+ void
+ operator<< (oxdrstream& s, const var_seq<T>& x)
+ {
+ s << oxdrstream::as_size (x.size ());
+
+ for (typename var_seq<T>::const_iterator i = x.begin ();
+ i != x.end (); ++i)
+ {
+ s << *i;
+ }
+ }
+
+#else // XSDE_EXCEPTIONS
+
+ template <typename T>
+ bool
+ operator<< (oxdrstream& s, const pod_seq<T>& x)
+ {
+ if (!(s << oxdrstream::as_size (x.size ())))
+ return false;
+
+ for (typename pod_seq<T>::const_iterator i = x.begin ();
+ i != x.end (); ++i)
+ {
+ if (!(s << *i))
+ return false;
+ }
+
+ return true;
+ }
+
+ template <typename T>
+ bool
+ operator<< (oxdrstream& s, const fix_seq<T>& x)
+ {
+ if (!(s << oxdrstream::as_size (x.size ())))
+ return false;
+
+ for (typename fix_seq<T>::const_iterator i = x.begin ();
+ i != x.end (); ++i)
+ {
+ if (!(s << *i))
+ return false;
+ }
+
+ return true;
+ }
+
+ template <typename T>
+ bool
+ operator<< (oxdrstream& s, const var_seq<T>& x)
+ {
+ if (!(s << oxdrstream::as_size (x.size ())))
+ return false;
+
+ for (typename var_seq<T>::const_iterator i = x.begin ();
+ i != x.end (); ++i)
+ {
+ if (!(s << *i))
+ return false;
+ }
+
+ return true;
+ }
+
+#endif // XSDE_EXCEPTIONS
+ }
+ }
+}