summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/datamodel/ecmascript/JavaScriptCore/dom/JSCTypedArrayCustom.cpp
blob: 1738899753f98e5bd5fe027da58028b94e5e19ac (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
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
245
246
247
248
249
250
/**
 *  @file
 *  @author     2012-2013 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
 *  @copyright  Simplified BSD
 *
 *  @cond
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the FreeBSD license as published by the FreeBSD
 *  project.
 *
 *  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.
 *
 *  You should have received a copy of the FreeBSD license along with this
 *  program. If not, see <http://www.opensource.org/licenses/bsd-license>.
 *  @endcond
 */

#include "../../TypedArray.h"
#include "JSCArrayBuffer.h"
#include "JSCInt8Array.h"
#include "JSCUint8Array.h"
#include "JSCUint8ClampedArray.h"
#include "JSCInt16Array.h"
#include "JSCUint16Array.h"
#include "JSCInt32Array.h"
#include "JSCUint32Array.h"
#include "JSCFloat32Array.h"
#include "JSCFloat64Array.h"
#include "JSCDataView.h"

#define JSC_VALUE_TO_STRING(name, stringName)\
size_t name##MaxSize = JSStringGetMaximumUTF8CStringSize(name);\
char* name##Buffer = new char[name##MaxSize];\
JSStringGetUTF8CString(name, name##Buffer, name##MaxSize);\
std::string stringName(name##Buffer);\
free(name##Buffer);\
 

#define JSC_TYPED_ARRAY_GET_PROP_RETURN(type)\
size_t propMaxSize = JSStringGetMaximumUTF8CStringSize(propertyName);\
char* propBuffer = new char[propMaxSize];\
JSStringGetUTF8CString(propertyName, propBuffer, propMaxSize);\
std::string propName(propBuffer);\
free(propBuffer);\
if (strcmp(propName.c_str(), "prototype") == 0) {\
	JSStringRef prototypeName = JSStringCreateWithUTF8CString(#type);\
	JSValueRef prototype = JSObjectGetProperty(ctx, JSContextGetGlobalObject(ctx), prototypeName, exception);\
	assert(!JSValueIsUndefined(ctx, prototype) && !JSValueIsNull(ctx, prototype));\
	JSStringRelease(prototypeName);\
	return prototype;\
}\
JSStaticValue* prop = JSC##type::staticValues;\
while(prop->name) {\
	if (strcmp(propName.c_str(), prop->name) == 0) {\
		return (prop->getProperty)(ctx, object, propertyName, exception);\
	}\
	prop++;\
}\
\
JSC##type::JSC##type##Private* privObj = (JSC##type::JSC##type##Private*)JSObjectGetPrivate(object);\
if (!privObj)\
	return JSValueMakeUndefined(ctx);\
\
uscxml::type* array = ((JSC##type::JSC##type##Private*)JSObjectGetPrivate(object))->nativeObj;\
std::string base = "0123456789";\
if (propName.find_first_not_of(base) != std::string::npos) {\
	return JSValueMakeUndefined(ctx);\
}\
unsigned long index = boost::lexical_cast<unsigned long>(propName);\
return JSValueMakeNumber(ctx, array->get(index));



#define JSC_TYPED_ARRAY_SET_PROP_RETURN(type)\
if (!JSValueIsNumber(ctx, value)) {\
	return false;\
}\
size_t propMaxSize = JSStringGetMaximumUTF8CStringSize(propertyName);\
char* propBuffer = new char[propMaxSize];\
JSStringGetUTF8CString(propertyName, propBuffer, propMaxSize);\
std::string propName(propBuffer);\
free(propBuffer);\
uscxml::type* array = ((JSC##type::JSC##type##Private*)JSObjectGetPrivate(object))->nativeObj;\
std::string base = "0123456789";\
if (propName.find_first_not_of(base) != std::string::npos) {\
	return JSValueMakeUndefined(ctx);\
}\
unsigned long index = boost::lexical_cast<unsigned long>(propName);\
if (index >= array->getLength()) {\
	return false;\
}\
array->set(index, JSValueToNumber(ctx, value, exception));\
return true;


#define JSC_TYPED_ARRAY_HAS_PROP_RETURN(type)\
size_t propertyNameMaxSize = JSStringGetMaximumUTF8CStringSize(propertyName);\
char* propertyNameBuffer = new char[propertyNameMaxSize];\
JSStringGetUTF8CString(propertyName, propertyNameBuffer, propertyNameMaxSize);\
std::string propName(propertyNameBuffer);\
free(propertyNameBuffer);\
\
if (strcmp(propName.c_str(), "prototype") == 0)\
	return true;\
\
if (strcmp(propName.c_str(), "length") == 0)\
	return true;\
\
JSStaticValue* prop = JSC##type::staticValues;\
while(prop->name) {\
	if (strcmp(propName.c_str(), prop->name) == 0) {\
		return true;\
	}\
	prop++;\
}\
\
JSC##type::JSC##type##Private* privObj = (JSC##type::JSC##type##Private*)JSObjectGetPrivate(object);\
if (!privObj)\
	return false;\
\
uscxml::type* array = ((JSC##type::JSC##type##Private*)JSObjectGetPrivate(object))->nativeObj;\
std::string base = "0123456789";\
if (propName.find_first_not_of(base) != std::string::npos) {\
	return false;\
}\
unsigned long index = boost::lexical_cast<unsigned long>(propName);\
if (array->getLength() > index)\
	return true;\
return false;\
 
namespace Arabica {
namespace DOM {

bool JSCInt8Array::hasPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) {
	JSC_TYPED_ARRAY_HAS_PROP_RETURN(Int8Array);
}

bool JSCInt16Array::hasPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) {
	JSC_TYPED_ARRAY_HAS_PROP_RETURN(Int16Array);
}

bool JSCInt32Array::hasPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) {
	JSC_TYPED_ARRAY_HAS_PROP_RETURN(Int32Array);
}

bool JSCUint8Array::hasPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) {
	JSC_TYPED_ARRAY_HAS_PROP_RETURN(Uint8Array);
}

bool JSCUint16Array::hasPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) {
	JSC_TYPED_ARRAY_HAS_PROP_RETURN(Uint16Array);
}

bool JSCUint32Array::hasPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) {
	JSC_TYPED_ARRAY_HAS_PROP_RETURN(Uint32Array);
}

bool JSCFloat32Array::hasPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) {
	JSC_TYPED_ARRAY_HAS_PROP_RETURN(Float32Array);
}

bool JSCFloat64Array::hasPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) {
	JSC_TYPED_ARRAY_HAS_PROP_RETURN(Float64Array);
}

bool JSCUint8ClampedArray::hasPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) {
	JSC_TYPED_ARRAY_HAS_PROP_RETURN(Uint8ClampedArray);
}

// -----------------

JSValueRef JSCInt8Array::getPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) {
	JSC_TYPED_ARRAY_GET_PROP_RETURN(Int8Array);
}

JSValueRef JSCInt16Array::getPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) {
	JSC_TYPED_ARRAY_GET_PROP_RETURN(Int16Array);
}

JSValueRef JSCInt32Array::getPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) {
	JSC_TYPED_ARRAY_GET_PROP_RETURN(Int32Array);
}

JSValueRef JSCUint8Array::getPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) {
	JSC_TYPED_ARRAY_GET_PROP_RETURN(Uint8Array);
}

