summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams/Use_Case/sender.cpp
blob: 399c9e9071df0c751bc685a3086cdc763a636e00 (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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
// $Id$

#include "sender.h"
#include "ace/Get_Opt.h"
#include "ace/High_Res_Timer.h"

ACE_High_Res_Timer last_frame_sent_time;
// The time taken for sending a frmae and preparing for the next frame

ACE_Time_Value inter_frame_time;
// The time that should lapse between two consecutive frames sent.

int
Sender_Callback::handle_start (void)
{
  return 0;
}

Sender_StreamEndPoint::Sender_StreamEndPoint (void)
{
}

int
Sender_StreamEndPoint::get_callback (const char *,
                                     TAO_AV_Callback *&callback)
{
  // Create and return the client application callback and return to the AVStreams
  // for further upcalls.
  callback = &this->callback_;

  return 0;
}

int
Sender_StreamEndPoint::set_protocol_object (const char * flowname,
                                            TAO_AV_Protocol_Object *object)
{
  // Set the client protocol object corresponding to the transport protocol selected.
  SENDER::instance ()->set_protocol_object (flowname,
                                            object);

  
  return 0;
}

CORBA::Boolean
Sender_StreamEndPoint::handle_preconnect (AVStreams::flowSpec &flowspec)
{
  ACE_TRY_NEW_ENV
    {
      SENDER::instance ()->helper ()->disconnect (flowspec,
                                                  SENDER::instance ()->get_endpoint_set (),
                                                  SENDER::instance ()->get_streamctrl_map (),
                                                  ACE_TRY_ENV);
      ACE_TRY_CHECK;
    }
  ACE_CATCHANY
    {
      ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
			   "Sender::handle_preconnect failed");
      return 0;
    }
  ACE_ENDTRY;
                                              
  return 1;
}

CORBA::Boolean
Sender_StreamEndPoint::handle_postconnect (AVStreams::flowSpec &flowspec)
{
    for (unsigned int i = 0; i < flowspec.length (); i++)
    {
      TAO_Forward_FlowSpec_Entry entry;
      entry.parse (flowspec[i].in ());
      
      ACE_CString flowname (entry.flowname ());

      ACE_DEBUG ((LM_DEBUG,
                  "Set endpoint in postconnect of flow %s\n", flowname.c_str ()));

      // Store the flowname and the corresponding endpoint in the endpoint_set
      SENDER::instance ()->set_endpoint (flowname.c_str (),
                                         this);
    }
    return 1;
}

Sender::Sender (void)
  :count_ (0),
   fp_ (0),
   protocol_ ("UDP"),
   frame_rate_ (30),
   default_port (8000)
{
  this->mb.size (BUFSIZ);
}

void
Sender::set_protocol_object (const char* flowname,
                             TAO_AV_Protocol_Object *object)
{
  // Set the client protocol object corresponding to the transport protocol selected.
  // and store it in the set of protocol objects.
  Protocol_Object_Item* item;
  
  ACE_NEW (item,
           Protocol_Object_Item);
    
  item->flowname = flowname;
  
  item->protocol_object = object;
  
  if (this->protocol_object_set_.insert (item) == 1)
    ACE_ERROR ((LM_ERROR,
                "Object Already Bound \n"));
  
}

void 
Sender::set_endpoint (const char* flowname, TAO_StreamEndPoint* endpoint)
{
  // Set the flowname and its corresponding endpoint
  StreamEndpoint_Item* item;
  
  ACE_NEW (item,
           StreamEndpoint_Item);
    
  item->flowname = flowname;
  
  item->endpoint = endpoint;
  
  if (this->endpoint_set_.insert (item) == 1)
    ACE_ERROR ((LM_ERROR,
                "Endpoint Already Bound \n"));


}

StreamEndpoint_Set*
Sender::get_endpoint_set (void)
{
  return &this->endpoint_set_;
}

StreamCtrl_Map *
Sender::get_streamctrl_map (void)
{
  return &this->streamctrl_map_;
}

Connection_Setup_Helper*
Sender::helper (void)
{
  return &this->helper_;
}

int
Sender::parse_args (int argc,
                    char **argv)
{
  // Parse command line arguments
  ACE_Get_Opt opts (argc,argv,"f:r:s:p:");

  int c;
  while ((c= opts ()) != -1)
    {
      switch (c)
        {
        case 'f':
          this->filename_ = opts.optarg;
          if (TAO_debug_level > 0) 
            ACE_DEBUG ((LM_DEBUG,
                        "Input File Name %s\n",
                        this->filename_.c_str ()));                      
          break;
	case 'r':
	  this->frame_rate_ = ACE_OS::atoi (opts.optarg);
	  break;
        case 's':
          this->sender_device_name_ = opts.optarg;
          break;
        case 'p':
          this->protocol_ = opts.optarg;
          break;
        default:
          ACE_DEBUG ((LM_DEBUG,"Unknown Option\n"));
          return -1;
        }
    }
  return 0;
}

