fixed NormCmdCCMsg item parsing and iteration per issue reported by CrunchyJohnHaven

pull/101/head
bebopagogo 2026-05-23 20:48:17 -04:00
parent fcd2554051
commit 0c4b130c7b
4 changed files with 136 additions and 111 deletions

View File

@ -92,6 +92,30 @@ ssize_t NormWrite(NormSocketHandle normSocket, const void* buf, size_t nbyte);
int NormFlush(NormSocketHandle normSocket); int NormFlush(NormSocketHandle normSocket);
/*
// These calls _will_ be used for file/data object and message-stream delivery. (Sketching the calls out for now)
NormObject NormSendFile(NormSocketHandle normSocket,
const char* filePath,
const char* infoPtr,
ssize_t infoLen);
NormObject NormSendData(NormSocketHandle normSocket,
const char* data, // NormSocket will copy the "data" unlike NORM low-level API
ssize_t nbyte,
const char* infoPtr,
ssize_t infoLen);
// Notification events will indicate receipt of file/data objects. Are additional NormSocket API calls
// needed to manage receipt?
ssize_t NormSendMsg(NormSocketHandle normSocket, const char* data, ssize_t nbyte, bool flush);
ssize_t NormRecvMsg(NormSocketHandle normSocket, const char* data, ssize_t nbyte);
*/
// NormSocket helper functions // NormSocket helper functions
void NormSetSocketUserData(NormSocketHandle normSocket, const void* userData); void NormSetSocketUserData(NormSocketHandle normSocket, const void* userData);

View File

