1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #include "config.h"
32 #include "ScriptArray.h"
33
34 #include <runtime/JSLock.h>
35
36 using namespace JSC;
37
38 namespace WebCore {
39
ScriptArray(ScriptState * scriptState,JSArray * object)40 ScriptArray::ScriptArray(ScriptState* scriptState, JSArray* object)
41 : ScriptObject(scriptState, object)
42 {
43 }
44
handleException(ScriptState * scriptState)45 static bool handleException(ScriptState* scriptState)
46 {
47 if (!scriptState->hadException())
48 return true;
49
50 reportException(scriptState, scriptState->exception());
51 return false;
52 }
53
set(unsigned index,const ScriptObject & value)54 bool ScriptArray::set(unsigned index, const ScriptObject& value)
55 {
56 JSLock lock(SilenceAssertionsOnly);
57 jsArray()->put(m_scriptState, index, value.jsObject());
58 return handleException(m_scriptState);
59 }
60
set(unsigned index,const String & value)61 bool ScriptArray::set(unsigned index, const String& value)
62 {
63 JSLock lock(SilenceAssertionsOnly);
64 jsArray()->put(m_scriptState, index, jsString(m_scriptState, value));
65 return handleException(m_scriptState);
66 }
67
set(unsigned index,double value)68 bool ScriptArray::set(unsigned index, double value)
69 {
70 JSLock lock(SilenceAssertionsOnly);
71 jsArray()->put(m_scriptState, index, jsNumber(m_scriptState, value));
72 return handleException(m_scriptState);
73 }
74
set(unsigned index,long long value)75 bool ScriptArray::set(unsigned index, long long value)
76 {
77 JSLock lock(SilenceAssertionsOnly);
78 jsArray()->put(m_scriptState, index, jsNumber(m_scriptState, value));
79 return handleException(m_scriptState);
80 }
81
set(unsigned index,int value)82 bool ScriptArray::set(unsigned index, int value)
83 {
84 JSLock lock(SilenceAssertionsOnly);
85 jsArray()->put(m_scriptState, index, jsNumber(m_scriptState, value));
86 return handleException(m_scriptState);
87 }
88
set(unsigned index,bool value)89 bool ScriptArray::set(unsigned index, bool value)
90 {
91 JSLock lock(SilenceAssertionsOnly);
92 jsArray()->put(m_scriptState, index, jsBoolean(value));
93 return handleException(m_scriptState);
94 }
95
length()96 unsigned ScriptArray::length()
97 {
98 JSLock lock(SilenceAssertionsOnly);
99 return jsArray()->length();
100 }
101
createNew(ScriptState * scriptState)102 ScriptArray ScriptArray::createNew(ScriptState* scriptState)
103 {
104 JSLock lock(SilenceAssertionsOnly);
105 return ScriptArray(scriptState, constructEmptyArray(scriptState));
106 }
107
108 } // namespace WebCore
109