// -*- C++ -*- //============================================================================= /** * @file String_Manager_T.h * * $Id: String_Manager_T.h,v 1.1.2.1 2005/11/22 19:42:31 jwillemsen Exp $ * * @author Aniruddha Gokhale * @author Johnny Willemsen */ //============================================================================= #ifndef TAO_STRING_MANAGER_T #define TAO_STRING_MANAGER_T #include /**/ "ace/pre.h" #include "tao/TAO_Export.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "tao/Basic_Types.h" #include "tao/CORBA_String.h" #include "tao/string_traits_base.hpp" /****************************************************************/ TAO_BEGIN_VERSIONED_NAMESPACE_DECL namespace TAO { template class String_Manager { public: typedef charT character_type; typedef TAO::details::string_traits_base string_traits; /// Default CTOR will initialize the underlying ptr_ to empty string. inline String_Manager (void) : ptr_ (string_traits::default_initializer()) { } /// copy constructor inline String_Manager (const String_Manager &rhs) : ptr_ (string_traits::duplicate (rhs.ptr_)) { } /// constructor from const char* makes a copy. inline String_Manager (const character_type *s) : ptr_ (string_traits::duplicate (s)) { } /// destructor inline ~String_Manager (void) { string_traits::release (this->ptr_); } /// Assignment from another managed type inline String_Manager &operator= (const String_Manager &rhs) { // Strongly exception safe by means of copy and non-throwing swap // technique. String_Manager tmp (rhs); character_type * old_ptr = this->ptr_; this->ptr_ = tmp.ptr_; tmp.ptr_ = old_ptr; return *this; } /// Assignment from var type will make a copy inline String_Manager &operator= (const string_traits::string_var& var) { // Strongly exception safe by means of copy and non-throwing swap // technique. String_Manager tmp (var.in ()); character_type * old_ptr = this->ptr_; this->ptr_ = tmp.ptr_; tmp.ptr_ = old_ptr; return *this; } /// Assignment from a constant * will make a copy inline String_Manager &operator= (const character_type *p) { // Strongly exception safe by means of copy and non-throwing swap // technique. String_Manager tmp (p); character_type * old_ptr = this->ptr_; this->ptr_ = tmp.ptr_; tmp.ptr_ = old_ptr; return *this; } /// assignment from char* will not make a copy. The String_Manager will now /// own the string. inline String_Manager &operator= (character_type *p) { string_traits::release (this->ptr_); this->ptr_ = p; return *this; } /// cast (read-only) inline operator const character_type*() const { return this->ptr_; } /// for in parameter. inline const character_type *in (void) const { return this->ptr_; } /// for inout parameter. inline character_type *&inout (void) { return this->ptr_; } /// for out parameter. inline character_type *&out (void) { string_traits::release (this->ptr_); this->ptr_ = 0; return this->ptr_; } /// for string of return type. character_type *_retn (void) { character_type *temp = this->ptr_; this->ptr_ = 0; return temp; } private: /// The underlying string character_type *ptr_; }; } typedef TAO::String_Manager TAO_String_Manager; typedef TAO::String_Manager TAO_WString_Manager; TAO_END_VERSIONED_NAMESPACE_DECL #include /**/ "ace/post.h" #endif /* TAO_STRING_MANAGER_T */