FILE *
Sender::file (void)
{
  return this->fp_;
}


int
Sender::frame_rate (void)
{
  return this->frame_rate_;
}


int
Sender::init (int argc,
	      char **argv,
	      CORBA::Environment& ACE_TRY_ENV)
{
  this->argc_ = argc;
  this->argv_ = argv;
  
  CORBA::String_var ior;
  
  // Initialize the endpoint strategy with the orb and poa.
  this->endpoint_strategy_.init(TAO_AV_CORE::instance ()->orb (), 
                                TAO_AV_CORE::instance ()->poa ());

  // Parse the command line arguments
  int result = this->parse_args (argc, 
				 argv);

  if (result < 0)
    ACE_ERROR_RETURN ((LM_ERROR,
		       " (%P|%t) Error in Parse Args \n"),
		      -1);

  // Initialize the connection setup helper class.
  this->helper_.init (TAO_AV_CORE::instance ()->orb (), 
                      TAO_AV_CORE::instance ()->poa ());


  ACE_NEW_RETURN (this->sender_mmdevice_,
                  TAO_MMDevice (&this->endpoint_strategy_),
                  -1);

  // Servant Reference Counting to manage lifetime
  PortableServer::ServantBase_var safe_servant =
    this->sender_mmdevice_;
  
  // Register the sender mmdevice object with the ORB   
  this->sender_mmdevice_obj_ = this->sender_mmdevice_->_this (ACE_TRY_ENV);
  ACE_CHECK_RETURN (-1);
  

  // Open file to read.
  this->fp_ = ACE_OS::fopen (this->filename_.c_str (),
			     "r");
  if (this->fp_ == 0)
    ACE_ERROR_RETURN ((LM_ERROR,
		       "Cannot open output file %s\n",
		       this->filename_.c_str ()),
		      -1);
  else ACE_DEBUG ((LM_DEBUG,
		   "File opened successfully\n"));		  
 
  
  // Register the object reference with the Naming Service and bind to the 
  // receivers
  if (this->helper_.bind_to_receivers (&this->sender_device_name_,
                                       this->sender_mmdevice_obj_.in (),
                                       this->recv_obj_ref_set_,
                                       ACE_TRY_ENV) == -1)
    ACE_ERROR_RETURN ((LM_ERROR,
                       "(%P|%t) Error binding to the naming service\n"),
                      -1);
      
  ACE_CString flow_protocol_str = "";

  ACE_CString address;
  // Get the local host name
  char buf [BUFSIZ];
  ACE_OS::hostname (buf, 
                    BUFSIZ);

  // Set the address to the local host and port.
  address = buf;
  address += ":8000";

  // Connect to the receivers
  if (this->helper_.connect_to_receivers (&this->sender_device_name_,
                                          &flow_protocol_str,
                                          &this->protocol_,
                                          &address,
                                          this->sender_mmdevice_obj_.in (),
                                          &this->recv_obj_ref_set_,
                                          this->streamctrl_map_,
                                          ACE_TRY_ENV) == -1)
    ACE_ERROR_RETURN ((LM_ERROR,
                       "(%P|%t) Error connecting to the receivers\n"),
                      -1);

  SENDER::instance ()->pace_data (ACE_TRY_ENV);
  ACE_CHECK_RETURN (-1);
  
  this->helper_.disconnect (&this->endpoint_set_,
                            &this->streamctrl_map_,
                            ACE_TRY_ENV);
  ACE_CHECK_RETURN (-1);
  
  TAO_AV_CORE::instance ()->orb ()->shutdown (0);

  return 0;
}

