diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-11-01 23:29:18 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-11-01 23:29:18 +0000 |
commit | 192cc37d6fa002446012855c24eca0a37e1afd7e (patch) | |
tree | 88c178208f2e9ea651829a630652e1809758f9e3 /src/gatsstream.cpp | |
parent | 2cd1a89109651a19138aec9988d765208d7709e5 (diff) | |
download | libgats-192cc37d6fa002446012855c24eca0a37e1afd7e.tar.gz libgats-192cc37d6fa002446012855c24eca0a37e1afd7e.tar.bz2 libgats-192cc37d6fa002446012855c24eca0a37e1afd7e.tar.xz libgats-192cc37d6fa002446012855c24eca0a37e1afd7e.zip |
Removed extraneous debugging.
Diffstat (limited to 'src/gatsstream.cpp')
-rw-r--r-- | src/gatsstream.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gatsstream.cpp b/src/gatsstream.cpp index 71372db..3e9b211 100644 --- a/src/gatsstream.cpp +++ b/src/gatsstream.cpp | |||
@@ -7,9 +7,9 @@ | |||
7 | #include <arpa/inet.h> | 7 | #include <arpa/inet.h> |
8 | #endif | 8 | #endif |
9 | 9 | ||
10 | #include <bu/sio.h> | 10 | // #include <bu/sio.h> |
11 | #include <bu/nullstream.h> | 11 | #include <bu/nullstream.h> |
12 | using namespace Bu; | 12 | // using namespace Bu; |
13 | 13 | ||
14 | Gats::GatsStream::GatsStream( Bu::Stream &rStream ) : | 14 | Gats::GatsStream::GatsStream( Bu::Stream &rStream ) : |
15 | rStream( rStream ) | 15 | rStream( rStream ) |
@@ -40,40 +40,40 @@ Gats::Object *Gats::GatsStream::readObject() | |||
40 | 40 | ||
41 | uint8_t uVer; | 41 | uint8_t uVer; |
42 | qbRead.peek( &uVer, 1 ); | 42 | qbRead.peek( &uVer, 1 ); |
43 | sio << "Gats::GatsStream::readObject(): Packet version: " << (int)uVer << sio.nl; | 43 | // sio << "Gats::GatsStream::readObject(): Packet version: " << (int)uVer << sio.nl; |
44 | 44 | ||
45 | int32_t iSize; | 45 | int32_t iSize; |
46 | qbRead.peek( &iSize, 4, 1 ); | 46 | qbRead.peek( &iSize, 4, 1 ); |
47 | iSize = ntohl( iSize ); | 47 | iSize = ntohl( iSize ); |
48 | sio << "Gats::GatsStream::readObject(): Header read, looking for " << iSize << "b, we have " << qbRead.getSize() << "b." << sio.nl; | 48 | // sio << "Gats::GatsStream::readObject(): Header read, looking for " << iSize << "b, we have " << qbRead.getSize() << "b." << sio.nl; |
49 | while( qbRead.getSize() < iSize ) | 49 | while( qbRead.getSize() < iSize ) |
50 | { | 50 | { |
51 | int32_t iRead = iSize - qbRead.getSize(); | 51 | int32_t iRead = iSize - qbRead.getSize(); |
52 | if( iRead > 1500 ) | 52 | if( iRead > 1500 ) |
53 | iRead = 1500; | 53 | iRead = 1500; |
54 | sio << "Gats::GatsStream::readObject(): Attempting to read " << iRead << "b." << sio.nl; | 54 | // sio << "Gats::GatsStream::readObject(): Attempting to read " << iRead << "b." << sio.nl; |
55 | int32_t iReal = rStream.read( buf, iRead ); | 55 | int32_t iReal = rStream.read( buf, iRead ); |
56 | sio << "Gats::GatsStream::readObject(): Read " << iReal << "b." << sio.nl; | 56 | // sio << "Gats::GatsStream::readObject(): Read " << iReal << "b." << sio.nl; |
57 | qbRead.write( buf, iReal ); | 57 | qbRead.write( buf, iReal ); |
58 | if( iReal < iRead ) | 58 | if( iReal < iRead ) |
59 | { | 59 | { |
60 | sio << "Gats::GatsStream::readObject(): Insufficient data read in block, bailing on read." << sio.nl; | 60 | // sio << "Gats::GatsStream::readObject(): Insufficient data read in block, bailing on read." << sio.nl; |
61 | return NULL; | 61 | return NULL; |
62 | } | 62 | } |
63 | } | 63 | } |
64 | 64 | ||
65 | if( qbRead.getSize() < iSize ) | 65 | if( qbRead.getSize() < iSize ) |
66 | { | 66 | { |
67 | sio << "Gats::GatsStream::readObject(): Somehow, we still don't have enough data, bailing." << sio.nl; | 67 | // sio << "Gats::GatsStream::readObject(): Somehow, we still don't have enough data, bailing." << sio.nl; |
68 | return NULL; | 68 | return NULL; |
69 | } | 69 | } |
70 | 70 | ||
71 | sio << "Gats::GatsStream::readObject(): We have " << qbRead.getSize() << "b of " << iSize << "b, time to read the object." << sio.nl; | 71 | // sio << "Gats::GatsStream::readObject(): We have " << qbRead.getSize() << "b of " << iSize << "b, time to read the object." << sio.nl; |
72 | 72 | ||
73 | qbRead.seek( 5 ); | 73 | qbRead.seek( 5 ); |
74 | Gats::Object *pObj = Gats::Object::read( qbRead ); | 74 | Gats::Object *pObj = Gats::Object::read( qbRead ); |
75 | 75 | ||
76 | sio << "Gats::GatsStream::readObject(): Read completed, there are " << qbRead.getSize() << "b left in the buffer." << sio.nl; | 76 | // sio << "Gats::GatsStream::readObject(): Read completed, there are " << qbRead.getSize() << "b left in the buffer." << sio.nl; |
77 | return pObj; | 77 | return pObj; |
78 | } | 78 | } |
79 | 79 | ||