summaryrefslogtreecommitdiff
path: root/ACE/TAO/tao/AnyTypeCode/Any_Impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tao/AnyTypeCode/Any_Impl.h')
-rw-r--r--ACE/TAO/tao/AnyTypeCode/Any_Impl.h117
1 files changed, 117 insertions, 0 deletions
diff --git a/ACE/TAO/tao/AnyTypeCode/Any_Impl.h b/ACE/TAO/tao/AnyTypeCode/Any_Impl.h
new file mode 100644
index 00000000000..8ff7ec17394
--- /dev/null
+++ b/ACE/TAO/tao/AnyTypeCode/Any_Impl.h
@@ -0,0 +1,117 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Any_Impl.h
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan
+ * @author Jeff Parsons
+ */
+//=============================================================================
+
+#ifndef TAO_ANY_IMPL_H
+#define TAO_ANY_IMPL_H
+
+#include /**/ "ace/pre.h"
+
+#include "tao/orbconf.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/AnyTypeCode/TAO_AnyTypeCode_Export.h"
+#include "tao/Basic_Types.h"
+
+#include "ace/Synch_Traits.h"
+#include "ace/Null_Mutex.h"
+#include "ace/Thread_Mutex.h"
+#include "ace/Atomic_Op.h"
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+class ACE_Message_Block;
+ACE_END_VERSIONED_NAMESPACE_DECL
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+class TAO_OutputCDR;
+class TAO_InputCDR;
+
+namespace CORBA
+{
+ class TypeCode;
+ typedef TypeCode *TypeCode_ptr;
+
+ class Object;
+ typedef Object *Object_ptr;
+
+ class ValueBase;
+ class AbstractBase;
+ typedef AbstractBase *AbstractBase_ptr;
+}
+
+namespace TAO
+{
+ /**
+ * @class Any_Impl
+ *
+ * @brief Base class for the Any template subclasses.
+ *
+ * Contains common functionality and some pure virtual methods.
+ */
+ class TAO_AnyTypeCode_Export Any_Impl
+ {
+ public:
+ /// Generated data types define a 'destructor' function that
+ /// correctly destroys an object stored in an Any.
+ typedef void (*_tao_destructor)(void *);
+
+ CORBA::Boolean marshal (TAO_OutputCDR &);
+ virtual CORBA::Boolean marshal_value (TAO_OutputCDR &) = 0;
+
+ virtual void free_value (void);
+
+ CORBA::TypeCode_ptr type (void) const;
+ CORBA::TypeCode_ptr _tao_get_typecode (void) const;
+ void type (CORBA::TypeCode_ptr);
+
+ virtual int _tao_byte_order (void) const;
+
+ virtual void _add_ref (void);
+ virtual void _remove_ref (void);
+
+ /// Used to release these CORBA basic types.
+ static void _tao_any_string_destructor (void *);
+ static void _tao_any_wstring_destructor (void *);
+
+ virtual void _tao_decode (TAO_InputCDR &);
+
+ virtual CORBA::Boolean to_object (CORBA::Object_ptr &) const;
+ virtual CORBA::Boolean to_value (CORBA::ValueBase *&) const;
+ virtual CORBA::Boolean to_abstract_base (CORBA::AbstractBase_ptr &) const;
+
+ bool encoded (void) const;
+
+ protected:
+ Any_Impl (_tao_destructor,
+ CORBA::TypeCode_ptr,
+ bool encoded = false);
+ virtual ~Any_Impl (void);
+
+ TAO::Any_Impl::_tao_destructor value_destructor_;
+ CORBA::TypeCode_ptr type_;
+ bool encoded_;
+
+ private:
+ /// Reference counter.
+ ACE_Atomic_Op<TAO_SYNCH_MUTEX, unsigned long> refcount_;
+ };
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_ANY_IMPL_H */