Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / PortableServer / POA_Current_Impl.inl
blob8be5ab21972a1c38eae41aad910e9dcc0727e4a3
1 // -*- C++ -*-
2 #include "tao/SystemException.h"
4 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
6 namespace TAO
8   namespace Portable_Server
9   {
10     ACE_INLINE void
11     POA_Current_Impl::poa (::TAO_Root_POA *p)
12     {
13       this->poa_ = p;
14     }
16     ACE_INLINE ::TAO_Root_POA *
17     POA_Current_Impl::poa () const
18     {
19       return this->poa_;
20     }
22     ACE_INLINE void
23     POA_Current_Impl::object_id (const PortableServer::ObjectId &id)
24     {
25       if (this->object_id_.release () ||
26           this->object_id_.get_buffer() == this->object_id_buf_)
27         {
28           // Resize the current object_id_.  If it is less than the
29           // length of the current buffer, no allocation will take place.
30           CORBA::ULong id_size = id.length ();
31           this->object_id_.length (id_size);
33           // Get the buffer and copy the new object id in it's place.
34           ACE_OS::memcpy (this->object_id_.get_buffer (),
35                           id.get_buffer (), id_size);
36         }
37       else
38         {
39           this->object_id_ = id;
40         }
41     }
43     ACE_INLINE const PortableServer::ObjectId &
44     POA_Current_Impl::object_id () const
45     {
46       return this->object_id_;
47     }
49     ACE_INLINE void
50     POA_Current_Impl::replace_object_id (
51       const PortableServer::ObjectId &system_id)
52     {
53       // This has the effect of replacing the underlying buffer
54       // with that of another object id without copying.
55       object_id_.replace (system_id.maximum (),
56                           system_id.length (),
57                           const_cast <CORBA::Octet *> (system_id.get_buffer ()),
58                           0);
59     }
61     ACE_INLINE void
62     POA_Current_Impl::object_key (const TAO::ObjectKey &key)
63     {
64       this->object_key_ = &key;
65     }
67     ACE_INLINE const TAO::ObjectKey &
68     POA_Current_Impl::object_key () const
69     {
70       return *this->object_key_;
71     }
73     ACE_INLINE void
74     POA_Current_Impl::servant (PortableServer::Servant servant)
75     {
76       this->servant_ = servant;
77     }
79     ACE_INLINE PortableServer::Servant
80     POA_Current_Impl::servant () const
81     {
82       return this->servant_;
83     }
85     ACE_INLINE void
86     POA_Current_Impl::priority (CORBA::Short priority)
87     {
88       this->priority_ = priority;
89     }
91     ACE_INLINE CORBA::Short
92     POA_Current_Impl::priority () const
93     {
94       return this->priority_;
95     }
97   }
100 TAO_END_VERSIONED_NAMESPACE_DECL