summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/CosEC/Factory/FactoryClient.cpp
blob: d0aa3cdabe5b6c8de7b19497b6fc2995822bfc2c (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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
// -*- C++ -*-
// $Id$

#include "CosEventChannelFactoryS.h"
#include "orbsvcs/CosNamingS.h"
#include "orbsvcs/Naming/Naming_Utils.h"

class FactoryClient
{
  // = TITLE
  //    class FactoryClient
  // = DESCRIPTION
  //    Test Client for the CosEC factory.

public:
  // Initialization and termination methods
  FactoryClient (void);
  ~FactoryClient (void);

  int init_ORB (int argc, char *argv [], CORBA::Environment &ACE_TRY_ENV);
  // Initializes the ORB.

  int resolveNamingService (CORBA::Environment &ACE_TRY_ENV);
  // Try to get hold of a running naming service.

  int resolveFactory (CORBA::Environment &ACE_TRY_ENV);
  // Try to resolve the factory from the Naming service.

   CosEventChannelFactory::ChannelFactory_ptr
   createFactory (CORBA::Environment &ACE_TRY_ENV);
  // Create a local Factory and also set the <factory_>.

  virtual int run_test (CORBA::Environment &ACE_TRY_ENV);
  // Runs a couple of tests to check if the factory behaves correctly.

protected:
  CosEventChannelAdmin::EventChannel_ptr
  createChannel (const char *channel_id,
                 CosEventChannelFactory::ChannelFactory_ptr factory,
                 CORBA::Environment &ACE_TRY_ENV);
  // create a channel.

  const char* factoryName_;
  // The name of the factory registered with the naming service.

  PortableServer::POA_var root_poa_;
  // Reference to the root poa.

  CORBA::ORB_var orb_;
  // The ORB that we use.

  TAO_Naming_Client naming_client_;
  // naming client.

  CosEventChannelFactory::ChannelFactory_var factory_;
  // object from naming service.

  int use_naming_service;
  // flag to indicate if the naming service should be used.
};

FactoryClient::FactoryClient (void)
  :factoryName_ ("CosEC_Factory"),
   root_poa_ (PortableServer::POA::_nil ()),
   use_naming_service (0)
{
  // No-Op.
}

FactoryClient::~FactoryClient (void)
{
  // No-Op.
}

int
FactoryClient::init_ORB (int argc,
                       char *argv [],
                       CORBA::Environment &ACE_TRY_ENV)
{
  this->orb_ = CORBA::ORB_init (argc,
                                argv,
                                "",
                                ACE_TRY_ENV);
  ACE_CHECK_RETURN (-1);

  CORBA::Object_var poa_object  =
    this->orb_->resolve_initial_references("RootPOA",
                                           ACE_TRY_ENV);
  ACE_CHECK_RETURN (-1);

  if (CORBA::is_nil (poa_object.in ()))
    ACE_ERROR_RETURN ((LM_ERROR,
                       " (%P|%t) Unable to initialize the POA.\n"),
                      -1);

  this->root_poa_ =
    PortableServer::POA::_narrow (poa_object.in (),
                                  ACE_TRY_ENV);
  ACE_CHECK_RETURN (-1);

  PortableServer::POAManager_var poa_manager =
    root_poa_->the_POAManager (ACE_TRY_ENV);
  ACE_CHECK_RETURN (-1);

  poa_manager->activate (ACE_TRY_ENV);
  ACE_CHECK_RETURN (-1);

  return 0;
}

int
FactoryClient::resolveNamingService (CORBA::Environment &ACE_TRY_ENV)
{
  this->use_naming_service = 0;

  // Initialization of the naming service.
  if (this->naming_client_.init (this->orb_.in ()) != 0)
    ACE_ERROR_RETURN ((LM_ERROR,
                       "(%P|%t) Unable to initialize "
                       "the TAO_Naming_Client. \n"),
                      -1);

  this->use_naming_service = 1;
  return 0;
}

int
FactoryClient::resolveFactory (CORBA::Environment &ACE_TRY_ENV)
{
  // Get the naming service
  CosNaming::Name name (1);
  name.length (1);
  name[0].id = CORBA::string_dup (this->factoryName_);

  CORBA::Object_var obj =
    this->naming_client_->resolve (name,
                                   ACE_TRY_ENV);

  this->factory_ =
    CosEventChannelFactory::ChannelFactory::_narrow (obj.in (),
                                                     ACE_TRY_ENV);
  ACE_CHECK_RETURN (-1);

  return 0;
}

CosEventChannelFactory::ChannelFactory_ptr
FactoryClient::createFactory (CORBA::Environment &ACE_TRY_ENV)
{
  // TBD:
  return 0;
}

CosEventChannelAdmin::EventChannel_ptr
FactoryClient::createChannel (const char *channel_id,
                            CosEventChannelFactory::ChannelFactory_ptr factory,
                            CORBA::Environment &ACE_TRY_ENV)
{
  CosEventChannelAdmin::EventChannel_var ec =
    factory->create (channel_id,
                     this->use_naming_service,
                     ACE_TRY_ENV);
  ACE_CHECK_RETURN (0);

  ACE_ASSERT (ec.in () !=
              CosEventChannelAdmin::EventChannel::_nil ());

  return ec.in ();
}

int
FactoryClient::run_test (CORBA::Environment &ACE_TRY_ENV)
{
  ACE_ASSERT (this->factory_.in () !=
              CosEventChannelFactory::ChannelFactory::_nil ());

  char *channel_id [3] = {"cosec1", "cosec2", "cosec3"};
  CosEventChannelAdmin::EventChannel_ptr cosec [3];

  ACE_DEBUG ((LM_DEBUG,
              "Trying to create a Cos Event Channel \"%s \"\n",
              channel_id[0]));

  // create the first cosec
  cosec[0] = this->createChannel (channel_id[0],
                                  this->factory_,
                                  ACE_TRY_ENV);
  ACE_CHECK_RETURN (-1);

  // see if it can give us the id?
  ACE_DEBUG ((LM_DEBUG,
              "Check to see if it gives us the right id back\n"));

  ACE_CString returned_id =
    this->factory_->find_channel_id (cosec[0],
                                     ACE_TRY_ENV);
  ACE_CHECK_RETURN (-1);

  // print what we saw..
  ACE_DEBUG ((LM_DEBUG,
              "Returned Channel id %s\n",
              returned_id.fast_rep ()));

  // this->orb_->run ();
  return 0;
}

int
main (int argc, char *argv [])
{
  ACE_DEBUG ((LM_DEBUG,
              "The FactoryClient will test the Cos Event Channel Factory\n"));
  ACE_TRY_NEW_ENV
    {
      FactoryClient ft;

      if (ft.init_ORB (argc,
                       argv,
                       ACE_TRY_ENV) == -1)
        return 1;

      if (ft.resolveNamingService (ACE_TRY_ENV) == 0)
        {
          ACE_TRY_CHECK;
          if (ft.resolveFactory (ACE_TRY_ENV) == -1)
            ACE_ERROR_RETURN ((LM_ERROR,
                               "Failed to resolve the CosEventFactory from the Naming Service\n"),
                              -1);
        }
      else
        {
          ACE_DEBUG ((LM_DEBUG,
                      "No Naming service available\n"));
          ACE_DEBUG ((LM_DEBUG,
                      "Creating a local Factory\n"));
          // TBD:
          // ft.createFactory ();
        }

      ft.run_test (ACE_TRY_ENV);

      return 0;
    }
  ACE_CATCH (CORBA::UserException, ue)
    {
      ue.print_exception ("User Exception in FactoryClient: ");
      return 1;
    }
  ACE_CATCH (CORBA::SystemException, se)
    {
      se.print_exception ("System Exception in FactoryClient: ");
      return 1;
    }
  ACE_ENDTRY;

  ACE_NOTREACHED (return 0;)
}