summaryrefslogtreecommitdiff
path: root/src/common/binary-queue.cpp
blob: 776f65eac539af8a09639b2bf8a1d1379ca3073f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */
/*
 * @file        binary-queue.cpp
 * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
 *              Kyungwook Tak (k.tak@samsung.com)
 * @version     1.0
 * @brief
 */
#include "common/binary-queue.h"

#include <cstring>
#include <stdexcept>
#include <new>

namespace CCHECKER {

BinaryQueue::BinaryQueue() : m_size(0)
{
}

BinaryQueue::~BinaryQueue()
{
}

RawBuffer BinaryQueue::pop()
{
	RawBuffer buf(m_size);

	read(m_size, buf.data());

	return buf;
}

void BinaryQueue::push(const RawBuffer &data)
{
	write(data.size(), data.data());
}

void BinaryQueue::write(size_t size, const void *bytes)
{
	while (size > 0) {
		auto s = (size > MaxBucketSize) ? MaxBucketSize : size;
		auto b = new unsigned char[s];
		memcpy(b, bytes, s);
		m_buckets.emplace(new Bucket(b, s));
		m_size += s;
		size -= s;
	}
}

void BinaryQueue::read(size_t size, void *bytes)
{
	if (size == 0)
		return;

	if (size > m_size)
		throw std::logic_error("protocol broken. no more binary to flatten in queue");

	void *cur = bytes;

	while (size > 0) {
		if (m_buckets.empty())
			throw std::logic_error("protocol broken. no more buckets to extract");

		size_t count = std::min(size, m_buckets.front()->left);
		cur = m_buckets.front()->extractTo(cur, count);

		size -= count;
		m_size -= count;

		if (m_buckets.front()->left == 0)
			m_buckets.pop();
	}
}

BinaryQueue::Bucket::Bucket(unsigned char *_data, size_t _size) :
	data(_data),
	cur(_data),
	left(_size)
{
	if (_data == nullptr || _size == 0)
		throw std::invalid_argument("Bucket construct failed.");
}

BinaryQueue::Bucket::~Bucket()
{
	delete []data;
}

void *BinaryQueue::Bucket::extractTo(void *dest, size_t size)
{
	if (dest == nullptr || size == 0)
		throw std::logic_error("logic error. invalid input to Bucket::extractTo.");

	memcpy(dest, cur, size);

	cur += size;
	left -= size;

	return static_cast<unsigned char *>(dest) + size;
}

} // namespace CCHECKER