summaryrefslogtreecommitdiff
path: root/TAO/tao/target_identifier.i
blob: 9f79b1bcb219b1d2e60906d2a72857a13f81b900 (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
//$Id$


ACE_INLINE
TAO_Target_Specification::TAO_Target_Specification (void)
  :specifier_ (TAO_Target_Specification::Key_Addr),
   profile_index_ (0)
{
  //no-op
}

ACE_INLINE void 
TAO_Target_Specification::target_specifier (const TAO_ObjectKey &key)
{
  this->specifier_ = TAO_Target_Specification::Key_Addr;
  this->u_.object_key_ = ACE_const_cast (TAO_ObjectKey *,
                                         &key);
}

ACE_INLINE void 
TAO_Target_Specification::target_specifier (IOP::TaggedProfile *profile)

{
  if (profile)
    {
      this->specifier_ = TAO_Target_Specification::Profile_Addr;
      this->u_.profile_ = profile;
    }
}

ACE_INLINE void
TAO_Target_Specification::target_specifier (IOP::IOR *ior, 
                                            CORBA::ULong prof_index)
{ if (ior)
    {
      this->specifier_ = TAO_Target_Specification::Reference_Addr;
      this->u_.ior_ = ior;
      this->profile_index_ = prof_index;
    }
}

ACE_INLINE const TAO_ObjectKey* 
TAO_Target_Specification::object_key (void)
{
  if (this->specifier_ == TAO_Target_Specification::Key_Addr)
    return this->u_.object_key_;
  
  return 0;
}

ACE_INLINE const IOP::TaggedProfile *
TAO_Target_Specification::profile (void)
{
  if (this->specifier_ == TAO_Target_Specification::Profile_Addr)
    return this->u_.profile_;

  return 0;
}

ACE_INLINE CORBA::ULong 
TAO_Target_Specification::iop_ior (IOP::IOR *& ior)
{
  if (this->specifier_ == TAO_Target_Specification::Reference_Addr)
    {
      ior = this->u_.ior_;
      return this->profile_index_;
    }

  ior = 0;
  return 0;
}

ACE_INLINE TAO_Target_Specification::TAO_Target_Address 
TAO_Target_Specification::specifier (void)
{
  return this->specifier_;
}