// Method to send data at the specified rate
int
Sender::pace_data (CORBA::Environment& ACE_TRY_ENV)
{

  // Time within which a frame should be sent.
  double frame_time = 1/ (double) this->frame_rate_;
  
  if (TAO_debug_level > 0)
    ACE_DEBUG ((LM_DEBUG,
                "Frame Time ONE = %f\n Frame Rate = %d\n",
                frame_time,
                this->frame_rate_));
  
  // The time between two consecutive frames.
  inter_frame_time.set (frame_time);
  
  if (TAO_debug_level > 0)
    ACE_DEBUG ((LM_DEBUG,
                "Inter Frame Time = %d\n",
                inter_frame_time.msec ()));
  
  ACE_TRY
    {

      // Continue to send data till the file is read to the end.
      while (1)
	{

          // Count the frames sent.
	  count_++;
          
          // Reset the message block.
          this->mb.reset ();
          
          // Read from the file into a message block.
          int n = ACE_OS::fread (this->mb.wr_ptr (),
                                 1,
                                 this->mb.size (),
                                 SENDER::instance ()->file ());
	  
          this->mb.wr_ptr (n);
          
          if (n < 0)
	    ACE_ERROR_RETURN ((LM_ERROR,
			       "FTP_Client_Flow_Handler::fread end of file\n"),
			      -1);
	  
	  if (n == 0)
	    {
	      if (feof (SENDER::instance ()->file ()))
		{
                  // At end of file break the loop and end the client.
                  if (TAO_debug_level > 0)
                    ACE_DEBUG ((LM_DEBUG,"Handle_Start:End of file\n"));
                  ACE_OS::fclose (SENDER::instance ()->file ());
                  break;
                }
	      
	    }
          
  	  if (this->count_ > 1)
  	    {
              // Second frame and beyond
              
              // Stop the timer that was started just before the previous frame was sent.
  	      last_frame_sent_time.stop ();
              
              // Get the time elapsed after sending the previous frame.
  	      ACE_Time_Value tv;
              last_frame_sent_time.elapsed_time (tv);

              if (TAO_debug_level > 0)
                ACE_DEBUG ((LM_DEBUG,
                            "Elapsed Time = %d\n",
                            tv.msec ()));
              
              // Check to see if the inter frame time has elapsed.
  	      if (tv < inter_frame_time)
                {
                  // Inter frame time has not elapsed.

                  // Claculate the time to wait before the next frame needs to be sent.
  		  ACE_Time_Value wait_time (inter_frame_time - tv);
                  if (TAO_debug_level > 0)
                    ACE_DEBUG ((LM_DEBUG,
                                "Wait Time = %d\n",
                                wait_time.msec ()));
                  
                  // run the orb for the wait time so the client can continue other orb requests.
  		  TAO_AV_CORE::instance ()->orb ()->run (wait_time,
  							 ACE_TRY_ENV);
                  ACE_TRY_CHECK;
  		}
  	    }
          
          // Start timer before sending the frame.
  	  last_frame_sent_time.start ();
	  
          
          int result = 0;

          Protocol_Object_Set_Itor end = SENDER::instance ()->protocol_object_set_.end ();
          for (Protocol_Object_Set_Itor begin = SENDER::instance ()->protocol_object_set_.begin ();
               begin != end; ++begin)
            {
              // Send to all receivers connected to.
              result = (*begin)->protocol_object->send_frame (&this->mb);
            }
          
  	  if (result < 0)
  	    ACE_ERROR_RETURN ((LM_ERROR,
  			       "send failed:%p","Sender Pace Data\n"),
                              -1);
          ACE_DEBUG ((LM_DEBUG,"Client::pace_data buffer sent succesfully\n"));
          
        } // end while


      
    }
  ACE_CATCHANY
    {
      ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
			   "Client::pace_data Failed");
      return -1;
    }
  ACE_ENDTRY;
  return 0;
}

int
main (int argc,
      char **argv)
{
  ACE_DECLARE_NEW_CORBA_ENV;
  ACE_TRY
    {
      CORBA::ORB_var orb = CORBA::ORB_init (argc,
                                            argv,
                                            0,
                                            ACE_TRY_ENV);
      CORBA::Object_var obj
        = orb->resolve_initial_references ("RootPOA",
					   ACE_TRY_ENV);
      ACE_TRY_CHECK;


      //Get the POA_var object from Object_var
      PortableServer::POA_var root_poa
        = PortableServer::POA::_narrow (obj.in (),
					ACE_TRY_ENV);
      ACE_TRY_CHECK;

      PortableServer::POAManager_var mgr
        = root_poa->the_POAManager (ACE_TRY_ENV);
      ACE_TRY_CHECK;

      mgr->activate (ACE_TRY_ENV);
      ACE_TRY_CHECK;

      // Initialize the AV Stream components.
      TAO_AV_CORE::instance ()->init (orb.in (),
                                      root_poa.in (),
                                      ACE_TRY_ENV);
      ACE_TRY_CHECK;

      // Initialize the Client.
      int result = 0;
      result = SENDER::instance ()->init (argc,
					  argv,
					  ACE_TRY_ENV);
      ACE_TRY_CHECK;

      if (result < 0)
        ACE_ERROR_RETURN ((LM_ERROR,
			   "client::init failed\n"), -1);

      //orb->run (ACE_TRY_ENV);
      //ACE_TRY_CHECK;

    }
  ACE_CATCHANY
    {
      ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,"Sender Failed\n");
      return -1;
    }
  ACE_ENDTRY;
  ACE_CHECK_RETURN (-1);
  return 0;
}

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

template class ACE_Singleton <Sender,ACE_Null_Mutex>;
template class TAO_AV_Endpoint_Reactive_Strategy_A<Sender_StreamEndPoint,TAO_VDev,AV_Null_MediaCtrl>;
template class TAO_AV_Endpoint_Reactive_Strategy<Sender_StreamEndPoint,TAO_VDev,AV_Null_MediaCtrl>;

#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate ACE_Singleton <Client,ACE_Null_Mutex>
#pragma instantiate TAO_AV_Endpoint_Reactive_Strategy_B<Sender_StreamEndPoint,TAO_VDev,AV_Null_MediaCtrl>
#pragma instantiate TAO_AV_Endpoint_Reactive_Strategy<Sender_StreamEndPoint,TAO_VDev,AV_Null_MediaCtrl>

#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */