blob: 6d7d81caef68e4c20990fd6a0c4043014bdcfe09 (
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
|
#include "bu/client.h"
#include "bu/socket.h"
#include <stdlib.h>
#include <errno.h>
#include "bu/exceptions.h"
#include "bu/protocol.h"
/** Read buffer size. */
#define RBS (1024*2)
Bu::Client::Client( Bu::Socket *pSocket ) :
pSocket( pSocket ),
pProto( NULL )
{
}
Bu::Client::~Client()
{
}
void Bu::Client::processInput()
{
char buf[RBS];
size_t nRead, nTotal=0;
for(;;)
{
nRead = pSocket->read( buf, nRead );
if( nRead < 0 )
{
throw Bu::ConnectionException(
excodeReadError,
"Read error: %s",
strerror( errno )
);
}
else if( nRead == 0 )
{
break;
}
else
{
nTotal += nRead;
sReadBuf.append( buf, nRead );
if( !pSocket->canRead() )
break;
}
}
if( nTotal == 0 )
{
pSocket->close();
}
if( pProto && nTotal )
{
pProto->onNewData( this );
}
}
void Bu::Client::setProtocol( Protocol *pProto )
{
this->pProto = pProto;
}
Bu::Protocol *Bu::Client::getProtocol()
{
return pProto;
}
void Bu::Client::clearProtocol()
{
pProto = NULL;
}
Bu::FString &Bu::Client::getInput()
{
return sReadBuf;
}
|