summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-06-20 03:12:54 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-06-20 03:12:54 +0000
commit32fdd18f7efa899c582f4c6eaa92d304d5fe0fd4 (patch)
tree153a0d9ffdbeff5955688bd6fd08bc91cab539f0
parent91f4f6d49ab4d82046b36776c584545800f4d1f4 (diff)
downloadcryptopp-32fdd18f7efa899c582f4c6eaa92d304d5fe0fd4.tar.gz
auto queue node size
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@84 57ff6487-cd31-0410-9ec3-f628ee90f5f0
-rw-r--r--queue.cpp15
-rw-r--r--queue.h3
2 files changed, 14 insertions, 4 deletions
diff --git a/queue.cpp b/queue.cpp
index 16de772..d700cf0 100644
--- a/queue.cpp
+++ b/queue.cpp
@@ -6,6 +6,8 @@
NAMESPACE_BEGIN(CryptoPP)
+static const unsigned int s_maxAutoNodeSize = 16*1024;
+
// this class for use by ByteQueue only
class ByteQueueNode
{
@@ -123,8 +125,8 @@ public:
// ********************************************************
-ByteQueue::ByteQueue(unsigned int m_nodeSize)
- : m_nodeSize(m_nodeSize), m_lazyLength(0)
+ByteQueue::ByteQueue(unsigned int nodeSize)
+ : m_autoNodeSize(m_nodeSize==0), m_nodeSize(nodeSize ? nodeSize : 256), m_lazyLength(0)
{
m_head = m_tail = new ByteQueueNode(m_nodeSize);
}
@@ -137,6 +139,7 @@ ByteQueue::ByteQueue(const ByteQueue &copy)
void ByteQueue::CopyFrom(const ByteQueue &copy)
{
m_lazyLength = 0;
+ m_autoNodeSize = copy.m_autoNodeSize;
m_nodeSize = copy.m_nodeSize;
m_head = m_tail = new ByteQueueNode(*copy.m_head);
@@ -210,7 +213,13 @@ unsigned int ByteQueue::Put2(const byte *inString, unsigned int length, int mess
{
inString += len;
length -= len;
- m_tail->next = new ByteQueueNode(STDMAX(m_nodeSize, STDMIN(length, 16U*1024U)));
+ if (m_autoNodeSize && m_nodeSize < s_maxAutoNodeSize)
+ do
+ {
+ m_nodeSize *= 2;
+ }
+ while (m_nodeSize < length && m_nodeSize < s_maxAutoNodeSize);
+ m_tail->next = new ByteQueueNode(STDMAX(m_nodeSize, length));
m_tail = m_tail->next;
}
diff --git a/queue.h b/queue.h
index b9641bc..f17efc5 100644
--- a/queue.h
+++ b/queue.h
@@ -16,7 +16,7 @@ class ByteQueueNode;
class ByteQueue : public Bufferless<BufferedTransformation>
{
public:
- ByteQueue(unsigned int m_nodeSize=256);
+ ByteQueue(unsigned int m_nodeSize=0);
ByteQueue(const ByteQueue &copy);
~ByteQueue();
@@ -99,6 +99,7 @@ private:
void CopyFrom(const ByteQueue &copy);
void Destroy();
+ bool m_autoNodeSize;
unsigned int m_nodeSize;
ByteQueueNode *m_head, *m_tail;
byte *m_lazyString;