summaryrefslogtreecommitdiff
path: root/TAO/examples/AMH/Sink_Server/st_server.cpp
blob: c9b9f0529c65fc1acda5e05ba434e3514990267a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

// $Id$

#include "AMH_Servant.h"
#include "Base_Server.h"


void
usage (char *message)
{
  static const char * usage = 
    "invoke as: st_server -o <ior_output_file> \n -s <sleep_time (in microseconds)> \n";

  ACE_ERROR ((LM_ERROR, "%s : %s", message, usage));
}

int
main (int argc, char *argv[])
{
  Base_Server amh_server (&argc, argv);
  amh_server.try_RT_scheduling();
  amh_server.start_orb_and_poa ();

  if (amh_server.parse_args () != 1)
    {
      usage (ACE_const_cast (char *, "IOR file missing \n"));
      ACE_OS::exit (1);
    }

  AMH_Servant servant (amh_server.orb ());
  
  if (servant.parse_args (&argc, argv) != 1)
    {
      usage (ACE_const_cast (char *, "Sleep time unspecified \n"));
      ACE_OS::exit (1);
    }

  amh_server.register_servant (&servant);
  amh_server.run_event_loop ();

  return 0;
}