summaryrefslogtreecommitdiff
path: root/trunk/TAO/tao/AnyTypeCode/TypeCode_Traits.h
blob: 7c1fe02b47e8feefacd468351c4254f7237f3ecc (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
120
121
122
123
124
125
126
// -*- C++ -*-

//=============================================================================
/**
 *  @file    TypeCode_Traits.h
 *
 *  $Id$
 *
 *  @author Ossama Othman <ossama@dre.vanderbilt.edu>
 */
//=============================================================================

#ifndef TAO_TYPECODE_TRAITS_H
#define TAO_TYPECODE_TRAITS_H

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

#include "tao/CORBA_String.h"
#include "tao/AnyTypeCode/TypeCode.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
  class Null_RefCount_Policy;
  class True_RefCount_Policy;

  namespace TypeCode
  {

//     enum Storage { STATIC_TYPECODE, DYNAMIC_TYPECODE };

//     template<Storage S> struct Traits;

    // ----
    // @@ Work around limitations in MSVC++ 6.
    typedef char const * STATIC_TYPECODE;
    typedef CORBA::String_var DYNAMIC_TYPECODE;

    template<typename S> struct Traits;
    // ----

    template<>
    struct Traits<STATIC_TYPECODE>
    {
      typedef char const * string_type;

      /**
       * A pointer to the @c CORBA::TypeCode_ptr rather than the
       * @c CORBA::TypeCode_ptr itself is stored since that address is
       * well-defined.  We may not know the value of the
       * @c CORBA::TypeCode_ptr when creating a static object that
       * refers to it, hence the indirection.
       */
      typedef CORBA::TypeCode_ptr const * typecode_type;

      typedef TAO::Null_RefCount_Policy refcount_policy_type;

      static char const * get_string (string_type const & str)
      {
        return str;
      }

      static CORBA::TypeCode_ptr get_typecode (typecode_type const & tc)
      {
        return (tc == 0 ? CORBA::TypeCode::_nil () : *tc);
      }
    };

    template<>
    struct Traits<DYNAMIC_TYPECODE>
    {
      typedef CORBA::String_var string_type;
      typedef CORBA::TypeCode_var typecode_type;
      typedef TAO::True_RefCount_Policy refcount_policy_type;

      static char const * get_string (string_type const & str)
      {
        return str.in ();
      }

      static CORBA::TypeCode_ptr get_typecode (typecode_type const & tc)
      {
        return tc.in ();
      }
    };

    // ---------------

    // Traits based on TypeCode type template parameters.

    template<>
    struct Traits<Traits<STATIC_TYPECODE>::typecode_type>
    {
      typedef Traits<STATIC_TYPECODE>::typecode_type typecode_type;

      static CORBA::TypeCode_ptr get_typecode (typecode_type const & tc)
      {
        return (tc == 0 ? CORBA::TypeCode::_nil () : *tc);
      }
    };

    template<>
    struct Traits<Traits<DYNAMIC_TYPECODE>::typecode_type>
    {
      typedef Traits<DYNAMIC_TYPECODE>::typecode_type typecode_type;

      static CORBA::TypeCode_ptr get_typecode (typecode_type const & tc)
      {
        return tc.in ();
      }

    };

  }  // End namespace TypeCode
}  // End namespace TAO

TAO_END_VERSIONED_NAMESPACE_DECL

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

#endif /* TAO_TYPECODE_TRAITS_H */