blob: 0a2b1fc849446824fbd55bd1ce001ab4ed23333e [file] [log] [blame]
jat@google.com134be542009-08-03 15:30:11 +00001#ifndef _H_FFSessionHandler
2#define _H_FFSessionHandler
3/*
4 * Copyright 2008 Google Inc.
jat@google.com5e86cbd2009-08-22 23:59:24 +00005 *
jat@google.com134be542009-08-03 15:30:11 +00006 * 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.com5e86cbd2009-08-22 23:59:24 +00009 *
jat@google.com134be542009-08-03 15:30:11 +000010 * http://www.apache.org/licenses/LICENSE-2.0
jat@google.com5e86cbd2009-08-22 23:59:24 +000011 *
jat@google.com134be542009-08-03 15:30:11 +000012 * 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.com23181962009-09-03 22:22:56 +000024#include "Preferences.h"
jat@google.com134be542009-08-03 15:30:11 +000025
26#include "jsapi.h"
27
28class HostChannel;
29class Value;
30
31class FFSessionHandler : public SessionData, public SessionHandler {
32 friend class JavaObject;
33public:
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
43protected:
scottb@google.comb0dbdff2009-11-23 21:18:40 +000044 virtual void disconnectDetectedImpl();
jat@google.com134be542009-08-03 15:30:11 +000045 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.com5e86cbd2009-08-22 23:59:24 +000052 virtual void fatalError(HostChannel& channel, const std::string& message);
jat@google.com134be542009-08-03 15:30:11 +000053
54private:
55 void getStringObjectClass(JSContext* ctx);
56 void getToStringTearOff(JSContext* ctx);
jat@google.com5e86cbd2009-08-22 23:59:24 +000057 void* identityFromObject(JSObject* obj);
jat@google.com134be542009-08-03 15:30:11 +000058
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.com5e86cbd2009-08-22 23:59:24 +000068 std::map<void*, int> jsIdsByObject;
jat@google.com134be542009-08-03 15:30:11 +000069};
70
jat@google.com134be542009-08-03 15:30:11 +000071#endif