summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/Notify_Service/Notify_Service.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/orbsvcs/Notify_Service/Notify_Service.h')
-rw-r--r--trunk/TAO/orbsvcs/Notify_Service/Notify_Service.h155
1 files changed, 155 insertions, 0 deletions
diff --git a/trunk/TAO/orbsvcs/Notify_Service/Notify_Service.h b/trunk/TAO/orbsvcs/Notify_Service/Notify_Service.h
new file mode 100644
index 00000000000..ddf7203b146
--- /dev/null
+++ b/trunk/TAO/orbsvcs/Notify_Service/Notify_Service.h
@@ -0,0 +1,155 @@
+/* -*- C++ -*- */
+// $Id$
+// ============================================================================
+//
+// = FILENAME
+// Notify_Service.h
+//
+// = AUTHORS
+// Pradeep Gore <pradeep@cs.wustl.edu>
+// Service options code by Wei Chiang <Wei.Chiang@nokia.com>.
+//
+// = DESCRIPTION
+// Notification Service front end.
+//
+// ============================================================================
+
+#ifndef NOTIFY_SERVICE_H
+#define NOTIFY_SERVICE_H
+#include /**/ "ace/pre.h"
+
+#include "ace/Task.h"
+#include "tao/PortableServer/PortableServer.h"
+#include "orbsvcs/CosNotifyChannelAdminC.h"
+#include "orbsvcs/CosNamingC.h"
+#include "../orbsvcs/Notify/CosNotify_Initializer.h"
+#include "ace/SString.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+class TAO_Notify_Service;
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#define NOTIFY_KEY "NotifyEventChannelFactory"
+#define NOTIFY_CHANNEL_NAME "NotifyEventChannel"
+
+class Worker : public ACE_Task_Base
+{
+ // = TITLE
+ // Run a server thread
+ //
+ // = DESCRIPTION
+ // Use the ACE_Task_Base class to run server threads
+ //
+public:
+ Worker (void);
+ // ctor
+
+ void orb (CORBA::ORB_ptr orb);
+
+ virtual int svc (void);
+ // The thread entry point.
+
+private:
+ CORBA::ORB_var orb_;
+ // The orb
+};
+
+class TAO_Notify_Service_Driver
+{
+ // = TITLE
+ // Notify_Service
+ //
+ // = DESCRIPTION
+ // Implementation of the Notification Service front end.
+
+ public:
+ // = Initialization and termination methods.
+ TAO_Notify_Service_Driver (void);
+ // Constructor.
+
+ virtual ~TAO_Notify_Service_Driver (void);
+ // Destructor.
+
+ int init (int argc, ACE_TCHAR *argv[]
+ ACE_ENV_ARG_DECL);
+ // Initializes the Service.
+ // Returns 0 on success, -1 on error.
+
+ int run (ACE_ENV_SINGLE_ARG_DECL);
+ // run the Service.
+ // Returns 0 on success, -1 on error.
+
+ void shutdown (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
+ // Shutdown the Service.
+ // Returns 0 on success, -1 on error.
+
+
+ // CosNotifyChannelAdmin::EventChannelFactory_var obj;
+ //
+protected:
+ int init_ORB (int& argc, ACE_TCHAR *argv []
+ ACE_ENV_ARG_DECL);
+ // initialize the ORB.
+ int init_dispatching_ORB (int& argc, ACE_TCHAR *argv []
+ ACE_ENV_ARG_DECL);
+ // initialize the dispatching ORB.
+
+ TAO_Notify_Service* notify_service_;
+
+ int resolve_naming_service (ACE_ENV_SINGLE_ARG_DECL);
+ // Resolve the naming service.
+
+ int parse_args (int& argc, ACE_TCHAR *argv []);
+ // Parses the command line arguments.
+
+ // = Data members
+
+ int bootstrap_;
+ // 1: this service is bootstrappable
+
+ int use_name_svc_;
+ // 1: register itself with the name service
+
+ int register_ec_;
+ // 1:
+
+ FILE *ior_output_file_;
+ // File where the IOR of the server object is stored.
+
+ ACE_CString notify_factory_name_;
+ // The Factory name.
+
+ ACE_CString notify_channel_name_;
+ // The Factory name.
+
+ int register_event_channel_;
+ // 1: create an event channel and registers it with the Naming Service with
+ // the name <notify_channel_name_>
+
+ CosNotifyChannelAdmin::EventChannelFactory_var notify_factory_;
+ // The Factory.
+
+ CORBA::ORB_var orb_;
+ // The ORB that we use.
+
+ CORBA::ORB_var dispatching_orb_;
+ // separate dispatching orb if needed.
+
+ PortableServer::POA_var poa_;
+ // Reference to the root poa.
+
+ CosNaming::NamingContextExt_var naming_;
+ // A naming context.
+
+ Worker worker_;
+ // Worker for TP reactor mode.
+
+ int nthreads_;
+ // Number of worker threads.
+
+ bool separate_dispatching_orb_;
+ // indicate that a separate ORB is used for dispatching events.
+};
+
+#include /**/ "ace/post.h"
+#endif /* NOTIFY_SERVICE_H */