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 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
/*
* Copyright (C) 2010 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "DataView.h"
#include "ExceptionCode.h"
namespace {
template<typename T>
union Value {
T data;
char bytes[sizeof(T)];
};
}
namespace WebCore {
PassRefPtr<DataView> DataView::create(unsigned length)
{
RefPtr<ArrayBuffer> buffer = ArrayBuffer::create(length, sizeof(uint8_t));
if (!buffer.get())
return 0;
return create(buffer, 0, length);
}
PassRefPtr<DataView> DataView::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned byteLength)
{
if (byteOffset > buffer->byteLength())
return 0;
Checked<uint32_t, RecordOverflow> checkedOffset(byteOffset);
Checked<uint32_t, RecordOverflow> checkedLength(byteLength);
Checked<uint32_t, RecordOverflow> checkedMax = checkedOffset + checkedLength;
if (checkedMax.hasOverflowed() || checkedMax.unsafeGet() > buffer->byteLength())
return 0;
return adoptRef(new DataView(buffer, byteOffset, byteLength));
}
DataView::DataView(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned byteLength)
: ArrayBufferView(buffer, byteOffset)
, m_byteLength(byteLength)
{
}
static bool needToFlipBytes(bool littleEndian)
{
#if CPU(BIG_ENDIAN)
return littleEndian;
#else
return !littleEndian;
#endif
}
inline void swapBytes(char* p, char* q)
{
char temp = *p;
*p = *q;
*q = temp;
}
static void flipBytesFor16Bits(char* p)
{
swapBytes(p, p + 1);
}
static void flipBytesFor32Bits(char* p)
{
swapBytes(p, p + 3);
swapBytes(p + 1, p + 2);
}
static void flipBytesFor64Bits(char* p)
{
swapBytes(p, p + 7);
swapBytes(p + 1, p + 6);
swapBytes(p + 2, p + 5);
swapBytes(p + 3, p + 4);
}
static void flipBytesIfNeeded(char* value, size_t size, bool littleEndian)
{
if (!needToFlipBytes(littleEndian))
return;
switch (size) {
case 1:
// Nothing to do.
break;
case 2:
flipBytesFor16Bits(value);
break;
case 4:
flipBytesFor32Bits(value);
break;
case 8:
flipBytesFor64Bits(value);
break;
default:
ASSERT_NOT_REACHED();
break;
}
}
template<typename T>
T DataView::getData(unsigned byteOffset, bool littleEndian, ExceptionCode& ec) const
{
if (beyondRange<T>(byteOffset)) {
ec = INDEX_SIZE_ERR;
return 0;
}
// We do not want to load the data directly since it would cause a bus error on architectures that don't support unaligned loads.
Value<T> value;
memcpy(value.bytes, static_cast<const char*>(m_baseAddress) + byteOffset, sizeof(T));
flipBytesIfNeeded(value.bytes, sizeof(T), littleEndian);
return value.data;
}
template<typename T>
void DataView::setData(unsigned byteOffset, T value, bool littleEndian, ExceptionCode& ec)
{
if (beyondRange<T>(byteOffset)) {
ec = INDEX_SIZE_ERR;
return;
}
// We do not want to store the data directly since it would cause a bus error on architectures that don't support unaligned stores.
Value<T> tempValue;
tempValue.data = value;
flipBytesIfNeeded(tempValue.bytes, sizeof(T), littleEndian);
memcpy(static_cast<char*>(m_baseAddress) + byteOffset, tempValue.bytes, sizeof(T));
}
int8_t DataView::getInt8(unsigned byteOffset, ExceptionCode& ec)
{
return getData<int8_t>(byteOffset, false, ec);
}
uint8_t DataView::getUint8(unsigned byteOffset, ExceptionCode& ec)
{
return getData<uint8_t>(byteOffset, false, ec);
}
int16_t DataView::getInt16(unsigned byteOffset, bool littleEndian, ExceptionCode& ec)
{
return getData<int16_t>(byteOffset, littleEndian, ec);
}
uint16_t DataView::getUint16(unsigned byteOffset, bool littleEndian, ExceptionCode& ec)
{
return getData<uint16_t>(byteOffset, littleEndian, ec);
}
int32_t DataView::getInt32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec)
{
return getData<int32_t>(byteOffset, littleEndian, ec);
}
uint32_t DataView::getUint32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec)
{
return getData<uint32_t>(byteOffset, littleEndian, ec);
}
float DataView::getFloat32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec)
{
return getData<float>(byteOffset, littleEndian, ec);
}
double DataView::getFloat64(unsigned byteOffset, bool littleEndian, ExceptionCode& ec)
{
return getData<double>(byteOffset, littleEndian, ec);
}
void DataView::setInt8(unsigned byteOffset, int8_t value, ExceptionCode& ec)
{
setData<int8_t>(byteOffset, value, false, ec);
}
void DataView::setUint8(unsigned byteOffset, uint8_t value, ExceptionCode& ec)
{
setData<uint8_t>(byteOffset, value, false, ec);
}
void DataView::setInt16(unsigned byteOffset, short value, bool littleEndian, ExceptionCode& ec)
{
setData<int16_t>(byteOffset, value, littleEndian, ec);
}
void DataView::setUint16(unsigned byteOffset, uint16_t value, bool littleEndian, ExceptionCode& ec)
{
setData<uint16_t>(byteOffset, value, littleEndian, ec);
}
void DataView::setInt32(unsigned byteOffset, int32_t value, bool littleEndian, ExceptionCode& ec)
{
setData<int32_t>(byteOffset, value, littleEndian, ec);
}
void DataView::setUint32(unsigned byteOffset, uint32_t value, bool littleEndian, ExceptionCode& ec)
{
setData<uint32_t>(byteOffset, value, littleEndian, ec);
}
void DataView::setFloat32(unsigned byteOffset, float value, bool littleEndian, ExceptionCode& ec)
{
setData<float>(byteOffset, value, littleEndian, ec);
}
void DataView::setFloat64(unsigned byteOffset, double value, bool littleEndian, ExceptionCode& ec)
{
setData<double>(byteOffset, value, littleEndian, ec);
}
void DataView::neuter()
{
ArrayBufferView::neuter();
m_byteLength = 0;
}
}
|