summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.h
blob: 37459496aef983a95b3c54fadb61df58d775fd91 (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

//=============================================================================
/**
 *  @file    Cubit_Server.h
 *
 *  $Id$
 *
 *    This class implements a simple "cube" CORBA server for the Cubit
 *    example using skeletons generated by the TAO ORB IDL compiler.
 *
 *
 *  @author Nagarajan Surendran (naga@cs.wustl.edu)
 */
//=============================================================================


#ifndef _CUBIT_SERVER_H
#define _CUBIT_SERVER_H

#include "ace/Get_Opt.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "ace/Log_Msg.h"
#include "tao/Utils/ORB_Manager.h"
#include "Cubit_Client.h"
#include "Cubit_i.h"

/**
 * @class Cubit_Server
 *
 * @brief Defines a Cubit Server class that implements the functionality
 * of a server process as an object.
 *
 * The interface is quite simple. A server program has to call
 * init to initialize the cubit_server's state and then call run
 * to run the orb.
 */
class Cubit_Server
{
public:
  // = Initialization and termination methods.
  /// Default constructor
  Cubit_Server (void);

  /// Destructor
  ~Cubit_Server (void);

  /// Initialize the Cubit_Server state - parsing arguments and ...
  int init (int argc,
            ACE_TCHAR **argv);

  /// Run the orb
  int run (void);

private:
  /// Parses the commandline arguments.
  int parse_args (void);

  /// File to output the cubit factory IOR.
  FILE* ior_output_file_;

  /// The ORB manager.
  TAO_ORB_Manager orb_manager_;

  /// Implementation object of the cubit factory.
  Cubit_Factory_i *factory_impl_;

  /// Id of the factory.
  CORBA::String_var factory_id_;

  /// Number of commandline arguments.
  int argc_;

  /// commandline arguments.
  ACE_TCHAR **argv_;
};

#endif /* _CUBIT_SERVER_H */