1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
/*
* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef qt_instance_h
#define qt_instance_h
#include "BridgeJSC.h"
#include "JSWeakObjectMapRefPrivate.h"
#include "Weak.h"
#include "WeakInlines.h"
#include "runtime_root.h"
#include <QPointer>
#include <qhash.h>
#include <qset.h>
namespace JSC {
namespace Bindings {
class QtClass;
class QtField;
class QtRuntimeMethod;
class WeakMapImpl : public RefCounted<WeakMapImpl> {
public:
WeakMapImpl(JSContextGroupRef);
~WeakMapImpl();
JSGlobalContextRef m_context;
JSWeakObjectMapRef m_map;
};
class WeakMap {
public:
~WeakMap();
void set(JSContextRef, void* key, JSObjectRef);
JSObjectRef get(void* key);
void remove(void* key);
private:
RefPtr<WeakMapImpl> m_impl;
};
class QtInstance : public Instance {
public:
enum ValueOwnership {
QtOwnership,
ScriptOwnership,
AutoOwnership
};
~QtInstance();
virtual Class* getClass() const;
virtual RuntimeObject* newRuntimeObject(ExecState*);
virtual void begin();
virtual void end();
virtual JSValue valueOf(ExecState*) const;
virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
virtual JSValue getMethod(ExecState*, PropertyName);
virtual JSValue invokeMethod(ExecState*, RuntimeMethod*);
virtual void getPropertyNames(ExecState*, PropertyNameArray&);
JSValue stringValue(ExecState* exec) const;
JSValue numberValue(ExecState* exec) const;
JSValue booleanValue() const;
QObject* getObject() const { return m_object.data(); }
QObject* hashKey() const { return m_hashkey; }
static PassRefPtr<QtInstance> getQtInstance(QObject*, PassRefPtr<RootObject>, ValueOwnership);
virtual bool getOwnPropertySlot(JSObject*, ExecState*, PropertyName, PropertySlot&);
virtual void put(JSObject*, ExecState*, PropertyName, JSValue, PutPropertySlot&);
static QtInstance* getInstance(JSObject*);
private:
static PassRefPtr<QtInstance> create(QObject *instance, PassRefPtr<RootObject> rootObject, ValueOwnership ownership)
{
return adoptRef(new QtInstance(instance, rootObject, ownership));
}
friend class QtClass;
friend class QtField;
friend class QtRuntimeMethod;
QtInstance(QObject*, PassRefPtr<RootObject>, ValueOwnership); // Factory produced only..
mutable QtClass* m_class;
QPointer<QObject> m_object;
QObject* m_hashkey;
mutable QHash<QByteArray, QtRuntimeMethod*> m_methods;
mutable QHash<QString, QtField*> m_fields;
ValueOwnership m_ownership;
};
} // namespace Bindings
} // namespace JSC
#endif
|