2001-10-06 14:13:28 +00:00
|
|
|
#include "CProtocolUtil.h"
|
|
|
|
#include "IInputStream.h"
|
|
|
|
#include "IOutputStream.h"
|
2001-10-14 14:56:06 +00:00
|
|
|
#include "CLog.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include <cctype>
|
|
|
|
#include <cstring>
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// CProtocolUtil
|
|
|
|
//
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CProtocolUtil::writef(IOutputStream* stream, const char* fmt, ...)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
assert(stream != NULL);
|
|
|
|
assert(fmt != NULL);
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "writef(%s)", fmt));
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
// determine total size to write
|
|
|
|
va_start(args, fmt);
|
|
|
|
UInt32 count = getLength(fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
// done if nothing to write
|
|
|
|
if (count == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill buffer
|
|
|
|
UInt8* buffer = new UInt8[count];
|
|
|
|
va_start(args, fmt);
|
|
|
|
writef(buffer, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
// write buffer
|
|
|
|
UInt8* scan = buffer;
|
|
|
|
while (count > 0) {
|
2001-10-14 14:56:06 +00:00
|
|
|
const UInt32 n = stream->write(scan, count);
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "wrote %d of %d bytes", n, count));
|
2001-10-06 14:13:28 +00:00
|
|
|
count -= n;
|
|
|
|
scan += n;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] buffer;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CProtocolUtil::readf(IInputStream* stream, const char* fmt, ...)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
assert(stream != NULL);
|
|
|
|
assert(fmt != NULL);
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "readf(%s)", fmt));
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
va_list args;
|
2001-10-14 14:56:06 +00:00
|
|
|
va_start(args, fmt);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// begin scanning
|
|
|
|
while (*fmt) {
|
|
|
|
if (*fmt == '%') {
|
|
|
|
// format specifier. determine argument size.
|
|
|
|
++fmt;
|
|
|
|
UInt32 len = eatLength(&fmt);
|
|
|
|
switch (*fmt) {
|
2002-04-29 14:40:01 +00:00
|
|
|
case 'i': {
|
2001-10-06 14:13:28 +00:00
|
|
|
// check for valid length
|
|
|
|
assert(len == 1 || len == 2 || len == 4);
|
|
|
|
|
|
|
|
// read the data
|
|
|
|
UInt8 buffer[4];
|
|
|
|
read(stream, buffer, len);
|
|
|
|
|
|
|
|
// convert it
|
2002-04-27 18:06:40 +00:00
|
|
|
void* v = va_arg(args, void*);
|
2001-10-06 14:13:28 +00:00
|
|
|
switch (len) {
|
2002-04-29 14:40:01 +00:00
|
|
|
case 1:
|
2001-10-06 14:13:28 +00:00
|
|
|
// 1 byte integer
|
2002-04-27 18:06:40 +00:00
|
|
|
*reinterpret_cast<UInt8*>(v) = buffer[0];
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "readf: read %d byte integer: %d (0x%x)", len, *reinterpret_cast<UInt8*>(v), *reinterpret_cast<UInt8*>(v)));
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case 2:
|
2001-10-06 14:13:28 +00:00
|
|
|
// 2 byte integer
|
2002-04-27 18:06:40 +00:00
|
|
|
*reinterpret_cast<UInt16*>(v) =
|
2002-05-22 17:08:37 +00:00
|
|
|
static_cast<UInt16>(
|
2002-04-27 18:06:40 +00:00
|
|
|
(static_cast<UInt16>(buffer[0]) << 8) |
|
2002-05-22 17:08:37 +00:00
|
|
|
static_cast<UInt16>(buffer[1]));
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "readf: read %d byte integer: %d (0x%x)", len, *reinterpret_cast<UInt16*>(v), *reinterpret_cast<UInt16*>(v)));
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case 4:
|
2001-10-06 14:13:28 +00:00
|
|
|
// 4 byte integer
|
2002-04-27 18:06:40 +00:00
|
|
|
*reinterpret_cast<UInt32*>(v) =
|
|
|
|
(static_cast<UInt32>(buffer[0]) << 24) |
|
|
|
|
(static_cast<UInt32>(buffer[1]) << 16) |
|
|
|
|
(static_cast<UInt32>(buffer[2]) << 8) |
|
|
|
|
static_cast<UInt32>(buffer[3]);
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "readf: read %d byte integer: %d (0x%x)", len, *reinterpret_cast<UInt32*>(v), *reinterpret_cast<UInt32*>(v)));
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case 's': {
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(len == 0);
|
|
|
|
|
|
|
|
// read the string length
|
|
|
|
UInt8 buffer[128];
|
|
|
|
read(stream, buffer, 4);
|
|
|
|
UInt32 len = (static_cast<UInt32>(buffer[0]) << 24) |
|
|
|
|
(static_cast<UInt32>(buffer[1]) << 16) |
|
|
|
|
(static_cast<UInt32>(buffer[2]) << 8) |
|
|
|
|
static_cast<UInt32>(buffer[3]);
|
|
|
|
|
|
|
|
// use a fixed size buffer if its big enough
|
|
|
|
const bool useFixed = (len <= sizeof(buffer));
|
|
|
|
|
|
|
|
// allocate a buffer to read the data
|
|
|
|
UInt8* sBuffer;
|
|
|
|
if (useFixed) {
|
|
|
|
sBuffer = buffer;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sBuffer = new UInt8[len];
|
|
|
|
}
|
|
|
|
|
|
|
|
// read the data
|
|
|
|
try {
|
|
|
|
read(stream, sBuffer, len);
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
if (!useFixed) {
|
|
|
|
delete[] sBuffer;
|
|
|
|
}
|
|
|
|
throw;
|
|
|
|
}
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "readf: read %d byte string: %.*s", len, len, sBuffer));
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// save the data
|
|
|
|
CString* dst = va_arg(args, CString*);
|
|
|
|
dst->assign((const char*)sBuffer, len);
|
|
|
|
|
|
|
|
// release the buffer
|
|
|
|
if (!useFixed) {
|
|
|
|
delete[] sBuffer;
|
|
|
|
}
|
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case '%':
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(len == 0);
|
|
|
|
break;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
default:
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(0 && "invalid format specifier");
|
|
|
|
}
|
|
|
|
|
|
|
|
// next format character
|
|
|
|
++fmt;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// read next character
|
|
|
|
char buffer[1];
|
|
|
|
read(stream, buffer, 1);
|
|
|
|
|
|
|
|
// verify match
|
|
|
|
if (buffer[0] != *fmt) {
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "readf: format mismatch: %c vs %c", *fmt, buffer[0]));
|
2001-10-06 14:13:28 +00:00
|
|
|
throw XIOReadMismatch();
|
|
|
|
}
|
|
|
|
|
|
|
|
// next format character
|
|
|
|
++fmt;
|
|
|
|
}
|
|
|
|
}
|
2001-10-14 14:56:06 +00:00
|
|
|
|
|
|
|
va_end(args);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
UInt32
|
2002-06-17 13:31:21 +00:00
|
|
|
CProtocolUtil::getLength(const char* fmt, va_list args)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
UInt32 n = 0;
|
|
|
|
while (*fmt) {
|
|
|
|
if (*fmt == '%') {
|
|
|
|
// format specifier. determine argument size.
|
|
|
|
++fmt;
|
|
|
|
UInt32 len = eatLength(&fmt);
|
|
|
|
switch (*fmt) {
|
2002-04-29 14:40:01 +00:00
|
|
|
case 'i':
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(len == 1 || len == 2 || len == 4);
|
|
|
|
(void)va_arg(args, UInt32);
|
|
|
|
break;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case 's':
|
2001-11-25 18:32:41 +00:00
|
|
|
assert(len == 0);
|
|
|
|
len = (va_arg(args, CString*))->size() + 4;
|
|
|
|
(void)va_arg(args, UInt8*);
|
|
|
|
break;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case 'S':
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(len == 0);
|
|
|
|
len = va_arg(args, UInt32) + 4;
|
|
|
|
(void)va_arg(args, UInt8*);
|
|
|
|
break;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case '%':
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(len == 0);
|
|
|
|
len = 1;
|
|
|
|
break;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
default:
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(0 && "invalid format specifier");
|
|
|
|
}
|
|
|
|
|
|
|
|
// accumulate size
|
|
|
|
n += len;
|
|
|
|
++fmt;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// regular character
|
|
|
|
++n;
|
|
|
|
++fmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CProtocolUtil::writef(void* buffer, const char* fmt, va_list args)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
UInt8* dst = reinterpret_cast<UInt8*>(buffer);
|
|
|
|
|
|
|
|
while (*fmt) {
|
|
|
|
if (*fmt == '%') {
|
|
|
|
// format specifier. determine argument size.
|
|
|
|
++fmt;
|
|
|
|
UInt32 len = eatLength(&fmt);
|
|
|
|
switch (*fmt) {
|
2002-04-29 14:40:01 +00:00
|
|
|
case 'i': {
|
2001-10-06 14:13:28 +00:00
|
|
|
const UInt32 v = va_arg(args, UInt32);
|
|
|
|
switch (len) {
|
2002-04-29 14:40:01 +00:00
|
|
|
case 1:
|
2001-10-06 14:13:28 +00:00
|
|
|
// 1 byte integer
|
|
|
|
*dst++ = static_cast<UInt8>(v & 0xff);
|
|
|
|
break;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case 2:
|
2001-10-06 14:13:28 +00:00
|
|
|
// 2 byte integer
|
|
|
|
*dst++ = static_cast<UInt8>((v >> 8) & 0xff);
|
|
|
|
*dst++ = static_cast<UInt8>( v & 0xff);
|
|
|
|
break;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case 4:
|
2001-10-06 14:13:28 +00:00
|
|
|
// 4 byte integer
|
|
|
|
*dst++ = static_cast<UInt8>((v >> 24) & 0xff);
|
|
|
|
*dst++ = static_cast<UInt8>((v >> 16) & 0xff);
|
|
|
|
*dst++ = static_cast<UInt8>((v >> 8) & 0xff);
|
|
|
|
*dst++ = static_cast<UInt8>( v & 0xff);
|
|
|
|
break;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
default:
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(0 && "invalid integer format length");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case 's': {
|
2001-11-25 18:32:41 +00:00
|
|
|
assert(len == 0);
|
|
|
|
const CString* src = va_arg(args, CString*);
|
|
|
|
const UInt32 len = (src != NULL) ? src->size() : 0;
|
|
|
|
*dst++ = static_cast<UInt8>((len >> 24) & 0xff);
|
|
|
|
*dst++ = static_cast<UInt8>((len >> 16) & 0xff);
|
|
|
|
*dst++ = static_cast<UInt8>((len >> 8) & 0xff);
|
|
|
|
*dst++ = static_cast<UInt8>( len & 0xff);
|
|
|
|
if (len != 0) {
|
|
|
|
memcpy(dst, src->data(), len);
|
|
|
|
dst += len;
|
|
|
|
}
|
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2001-11-25 18:32:41 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case 'S': {
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(len == 0);
|
|
|
|
const UInt32 len = va_arg(args, UInt32);
|
|
|
|
const UInt8* src = va_arg(args, UInt8*);
|
|
|
|
*dst++ = static_cast<UInt8>((len >> 24) & 0xff);
|
|
|
|
*dst++ = static_cast<UInt8>((len >> 16) & 0xff);
|
|
|
|
*dst++ = static_cast<UInt8>((len >> 8) & 0xff);
|
|
|
|
*dst++ = static_cast<UInt8>( len & 0xff);
|
|
|
|
memcpy(dst, src, len);
|
|
|
|
dst += len;
|
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case '%':
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(len == 0);
|
|
|
|
*dst++ = '%';
|
|
|
|
break;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
default:
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(0 && "invalid format specifier");
|
|
|
|
}
|
|
|
|
|
|
|
|
// next format character
|
|
|
|
++fmt;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// copy regular character
|
|
|
|
*dst++ = *fmt++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
UInt32
|
2002-06-17 13:31:21 +00:00
|
|
|
CProtocolUtil::eatLength(const char** pfmt)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
const char* fmt = *pfmt;
|
|
|
|
UInt32 n = 0;
|
|
|
|
for (;;) {
|
|
|
|
UInt32 d;
|
|
|
|
switch (*fmt) {
|
2002-04-29 14:40:01 +00:00
|
|
|
case '0': d = 0; break;
|
|
|
|
case '1': d = 1; break;
|
|
|
|
case '2': d = 2; break;
|
|
|
|
case '3': d = 3; break;
|
|
|
|
case '4': d = 4; break;
|
|
|
|
case '5': d = 5; break;
|
|
|
|
case '6': d = 6; break;
|
|
|
|
case '7': d = 7; break;
|
|
|
|
case '8': d = 8; break;
|
|
|
|
case '9': d = 9; break;
|
|
|
|
default: *pfmt = fmt; return n;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
n = 10 * n + d;
|
|
|
|
++fmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CProtocolUtil::read(IInputStream* stream, void* vbuffer, UInt32 count)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
assert(stream != NULL);
|
|
|
|
assert(vbuffer != NULL);
|
|
|
|
|
|
|
|
UInt8* buffer = reinterpret_cast<UInt8*>(vbuffer);
|
|
|
|
while (count > 0) {
|
|
|
|
// read more
|
2002-06-26 16:31:48 +00:00
|
|
|
UInt32 n = stream->read(buffer, count, -1.0);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// bail if stream has hungup
|
|
|
|
if (n == 0) {
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "unexpected disconnect in readf(), %d bytes left", count));
|
2001-10-06 14:13:28 +00:00
|
|
|
throw XIOEndOfStream();
|
|
|
|
}
|
|
|
|
|
|
|
|
// prepare for next read
|
|
|
|
buffer += n;
|
|
|
|
count -= n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// XIOReadMismatch
|
|
|
|
//
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
|
|
|
XIOReadMismatch::getWhat() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-07-25 17:52:40 +00:00
|
|
|
return format("XIOReadMismatch", "CProtocolUtil::readf() mismatch");
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|