summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/LWFT/HMOptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/LWFT/HMOptions.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/LWFT/HMOptions.h81
1 files changed, 81 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/LWFT/HMOptions.h b/TAO/orbsvcs/orbsvcs/LWFT/HMOptions.h
new file mode 100644
index 00000000000..4cc93ea5c36
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/LWFT/HMOptions.h
@@ -0,0 +1,81 @@
+// -*- C++ -*-
+// $Id$
+
+/**
+ * @file HMOptions.h
+ *
+ * @brief Declared the HMOptions class interface.
+ *
+ */
+
+#ifndef _HMOPTIONS_H
+#define _HMOPTIONS_H
+
+#include <string>
+
+#include "ace/Thread_Mutex.h"
+#include "ace/Auto_Ptr.h"
+
+#include "host_monitor_export.h"
+
+/**
+ * @class HMOptions
+ *
+ * @brief Declares HMOptions singleton to hold the command line options.
+ */
+
+class HostMonitor_Export HMOptions
+/// TITLE
+/// Singleton class for the program options.
+{
+public:
+ /// Singleton access method.
+ static HMOptions *instance (void);
+
+ bool parse_args (int &argc, char **argv);
+
+ /// Member accessors.
+ std::string RM_ior (void) const;
+ std::string HM_ior_file (void) const;
+ std::string host_id (void) const;
+ int port_range_begin (void) const;
+ int RM_update_freq (void) const;
+ int load_monitor_freq (void) const;
+ std::string util_file (void) const;
+ std::pair <char, std::string> ior_access (void) const;
+ bool use_naming_service (void) const;
+
+ /**
+ * @return the debug level of the application:
+ * 0 - all errors and other urgent levels
+ * 1 - warnings are shown as well
+ * 2 - LM_DEBUG messages added
+ * 3 - LM_TRACE messages added
+ * 4 - LM_NOTICE messages added
+ * 5 - LM_INFO messages added
+ */
+ long debug_level (void) const;
+
+protected:
+ /// Constructor is protected to ensure Singleton access.
+ HMOptions (void);
+
+ void set_debug_level (void);
+
+ std::string RM_ior_;
+ std::string host_id_;
+ std::string HM_ior_file_;
+ std::string util_file_;
+ size_t port_range_begin_;
+ size_t RM_update_freq_;
+ size_t load_monitor_freq_;
+ std::pair <char, std::string> ior_access_;
+ long debug_level_;
+
+ /// Singleton-related stuff.
+ static HMOptions * volatile instance_;
+ static ACE_Auto_Ptr<HMOptions> deleter_;
+ static ACE_Thread_Mutex lock_;
+};
+
+#endif /* _HMOPTIONS_H */