diff options
Diffstat (limited to 'src/tests')
| -rw-r--r-- | src/tests/dump.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/tests/dump.cpp b/src/tests/dump.cpp new file mode 100644 index 0000000..e0dcb52 --- /dev/null +++ b/src/tests/dump.cpp | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | #include <bu/sio.h> | ||
| 2 | #include <bu/file.h> | ||
| 3 | #include <gats/gatsstream.h> | ||
| 4 | #include <gats/types.h> | ||
| 5 | |||
| 6 | using namespace Bu; | ||
| 7 | |||
| 8 | int main( int argc, char *argv[] ) | ||
| 9 | { | ||
| 10 | File fIn( argv[1], File::Read ); | ||
| 11 | Gats::GatsStream gsIn( fIn ); | ||
| 12 | |||
| 13 | for(;;) | ||
| 14 | { | ||
| 15 | sio << "Reading from file position: " << fIn.tell() << sio.nl; | ||
| 16 | Gats::Object *pObj = gsIn.readObject(); | ||
| 17 | if( !pObj ) | ||
| 18 | { | ||
| 19 | if( gsIn.hasReadBuffer() ) | ||
| 20 | { | ||
| 21 | sio << "Premature end of stream detected, have " | ||
| 22 | << gsIn.getReadBufferSize() << "b." << sio.nl; | ||
| 23 | } | ||
| 24 | return 0; | ||
| 25 | } | ||
| 26 | |||
| 27 | sio << *pObj << sio.nl; | ||
| 28 | } | ||
| 29 | } | ||
| 30 | |||
