jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 1 | #ifndef _H_ScriptableInstance |
| 2 | #define _H_ScriptableInstance |
| 3 | /* |
| 4 | * Copyright 2008 Google Inc. |
| 5 | * |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 7 | * use this file except in compliance with the License. You may obtain a copy of |
| 8 | * the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 14 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 15 | * License for the specific language governing permissions and limitations under |
| 16 | * the License. |
| 17 | */ |
| 18 | |
| 19 | #include <vector> |
| 20 | #include <set> |
| 21 | |
| 22 | #include "Debug.h" |
| 23 | |
| 24 | #include "mozincludes.h" |
| 25 | #include "HostChannel.h" |
| 26 | #include "LoadModuleMessage.h" |
| 27 | #include "LocalObjectTable.h" |
| 28 | #include "SessionHandler.h" |
| 29 | #include "HashMap.h" |
| 30 | |
| 31 | using std::vector; |
| 32 | |
| 33 | class JavaObject; |
| 34 | class JavaClass; |
| 35 | class Plugin; |
| 36 | |
| 37 | class ScriptableInstance : public NPObjectWrapper<ScriptableInstance>, SessionHandler { |
| 38 | friend class JavaObject; |
| 39 | public: |
| 40 | ScriptableInstance(NPP npp); |
| 41 | ~ScriptableInstance(); |
| 42 | |
| 43 | void pluginDeath() { |
| 44 | // our local objects will get freed anyway when the plugin dies |
| 45 | localObjects.freeAll(); |
| 46 | localObjects.setDontFree(true); |
| 47 | // TODO(jat): leaving this in causes SEGV upon plugin destruction in the |
| 48 | // NPN_ReleaseObject call. |
| 49 | // if (window) { |
| 50 | // NPN_ReleaseObject(window); |
| 51 | // window = 0; |
| 52 | // } |
| 53 | } |
| 54 | |
| 55 | // NPObjectWrapper methods |
| 56 | bool enumeration(NPIdentifier** values, uint32_t* count); |
| 57 | bool getProperty(NPIdentifier name, NPVariant* result); |
| 58 | bool setProperty(NPIdentifier name, const NPVariant* value); |
| 59 | bool invoke(NPIdentifier name, const NPVariant* args, unsigned argCount, NPVariant* result); |
| 60 | bool invokeDefault(const NPVariant* args, unsigned argCount, NPVariant* result); |
| 61 | bool hasMethod(NPIdentifier name); |
| 62 | bool hasProperty(NPIdentifier name); |
| 63 | |
| 64 | void dumpJSresult(const char* js); |
| 65 | |
jat@google.com | f78175f | 2009-09-09 21:57:53 +0000 | [diff] [blame] | 66 | int getLocalObjectRef(NPObject* obj); |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 67 | NPObject* getLocalObject(int refid) { return localObjects.get(refid); } |
| 68 | |
| 69 | bool tryGetStringPrimitive(NPObject* obj, NPVariant& result); |
| 70 | |
| 71 | JavaObject* createJavaWrapper(int objectId); |
| 72 | void destroyJavaWrapper(JavaObject*); |
| 73 | |
| 74 | static const uint32_t VERSION = 1; |
scottb@google.com | b0dbdff | 2009-11-23 21:18:40 +0000 | [diff] [blame] | 75 | |
| 76 | protected: |
| 77 | virtual void disconnectDetectedImpl(); |
| 78 | |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 79 | private: |
| 80 | // Map of object ID to JavaObject |
| 81 | hash_map<int, JavaObject*> javaObjects; |
| 82 | std::set<int> javaObjectsToFree; |
| 83 | |
| 84 | vector<JavaClass*> classes; |
| 85 | |
| 86 | Plugin& plugin; |
| 87 | HostChannel* _channel; |
| 88 | LocalObjectTable localObjects; |
| 89 | |
| 90 | int savedValueIdx; |
| 91 | |
| 92 | // Identifiers |
| 93 | const NPIdentifier _connectId; |
jat@google.com | 03a0876 | 2009-09-04 23:37:06 +0000 | [diff] [blame] | 94 | const NPIdentifier initID; |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 95 | const NPIdentifier toStringID; |
| 96 | |
| 97 | const NPIdentifier connectedID; |
| 98 | const NPIdentifier statsID; |
jat@google.com | f78175f | 2009-09-09 21:57:53 +0000 | [diff] [blame] | 99 | const NPIdentifier gwtId; |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 100 | |
scottb@google.com | b0dbdff | 2009-11-23 21:18:40 +0000 | [diff] [blame] | 101 | const NPIdentifier jsDisconnectedID; |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 102 | const NPIdentifier jsInvokeID; |
| 103 | const NPIdentifier jsResultID; |
| 104 | const NPIdentifier jsTearOffID; |
| 105 | const NPIdentifier jsValueOfID; |
| 106 | const NPIdentifier idx0; |
| 107 | const NPIdentifier idx1; |
| 108 | |
| 109 | NPObject* window; |
| 110 | void dupString(const char* str, NPString& npString); |
| 111 | void dumpObjectBytes(NPObject* obj); |
| 112 | bool makeResult(bool isException, const Value& value, NPVariant* result); |
| 113 | |
| 114 | // SessionHandler methods |
| 115 | virtual bool invoke(HostChannel& channel, const Value& thisObj, |
| 116 | const std::string& methodName, int numArgs, const Value* const args, |
| 117 | Value* returnValue); |
| 118 | virtual bool invokeSpecial(HostChannel& channel, SpecialMethodId dispatchId, |
| 119 | int numArgs, const Value* const args, Value* returnValue); |
| 120 | virtual void freeValue(HostChannel& channel, int idCount, const int* ids); |
| 121 | virtual void sendFreeValues(HostChannel& channel); |
| 122 | virtual void loadJsni(HostChannel& channel, const std::string& js); |
jat@google.com | 03a0876 | 2009-09-04 23:37:06 +0000 | [diff] [blame] | 123 | virtual void fatalError(HostChannel& channel, const std::string& message); |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 124 | |
| 125 | void connect(const NPVariant* args, unsigned argCount, NPVariant* result); |
jat@google.com | 03a0876 | 2009-09-04 23:37:06 +0000 | [diff] [blame] | 126 | void init(const NPVariant* args, unsigned argCount, NPVariant* result); |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 127 | |
| 128 | Value clientMethod_getProperty(HostChannel& channel, int numArgs, const Value* const args); |
| 129 | Value clientMethod_setProperty(HostChannel& channel, int numArgs, const Value* const args); |
| 130 | |
| 131 | void JavaObject_invalidate(int objectId); |
| 132 | bool JavaObject_invoke(int objectId, int dispId, const NPVariant* args, |
| 133 | uint32_t numArgs, NPVariant* result); |
| 134 | bool JavaObject_getProperty(int objectId, int dispId, NPVariant* result); |
| 135 | bool JavaObject_setProperty(int objectId, int dispId, const NPVariant* value); |
| 136 | bool JavaObject_getToStringTearOff(NPVariant* result); |
jat@google.com | 03a0876 | 2009-09-04 23:37:06 +0000 | [diff] [blame] | 137 | |
| 138 | private: |
| 139 | std::string computeTabIdentity(); |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | #endif |