blob: 9ff5d1debb747fd6e4d42fb7b6c239067631cf67 (
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
|
/* -*- C++ -*- */
// $Id$
// ===========================================================
//
// = LIBRARY
// TAO/tests/Simple/chat
//
// = FILENAME
// Broadcaster_i.h
//
// = DESCRIPTION
// Defines the implementation header for the Broadcaster interface.
//
// = AUTHOR
// Pradeep Gore <pradeep@cs.wustl.edu>
//
// ===========================================================
#ifndef BROADCASTER_I_H
#define BROADCASTER_I_H
#include "BroadcasterS.h"
#include "ReceiverC.h"
#include "tao/PortableServer/ORB_Manager.h"
#include "ace/Containers.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/SString.h"
class Broadcaster_i : public POA_Broadcaster
{
// = TITLE
// The implementation of the Broadcaster class, which is the
// servant object for the chat server.
public:
// = Initialization and termination methods.
Broadcaster_i (void);
// Constructor.
~Broadcaster_i (void);
// Destructor.
virtual void add (Receiver_ptr receiver,
const char *nickname
TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException,
Broadcaster::CannotAdd
));
// Saves receiver references in a list.
virtual void remove (Receiver_ptr receiver
TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException,
Broadcaster::CannotRemove
));
// Removes receiver references from the list.
virtual void say (Receiver_ptr receiver,
const char *text
TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException
));
// Called by Broadcaster clients to send messages.
public:
TAO_ORB_Manager orb_manager_;
// The ORB manager.
void broadcast (const char* text
TAO_ENV_ARG_DECL);
// Broadcasts the text to all registered clients.
class Receiver_Data
{
// = TITLE
// Per-client info.
//
// = DESCRIPTION
// Saves the Receiver_var and user nickname.
public:
int operator == (const Receiver_Data &receiver_data) const;
// The == op required by the ACE_Unbounded set.
Receiver_var receiver_;
// Stores the receiver reference.
ACE_CString nickname_;
// Stores the client nickname.
};
typedef ACE_Unbounded_Set<Receiver_Data>
RECEIVER_SET;
typedef ACE_Unbounded_Set_Iterator<Receiver_Data>
RECEIVER_SET_ITERATOR;
RECEIVER_SET receiver_set_;
// Set of registered clients.
};
#endif /* BROADCASTER_I_H */
|