-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathByteArrayOutputStream.cpp
More file actions
89 lines (76 loc) · 2.56 KB
/
ByteArrayOutputStream.cpp
File metadata and controls
89 lines (76 loc) · 2.56 KB
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
// Copyright (C) 2009,2010,2011,2012 GlavSoft LLC.
// All rights reserved.
//
//-------------------------------------------------------------------------
// This file is part of the TightVNC software. Please visit our Web site:
//
// http://www.tightvnc.com/
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//-------------------------------------------------------------------------
//
#include "ByteArrayOutputStream.h"
#include <string.h>
ByteArrayOutputStream::ByteArrayOutputStream(size_t max)
: m_size(0), m_max(max), m_ownMemory(true)
{
m_buffer = new char[m_max];
}
ByteArrayOutputStream::ByteArrayOutputStream()
: m_size(0), m_buffer(0), m_max(DEFAULT_INNER_BUFFER_CAPACITY), m_ownMemory(true)
{
m_buffer = new char[m_max];
}
ByteArrayOutputStream::ByteArrayOutputStream(void *alienMemory)
: m_size(0), m_buffer((char *)alienMemory), m_max(0xFFFFFF), m_ownMemory(false)
{
}
ByteArrayOutputStream::~ByteArrayOutputStream()
{
if ((m_buffer != 0) && (m_ownMemory)) {
delete[] m_buffer;
}
}
size_t ByteArrayOutputStream::write(const void *buffer, size_t len)
{
bool allocateNewBuffer = (m_size + len) > m_max;
if (allocateNewBuffer && m_ownMemory) {
size_t reserve = DEFAULT_INNER_BUFFER_CAPACITY;
// Create new buffer with some reserve
char *newBuffer = new char[m_size + len + reserve];
// Copy old buffer content to new
memcpy(newBuffer, m_buffer, m_size);
// Cleanup
delete[] m_buffer;
// Set new buffer
m_buffer = newBuffer;
// Set new max buffer size
m_max = m_size + len + reserve;
}
//
// Write data to buffer
//
memcpy(&m_buffer[m_size], (const char *)buffer, len);
m_size += len;
return len;
}
size_t ByteArrayOutputStream::size() const
{
return m_size;
}
const char *ByteArrayOutputStream::toByteArray() const
{
return m_buffer;
}