/usr/include/tao/DynamicAny/DynCommon.h is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | // -*- C++ -*-
//=============================================================================
/**
* @file DynCommon.h
*
* $Id: DynCommon.h 77779 2007-03-23 11:48:02Z johnnyw $
*
* @author Jeff Parsons <parsons@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_DYNCOMMON_H
#define TAO_DYNCOMMON_H
#include /**/ "ace/pre.h"
#include "tao/DynamicAny/DynamicAny.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class TAO_DynCommon
*
* Contains most of the functionality common to all the
* Dynamic Any implementation classes.
*/
class TAO_DynamicAny_Export TAO_DynCommon
: public virtual DynamicAny::DynAny
{
public:
/// Constructor.
TAO_DynCommon (void);
/// Destructor.
virtual ~TAO_DynCommon (void);
// = Some functions common to all Dynamic Any types.
virtual CORBA::TypeCode_ptr type (void);
virtual void assign (DynamicAny::DynAny_ptr dyn_any);
virtual void insert_boolean (CORBA::Boolean value);
virtual void insert_octet (CORBA::Octet value);
virtual void insert_char (CORBA::Char value);
virtual void insert_short (CORBA::Short value);
virtual void insert_ushort (CORBA::UShort value);
virtual void insert_long (CORBA::Long value);
virtual void insert_ulong (CORBA::ULong value);
virtual void insert_float (CORBA::Float value);
virtual void insert_double (CORBA::Double value);
virtual void insert_string (const char * value);
virtual void insert_reference (CORBA::Object_ptr value);
virtual void insert_typecode (CORBA::TypeCode_ptr value);
virtual void insert_longlong (CORBA::LongLong value);
virtual void insert_ulonglong (CORBA::ULongLong value);
virtual void insert_longdouble (CORBA::LongDouble value);
virtual void insert_wchar (CORBA::WChar value);
virtual void insert_wstring (const CORBA::WChar * value);
virtual void insert_any (const CORBA::Any & value);
virtual void insert_dyn_any (DynamicAny::DynAny_ptr value);
virtual void insert_val (CORBA::ValueBase * value);
virtual CORBA::Boolean get_boolean (void);
virtual CORBA::Octet get_octet (void);
virtual CORBA::Char get_char (void);
virtual CORBA::Short get_short (void);
virtual CORBA::UShort get_ushort (void);
virtual CORBA::Long get_long (void);
virtual CORBA::ULong get_ulong (void);
virtual CORBA::Float get_float (void);
virtual CORBA::Double get_double (void);
virtual char * get_string (void);
virtual CORBA::Object_ptr get_reference (void);
virtual CORBA::TypeCode_ptr get_typecode (void);
virtual CORBA::LongLong get_longlong (void);
virtual CORBA::ULongLong get_ulonglong (void);
virtual CORBA::LongDouble get_longdouble (void);
virtual CORBA::WChar get_wchar (void);
virtual CORBA::WChar * get_wstring (void);
virtual CORBA::Any * get_any (void);
virtual DynamicAny::DynAny_ptr get_dyn_any (void);
virtual CORBA::ValueBase * get_val (void);
virtual CORBA::Boolean seek (CORBA::Long index);
virtual void rewind (void);
virtual CORBA::Boolean next (void);
virtual DynamicAny::DynAny_ptr copy (void);
virtual CORBA::ULong component_count (void);
virtual void insert_abstract (CORBA::AbstractBase_ptr value);
virtual CORBA::AbstractBase_ptr get_abstract (void);
virtual void insert_boolean_seq (const CORBA::BooleanSeq & value);
virtual void insert_octet_seq (const CORBA::OctetSeq & value);
virtual void insert_char_seq (const CORBA::CharSeq & value);
virtual void insert_short_seq (const CORBA::ShortSeq & value);
virtual void insert_ushort_seq (const CORBA::UShortSeq & value);
virtual void insert_long_seq (const CORBA::LongSeq & value);
virtual void insert_ulong_seq (const CORBA::ULongSeq & value);
virtual void insert_float_seq (const CORBA::FloatSeq & value);
virtual void insert_double_seq (const CORBA::DoubleSeq & value);
virtual void insert_longlong_seq (const CORBA::LongLongSeq & value);
virtual void insert_ulonglong_seq (const CORBA::ULongLongSeq & value);
virtual void insert_longdouble_seq (const CORBA::LongDoubleSeq & value);
virtual void insert_wchar_seq (const CORBA::WCharSeq & value);
virtual CORBA::BooleanSeq * get_boolean_seq (void);
virtual CORBA::OctetSeq * get_octet_seq (void);
virtual CORBA::CharSeq * get_char_seq (void);
virtual CORBA::ShortSeq * get_short_seq (void);
virtual CORBA::UShortSeq * get_ushort_seq (void);
virtual CORBA::LongSeq * get_long_seq (void);
virtual CORBA::ULongSeq * get_ulong_seq (void);
virtual CORBA::FloatSeq * get_float_seq (void);
virtual CORBA::DoubleSeq * get_double_seq (void);
virtual CORBA::LongLongSeq * get_longlong_seq (void);
virtual CORBA::ULongLongSeq * get_ulonglong_seq (void);
virtual CORBA::LongDoubleSeq * get_longdouble_seq (void);
virtual CORBA::WCharSeq * get_wchar_seq (void);
/// This sets one of two flags in this base class. CORBA 2.4.2
/// requires that destroy() do nothing if it is called on
/// the result of current_component(), the only non-deep-copying
/// method in the Dynamic Any API. If the boolean arg below is 0,
/// the call is from inside current_component(), and the flag
/// ref_to_component_ is set. If the boolean arg is 1, the call
/// is from inside destroy(), and the container_is_destroying_
/// flag is set, overriding the first flag in the component's
/// destroy() method.
void set_flag (DynamicAny::DynAny_ptr component, CORBA::Boolean destroying);
// Utility functions.
DynamicAny::DynAny_ptr check_component (void);
void check_type (CORBA::TypeCode_ptr tc);
static bool is_basic_type_seq (CORBA::TypeCode_ptr tc);
// Accessors
CORBA::Boolean has_components (void) const;
CORBA::Boolean destroyed (void) const;
CORBA::Any &the_any (void);
// Mutators
void container_is_destroying (CORBA::Boolean val);
void ref_to_component (CORBA::Boolean val);
protected:
/// Were we created by current_component()?
CORBA::Boolean ref_to_component_;
/// Flag to let destroy() call by container override the flag above.
CORBA::Boolean container_is_destroying_;
/// Do we contain other Dynamic Anys?
CORBA::Boolean has_components_;
/// Has destroy() been called on us yet?
CORBA::Boolean destroyed_;
/// Slot of the current component (if any).
CORBA::Long current_position_;
/// Number of components, as defined by CORBA 2.4.2.
CORBA::ULong component_count_;
/// Holder for our type code.
CORBA::TypeCode_var type_;
/// Gets a value only for basic types, but used in insert_*
/// and get_*, defined in this base class.
CORBA::Any any_;
private:
// Utility functions used by insert_* and get_*.
CORBA::TypeCode_ptr check_type_and_unalias (CORBA::TypeCode_ptr tc);
};
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_DYNCOMMON_H */
|