LF_Connect_Strategy.cpp

Go to the documentation of this file.
00001 #include "tao/LF_Connect_Strategy.h"
00002 #include "tao/LF_Multi_Event.h"
00003 #include "tao/Connection_Handler.h"
00004 #include "tao/LF_Follower.h"
00005 #include "tao/Leader_Follower.h"
00006 #include "tao/Transport.h"
00007 #include "tao/ORB_Core.h"
00008 #include "ace/Synch_Options.h"
00009 
00010 ACE_RCSID(tao,
00011           LF_Connect_Strategy,
00012           "LF_Connect_Strategy.cpp,v 1.17 2006/04/26 17:12:47 mesnier_p Exp")
00013 
00014 
00015 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00016 
00017 TAO_LF_Connect_Strategy::TAO_LF_Connect_Strategy (
00018     TAO_ORB_Core *orb_core)
00019   : TAO_Connect_Strategy (orb_core)
00020 {
00021 }
00022 
00023 TAO_LF_Connect_Strategy::~TAO_LF_Connect_Strategy (void)
00024 {
00025 }
00026 
00027 void
00028 TAO_LF_Connect_Strategy::synch_options (ACE_Time_Value *timeout,
00029                                         ACE_Synch_Options &options)
00030 {
00031   if (timeout != 0)
00032     {
00033       options.set (ACE_Synch_Options::USE_REACTOR,
00034                    *timeout);
00035     }
00036   else
00037     {
00038       // Making it sure it is blocking.
00039       options.set (ACE_Synch_Options::USE_REACTOR,
00040                    ACE_Time_Value::zero);
00041     }
00042 }
00043 
00044 int
00045 TAO_LF_Connect_Strategy::wait_i (TAO_LF_Event *ev,
00046                                  TAO_Transport *transport,
00047                                ACE_Time_Value *max_wait_time)
00048 {
00049   if (transport == 0)
00050     return -1;
00051 
00052   TAO_Leader_Follower &leader_follower =
00053     this->orb_core_->leader_follower ();
00054 
00055   int result =
00056     leader_follower.wait_for_event (ev,
00057                                     transport,
00058                                     max_wait_time);
00059 
00060   if (ev->error_detected () && result != -1)
00061     result = -1;
00062 
00063   return result;
00064 }
00065 
00066 
00067 TAO_END_VERSIONED_NAMESPACE_DECL

Generated on Thu Nov 9 11:54:15 2006 for TAO by doxygen 1.3.6