summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/Config_Handlers/Any_Handler.cpp
blob: c9cf18219244d0deb3ad4396402e0afc6274d40c (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// $Id$

#include /**/ "ace/pre.h"

#include "Any_Handler.h"
#include "DataType_Handler.h"
#include "Basic_Deployment_Data.hpp"
#include "tao/Any.h"


namespace CIAO
{
  namespace Config_Handlers
  {

    Any_Handler::Any_Handler (void)
    {
    }

    Any_Handler::~Any_Handler (void)
    {
    }

    void
    Any_Handler::extract_into_any (const Any& desc,
                                   CORBA::Any& toconfig)

    {
      // Get the value that should be assigned to the Any.
      DataValue value =
        desc.value ();

      if (value.short_p ())
        {
          toconfig <<= 
            CORBA::Short (static_cast < ::XMLSchema::short_ const & > (value.short_ ()));
          
          //  static_cast<CORBA::Short> (value.short_ ());
        }
      else if (value.ushort_p ())
        {
          toconfig <<=
            CORBA::UShort (static_cast< ::XMLSchema::unsignedShort const & > (value.ushort ()));

        }
      else if (value.long_p ())
        {
          toconfig <<=
            CORBA::Long (static_cast < ::XMLSchema::int_ const& > (value.long_ ()));

        }
      else if (value.ulong_p ())
        {
          toconfig <<=
            CORBA::ULong (static_cast < ::XMLSchema::unsignedInt const& > (value.ulong ()));
        }
      else if (value.boolean_p ())
        {
          toconfig <<= 
	    CORBA::Any::from_boolean (static_cast < ::XMLSchema::boolean const& > (value.boolean ()));
        }
      else if (value.double_p ())
        {
          toconfig <<= 
#ifdef __BORLANDC__
            CORBA::Double (static_cast < double &> (value.double_ ()));
#else
            CORBA::Double (static_cast < ::XMLSchema::double_ const& > (value.double_ ()));
#endif
        }
      else if (value.float_p ())
        {
          toconfig <<= 
#ifdef __BORLANDC__
            CORBA::Float (static_cast < float & > (value.float_ ()));
#else
            CORBA::Float (static_cast < ::XMLSchema::float_ const& > (value.float_ ()));
#endif
        }
      else if (value.string_p ())
        {
          toconfig <<=
            value.string ().c_str ();

        }
      else if (value.octet_p ())
        {
          CORBA::Octet val (static_cast <unsigned char &> (value.octet ()));

          toconfig <<=
            CORBA::Any::from_octet (val);

        }
      else if (value.longlong_p ())
        {
          toconfig <<=
            CORBA::LongLong (static_cast < ::XMLSchema::long_ const& > (value.longlong ()));
	}
      else if (value.ulonglong_p ())
        {
          toconfig <<=
            CORBA::ULongLong (static_cast < ::XMLSchema::unsignedLong const& > (value.ulonglong ()));
        }
    }

    Any Any_Handler::get_any (const ::CORBA::Any& src)
    {
      //MAJO
      //@Bala ... still haven't figured this one out yet
      //I was saving it for last...going from corba::any
      //to xsc DataValue
      DataType type = DataType_Handler::data_type (src.type ());
      DataValue value;
      Any any (type,value);
      return any;
    }
  }
}
#include /**/ "ace/post.h"