2008-05-28 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / JavaScriptGlue / JSObject.cpp
blob1290cb34e5f4083d9effb1a4914beb00e366c4ec
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 JSUserObject::JSUserObject(JSObjectCallBacksPtr callBacks, JSObjectMarkProcPtr markProc, void *data, int dataType)
33 : JSBase(kJSObjectTypeID), fCallBacks(*callBacks), fMarkProc(markProc), fData(data), fDataType(dataType)
37 JSUserObject::~JSUserObject()
39 if (fCallBacks.dispose)
41 fCallBacks.dispose(fData);
45 CFArrayRef JSUserObject::CopyPropertyNames(void)
47 CFArrayRef result = 0;
48 if (fCallBacks.copyPropertyNames)
50 result = fCallBacks.copyPropertyNames(fData);
52 return result;
55 JSUserObject* JSUserObject::CopyProperty(CFStringRef propertyName)
57 JSUserObject* result = 0;
58 if (fCallBacks.copyProperty)
60 result = (JSUserObject*)fCallBacks.copyProperty(fData, propertyName);
62 return result;
65 void JSUserObject::SetProperty(CFStringRef propertyName, JSUserObject* value)
67 if (fCallBacks.setProperty)
69 fCallBacks.setProperty(fData, propertyName, (JSObjectRef)value);
74 bool JSUserObject::ImplementsCall()
76 return fCallBacks.callFunction ? true : false;
79 JSUserObject* JSUserObject::CallFunction(JSUserObject* thisObj, CFArrayRef args)
81 JSUserObject* result = 0;
82 if (fCallBacks.callFunction)
84 result = (JSUserObject*)fCallBacks.callFunction(fData, (JSObjectRef)thisObj, args);
86 return result;
90 CFTypeRef JSUserObject::CopyCFValue() const
92 CFTypeRef result = 0;
93 if (fCallBacks.copyCFValue)
95 result = (JSUserObject*)fCallBacks.copyCFValue(fData);
97 return result;
100 UInt8 JSUserObject::Equal(JSBase* other)
102 UInt8 result = false;
103 JSUserObject* obj = (JSUserObject*)other;
104 if (obj->GetTypeID() == kJSObjectTypeID)
106 if (fCallBacks.equal)
108 result = fCallBacks.equal(GetData(), obj->GetData());
110 else
112 CFTypeRef cf1 = CopyCFValue();
113 CFTypeRef cf2 = obj->CopyCFValue();
114 if (cf1 && cf2)
116 result = CFEqual(cf1, cf2);
118 ReleaseCFType(cf2);
119 ReleaseCFType(cf1);
122 return result;
125 void JSUserObject::Mark()
127 if (fMarkProc)
129 fMarkProc(fData);
133 void *JSUserObject::GetData()
135 return fData;