summaryrefslogtreecommitdiff
path: root/TAO/tao/LF_Event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/LF_Event.cpp')
-rw-r--r--TAO/tao/LF_Event.cpp77
1 files changed, 77 insertions, 0 deletions
diff --git a/TAO/tao/LF_Event.cpp b/TAO/tao/LF_Event.cpp
new file mode 100644
index 00000000000..0ac59b95ca9
--- /dev/null
+++ b/TAO/tao/LF_Event.cpp
@@ -0,0 +1,77 @@
+// -*- C++ -*-
+// $Id$
+
+#include "tao/LF_Event.h"
+#include "tao/Follower.h"
+#include "tao/Leader_Follower.h"
+
+#if !defined (__ACE_INLINE__)
+# include "tao/LF_Event.inl"
+#endif /* __ACE_INLINE__ */
+
+ACE_RCSID(tao, LF_Event, "$Id$")
+
+TAO_LF_Event::TAO_LF_Event (void)
+ : state_ (TAO_LF_Event::LFS_IDLE)
+ , follower_ (0)
+{
+}
+
+TAO_LF_Event::~TAO_LF_Event (void)
+{
+}
+
+void
+TAO_LF_Event::state_changed (int new_state)
+{
+ if (this->follower_ == 0)
+ {
+ this->state_changed_i (new_state);
+ }
+ else
+ {
+ TAO_Leader_Follower &leader_follower =
+ this->follower_->leader_follower ();
+
+ ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, leader_follower.lock ());
+
+ this->state_changed_i (new_state);
+
+ this->follower_->signal ();
+ }
+}
+
+void
+TAO_LF_Event::state_changed_i (int new_state)
+{
+ if (this->state_ == new_state)
+ return;
+
+ // Validate the state change
+ if (this->state_ == TAO_LF_Event::LFS_IDLE)
+ {
+ // From the LFS_IDLE state we can only become active.
+ if (new_state == TAO_LF_Event::LFS_ACTIVE)
+ this->state_ = new_state;
+ return;
+ }
+ // States other than LFS_ACTIVE are final
+ if (this->state_ != TAO_LF_Event::LFS_ACTIVE)
+ return;
+
+ this->state_ = new_state;
+}
+
+int
+TAO_LF_Event::successful (void) const
+{
+ return this->state_ == TAO_LF_Event::LFS_SUCCESS;
+}
+
+int
+TAO_LF_Event::error_detected (void) const
+{
+ return (this->state_ == TAO_LF_Event::LFS_FAILURE
+ && this->state_ == TAO_LF_Event::LFS_TIMEOUT
+ && this->state_ == TAO_LF_Event::LFS_CONNECTION_CLOSED);
+}