jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 1 | #ifndef _H_FFSessionHandler |
| 2 | #define _H_FFSessionHandler |
| 3 | /* |
| 4 | * Copyright 2008 Google Inc. |
jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 5 | * |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 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 |
jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 9 | * |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 11 | * |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 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 <set> |
| 20 | #include <map> |
| 21 | |
| 22 | #include "mozincludes.h" |
| 23 | #include "SessionData.h" |
jat@google.com | 2318196 | 2009-09-03 22:22:56 +0000 | [diff] [blame] | 24 | #include "Preferences.h" |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 25 | |
| 26 | #include "jsapi.h" |
| 27 | |
| 28 | class HostChannel; |
| 29 | class Value; |
| 30 | |
| 31 | class FFSessionHandler : public SessionData, public SessionHandler { |
| 32 | friend class JavaObject; |
| 33 | public: |
| 34 | FFSessionHandler(HostChannel* channel); |
| 35 | ~FFSessionHandler(void); |
| 36 | virtual void makeValueFromJsval(Value& retVal, JSContext* ctx, |
| 37 | const jsval& value); |
| 38 | virtual void makeJsvalFromValue(jsval& retVal, JSContext* ctx, |
| 39 | const Value& value); |
| 40 | virtual void freeJavaObject(int objectId); |
| 41 | void disconnect(); |
| 42 | |
| 43 | protected: |
scottb@google.com | b0dbdff | 2009-11-23 21:18:40 +0000 | [diff] [blame] | 44 | virtual void disconnectDetectedImpl(); |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 45 | virtual void freeValue(HostChannel& channel, int idCount, const int* ids); |
| 46 | virtual void loadJsni(HostChannel& channel, const std::string& js); |
| 47 | virtual bool invoke(HostChannel& channel, const Value& thisObj, const std::string& methodName, |
| 48 | int numArgs, const Value* const args, Value* returnValue); |
| 49 | virtual bool invokeSpecial(HostChannel& channel, SpecialMethodId method, int numArgs, |
| 50 | const Value* const args, Value* returnValue); |
| 51 | virtual void sendFreeValues(HostChannel& channel); |
jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 52 | virtual void fatalError(HostChannel& channel, const std::string& message); |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 53 | |
| 54 | private: |
| 55 | void getStringObjectClass(JSContext* ctx); |
| 56 | void getToStringTearOff(JSContext* ctx); |
jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 57 | void* identityFromObject(JSObject* obj); |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 58 | |
| 59 | int jsObjectId; |
| 60 | |
| 61 | std::map<int, JSObject*> javaObjectsById; |
| 62 | std::set<int> javaObjectsToFree; |
| 63 | |
| 64 | // Array of JSObjects exposed to the host |
| 65 | JSObject* jsObjectsById; |
| 66 | JSClass* stringObjectClass; |
| 67 | |
jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 68 | std::map<void*, int> jsIdsByObject; |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 69 | }; |
| 70 | |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 71 | #endif |