aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/hybrid/cdr/ostream.cxx
blob: 51ca8b3ad3a9bf5af9e5a04f8ab6db1b27c230b4 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// file      : xsde/cxx/hybrid/cdr/ostream.cxx
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#include <xsde/cxx/config.hxx>

#ifndef XSDE_STL
#  include <string.h>
#endif

#include <xsde/cxx/hybrid/cdr/ostream.hxx>

namespace xsde
{
  namespace cxx
  {
    namespace hybrid
    {
#ifdef XSDE_EXCEPTIONS

      // CDR strings always use 32-bit length.
      //
#ifdef XSDE_STL
      void ocdrstream::
      operator<< (const std::string& x)
      {
        if (!cdr_.write_string (
              static_cast<ACE_CDR::ULong> (x.length ()), x.c_str ()))
          throw cdr_exception ();
      }
#else
      void ocdrstream::
      operator<< (const char* x)
      {
        if (!cdr_.write_string (static_cast<ACE_CDR::ULong> (strlen (x)), x))
          throw cdr_exception ();
      }
#endif

      void ocdrstream::
      operator<< (const buffer& x)
      {
        // CDR arrays are limited to 32-bit size.
        //
        size_t n = x.size ();

        if (!cdr_.write_ulong (static_cast<ACE_CDR::ULong> (n)) ||
            !cdr_.write_octet_array (
              reinterpret_cast<const ACE_CDR::Octet*> (x.data ()), n))
          throw cdr_exception ();
      }

#else // XSDE_EXCEPTIONS

#ifdef XSDE_STL
      bool ocdrstream::
      operator<< (const std::string& x)
      {
        return cdr_.write_string (
          static_cast<ACE_CDR::ULong> (x.length ()), x.c_str ());
      }
#else
      bool ocdrstream::
      operator<< (const char* x)
      {
        return cdr_.write_string (
          static_cast<ACE_CDR::ULong> (strlen (x)), x);
      }
#endif

      bool ocdrstream::
      operator<< (const buffer& x)
      {
        // CDR arrays are limited to 32-bit size.
        //
        size_t n = x.size ();

        return cdr_.write_ulong (static_cast<ACE_CDR::ULong> (n)) &&
          cdr_.write_octet_array (
            reinterpret_cast<const ACE_CDR::Octet*> (x.data ()), n);
      }

#endif // XSDE_EXCEPTIONS

    }
  }
}