summaryrefslogtreecommitdiff
path: root/ACE/ace/Monitor_Base.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-04-28 10:33:06 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-04-28 10:33:06 +0000
commita6e4862a47ce814fc57a21dd1c588945d666c2c6 (patch)
tree470b30489e93bf7832f87b0c17e8f5797abd9fdb /ACE/ace/Monitor_Base.cpp
parentec52b1be10867395b69481557e8076a27642b25d (diff)
downloadATCD-a6e4862a47ce814fc57a21dd1c588945d666c2c6.tar.gz
Diffstat (limited to 'ACE/ace/Monitor_Base.cpp')
-rw-r--r--ACE/ace/Monitor_Base.cpp188
1 files changed, 188 insertions, 0 deletions
diff --git a/ACE/ace/Monitor_Base.cpp b/ACE/ace/Monitor_Base.cpp
new file mode 100644
index 00000000000..546dbedef5f
--- /dev/null
+++ b/ACE/ace/Monitor_Base.cpp
@@ -0,0 +1,188 @@
+// $Id$
+
+#include "ace/Monitor_Base.h"
+
+#if defined (ACE_HAS_MONITOR_FRAMEWORK) && (ACE_HAS_MONITOR_FRAMEWORK == 1)
+
+#include "ace/Monitor_Admin_Manager.h"
+#include "ace/Monitor_Control_Action.h"
+#include "ace/Monitor_Point_Registry.h"
+#include "ace/Guard_T.h"
+#include "ace/Dynamic_Service.h"
+#include "ace/OS_NS_sys_time.h"
+
+#if !defined (__ACE_INLINE__)
+#include "ace/Monitor_Base.inl"
+#endif /* __ACE_INLINE__ */
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace ACE
+{
+ namespace MonitorControl
+ {
+ Monitor_Base::Monitor_Base (void)
+ : ACE_Refcountable_T<ACE_SYNCH_MUTEX> (1)
+ {
+ }
+
+ Monitor_Base::Monitor_Base (const char* name)
+ : ACE_Refcountable_T<ACE_SYNCH_MUTEX> (1)
+ , name_ (name)
+ {
+ }
+
+ Monitor_Base::~Monitor_Base (void)
+ {
+ }
+
+ long
+ Monitor_Base::add_constraint (const char* expression,
+ Control_Action* action)
+ {
+ /// Thread-safe and guaranteed to be unique.
+ long id = Monitor_Point_Registry::instance ()->constraint_id ();
+
+ CONSTRAINTS::value_type entry;
+ entry.first = id;
+ entry.second.expr = expression;
+ entry.second.control_action = action;
+
+ /// This is thread-safe on its own so we don't have
+ /// to guard it here.
+ action->add_ref ();
+
+ {
+ ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, guard, this->mutex_, -1);
+
+ /// Since we know external key is unique,
+ /// we don't check for failure.
+ (void) this->constraints_.insert (entry);
+ }
+
+ return id;
+ }
+
+ Control_Action*
+ Monitor_Base::remove_constraint (const long constraint_id)
+ {
+ Control_Action* retval = 0;
+
+ {
+ ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, guard, this->mutex_, 0);
+
+ CONSTRAINT_ITERATOR i = this->constraints_.find (constraint_id);
+
+ if (i != this->constraints_.end ())
+ {
+ retval = i->second.control_action;
+ (void) this->constraints_.erase (constraint_id);
+ }
+ }
+
+ return retval;
+ }
+
+ Monitor_Base::CONSTRAINTS&
+ Monitor_Base::constraints (void)
+ {
+ return this->constraints_;
+ }
+
+ void
+ Monitor_Base::retrieve (Monitor_Control_Types::Data& data) const
+ {
+ ACE_GUARD (ACE_SYNCH_MUTEX, guard, this->mutex_);
+ data = this->data_;
+ }
+
+ void
+ Monitor_Base::receive (size_t value)
+ {
+ ACE_GUARD (ACE_SYNCH_MUTEX, guard, this->mutex_);
+
+ this->data_.timestamp_ = ACE_OS::gettimeofday ();
+ this->data_.value_ = static_cast<double> (value);
+ }
+
+ void
+ Monitor_Base::receive (double data)
+ {
+ ACE_GUARD (ACE_SYNCH_MUTEX, guard, this->mutex_);
+ this->data_.timestamp_ = ACE_OS::gettimeofday ();
+ this->data_.value_ = data;
+ }
+
+ void
+ Monitor_Base::clear (void)
+ {
+ ACE_GUARD (ACE_SYNCH_MUTEX, guard, this->mutex_);
+
+ this->clear_i ();
+ }
+
+ void
+ Monitor_Base::clear_i (void)
+ {
+ this->data_.value_ = 0.0;
+ this->data_.timestamp_ = ACE_Time_Value::zero;
+ }
+
+
+ void
+ Monitor_Base::retrieve_and_clear (Monitor_Control_Types::Data& data)
+ {
+ ACE_GUARD (ACE_SYNCH_MUTEX, guard, this->mutex_);
+
+ data = this->data_;
+ this->clear_i ();
+ }
+
+ void
+ Monitor_Base::add_to_registry (const ACE_Time_Value& time)
+ {
+ MC_ADMINMANAGER *mgr =
+ ACE_Dynamic_Service<MC_ADMINMANAGER>::instance ("MC_ADMINMANAGER");
+
+ if (!mgr->admin ().monitor_point (this, time))
+ {
+ ACE_ERROR ((LM_ERROR,
+ "monitor point %s registration failed\n",
+ this->name ()));
+ }
+ }
+
+ void
+ Monitor_Base::remove_from_registry (void)
+ {
+ if (!Monitor_Point_Registry::instance ()->remove (this->name ()))
+ {
+ ACE_ERROR ((LM_ERROR,
+ "monitor point %s unregistration failed\n",
+ this->name ()));
+ }
+ }
+
+ void
+ Monitor_Base::add_ref (void)
+ {
+ (void) this->increment ();
+ }
+
+ void
+ Monitor_Base::remove_ref (void)
+ {
+ long const new_count = this->decrement ();
+
+ if (new_count == 0)
+ {
+ delete this;
+ }
+ }
+ }
+}
+
+ACE_END_VERSIONED_NAMESPACE_DECL
+
+#endif /* ACE_HAS_MONITOR_FRAMEWORK==1 */
+