diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-02-17 23:13:29 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-02-17 23:13:29 +0000 |
commit | 20d9ff5d3c4ac09f1f489eef4b0a4297983d9abd (patch) | |
tree | d01655340a0f61ae544e746642653be648f809ae /src | |
parent | 7292af7c475c61920987ec498144a3fd1e90f1e8 (diff) | |
download | libgats-20d9ff5d3c4ac09f1f489eef4b0a4297983d9abd.tar.gz libgats-20d9ff5d3c4ac09f1f489eef4b0a4297983d9abd.tar.bz2 libgats-20d9ff5d3c4ac09f1f489eef4b0a4297983d9abd.tar.xz libgats-20d9ff5d3c4ac09f1f489eef4b0a4297983d9abd.zip |
Ok, php can read and write gats style integers now.
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/int.cpp | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/src/tests/int.cpp b/src/tests/int.cpp index 348e179..c19df9c 100644 --- a/src/tests/int.cpp +++ b/src/tests/int.cpp | |||
@@ -2,14 +2,36 @@ | |||
2 | 2 | ||
3 | #include <bu/sio.h> | 3 | #include <bu/sio.h> |
4 | #include <bu/membuf.h> | 4 | #include <bu/membuf.h> |
5 | #include <stdlib.h> | ||
5 | 6 | ||
6 | using namespace Bu; | 7 | using namespace Bu; |
7 | 8 | ||
8 | int main() | 9 | void hexdump( char *dat, int iSize ) |
9 | { | 10 | { |
10 | MemBuf mb; | 11 | static const char *hex="0123456789ABCDEF"; |
11 | int64_t i = -6; | 12 | printf("----\n"); |
13 | for( int j = 0; j < iSize; j += 8 ) | ||
14 | { | ||
15 | for( int k = j; /*k < iSize &&*/ k < j+8; k++ ) | ||
16 | printf((k<iSize)?"%c%c ":" ", hex[(dat[k]>>4)&0x0F], hex[dat[k]&0x0F] ); | ||
17 | printf("| "); | ||
18 | for( int k = j; k < iSize && k < j+8; k++ ) | ||
19 | printf("%c ", (dat[k]>13&&dat[k]<127)?(dat[k]):('.') ); | ||
20 | printf("\n"); | ||
21 | } | ||
22 | printf("----\n"); | ||
23 | } | ||
12 | 24 | ||
25 | int main( int argc, char *argv[] ) | ||
26 | { | ||
27 | for( int j = 1; j < argc; j++ ) | ||
28 | { | ||
29 | int64_t i = strtoll( argv[j], NULL, 10 ); | ||
30 | MemBuf mb; | ||
31 | Gats::Integer::writePackedInt( mb, i ); | ||
32 | hexdump( mb.getString().getStr(), mb.getString().getSize() ); | ||
33 | } | ||
34 | /* | ||
13 | sio << "Before: " << i << sio.nl; | 35 | sio << "Before: " << i << sio.nl; |
14 | Gats::Integer::writePackedInt( mb, i ); | 36 | Gats::Integer::writePackedInt( mb, i ); |
15 | mb.write("aaa", 3 ); | 37 | mb.write("aaa", 3 ); |
@@ -19,7 +41,7 @@ int main() | |||
19 | char buf[4]; | 41 | char buf[4]; |
20 | buf[mb.read( buf, 3 )] = '\0'; | 42 | buf[mb.read( buf, 3 )] = '\0'; |
21 | sio << "Extra: \"" << buf << "\"" << sio.nl; | 43 | sio << "Extra: \"" << buf << "\"" << sio.nl; |
22 | 44 | */ | |
23 | return 0; | 45 | return 0; |
24 | } | 46 | } |
25 | 47 | ||