aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/protocolgats.cpp
blob: f9d9e0418904b8675d48f4c7dd07b6d27f1aff2f (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
/*
 * Copyright (C) 2007-2012 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 );
}