CorbaDataObjectProxy.hpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #ifndef ORO_CORBA_DATAOBJECTPROXY_HPP
00041 #define ORO_CORBA_DATAOBJECTPROXY_HPP
00042
00043 #if 0
00044
00045
00046 #pragma push_macro("_WINSOCKAPI_")
00047 #ifndef _WINSOCKAPI_
00048 #define _WINSOCKAPI_
00049 #endif
00050
00051 #include <windows.h>
00052
00053 #pragma pop_macro("_WINSOCKAPI_")
00054
00055 #endif
00056
00057 #include "corba.h"
00058 #ifdef CORBA_IS_TAO
00059 #include <tao/corba.h>
00060 #include <tao/PortableServer/PortableServer.h>
00061 #else
00062 #include <omniORB4/CORBA.h>
00063 #include <omniORB4/poa.h>
00064 #endif
00065
00066 #include "../DataObjectInterfaces.hpp"
00067 #include "../DataSources.hpp"
00068 #include "OperationsC.h"
00069 #include "CorbaLib.hpp"
00070
00071 namespace RTT
00072 { namespace Corba {
00073
00074
00083 template<class T>
00084 class CorbaDataObjectProxy
00085 : public DataObjectInterface<T>
00086 {
00087 std::string name;
00088 AssignableExpression_var mec;
00089 public:
00097 CorbaDataObjectProxy(const std::string& _name, AssignableExpression_ptr ec )
00098 : name(_name), mec(AssignableExpression::_duplicate(ec) )
00099 {
00100 }
00101
00105 ~CorbaDataObjectProxy() {
00106 }
00107
00113 const std::string& getName() const { return name;}
00114
00115 void setName( const std::string& _name )
00116 {
00117 name = _name;
00118 }
00119
00123 typedef T DataType;
00124
00130 void Get( DataType& pull ) const {
00131 Logger::In in("CorbaDataObjectProxy::Get");
00132 CORBA::Any_var v;
00133 v = mec->get();
00134 ReferenceDataSource<T> rds(pull);
00135 rds.ref();
00136 if ( rds.updateBlob(ORO_CORBA_PROTOCOL_ID, &v.in() ) == false) {
00137 log(Error) << "Could not read remote value: wrong data type."<<endlog();
00138 return;
00139 }
00140 }
00141
00147 DataType Get() const { DataType p; this->Get(p); return p; }
00148
00154 void Set( const DataType& push ) {
00155
00156
00157
00158 ValueDataSource<T> vds(push);
00159 vds.ref();
00160 CORBA::Any_var toset = (CORBA::Any_ptr)vds.createBlob(ORO_CORBA_PROTOCOL_ID);
00161 mec->set( toset.in() );
00162 }
00163
00164 CorbaDataObjectProxy<DataType>* clone() const {
00165 return new CorbaDataObjectProxy<DataType>(name, mec.in());
00166 }
00167
00168 CorbaDataObjectProxy<DataType>* copy( std::map<const DataSourceBase*, DataSourceBase*>& ) const {
00169 return const_cast<CorbaDataObjectProxy<DataType>*>(this);
00170 }
00171
00172 };
00173 }}
00174
00175 #endif
00176