/** * Appcelerator Titanium License * This source code and all modifications done by Appcelerator * are licensed under the Apache Public License (version 2) and * are Copyright (c) 2009 by Appcelerator, Inc. */ /* * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. * Copyright (C) 2007 Eric Seidel * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef TiCallbackObject_h #define TiCallbackObject_h #include "TiObjectRef.h" #include "TiValueRef.h" #include "TiObject.h" namespace TI { template class TiCallbackObject : public Base { public: TiCallbackObject(TiExcState*, NonNullPassRefPtr, TiClassRef, void* data); TiCallbackObject(TiClassRef); virtual ~TiCallbackObject(); void setPrivate(void* data); void* getPrivate(); static const ClassInfo info; TiClassRef classRef() const { return m_callbackObjectData->jsClass; } bool inherits(TiClassRef) const; static PassRefPtr createStructure(TiValue proto) { return Structure::create(proto, TypeInfo(ObjectType, StructureFlags)); } protected: static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | OverridesHasInstance | OverridesMarkChildren | OverridesGetPropertyNames | Base::StructureFlags; private: virtual UString className() const; virtual bool getOwnPropertySlot(TiExcState*, const Identifier&, PropertySlot&); virtual bool getOwnPropertySlot(TiExcState*, unsigned, PropertySlot&); virtual void put(TiExcState*, const Identifier&, TiValue, PutPropertySlot&); virtual bool deleteProperty(TiExcState*, const Identifier&); virtual bool deleteProperty(TiExcState*, unsigned); virtual bool hasInstance(TiExcState* exec, TiValue value, TiValue proto); virtual void getOwnPropertyNames(TiExcState*, PropertyNameArray&); virtual double toNumber(TiExcState*) const; virtual UString toString(TiExcState*) const; virtual ConstructType getConstructData(ConstructData&); virtual CallType getCallData(CallData&); virtual const ClassInfo* classInfo() const { return &info; } void init(TiExcState*); static TiCallbackObject* asCallbackObject(TiValue); static TiValue JSC_HOST_CALL call(TiExcState*, TiObject* functionObject, TiValue thisValue, const ArgList&); static TiObject* construct(TiExcState*, TiObject* constructor, const ArgList&); static TiValue staticValueGetter(TiExcState*, const Identifier&, const PropertySlot&); static TiValue staticFunctionGetter(TiExcState*, const Identifier&, const PropertySlot&); static TiValue callbackGetter(TiExcState*, const Identifier&, const PropertySlot&); struct TiCallbackObjectData { TiCallbackObjectData(void* privateData, TiClassRef jsClass) : privateData(privateData) , jsClass(jsClass) { TiClassRetain(jsClass); } ~TiCallbackObjectData() { TiClassRelease(jsClass); } void* privateData; TiClassRef jsClass; }; OwnPtr m_callbackObjectData; }; } // namespace TI // include the actual template class implementation #include "TiCallbackObjectFunctions.h" #endif // TiCallbackObject_h