JSValueRef JSCUint16Array::getPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) {
	JSC_TYPED_ARRAY_GET_PROP_RETURN(Uint16Array);
}

JSValueRef JSCUint32Array::getPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) {
	JSC_TYPED_ARRAY_GET_PROP_RETURN(Uint32Array);
}

JSValueRef JSCFloat32Array::getPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) {
	JSC_TYPED_ARRAY_GET_PROP_RETURN(Float32Array);
}

JSValueRef JSCFloat64Array::getPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) {
	JSC_TYPED_ARRAY_GET_PROP_RETURN(Float64Array);
}

JSValueRef JSCUint8ClampedArray::getPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) {
	JSC_TYPED_ARRAY_GET_PROP_RETURN(Uint8ClampedArray);
}

// ----------------

bool JSCInt8Array::setPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) {
	JSC_TYPED_ARRAY_SET_PROP_RETURN(Int8Array);
}

bool JSCInt16Array::setPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) {
	JSC_TYPED_ARRAY_SET_PROP_RETURN(Int16Array);
}

bool JSCInt32Array::setPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) {
	JSC_TYPED_ARRAY_SET_PROP_RETURN(Int32Array);
}

bool JSCUint8Array::setPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) {
	JSC_TYPED_ARRAY_SET_PROP_RETURN(Uint8Array);
}

bool JSCUint16Array::setPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) {
	JSC_TYPED_ARRAY_SET_PROP_RETURN(Uint16Array);
}

bool JSCUint32Array::setPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) {
	JSC_TYPED_ARRAY_SET_PROP_RETURN(Uint32Array);
}

bool JSCFloat32Array::setPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) {
	JSC_TYPED_ARRAY_SET_PROP_RETURN(Float32Array);
}

bool JSCFloat64Array::setPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) {
	JSC_TYPED_ARRAY_SET_PROP_RETURN(Float64Array);
}

bool JSCUint8ClampedArray::setPropertyCustomCallback(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) {
	JSC_TYPED_ARRAY_SET_PROP_RETURN(Uint8ClampedArray);
}


}
}