summaryrefslogtreecommitdiff
path: root/CIAO/examples/BasicSP/EC/controller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/examples/BasicSP/EC/controller.cpp')
-rw-r--r--CIAO/examples/BasicSP/EC/controller.cpp124
1 files changed, 0 insertions, 124 deletions
diff --git a/CIAO/examples/BasicSP/EC/controller.cpp b/CIAO/examples/BasicSP/EC/controller.cpp
deleted file mode 100644
index 86a0fe2fe6c..00000000000
--- a/CIAO/examples/BasicSP/EC/controller.cpp
+++ /dev/null
@@ -1,124 +0,0 @@
-/**
- * @file controller.cpp
- *
- * This program interact with a EC component, and set the rate of the
- * EC.
- */
-
-#include "ECC.h"
-#include "ace/Get_Opt.h"
-#include "ace/streams.h"
-
-const ACE_TCHAR *rategen_ior_ = ACE_TEXT("file://rategen.ior");
-int rate = 3;
-int turn_on = 1;
-
-int
-parse_args (int argc, ACE_TCHAR *argv[])
-{
- ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("k:r:of"));
- int c;
-
- while ((c = get_opts ()) != -1)
- {
- switch (c)
- {
- case 'o':
- turn_on = 1;
- break;
-
- case 'f':
- turn_on = 0;
- break;
-
- case 'k':
- rategen_ior_ = get_opts.opt_arg ();
- break;
-
- case 'r':
- rate = ACE_OS::atoi (get_opts.opt_arg ());
- break;
-
- case '?': // display help for use of the server.
- default:
- ACE_ERROR_RETURN ((LM_ERROR,
- "usage: %s\n"
- "-o (Turn on the rate generator)\n"
- "-f (Turn off the rate generator)\n"
- "-k <EC IOR> (default is file://rategen.ior)\n"
- "-r <rate in hertz> (default is 3)\n"
- "\n",
- argv [0]),
- -1);
- break;
- }
- }
-
- if (rategen_ior_ == 0)
- {
- rategen_ior_ = ACE_TEXT("file://ec.ior");
- }
-
- if (rate == 0)
- {
- rate = 3;
- }
-
- return 0;
-}
-
-int
-ACE_TMAIN (int argc, ACE_TCHAR *argv[])
-{
- try
- {
- // Initialize orb
- CORBA::ORB_var orb = CORBA::ORB_init (argc, argv);
-
- if (parse_args (argc, argv) != 0)
- {
- return -1;
- }
-
- CORBA::Object_var obj =
- orb->string_to_object (rategen_ior_);
-
- BasicSP::EC_var pulser
- = BasicSP::EC::_narrow (obj.in ());
-
- if (CORBA::is_nil (pulser.in ()))
- {
- ACE_ERROR_RETURN ((LM_ERROR,
- "Unable to acquire 'EC' objref\n"),
- -1);
- }
-
- pulser->hertz (rate);
-
- if (turn_on)
- {
- pulser->hertz (rate);
-
- ACE_DEBUG ((LM_EMERGENCY, "Start up the Event services\n"));
-
- pulser->start ();
- }
- else
- {
- pulser->stop ();
-
- ACE_DEBUG ((LM_EMERGENCY, "Stop the ES\n"));
- }
-
- orb->destroy ();
- }
- catch (const CORBA::Exception& ex)
- {
- ex._tao_print_exception ("Who is the culprit\n");
- ACE_ERROR_RETURN ((LM_ERROR,
- "Uncaught CORBA exception\n"),
- 1);
- }
-
- return 0;
-}