blob: 827eb65b6bd895886551c93371f26f13eea75637 (
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
|
#include "gats/protocolgats.h"
#include "gats/gatsstream.h"
#include <bu/client.h>
#include <bu/sio.h>
using namespace Bu;
Gats::ProtocolGats::ProtocolGats() :
pStream( NULL ),
pUsedClient( NULL )
{
}
Gats::ProtocolGats::~ProtocolGats()
{
delete pStream;
pStream = NULL;
}
void Gats::ProtocolGats::onNewConnection( Bu::Client *pClient )
{
if( pStream == NULL )
{
pStream = new Gats::GatsStream( *pClient );
pUsedClient = pClient;
}
}
void Gats::ProtocolGats::onNewData( Bu::Client *pClient )
{
if( pStream == NULL )
{
pStream = new Gats::GatsStream( *pClient );
pUsedClient = pClient;
}
else if( pClient != pUsedClient )
{
throw Bu::ExceptionBase("ProtocolGats requires that you maintain a "
"1:1 relationship between client and protocol objects.");
}
for(;;)
{
Gats::Object *pObj = pStream->readObject();
if( pObj == NULL )
break;
onNewObject( pClient, pObj );
}
}
void Gats::ProtocolGats::writeObject( Gats::Object *pObj )
{
pStream->writeObject( pObj );
}
|