summaryrefslogtreecommitdiff
path: root/TAO/tao/Stub.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Stub.i')
-rw-r--r--TAO/tao/Stub.i292
1 files changed, 0 insertions, 292 deletions
diff --git a/TAO/tao/Stub.i b/TAO/tao/Stub.i
deleted file mode 100644
index cc5f92446d7..00000000000
--- a/TAO/tao/Stub.i
+++ /dev/null
@@ -1,292 +0,0 @@
-// $Id$
-
-// @@ Get rid of profile specific stuff, it is now in it's own class and
-// file. fredk
-#include <tao/debug.h>
-
-ACE_INLINE
-TAO_Profile *
-STUB_Object::set_profile_in_use_i (TAO_Profile *pfile)
-{
- TAO_Profile *old = this->profile_in_use_;
-
- // Since we are actively using this profile we dont want
- // it to disappear, so increase the reference count by one!!
- if (pfile && (pfile->_incr_refcnt () == 0))
- {
- ACE_ERROR_RETURN ((LM_ERROR,
- "(%P|%t) unable to increment profile ref!\n"),
- 0);
- }
-
- this->profile_in_use_ = pfile;
-
- if (old)
- old->_decr_refcnt ();
-
- return this->profile_in_use_;
-}
-
-ACE_INLINE
-void
-STUB_Object::reset_first_locate_request (void)
-{
- first_locate_request_ = 1;
-}
-
-ACE_INLINE
-void
-STUB_Object::reset_base (void)
-{
- this->base_profiles_.rewind ();
- reset_first_locate_request ();
- profile_success_ = 0;
-
- set_profile_in_use_i (base_profiles_.get_next ());
-}
-
-ACE_INLINE
-void
-STUB_Object::forward_back_one (void)
-{
- TAO_MProfile *from = forward_profiles_->forward_from ();
-
- delete forward_profiles_;
-
- // the current profile in this profile list is no
- // longer being forwarded, so set the reference to zero.
- if (from == &base_profiles_)
- {
- base_profiles_.get_current_profile ()->forward_to (0);
- forward_profiles_ = 0;
- }
- else
- {
- from->get_current_profile ()->forward_to (0);
- forward_profiles_ = from;
- }
-
-}
-
-ACE_INLINE
-void
-STUB_Object::reset_forward (void)
-{
- while (forward_profiles_)
- forward_back_one ();
-
- forward_profiles_ = 0;
-}
-
-ACE_INLINE
-void
-STUB_Object::reset_profiles_i (void)
-{
- reset_forward ();
- reset_base ();
-}
-
-ACE_INLINE
-void
-STUB_Object::reset_profiles (void)
-{
- ACE_MT (ACE_GUARD (ACE_Lock,
- guard,
- *this->profile_lock_ptr_));
- reset_profiles_i ();
-}
-
-ACE_INLINE
-STUB_Object::~STUB_Object (void)
-{
- assert (this->refcount_ == 0);
-
- if (forward_profiles_)
- reset_profiles ();
-
- if (this->profile_in_use_ != 0)
- {
- this->profile_in_use_->reset_hint ();
- // decrease reference count on profile
- this->profile_in_use_->_decr_refcnt ();
- this->profile_in_use_ = 0;
- }
-
- if (this->profile_lock_ptr_)
- delete this->profile_lock_ptr_;
-
-}
-
-ACE_INLINE
-TAO_Profile *
-STUB_Object::profile_in_use (void)
-{
- return this->profile_in_use_;
-}
-
-ACE_INLINE
-void
-STUB_Object::use_locate_requests (CORBA::Boolean use_it)
-{
- if (use_it)
- {
- this->first_locate_request_ = 1;
- this->use_locate_request_ = 1;
- }
- else
- {
- // Don't use it.
- this->first_locate_request_ = 0;
- this->use_locate_request_ = 0;
- }
-}
-
-ACE_INLINE
-TAO_MProfile *
-STUB_Object::get_profiles (void)
-{
- return new TAO_MProfile (&base_profiles_);
-}
-
-ACE_INLINE
-TAO_Profile *
-STUB_Object::next_forward_profile (void)
-{
- TAO_Profile *pfile_next = 0;
-
- while (forward_profiles_ && (pfile_next = forward_profiles_->get_next ()) == 0)
- // that was the last profile. Now we clean up our forward profiles.
- // since we own the forward MProfiles, we must delete them when done.
- forward_back_one ();
-
- return pfile_next;
-}
-
-ACE_INLINE
-TAO_Profile *
-STUB_Object::next_profile_i (void)
-{
-
- TAO_Profile *pfile_next = 0;
- if (forward_profiles_)
- {
- pfile_next = next_forward_profile ();
- if (pfile_next == 0)
- pfile_next = base_profiles_.get_next ();
- }
- else
- pfile_next = base_profiles_.get_next ();
-
- if (pfile_next == 0)
- reset_base ();
- else
- set_profile_in_use_i (pfile_next);
-
- return pfile_next;
-}
-
-ACE_INLINE
-TAO_Profile *
-STUB_Object::next_profile (void)
-{
-
- ACE_MT (ACE_GUARD_RETURN (ACE_Lock,
- guard,
- *this->profile_lock_ptr_,
- 0));
- return next_profile_i ();
-}
-
-ACE_INLINE
-CORBA::Boolean
-STUB_Object::valid_forward_profile (void)
-{
- return (profile_success_ && forward_profiles_);
-}
-
-ACE_INLINE
-void
-STUB_Object::set_valid_profile (void)
-{
- profile_success_ = 1;
-}
-
-ACE_INLINE
-CORBA::Boolean
-STUB_Object::valid_profile (void)
-{
- return profile_success_;
-}
-
-ACE_INLINE
-TAO_Profile *
-STUB_Object::set_base_profiles (TAO_MProfile *mprofiles)
-{
- ACE_MT (ACE_GUARD_RETURN (ACE_Lock,
- guard,
- *this->profile_lock_ptr_,
- 0));
-
- // first reset things so we start from scratch!
- reset_forward ();
- base_profiles_.set (mprofiles);
- reset_base ();
- return profile_in_use_;
-
-}
-
-ACE_INLINE
-void
-STUB_Object::add_forward_profiles (TAO_MProfile *mprofiles)
-{
- // we assume that the profile_in_use_ is being
- // forwarded! Grab the lock so things don't change.
- ACE_MT (ACE_GUARD (ACE_Lock,
- guard,
- *this->profile_lock_ptr_));
-
- // forwarded profile points to the new IOR (profiles)
- profile_in_use_->forward_to (mprofiles);
-
- TAO_MProfile *now_pfiles = forward_profiles_ ? forward_profiles_ : &base_profiles_;
-
- // new profile list points back to the list which was forwarded.
- mprofiles->forward_from (now_pfiles);
-
- forward_profiles_ = mprofiles;
-
- // make sure we start at the beginning of mprofiles
- forward_profiles_->rewind ();
-
-}
-
-ACE_INLINE
-CORBA::Boolean
-STUB_Object::next_profile_retry (void)
-{
- ACE_MT (ACE_GUARD_RETURN (ACE_Lock,
- guard,
- *this->profile_lock_ptr_,
- 0));
-
- if (profile_success_ && forward_profiles_)
- {
- reset_profiles_i ();
- return 1;
- }
- else if (next_profile_i ())
- {
- return 1;
- }
- else
- {
- reset_profiles_i ();
- return 0;
- }
-}
-
-ACE_INLINE const TAO_MProfile&
-STUB_Object::get_base_profiles (void) const
-{
- return this->base_profiles_;
-}