blob: 762e8e67d5570c36d6d4e800fdb020f89c674667 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// -*- c++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/performance-tests/Pluggable
//
// = FILENAME
// PP_Test_Server.h
//
// = DESCRIPTION
// This class implements simple oneway and twoway no-op requests
// to time latency and overhead of the pluggable protocol functionality.
//
// = AUTHOR
// Jeff Parsons <parsons@cs.wustl.edu>
//
// ============================================================================
#ifndef _PP_TEST_SERVER_H
#define _PP_TEST_SERVER_H
#include "ace/Get_Opt.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/TAO.h"
#include "PP_Test_i.h"
class PP_Test_Server
{
// = TITLE
// Defines a server class that implements the functionality
// of a server process as an object.
//
// = DESCRIPTION
// The interface is quite simple. A server program has to call
// init to initialize the server's state and then call run
// to run the orb.
public:
// = Initialization and termination methods.
PP_Test_Server (void);
// Default constructor
~PP_Test_Server (void);
// Destructor
int init (int argc,
char **argv,
CORBA::Environment& env);
// Initialize the server state - parsing arguments, etc.
int run (CORBA::Environment& env);
// Run the orb
private:
int parse_args (void);
// Parses the commandline arguments.
FILE* ior_output_file_;
// File to output the cubit factory IOR.
TAO_ORB_Manager orb_manager_;
// The ORB manager.
Pluggable_Test_Factory_i *factory_impl_;
// Implementation object of the Pluggable Test factory.
CORBA::String_var factory_id_;
// ID of the factory.
int argc_;
// Number of commandline arguments.
char **argv_;
// commandline arguments.
};
#endif /* _PP_TEST_SERVER_H */
|