summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/ir_implrepo_impl.h
blob: a14816c04a837e8fa8540c4519938018de6bd917 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
// -*- C++ -*-
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/orbsvcs/tests/ImplRepo
// 
// = FILENAME
//    ir_implrepo_impl.h
//
// = DESCRIPTION
//    This class implements the Simple Object object.
//
// = AUTHOR
//    Darrell Brunsch <brunsch@cs.wustl.edu>
// 
// ============================================================================

#if !defined (IR_IMPLREPO_IMPL_H)
#define	IR_IMPLREPO_IMPL_H

#include "Impl_RepoS.h"
#include "tao/TAO.h"

// Forward declarations.
class IR_ImplRepo_Impl;
class IR_Simple_Impl;

// Typedefs.
typedef IR_ImplRepo_Impl *IR_ImplRepo_Impl_ptr;
typedef IR_ImplRepo_Impl_ptr IR_ImplRepo_Impl_ref;
typedef IR_Simple_Impl *IR_Simple_Impl_ptr;
typedef IR_Simple_Impl_ptr IR_Simple_Impl_ref;

class IR_ImplRepo_Impl : public POA_Implementation_Repository
{
  // = TITLE
  //    Implementation Repository 
  //
  // = DESCRIPTION
  //    This provides the interface to communicate directly with the
  //    Implementation Repository.
public:
  // = Constructor and destructor
  IR_ImplRepo_Impl (void);
  ~IR_ImplRepo_Impl (void);

  // = Interface methods
//  virtual void register_server (const char *server,
//                                const Implementation_Repository::Process_Options &options,
//                                CORBA::Environment &_tao_environment);

  virtual void server_is_running (const char *server,
                                  const Implementation_Repository::INET_Addr &addr,
                                  CORBA::Environment &_tao_environment);
  
  // = Other methods

  int init (int argc, char **argv, CORBA::Environment& env);
  // Initialize the Server state - parsing arguments and waiting

  int run (CORBA::Environment& env);
  // Run the orb 

  void start (const char *server);
  // Starts the program registered as <server>

private:
  IR_Simple_Impl *server_impl_;

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

  int read_ior (char *filename);
  // Reads the IOR of the real server from the file

  TAO_ORB_Manager orb_manager_;
  // The ORB manager.

  FILE *ior_output_file_;
  // File where the IOR of the server object is stored.

  char *server_key_;
  // Key of the obj ref of the server.

  char *server_input_file_;
  // Copy of the filename for the server output file.

  int argc_;
  // Number of command line arguments.

  char **argv_;
  // The command line arguments.
};


class IR_Simple_Impl: public POA_simple_object
{
  // = TITLE
  //    Simple Object Implementation
  //
  // = DESCRIPTION
  //    Implementation of a simple object that has two methods, one that 
  //    returns the cube of a long, another that shuts down the server.
public:
  //  = Constructor and Destructor
  IR_Simple_Impl (CORBA::ORB_ptr orb_ptr,
                  PortableServer::POA_ptr poa_ptr,
                  IR_ImplRepo_Impl *ir_impl);

  ~IR_Simple_Impl (void);

  // = Interface methods
  virtual CORBA::Long simple_method (CORBA::Long l,
                                     CORBA::Environment &env);
  // Just cubes the long parameter

  virtual void shutdown (CORBA::Environment &env);
  // Shutdown routine.

  // = Other methods
  void forward_to (CORBA::Object_ptr forward_to_ptr);
  // Sets the ior of the forward to ptr)

private:
  int forward (CORBA::Environment &env);

  class IR_ImplRepo_Impl *ir_impl_;

  CORBA::ORB_var orb_var_;
  PortableServer::POA_var poa_var_;
  CORBA::Object_var forward_to_var_;
};


#endif /* IR_IMPLREPO_IMPL_H */