blob: bc8f0c510c59e3cd8bf3688757c89c8c6f5df294 (
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
|
/*
* Copyright (C) 2007-2013 Xagasoft, All rights reserved.
*
* This file is part of the libgats library and is released under the
* terms of the license contained in the file LICENSE.
*/
#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 );
pUsedClient->flush();
}
|