@ -69,12 +69,12 @@ inline UINT16 NormQuantizeLoss(double lossFraction)
lossFraction = MIN(lossFraction, 65535.0); lossFraction = MIN(lossFraction, 65535.0);
return (UINT16)lossFraction; return (UINT16)lossFraction;
} // end NormQuantizeLossFraction() } // end NormQuantizeLossFraction()
inline double NormUnquantizeLoss(UINT16 lossQuantized) inline double NormUnquantizeLoss(UINT16 lossQuantized)
{ {
return (((double)lossQuantized) / 65535.0); return (((double)lossQuantized) / 65535.0);
} // end NormUnquantizeLossFraction() } // end NormUnquantizeLossFraction()
// Extended precision Norm loss quantize/unquantize with // Extended precision Norm loss quantize/unquantize with
// 32-bit precision (needed for low BER, high bandwidth*delay) // 32-bit precision (needed for low BER, high bandwidth*delay)
inline UINT32 NormQuantizeLoss32(double lossFraction) inline UINT32 NormQuantizeLoss32(double lossFraction)

@ -1 +1 @@
Subproject commit a28606945f6b507760548b242b6706b51b5b69d3 Subproject commit e5ac157eb61e991c74acfe39e2febe8c09e187dc

View File

@ -4,10 +4,10 @@
NormHeaderExtension::NormHeaderExtension() NormHeaderExtension::NormHeaderExtension()
: buffer(NULL) : buffer(NULL)
{ {
} }
NormMsg::NormMsg() NormMsg::NormMsg()
: length(8), header_length(8), header_length_base(8) : length(8), header_length(8), header_length_base(8)
{ {
SetType(INVALID); SetType(INVALID);
@ -19,8 +19,8 @@ bool NormMsg::InitFromBuffer(UINT16 msgLength)
header_length = GetHeaderLength(); header_length = GetHeaderLength();
// "header_length_base" is type dependent // "header_length_base" is type dependent
switch (GetType()) switch (GetType())
{ {
// for INFO, DATA, and // for INFO, DATA, and
case INFO: case INFO:
header_length_base = 16; header_length_base = 16;
break; break;
@ -54,8 +54,8 @@ bool NormMsg::InitFromBuffer(UINT16 msgLength)
} }
case NormCmdMsg::EOT: case NormCmdMsg::EOT:
case NormCmdMsg::REPAIR_ADV: case NormCmdMsg::REPAIR_ADV:
case NormCmdMsg::ACK_REQ: case NormCmdMsg::ACK_REQ:
case NormCmdMsg::APPLICATION: case NormCmdMsg::APPLICATION:
header_length_base = 16; header_length_base = 16;
break; break;
case NormCmdMsg::CC: case NormCmdMsg::CC:
@ -74,7 +74,7 @@ bool NormMsg::InitFromBuffer(UINT16 msgLength)
case REPORT: case REPORT:
header_length_base= 8; header_length_base= 8;
break; break;
default: default:
PLOG(PL_FATAL, "NormMsg::InitFromBuffer() invalid message type!\n"); PLOG(PL_FATAL, "NormMsg::InitFromBuffer() invalid message type!\n");
return false; return false;
@ -100,7 +100,7 @@ void NormMsg::Display() const
bool NormMsg::HasExtension(NormHeaderExtension::Type extType) bool NormMsg::HasExtension(NormHeaderExtension::Type extType)
{ {
NormHeaderExtension ext; NormHeaderExtension ext;
while (GetNextExtension(ext)) while (GetNextExtension(ext))
{ {
@ -110,15 +110,15 @@ bool NormMsg::HasExtension(NormHeaderExtension::Type extType)
return false; return false;
} // end NormMsg::HasExtension() } // end NormMsg::HasExtension()
bool NormCmdCCMsg::GetCCNode(NormNodeId nodeId, bool NormCmdCCMsg::GetCCNode(NormNodeId nodeId,
UINT8& flags, UINT8& flags,
UINT8& rtt, UINT8& rtt,
UINT16& rate) const UINT16& rate) const
{ {
UINT16 cmdLength = length/4; UINT16 cmdLength = length/4;
UINT16 offset = header_length/4; UINT16 offset = header_length/4;
nodeId = htonl(nodeId); nodeId = htonl(nodeId);
while (offset < cmdLength) while (offset + (CC_ITEM_SIZE/4) <= cmdLength)
{ {
if (nodeId == buffer[offset]) if (nodeId == buffer[offset])
{ {
@ -127,26 +127,26 @@ bool NormCmdCCMsg::GetCCNode(NormNodeId nodeId,
rtt = ((UINT8*)ptr)[CC_RTT_OFFSET]; rtt = ((UINT8*)ptr)[CC_RTT_OFFSET];
rate = ntohs(((UINT16*)ptr)[CC_RATE_OFFSET]); rate = ntohs(((UINT16*)ptr)[CC_RATE_OFFSET]);
return true; return true;
} }
offset += CC_ITEM_SIZE/4; offset += CC_ITEM_SIZE/4;
} }
return false; return false;
} // end NormCmdCCMsg::GetCCNode() } // end NormCmdCCMsg::GetCCNode()
NormCmdCCMsg::Iterator::Iterator(const NormCmdCCMsg& msg) NormCmdCCMsg::Iterator::Iterator(const NormCmdCCMsg& msg)
: cc_cmd(msg), offset(0) : cc_cmd(msg), offset(msg.GetHeaderLength())
{ {
} }
bool NormCmdCCMsg::Iterator::GetNextNode(NormNodeId& nodeId, bool NormCmdCCMsg::Iterator::GetNextNode(NormNodeId& nodeId,
UINT8& flags, UINT8& flags,
UINT8& rtt, UINT8& rtt,
UINT16& rate) UINT16& rate)
{ {
if ((offset+CC_ITEM_SIZE) > cc_cmd.GetLength()) return false; if ((offset+CC_ITEM_SIZE) > cc_cmd.GetLength()) return false;
const UINT32* ptr = cc_cmd.buffer + cc_cmd.header_length/4; const UINT32* ptr = cc_cmd.buffer + offset/4;
nodeId = ntohl(ptr[offset/4]); nodeId = ntohl(ptr[offset/4]);
flags = ((UINT8*)ptr)[offset+CC_FLAGS_OFFSET]; flags = ((UINT8*)ptr)[offset+CC_FLAGS_OFFSET];
rtt = ((UINT8*)ptr)[offset+CC_RTT_OFFSET]; rtt = ((UINT8*)ptr)[offset+CC_RTT_OFFSET];
rate = ntohs(((UINT16*)ptr)[(offset/2)+CC_RATE_OFFSET]); rate = ntohs(((UINT16*)ptr)[(offset/2)+CC_RATE_OFFSET]);
@ -154,6 +154,7 @@ bool NormCmdCCMsg::Iterator::GetNextNode(NormNodeId& nodeId,
return true; return true;
} // end NormCmdCCMsg::Iterator::GetNextNode() } // end NormCmdCCMsg::Iterator::GetNextNode()
NormRepairRequest::NormRepairRequest() NormRepairRequest::NormRepairRequest()
: form(INVALID), flags(0), length(0), buffer(NULL), buffer_len(0) : form(INVALID), flags(0), length(0), buffer(NULL), buffer_len(0)
{ {
@ -161,7 +162,7 @@ NormRepairRequest::NormRepairRequest()
bool NormRepairRequest::AppendRepairItem(UINT8 fecId, bool NormRepairRequest::AppendRepairItem(UINT8 fecId,
UINT8 fecM, UINT8 fecM,
const NormObjectId& objectId, const NormObjectId& objectId,
const NormBlockId& blockId, const NormBlockId& blockId,
UINT16 blockLen, UINT16 blockLen,
UINT16 symbolId) UINT16 symbolId)
@ -173,7 +174,7 @@ bool NormRepairRequest::AppendRepairItem(UINT8 fecId,
PLOG(PL_TRACE, "NormRepairRequest::AppendRepairItem(fecId>%d obj>%hu blk>%lu seg>%hu) ...\n", PLOG(PL_TRACE, "NormRepairRequest::AppendRepairItem(fecId>%d obj>%hu blk>%lu seg>%hu) ...\n",
fecId, (UINT16)objectId, (unsigned long)blockId.GetValue(), (UINT16)symbolId); fecId, (UINT16)objectId, (unsigned long)blockId.GetValue(), (UINT16)symbolId);
ASSERT(NormPayloadId::IsValid(fecId)); ASSERT(NormPayloadId::IsValid(fecId));
UINT16 itemLength = RepairItemLength(fecId); UINT16 itemLength = RepairItemLength(fecId);
if (buffer_len >= (ITEM_LIST_OFFSET+length+itemLength)) if (buffer_len >= (ITEM_LIST_OFFSET+length+itemLength))
{ {
@ -194,11 +195,11 @@ bool NormRepairRequest::AppendRepairItem(UINT8 fecId,
bool NormRepairRequest::AppendRepairRange(UINT8 fecId, bool NormRepairRequest::AppendRepairRange(UINT8 fecId,
UINT8 fecM, UINT8 fecM,
const NormObjectId& startObjectId, const NormObjectId& startObjectId,
const NormBlockId& startBlockId, const NormBlockId& startBlockId,
UINT16 startBlockLen, UINT16 startBlockLen,
UINT16 startSymbolId, UINT16 startSymbolId,
const NormObjectId& endObjectId, const NormObjectId& endObjectId,
const NormBlockId& endBlockId, const NormBlockId& endBlockId,
UINT16 endBlockLen, UINT16 endBlockLen,
UINT16 endSymbolId) UINT16 endSymbolId)
@ -235,7 +236,7 @@ bool NormRepairRequest::AppendRepairRange(UINT8 fecId,
bool NormRepairRequest::AppendErasureCount(UINT8 fecId, bool NormRepairRequest::AppendErasureCount(UINT8 fecId,
UINT8 fecM, UINT8 fecM,
const NormObjectId& objectId, const NormObjectId& objectId,
const NormBlockId& blockId, const NormBlockId& blockId,
UINT16 blockLen, UINT16 blockLen,
UINT16 erasureCount) UINT16 erasureCount)
@ -280,7 +281,7 @@ UINT16 NormRepairRequest::Unpack(const UINT32* bufferPtr, UINT16 bufferLen)
buffer = (UINT32*)bufferPtr; buffer = (UINT32*)bufferPtr;
buffer_len = bufferLen; buffer_len = bufferLen;
length = 0; length = 0;
// Make sure there's at least a header // Make sure there's at least a header
if (buffer_len >= ITEM_LIST_OFFSET) if (buffer_len >= ITEM_LIST_OFFSET)
{ {
@ -292,7 +293,7 @@ UINT16 NormRepairRequest::Unpack(const UINT32* bufferPtr, UINT16 bufferLen)
// Badly formed message // Badly formed message
return 0; return 0;
} }
else else
{ {
return (ITEM_LIST_OFFSET+length); return (ITEM_LIST_OFFSET+length);
} }
@ -317,7 +318,7 @@ UINT16 NormRepairRequest::RetrieveRepairItem(UINT8 fecM,
*fecId = ((UINT8*)ptr)[FEC_ID_OFFSET]; *fecId = ((UINT8*)ptr)[FEC_ID_OFFSET];
ASSERT(NormPayloadId::IsValid(*fecId)); ASSERT(NormPayloadId::IsValid(*fecId));
UINT16 itemLength = RepairItemLength(*fecId); UINT16 itemLength = RepairItemLength(*fecId);
if (length < (offset + RepairItemLength(*fecId))) return 0; if (length < (offset + RepairItemLength(*fecId))) return 0;
*objectId = ntohs(((UINT16*)ptr)[OBJ_ID_OFFSET]); *objectId = ntohs(((UINT16*)ptr)[OBJ_ID_OFFSET]);
NormPayloadId payloadId(*fecId, fecM, ptr + 1); NormPayloadId payloadId(*fecId, fecM, ptr + 1);
*blockId = payloadId.GetFecBlockId(); *blockId = payloadId.GetFecBlockId();
@ -363,9 +364,9 @@ void LogRepairContent(const UINT32* buffer, UINT16 bufferLen, UINT8 fecId, UINT8
NormRepairRequest req; NormRepairRequest req;
UINT16 requestLength = 0; UINT16 requestLength = 0;
while ((requestLength = req.Unpack(buffer, bufferLen))) while ((requestLength = req.Unpack(buffer, bufferLen)))
{ {
// Point "buffer" to next request and adjust "bufferLen" // Point "buffer" to next request and adjust "bufferLen"
buffer += (requestLength/4); buffer += (requestLength/4);
bufferLen -= requestLength; bufferLen -= requestLength;
req.Log(fecId, fecM); req.Log(fecId, fecM);
} }
@ -404,7 +405,7 @@ void NormRepairRequest::Log(UINT8 fecId, UINT8 fecM) const
NormMessageQueue::NormMessageQueue() NormMessageQueue::NormMessageQueue()
: head(NULL), tail(NULL) : head(NULL), tail(NULL)
{ {
} }
NormMessageQueue::~NormMessageQueue() NormMessageQueue::~NormMessageQueue()
@ -419,7 +420,7 @@ void NormMessageQueue::Destroy()
{ {
head = next->next; head = next->next;
delete next; delete next;
} }
} // end NormMessageQueue::Destroy() } // end NormMessageQueue::Destroy()
@ -441,7 +442,7 @@ void NormMessageQueue::Append(NormMsg* msg)
head = msg; head = msg;
msg->next = NULL; msg->next = NULL;
tail = msg; tail = msg;
} // end NormMessageQueue::Append() } // end NormMessageQueue::Append()
void NormMessageQueue::Remove(NormMsg* msg) void NormMessageQueue::Remove(NormMsg* msg)
{ {
@ -503,7 +504,7 @@ UINT8 NormQuantizeRtt(double rtt)
rtt = NORM_RTT_MAX; rtt = NORM_RTT_MAX;
else if (rtt < NORM_RTT_MIN) else if (rtt < NORM_RTT_MIN)
rtt = NORM_RTT_MIN; rtt = NORM_RTT_MIN;
if (rtt < 3.3e-05) if (rtt < 3.3e-05)
return ((UINT8)((rtt/NORM_RTT_MIN)) - 1); return ((UINT8)((rtt/NORM_RTT_MIN)) - 1);
else else
return ((UINT8)(ceil(255.0 - (13.0*log(NORM_RTT_MAX/rtt))))); return ((UINT8)(ceil(255.0 - (13.0*log(NORM_RTT_MAX/rtt)))));
@ -516,91 +517,91 @@ UINT8 NormQuantizeRtt(double rtt)
//////////////////////////////////////////////// ////////////////////////////////////////////////
// The following table provides a lookup of NORM // The following table provides a lookup of NORM
// RTT approximation from the 8-bit "rtt" and // RTT approximation from the 8-bit "rtt" and
// "grtt" fields of some NORM messages. The // "grtt" fields of some NORM messages. The
// following routine was used to generate // following routine was used to generate
// this table: // this table:
// //
// inline double NormUnquantizeRtt(UINT8 qrtt) // inline double NormUnquantizeRtt(UINT8 qrtt)
// { // {
// return ((qrtt < 31) ? // return ((qrtt < 31) ?
// (((double)(qrtt+1))*(double)NORM_RTT_MIN) : // (((double)(qrtt+1))*(double)NORM_RTT_MIN) :
// (NORM_RTT_MAX/exp(((double)(255-qrtt))/(double)13.0))); // (NORM_RTT_MAX/exp(((double)(255-qrtt))/(double)13.0)));
// } // }
// //
const double NORM_RTT[256] = const double NORM_RTT[256] =
{ {
1.000e-06, 2.000e-06, 3.000e-06, 4.000e-06, 1.000e-06, 2.000e-06, 3.000e-06, 4.000e-06,
5.000e-06, 6.000e-06, 7.000e-06, 8.000e-06, 5.000e-06, 6.000e-06, 7.000e-06, 8.000e-06,
9.000e-06, 1.000e-05, 1.100e-05, 1.200e-05, 9.000e-06, 1.000e-05, 1.100e-05, 1.200e-05,
1.300e-05, 1.400e-05, 1.500e-05, 1.600e-05, 1.300e-05, 1.400e-05, 1.500e-05, 1.600e-05,
1.700e-05, 1.800e-05, 1.900e-05, 2.000e-05, 1.700e-05, 1.800e-05, 1.900e-05, 2.000e-05,
2.100e-05, 2.200e-05, 2.300e-05, 2.400e-05, 2.100e-05, 2.200e-05, 2.300e-05, 2.400e-05,
2.500e-05, 2.600e-05, 2.700e-05, 2.800e-05, 2.500e-05, 2.600e-05, 2.700e-05, 2.800e-05,
2.900e-05, 3.000e-05, 3.100e-05, 3.287e-05, 2.900e-05, 3.000e-05, 3.100e-05, 3.287e-05,
3.550e-05, 3.833e-05, 4.140e-05, 4.471e-05, 3.550e-05, 3.833e-05, 4.140e-05, 4.471e-05,
4.828e-05, 5.215e-05, 5.631e-05, 6.082e-05, 4.828e-05, 5.215e-05, 5.631e-05, 6.082e-05,
6.568e-05, 7.093e-05, 7.660e-05, 8.273e-05, 6.568e-05, 7.093e-05, 7.660e-05, 8.273e-05,
8.934e-05, 9.649e-05, 1.042e-04, 1.125e-04, 8.934e-05, 9.649e-05, 1.042e-04, 1.125e-04,
1.215e-04, 1.313e-04, 1.417e-04, 1.531e-04, 1.215e-04, 1.313e-04, 1.417e-04, 1.531e-04,
1.653e-04, 1.785e-04, 1.928e-04, 2.082e-04, 1.653e-04, 1.785e-04, 1.928e-04, 2.082e-04,
2.249e-04, 2.429e-04, 2.623e-04, 2.833e-04, 2.249e-04, 2.429e-04, 2.623e-04, 2.833e-04,
3.059e-04, 3.304e-04, 3.568e-04, 3.853e-04, 3.059e-04, 3.304e-04, 3.568e-04, 3.853e-04,
4.161e-04, 4.494e-04, 4.853e-04, 5.241e-04, 4.161e-04, 4.494e-04, 4.853e-04, 5.241e-04,
5.660e-04, 6.113e-04, 6.602e-04, 7.130e-04, 5.660e-04, 6.113e-04, 6.602e-04, 7.130e-04,
7.700e-04, 8.315e-04, 8.980e-04, 9.698e-04, 7.700e-04, 8.315e-04, 8.980e-04, 9.698e-04,
1.047e-03, 1.131e-03, 1.222e-03, 1.319e-03, 1.047e-03, 1.131e-03, 1.222e-03, 1.319e-03,
1.425e-03, 1.539e-03, 1.662e-03, 1.795e-03, 1.425e-03, 1.539e-03, 1.662e-03, 1.795e-03,
1.938e-03, 2.093e-03, 2.260e-03, 2.441e-03, 1.938e-03, 2.093e-03, 2.260e-03, 2.441e-03,
2.636e-03, 2.847e-03, 3.075e-03, 3.321e-03, 2.636e-03, 2.847e-03, 3.075e-03, 3.321e-03,
3.586e-03, 3.873e-03, 4.182e-03, 4.517e-03, 3.586e-03, 3.873e-03, 4.182e-03, 4.517e-03,
4.878e-03, 5.268e-03, 5.689e-03, 6.144e-03, 4.878e-03, 5.268e-03, 5.689e-03, 6.144e-03,
6.635e-03, 7.166e-03, 7.739e-03, 8.358e-03, 6.635e-03, 7.166e-03, 7.739e-03, 8.358e-03,
9.026e-03, 9.748e-03, 1.053e-02, 1.137e-02, 9.026e-03, 9.748e-03, 1.053e-02, 1.137e-02,
1.228e-02, 1.326e-02, 1.432e-02, 1.547e-02, 1.228e-02, 1.326e-02, 1.432e-02, 1.547e-02,
1.670e-02, 1.804e-02, 1.948e-02, 2.104e-02, 1.670e-02, 1.804e-02, 1.948e-02, 2.104e-02,
2.272e-02, 2.454e-02, 2.650e-02, 2.862e-02, 2.272e-02, 2.454e-02, 2.650e-02, 2.862e-02,
3.090e-02, 3.338e-02, 3.604e-02, 3.893e-02, 3.090e-02, 3.338e-02, 3.604e-02, 3.893e-02,
4.204e-02, 4.540e-02, 4.903e-02, 5.295e-02, 4.204e-02, 4.540e-02, 4.903e-02, 5.295e-02,
5.718e-02, 6.176e-02, 6.669e-02, 7.203e-02, 5.718e-02, 6.176e-02, 6.669e-02, 7.203e-02,
7.779e-02, 8.401e-02, 9.072e-02, 9.798e-02, 7.779e-02, 8.401e-02, 9.072e-02, 9.798e-02,
1.058e-01, 1.143e-01, 1.234e-01, 1.333e-01, 1.058e-01, 1.143e-01, 1.234e-01, 1.333e-01,
1.439e-01, 1.554e-01, 1.679e-01, 1.813e-01, 1.439e-01, 1.554e-01, 1.679e-01, 1.813e-01,
1.958e-01, 2.114e-01, 2.284e-01, 2.466e-01, 1.958e-01, 2.114e-01, 2.284e-01, 2.466e-01,
2.663e-01, 2.876e-01, 3.106e-01, 3.355e-01, 2.663e-01, 2.876e-01, 3.106e-01, 3.355e-01,
3.623e-01, 3.913e-01, 4.225e-01, 4.563e-01, 3.623e-01, 3.913e-01, 4.225e-01, 4.563e-01,
4.928e-01, 5.322e-01, 5.748e-01, 6.207e-01, 4.928e-01, 5.322e-01, 5.748e-01, 6.207e-01,
6.704e-01, 7.240e-01, 7.819e-01, 8.444e-01, 6.704e-01, 7.240e-01, 7.819e-01, 8.444e-01,
9.119e-01, 9.848e-01, 1.064e+00, 1.149e+00, 9.119e-01, 9.848e-01, 1.064e+00, 1.149e+00,
1.240e+00, 1.340e+00, 1.447e+00, 1.562e+00, 1.240e+00, 1.340e+00, 1.447e+00, 1.562e+00,
1.687e+00, 1.822e+00, 1.968e+00, 2.125e+00, 1.687e+00, 1.822e+00, 1.968e+00, 2.125e+00,
2.295e+00, 2.479e+00, 2.677e+00, 2.891e+00, 2.295e+00, 2.479e+00, 2.677e+00, 2.891e+00,
3.122e+00, 3.372e+00, 3.641e+00, 3.933e+00, 3.122e+00, 3.372e+00, 3.641e+00, 3.933e+00,
4.247e+00, 4.587e+00, 4.953e+00, 5.349e+00, 4.247e+00, 4.587e+00, 4.953e+00, 5.349e+00,
5.777e+00, 6.239e+00, 6.738e+00, 7.277e+00, 5.777e+00, 6.239e+00, 6.738e+00, 7.277e+00,
7.859e+00, 8.487e+00, 9.166e+00, 9.898e+00, 7.859e+00, 8.487e+00, 9.166e+00, 9.898e+00,
1.069e+01, 1.154e+01, 1.247e+01, 1.346e+01, 1.069e+01, 1.154e+01, 1.247e+01, 1.346e+01,
1.454e+01, 1.570e+01, 1.696e+01, 1.832e+01, 1.454e+01, 1.570e+01, 1.696e+01, 1.832e+01,
1.978e+01, 2.136e+01, 2.307e+01, 2.491e+01, 1.978e+01, 2.136e+01, 2.307e+01, 2.491e+01,
2.691e+01, 2.906e+01, 3.138e+01, 3.389e+01, 2.691e+01, 2.906e+01, 3.138e+01, 3.389e+01,
3.660e+01, 3.953e+01, 4.269e+01, 4.610e+01, 3.660e+01, 3.953e+01, 4.269e+01, 4.610e+01,
4.979e+01, 5.377e+01, 5.807e+01, 6.271e+01, 4.979e+01, 5.377e+01, 5.807e+01, 6.271e+01,
6.772e+01, 7.314e+01, 7.899e+01, 8.530e+01, 6.772e+01, 7.314e+01, 7.899e+01, 8.530e+01,
9.212e+01, 9.949e+01, 1.074e+02, 1.160e+02, 9.212e+01, 9.949e+01, 1.074e+02, 1.160e+02,
1.253e+02, 1.353e+02, 1.462e+02, 1.578e+02, 1.253e+02, 1.353e+02, 1.462e+02, 1.578e+02,
1.705e+02, 1.841e+02, 1.988e+02, 2.147e+02, 1.705e+02, 1.841e+02, 1.988e+02, 2.147e+02,
2.319e+02, 2.504e+02, 2.704e+02, 2.921e+02, 2.319e+02, 2.504e+02, 2.704e+02, 2.921e+02,
3.154e+02, 3.406e+02, 3.679e+02, 3.973e+02, 3.154e+02, 3.406e+02, 3.679e+02, 3.973e+02,
4.291e+02, 4.634e+02, 5.004e+02, 5.404e+02, 4.291e+02, 4.634e+02, 5.004e+02, 5.404e+02,
5.836e+02, 6.303e+02, 6.807e+02, 7.351e+02, 5.836e+02, 6.303e+02, 6.807e+02, 7.351e+02,
7.939e+02, 8.574e+02, 9.260e+02, 1.000e+03 7.939e+02, 8.574e+02, 9.260e+02, 1.000e+03
}; };
//////////////////////////////////////////////// ////////////////////////////////////////////////
// The following tables is provides a lookup // The following tables is provides a lookup
// of NORM group size approximation from the // of NORM group size approximation from the
// 4-bit "gsize" field of some NORM messages // 4-bit "gsize" field of some NORM messages
// The following routine was used to generate // The following routine was used to generate
@ -610,18 +611,18 @@ const double NORM_RTT[256] =
// { // {
// double exponent = (double)((gsize & 0x07) + 1); // double exponent = (double)((gsize & 0x07) + 1);
// double mantissa = (0 != (gsize & 0x08)) ? 5.0 : 1.0; // double mantissa = (0 != (gsize & 0x08)) ? 5.0 : 1.0;
// return (mantissa * pow(10.0, exponent)); // return (mantissa * pow(10.0, exponent));
// } // }
// //
const double NORM_GSIZE[16] = const double NORM_GSIZE[16] =
{ {
1.000e+01, 1.000e+02, 1.000e+03, 1.000e+04, 1.000e+01, 1.000e+02, 1.000e+03, 1.000e+04,
1.000e+05, 1.000e+06, 1.000e+07, 1.000e+08, 1.000e+05, 1.000e+06, 1.000e+07, 1.000e+08,
5.000e+01, 5.000e+02, 5.000e+03, 5.000e+04, 5.000e+01, 5.000e+02, 5.000e+03, 5.000e+04,
5.000e+05, 5.000e+06, 5.000e+07, 5.000e+08 5.000e+05, 5.000e+06, 5.000e+07, 5.000e+08
}; };
// This function rounds up the "gsize" to be conservative // This function rounds up the "gsize" to be conservative
UINT8 NormQuantizeGroupSize(double gsize) UINT8 NormQuantizeGroupSize(double gsize)
{ {