diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 16:25:22 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 16:25:22 +0000 |
| commit | 74dd68ad611d15abf16a65c36a7cfd3f4492930a (patch) | |
| tree | 843fed9ba6bb03253a01314afc3b1dfbb2dfd26c /c++-libbu++/src/tests/dump.cpp | |
| parent | d9b407475ae3ebe434b29d9eabdd7d4416e17881 (diff) | |
| download | libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.tar.gz libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.tar.bz2 libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.tar.xz libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.zip | |
Made the repo less libbu++-centric.
Diffstat (limited to 'c++-libbu++/src/tests/dump.cpp')
| -rw-r--r-- | c++-libbu++/src/tests/dump.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/c++-libbu++/src/tests/dump.cpp b/c++-libbu++/src/tests/dump.cpp new file mode 100644 index 0000000..e0dcb52 --- /dev/null +++ b/c++-libbu++/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 | |||
