2008-11-04 Cameron Zwarich <zwarich@apple.com>
[webkit/qt.git] / JavaScriptGlue / JSObject.cpp
blob9e6bec03382d04a20d55e96b9f27a79de2a530c7
1 /*
2 * Copyright (C) 2005 Apple Computer, Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
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.
13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
14 * its contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #include "config.h"
30 #include "JSObject.h"
32 #include "UserObjectImp.h"
34 JSUserObject::JSUserObject(JSObjectCallBacksPtr callBacks, JSObjectMarkProcPtr markProc, void *data, int dataType)
35 : JSBase(kJSObjectTypeID), fCallBacks(*callBacks), fMarkProc(markProc), fData(data), fDataType(dataType)
39 JSUserObject::~JSUserObject()
41 if (fCallBacks.dispose)
43 fCallBacks.dispose(fData);
47 CFArrayRef JSUserObject::CopyPropertyNames(void)
49 CFArrayRef result = 0;
50 if (fCallBacks.copyPropertyNames)
52 result = fCallBacks.copyPropertyNames(fData);
54 return result;
57 JSUserObject* JSUserObject::CopyProperty(CFStringRef propertyName)
59 JSUserObject* result = 0;
60 if (fCallBacks.copyProperty)
62 result = (JSUserObject*)fCallBacks.copyProperty(fData, propertyName);
64 return result;
67 void JSUserObject::SetProperty(CFStringRef propertyName, JSUserObject* value)
69 if (fCallBacks.setProperty)
71 fCallBacks.setProperty(fData, propertyName, (JSObjectRef)value);
76 static JSValue* nativeCallFunction(ExecState* exec, JSObject* functionObject, JSValue* thisValue, const ArgList& args)
78 return static_cast<UserObjectImp*>(functionObject)->callAsFunction(exec, asObject(thisValue), args);
81 CallType JSUserObject::getCallData(CallData& callData)
83 if (!fCallBacks.callFunction)
84 return CallTypeNone;
86 callData.native.function = nativeCallFunction;
87 return CallTypeHost;
90 JSUserObject* JSUserObject::CallFunction(JSUserObject* thisObj, CFArrayRef args)
92 JSUserObject* result = 0;
93 if (fCallBacks.callFunction)
95 result = (JSUserObject*)fCallBacks.callFunction(fData, (JSObjectRef)thisObj, args);
97 return result;
101 CFTypeRef JSUserObject::CopyCFValue() const
103 CFTypeRef result = 0;
104 if (fCallBacks.copyCFValue)
106 result = (JSUserObject*)fCallBacks.copyCFValue(fData);
108 return result;
111 UInt8 JSUserObject::Equal(JSBase* other)
113 UInt8 result = false;
114 JSUserObject* obj = (JSUserObject*)other;
115 if (obj->GetTypeID() == kJSObjectTypeID)
117 if (fCallBacks.equal)
119 result = fCallBacks.equal(GetData(), obj->GetData());
121 else
123 CFTypeRef cf1 = CopyCFValue();
124 CFTypeRef cf2 = obj->CopyCFValue();
125 if (cf1 && cf2)
127 result = CFEqual(cf1, cf2);
129 ReleaseCFType(cf2);
130 ReleaseCFType(cf1);
133 return result;
136 void JSUserObject::Mark()
138 if (fMarkProc)
140 fMarkProc(fData);
144 void *JSUserObject::GetData()
146 return fData;