1 #include "Server_Task.h"
2 #include "Client_Task.h"
3 #include "ace/Get_Opt.h"
4 #include "ace/Argv_Type_Converter.h"
5 #include "ace/SString.h"
6 #include "ace/Manual_Event.h"
8 const ACE_TCHAR
*output
= ACE_TEXT("test.ior");
9 const ACE_TCHAR
*input
= ACE_TEXT("file://test.ior");
10 // static int named_orbs = 0;
11 ACE_CString server_orb
;
12 ACE_CString client_orb
;
14 parse_args (int argc
, ACE_TCHAR
*argv
[])
16 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT("k:o:n"));
19 while ((c
= get_opts ()) != -1)
23 output
= get_opts
.opt_arg ();
26 input
= get_opts
.opt_arg ();
30 server_orb
.set ("server_orb");
31 client_orb
.set ("client_orb");
35 // This is a hack but that is okay!
38 // Indicates successful parsing of the command line
43 ACE_TMAIN(int argc
, ACE_TCHAR
*argv
[])
45 if (parse_args (argc
, argv
) == -1)
50 ACE_Argv_Type_Converter
satc (argc
, argv
);
52 CORBA::ORB_init (satc
.get_argc (),
53 satc
.get_TCHAR_argv (),
57 Server_Task
server_task (output
,
60 ACE_Thread_Manager::instance ());
62 if (server_task
.activate (THR_NEW_LWP
| THR_JOINABLE
,
66 ACE_ERROR ((LM_ERROR
, "Error activating server task\n"));
69 // Wait for the server thread to do some processing
72 ACE_Argv_Type_Converter
catc (argc
, argv
);
74 CORBA::ORB_init (catc
.get_argc (),
75 catc
.get_TCHAR_argv (),
78 Client_Task
client_task (input
,
80 ACE_Thread_Manager::instance ());
82 if (client_task
.activate (THR_NEW_LWP
| THR_JOINABLE
,
86 ACE_ERROR ((LM_ERROR
, "Error activating client task\n"));
89 // Wait for the client and server to finish
90 ACE_Thread_Manager::instance ()->wait ();
92 // Now that all threads have completed we can destroy the ORB
94 if (server_orb
!= client_orb
)
99 catch (const CORBA::Exception
&)
101 // Ignore exceptions..