summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Event/Basic/BCast.h
blob: 5eafe822a3b8cfc02ec310c9ce85625a707b4def (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
/* -*- C++ -*- */
// $Id$
//
// ============================================================================
//
// = LIBRARY
//   ORBSVCS Real-time Event Channel testsuite
//
// = FILENAME
//   BCast
//
// = AUTHOR
//   Carlos O'Ryan (coryan@cs.wustl.edu)
//
// ============================================================================

#ifndef EC_BCAST_H
#define EC_BCAST_H

#include "Driver.h"
#include "orbsvcs/RtecUDPAdminS.h"

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

class EC_BCast : public EC_Driver
{
  //
  // = TITLE
  //   Test the EC bcast
  //
  // = DESCRIPTION
  //
public:
  EC_BCast (void);
  // Constructor

  // = The EC_Driver methods
  virtual int parse_args (int& argc, char* argv[]);
  virtual void print_args (void) const;
  virtual void print_usage (void);
  // add some command line args to enable/disable bcastions

  virtual void modify_attributes (TAO_EC_Event_Channel_Attributes& attr);
  // set the bcastion flags

  void execute_test (CORBA::Environment& ACE_TRY_ENV);
  // Don't run the suppliers, just test connect and disconnect calls.

  void dump_results (void);
  // Don't dump the EC_Driver results, they are meaningless.

private:
  const char* bcast_address_;
  // The IP address used to broadcast

  u_short bcast_port_;
  // The port used to send and receive bcast messages...
};

// ****************************************************************

class Simple_Address_Server : public POA_RtecUDPAdmin::AddrServer
{
  // = DESCRIPTION
  //   A fixed address server
public:
  Simple_Address_Server (const ACE_INET_Addr& address);
  // constructo

  virtual void get_addr (const RtecEventComm::EventHeader& header,
                         RtecUDPAdmin::UDP_Addr& address,
                         CORBA::Environment &ACE_TRY_ENV)
    ACE_THROW_SPEC (());

private:
  RtecUDPAdmin::UDP_Addr address_;
  // The UDP addres...
};

#endif /* EC_BCAST_H */