aboutsummaryrefslogtreecommitdiff
path: root/src/client.cpp
blob: 0e48285305ada679cc5e542b35c0db554d2249ef (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
#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::processOutput()
{
	if( sWriteBuf.getSize() > 0 )
	{
		pSocket->write( sWriteBuf.getStr(), sWriteBuf.getSize() );
		sWriteBuf.clear();
	}
}

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;
}

Bu::FString &Bu::Client::getOutput()
{
	return sWriteBuf;
}

bool Bu::Client::isOpen()
{
	if( !pSocket ) return false;
	return pSocket->isOpen();
}

void Bu::Client::write( const char *pData, int nBytes )
{
	sWriteBuf.append( pData, nBytes );
}