summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/examples/Quoter/Client/Quoter_Client_exec.cpp
blob: 3c2af384de0ffbfff4c5eb335cab85d946c649b7 (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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
// -*- C++ -*-
/**
 * Code generated by the The ACE ORB (TAO) IDL Compiler v2.0.0
 * TAO and the TAO IDL Compiler have been developed by:
 *       Center for Distributed Object Computing
 *       Washington University
 *       St. Louis, MO
 *       USA
 *       http://www.cs.wustl.edu/~schmidt/doc-center.html
 * and
 *       Distributed Object Computing Laboratory
 *       University of California at Irvine
 *       Irvine, CA
 *       USA
 * and
 *       Institute for Software Integrated Systems
 *       Vanderbilt University
 *       Nashville, TN
 *       USA
 *       http://www.isis.vanderbilt.edu/
 *
 * Information about TAO is available at:
 *     http://www.dre.vanderbilt.edu/~schmidt/TAO.html
 **/

#include "Quoter_Client_exec.h"

#include "ace/OS_NS_unistd.h"

namespace CIAO_Quoter_Client_Impl
{

  //============================================================
  // Worker thread for asynchronous invocations
  //============================================================
  asynch_quoter_generator::asynch_quoter_generator (
     ::Quoter::CCM_Client_Context_ptr context)
   : context_(::Quoter::CCM_Client_Context::_duplicate (context))
  {
  }

  int asynch_quoter_generator::svc ()
  {
    ACE_OS::sleep (3);
    ::Quoter::AMI4CCM_StockManager_var my_quoter_ami_  =
       context_->get_connection_sendc_my_quoter();

    if (CORBA::is_nil (my_quoter_ami_))
      {
        ACE_ERROR ((LM_ERROR,
                    ACE_TEXT("ERROR Client (ASYNCH) :")
                    ACE_TEXT("\tmy_quoter_ami_ is NIL !!!\n")));
        return 1;
      }
    ::Quoter::CCM_AMI4CCM_StockManagerReplyHandler_var cb =
         new AMI4CCM_StockManagerReplyHandler_my_quoter_i ();

    ACE_DEBUG ((LM_DEBUG,
                ACE_TEXT("Client (ASYNCH) :")
                ACE_TEXT("\tInvoke Asynchronous calls\n")));

    my_quoter_ami_->sendc_get_stock_exchange_name (cb.in ());

    my_quoter_ami_->sendc_add_stock (cb.in (), "Google", 10.46);

    my_quoter_ami_->sendc_edit_stock (cb.in (), "Google", 11.13);

    my_quoter_ami_->sendc_remove_stock (cb.in (), "Microsoft");

    my_quoter_ami_->sendc_find_closest_symbol (cb.in (), "Micro");

    my_quoter_ami_->sendc_get_quote (cb.in (), "Google");

    ACE_DEBUG ((LM_DEBUG,
          ACE_TEXT("Client (ASYNCH) :\tInvoked Asynchronous calls\n")));

    ACE_DEBUG ((LM_DEBUG,
                ACE_TEXT("Client (ASYNCH) :\tInvoke Asynchronous call ")
                ACE_TEXT("to test except handling\n")));

    my_quoter_ami_->sendc_get_quote (cb.in (), "Microsoft");

    ACE_DEBUG ((LM_DEBUG,
                ACE_TEXT("Client (ASYNCH) :\tInvoked Asynchronous call.\n")));
    return 0;
  }

  /**
   * Component Executor Implementation Class: Client_exec_i
   */

  Client_exec_i::Client_exec_i (void) :
    asynch_quoter_gen_ (0)
  {
  }

  Client_exec_i::~Client_exec_i (void)
  {
  }

  // Supported operations and attributes.

  // Component attributes and port operations.

  // Operations from Components::SessionComponent.

  void
  Client_exec_i::set_session_context (
    ::Components::SessionContext_ptr ctx)
  {
    this->context_ =
      ::Quoter::CCM_Client_Context::_narrow (ctx);
    if ( ::CORBA::is_nil (this->context_.in ()))
      {
        throw ::CORBA::INTERNAL ();
      }
  }

  void
  Client_exec_i::configuration_complete (void)
  {
    /* Your code here. */
  }

  void
  Client_exec_i::ccm_activate (void)
  {
    this->asynch_quoter_gen_ =
      new asynch_quoter_generator (this->context_.in ());
    this->asynch_quoter_gen_->activate (THR_NEW_LWP | THR_JOINABLE, 1);
  }

  void
  Client_exec_i::ccm_passivate (void)
  {
    /* Your code here. */
  }

  void
  Client_exec_i::ccm_remove (void)
  {
    delete this->asynch_quoter_gen_;
    this->asynch_quoter_gen_ = 0;
  }

  AMI4CCM_StockManagerReplyHandler_my_quoter_i::AMI4CCM_StockManagerReplyHandler_my_quoter_i (void)
  {
  }

  AMI4CCM_StockManagerReplyHandler_my_quoter_i::~AMI4CCM_StockManagerReplyHandler_my_quoter_i (void)
  {
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::get_stock_exchange_name (
    const char * stock_exchange_name)
  {
    ACE_DEBUG ((LM_DEBUG,
                ACE_TEXT ("Client - StockManagerReplyHandler : get_stock_exchange_name = %C\n"),
                stock_exchange_name));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::get_stock_exchange_name_excep (
    ::CCM_AMI::ExceptionHolder_ptr /* excep_holder */)
  {
    ACE_DEBUG ((LM_ERROR,
                ACE_TEXT ("ERROR Client - StockManagerReplyHandler : get_stock_exchange_name threw exception\n")));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::set_stock_exchange_name (void)
  {
    /* Your code here. */
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::set_stock_exchange_name_excep (
    ::CCM_AMI::ExceptionHolder_ptr /* excep_holder */)
  {
    ACE_DEBUG ((LM_ERROR,
                ACE_TEXT ("ERROR Client - StockManagerReplyHandler : set_stock_exchange_name threw exception\n")));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::add_stock (
    ::CORBA::Boolean ami_return_val)
  {
    ACE_DEBUG ((LM_DEBUG,
                ACE_TEXT ("Client - StockManagerReplyHandler : add_stock returned %C\n"),
                ami_return_val ? "true" : "false"));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::add_stock_excep (
    ::CCM_AMI::ExceptionHolder_ptr /* excep_holder */)
  {
    ACE_DEBUG ((LM_ERROR,
                ACE_TEXT ("ERROR Client - StockManagerReplyHandler : add_stock threw exception\n")));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::edit_stock (void)
  {
    ACE_DEBUG ((LM_DEBUG,
                ACE_TEXT ("Client - StockManagerReplyHandler : edit_stock returned successfully\n")));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::edit_stock_excep (
    ::CCM_AMI::ExceptionHolder_ptr /* excep_holder */)
  {
    ACE_DEBUG ((LM_ERROR,
                ACE_TEXT ("ERROR Client - StockManagerReplyHandler : edit_stock threw exception\n")));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::remove_stock (
    ::CORBA::Double quote)
  {
    ACE_DEBUG ((LM_DEBUG,
                ACE_TEXT ("Client - StockManagerReplyHandler : remove_stock returned %f\n"),
                quote));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::remove_stock_excep (
    ::CCM_AMI::ExceptionHolder_ptr /* excep_holder */)
  {
    ACE_DEBUG ((LM_ERROR,
                ACE_TEXT ("ERROR Client - StockManagerReplyHandler : remove_stock threw exception\n")));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::find_closest_symbol (
    ::CORBA::Boolean ami_return_val,
    const char * symbol)
  {
    ACE_DEBUG ((LM_DEBUG,
                ACE_TEXT ("Client - StockManagerReplyHandler : find_closest_symbol returned %C; ")
                ACE_TEXT ("symbol found = %C\n"),
                ami_return_val ? "true" : "false",
                ami_return_val ? symbol : "(none)"));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::find_closest_symbol_excep (
    ::CCM_AMI::ExceptionHolder_ptr /* excep_holder */)
  {
    ACE_DEBUG ((LM_ERROR,
                ACE_TEXT ("ERROR Client - StockManagerReplyHandler : find_closest_symbol threw exception\n")));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::get_quote (
    ::CORBA::Double ami_return_val)
  {
    ACE_DEBUG ((LM_DEBUG,
                ACE_TEXT ("Client - StockManagerReplyHandler : get_quote returned %f\n"),
                ami_return_val));
  }

  void
  AMI4CCM_StockManagerReplyHandler_my_quoter_i::get_quote_excep (
    ::CCM_AMI::ExceptionHolder_ptr excep_holder)
  {
    try
    {
      excep_holder->raise_exception ();
    }
    catch (const Quoter::InvalidStock& ex)
    {
      ACE_DEBUG ((LM_DEBUG,
                  ACE_TEXT("Client - StockManagerReplyHandler : get_quote threw correct exception type\n")));

      if (ACE_OS::strcmp (ex.sym.in (), "Microsoft") == 0)
      {
        ACE_DEBUG ((LM_DEBUG,
                    ACE_TEXT("Client - StockManagerReplyHandler : get_quote could not find quote for %C\n"),
                    ex.sym.in ()));
        return;
      }
    }
    catch (const CORBA::Exception& /*ex*/)
    {
      ACE_DEBUG ((LM_ERROR,
                  ACE_TEXT ("ERROR Client - StockManagerReplyHandler : get_quote threw unexpected exception\n")));
    }
  }

  extern "C" QUOTER_CLIENT_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_Quoter_Client_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();

    ACE_NEW_NORETURN (
      retval,
      Client_exec_i);

    return retval;
  }
}