]>
git.saurik.com Git - apple/javascriptcore.git/blob - API/JSValueRef.cpp
468a2d14b6e52977a160861d95f9ab8c76ea02d5
1 // -*- mode: c++; c-basic-offset: 4 -*-
3 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 #include "JSValueRef.h"
30 #include <wtf/Platform.h>
32 #include "JSCallbackObject.h"
34 #include <kjs/JSType.h>
35 #include <kjs/JSGlobalObject.h>
36 #include <kjs/internal.h>
37 #include <kjs/operations.h>
38 #include <kjs/protect.h>
39 #include <kjs/ustring.h>
40 #include <kjs/value.h>
42 #include <wtf/Assertions.h>
44 #include <algorithm> // for std::min
46 JSType
JSValueGetType(JSContextRef
, JSValueRef value
)
48 KJS::JSValue
* jsValue
= toJS(value
);
49 switch (jsValue
->type()) {
50 case KJS::UndefinedType
:
51 return kJSTypeUndefined
;
54 case KJS::BooleanType
:
55 return kJSTypeBoolean
;
63 ASSERT(!"JSValueGetType: unknown type code.\n");
64 return kJSTypeUndefined
;
68 using namespace KJS
; // placed here to avoid conflict between KJS::JSType and JSType, above.
70 bool JSValueIsUndefined(JSContextRef
, JSValueRef value
)
72 JSValue
* jsValue
= toJS(value
);
73 return jsValue
->isUndefined();
76 bool JSValueIsNull(JSContextRef
, JSValueRef value
)
78 JSValue
* jsValue
= toJS(value
);
79 return jsValue
->isNull();
82 bool JSValueIsBoolean(JSContextRef
, JSValueRef value
)
84 JSValue
* jsValue
= toJS(value
);
85 return jsValue
->isBoolean();
88 bool JSValueIsNumber(JSContextRef
, JSValueRef value
)
90 JSValue
* jsValue
= toJS(value
);
91 return jsValue
->isNumber();
94 bool JSValueIsString(JSContextRef
, JSValueRef value
)
96 JSValue
* jsValue
= toJS(value
);
97 return jsValue
->isString();
100 bool JSValueIsObject(JSContextRef
, JSValueRef value
)
102 JSValue
* jsValue
= toJS(value
);
103 return jsValue
->isObject();
106 bool JSValueIsObjectOfClass(JSContextRef
, JSValueRef value
, JSClassRef jsClass
)
108 JSValue
* jsValue
= toJS(value
);
110 if (JSObject
* o
= jsValue
->getObject()) {
111 if (o
->inherits(&JSCallbackObject
<JSGlobalObject
>::info
))
112 return static_cast<JSCallbackObject
<JSGlobalObject
>*>(o
)->inherits(jsClass
);
113 else if (o
->inherits(&JSCallbackObject
<JSObject
>::info
))
114 return static_cast<JSCallbackObject
<JSObject
>*>(o
)->inherits(jsClass
);
119 bool JSValueIsEqual(JSContextRef ctx
, JSValueRef a
, JSValueRef b
, JSValueRef
* exception
)
122 ExecState
* exec
= toJS(ctx
);
123 JSValue
* jsA
= toJS(a
);
124 JSValue
* jsB
= toJS(b
);
126 bool result
= equal(exec
, jsA
, jsB
); // false if an exception is thrown
127 if (exec
->hadException()) {
129 *exception
= toRef(exec
->exception());
130 exec
->clearException();
135 bool JSValueIsStrictEqual(JSContextRef ctx
, JSValueRef a
, JSValueRef b
)
138 ExecState
* exec
= toJS(ctx
);
139 JSValue
* jsA
= toJS(a
);
140 JSValue
* jsB
= toJS(b
);
142 bool result
= strictEqual(exec
, jsA
, jsB
); // can't throw because it doesn't perform value conversion
143 ASSERT(!exec
->hadException());
147 bool JSValueIsInstanceOfConstructor(JSContextRef ctx
, JSValueRef value
, JSObjectRef constructor
, JSValueRef
* exception
)
150 ExecState
* exec
= toJS(ctx
);
151 JSValue
* jsValue
= toJS(value
);
152 JSObject
* jsConstructor
= toJS(constructor
);
153 if (!jsConstructor
->implementsHasInstance())
155 bool result
= jsConstructor
->hasInstance(exec
, jsValue
); // false if an exception is thrown
156 if (exec
->hadException()) {
158 *exception
= toRef(exec
->exception());
159 exec
->clearException();
164 JSValueRef
JSValueMakeUndefined(JSContextRef
)
166 return toRef(jsUndefined());
169 JSValueRef
JSValueMakeNull(JSContextRef
)
171 return toRef(jsNull());
174 JSValueRef
JSValueMakeBoolean(JSContextRef
, bool value
)
176 return toRef(jsBoolean(value
));
179 JSValueRef
JSValueMakeNumber(JSContextRef
, double value
)
182 return toRef(jsNumber(value
));
185 JSValueRef
JSValueMakeString(JSContextRef
, JSStringRef string
)
188 UString::Rep
* rep
= toJS(string
);
189 return toRef(jsString(UString(rep
)));
192 bool JSValueToBoolean(JSContextRef ctx
, JSValueRef value
)
194 ExecState
* exec
= toJS(ctx
);
195 JSValue
* jsValue
= toJS(value
);
196 return jsValue
->toBoolean(exec
);
199 double JSValueToNumber(JSContextRef ctx
, JSValueRef value
, JSValueRef
* exception
)
202 JSValue
* jsValue
= toJS(value
);
203 ExecState
* exec
= toJS(ctx
);
205 double number
= jsValue
->toNumber(exec
);
206 if (exec
->hadException()) {
208 *exception
= toRef(exec
->exception());
209 exec
->clearException();
215 JSStringRef
JSValueToStringCopy(JSContextRef ctx
, JSValueRef value
, JSValueRef
* exception
)
218 JSValue
* jsValue
= toJS(value
);
219 ExecState
* exec
= toJS(ctx
);
221 JSStringRef stringRef
= toRef(jsValue
->toString(exec
).rep()->ref());
222 if (exec
->hadException()) {
224 *exception
= toRef(exec
->exception());
225 exec
->clearException();
231 JSObjectRef
JSValueToObject(JSContextRef ctx
, JSValueRef value
, JSValueRef
* exception
)
234 ExecState
* exec
= toJS(ctx
);
235 JSValue
* jsValue
= toJS(value
);
237 JSObjectRef objectRef
= toRef(jsValue
->toObject(exec
));
238 if (exec
->hadException()) {
240 *exception
= toRef(exec
->exception());
241 exec
->clearException();
247 void JSValueProtect(JSContextRef
, JSValueRef value
)
250 JSValue
* jsValue
= toJS(value
);
254 void JSValueUnprotect(JSContextRef
, JSValueRef value
)
257 JSValue
* jsValue
= toJS(value
);
258 gcUnprotect(jsValue
);