forked from ammarahm-ed/react-native-mmkv-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CodedOutputData.cpp
174 lines (146 loc) · 5.26 KB
/
CodedOutputData.cpp
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
* Tencent is pleased to support the open source community by making
* MMKV available.
*
* Copyright (C) 2018 THL A29 Limited, a Tencent company.
* All rights reserved.
*
* Licensed under the BSD 3-Clause License (the "License"); you may not use
* this file except in compliance with the License. You may obtain a copy of
* the License at
*
* https://opensource.org/licenses/BSD-3-Clause
*
* 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.
*/
#include "CodedOutputData.h"
#include "PBUtility.h"
#include <cstring>
#include <stdexcept>
#ifdef MMKV_APPLE
# if __has_feature(objc_arc)
# error This file must be compiled with MRC. Use -fno-objc-arc flag.
# endif
#endif // MMKV_APPLE
using namespace std;
namespace mmkv {
CodedOutputData::CodedOutputData(void *ptr, size_t len) : m_ptr((uint8_t *) ptr), m_size(len), m_position(0) {
MMKV_ASSERT(m_ptr);
}
uint8_t *CodedOutputData::curWritePointer() {
return m_ptr + m_position;
}
void CodedOutputData::writeDouble(double value) {
this->writeRawLittleEndian64(Float64ToInt64(value));
}
void CodedOutputData::writeFloat(float value) {
this->writeRawLittleEndian32(Float32ToInt32(value));
}
void CodedOutputData::writeInt64(int64_t value) {
this->writeRawVarint64(value);
}
void CodedOutputData::writeUInt64(uint64_t value) {
writeRawVarint64(static_cast<int64_t>(value));
}
void CodedOutputData::writeInt32(int32_t value) {
if (value >= 0) {
this->writeRawVarint32(value);
} else {
this->writeRawVarint64(value);
}
}
void CodedOutputData::writeUInt32(uint32_t value) {
writeRawVarint32(static_cast<int32_t>(value));
}
void CodedOutputData::writeBool(bool value) {
this->writeRawByte(static_cast<uint8_t>(value ? 1 : 0));
}
void CodedOutputData::writeData(const MMBuffer &value) {
this->writeRawVarint32((int32_t) value.length());
this->writeRawData(value);
}
#ifndef MMKV_APPLE
void CodedOutputData::writeString(const string &value) {
size_t numberOfBytes = value.size();
this->writeRawVarint32((int32_t) numberOfBytes);
if (m_position + numberOfBytes > m_size) {
auto msg = "m_position: " + to_string(m_position) + ", numberOfBytes: " + to_string(numberOfBytes) +
", m_size: " + to_string(m_size);
throw out_of_range(msg);
}
memcpy(m_ptr + m_position, ((uint8_t *) value.data()), numberOfBytes);
m_position += numberOfBytes;
}
#endif // MMKV_APPLE
size_t CodedOutputData::spaceLeft() {
if (m_size <= m_position) {
return 0;
}
return m_size - m_position;
}
void CodedOutputData::seek(size_t addedSize) {
m_position += addedSize;
if (m_position > m_size) {
throw out_of_range("OutOfSpace");
}
}
void CodedOutputData::writeRawByte(uint8_t value) {
if (m_position == m_size) {
throw out_of_range("m_position: " + to_string(m_position) + " m_size: " + to_string(m_size));
return;
}
m_ptr[m_position++] = value;
}
void CodedOutputData::writeRawData(const MMBuffer &data) {
size_t numberOfBytes = data.length();
if (m_position + numberOfBytes > m_size) {
auto msg = "m_position: " + to_string(m_position) + ", numberOfBytes: " + to_string(numberOfBytes) +
", m_size: " + to_string(m_size);
throw out_of_range(msg);
}
memcpy(m_ptr + m_position, data.getPtr(), numberOfBytes);
m_position += numberOfBytes;
}
void CodedOutputData::writeRawVarint32(int32_t value) {
while (true) {
if ((value & ~0x7f) == 0) {
this->writeRawByte(static_cast<uint8_t>(value));
return;
} else {
this->writeRawByte(static_cast<uint8_t>((value & 0x7F) | 0x80));
value = logicalRightShift32(value, 7);
}
}
}
void CodedOutputData::writeRawVarint64(int64_t value) {
while (true) {
if ((value & ~0x7f) == 0) {
this->writeRawByte(static_cast<uint8_t>(value));
return;
} else {
this->writeRawByte(static_cast<uint8_t>((value & 0x7f) | 0x80));
value = logicalRightShift64(value, 7);
}
}
}
void CodedOutputData::writeRawLittleEndian32(int32_t value) {
this->writeRawByte(static_cast<uint8_t>((value) &0xff));
this->writeRawByte(static_cast<uint8_t>((value >> 8) & 0xff));
this->writeRawByte(static_cast<uint8_t>((value >> 16) & 0xff));
this->writeRawByte(static_cast<uint8_t>((value >> 24) & 0xff));
}
void CodedOutputData::writeRawLittleEndian64(int64_t value) {
this->writeRawByte(static_cast<uint8_t>((value) &0xff));
this->writeRawByte(static_cast<uint8_t>((value >> 8) & 0xff));
this->writeRawByte(static_cast<uint8_t>((value >> 16) & 0xff));
this->writeRawByte(static_cast<uint8_t>((value >> 24) & 0xff));
this->writeRawByte(static_cast<uint8_t>((value >> 32) & 0xff));
this->writeRawByte(static_cast<uint8_t>((value >> 40) & 0xff));
this->writeRawByte(static_cast<uint8_t>((value >> 48) & 0xff));
this->writeRawByte(static_cast<uint8_t>((value >> 56) & 0xff));
}
} // namespace mmkv