blob: aebd00df2e4ce95f861ccd1cf312ddc11d6942fc [file] [log] [blame]
jat@google.com134be542009-08-03 15:30:11 +00001#ifndef _H_SessionHandler
2#define _H_SessionHandler
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 "BrowserChannel.h"
20#include "Value.h"
21
22class HostChannel;
23
24/**
25 * Interface for session-handling needs.
jat@google.com5e86cbd2009-08-22 23:59:24 +000026 *
jat@google.com134be542009-08-03 15:30:11 +000027 * Note that if this is being "added" onto a class which extends a C structure, the inheritance
28 * chain leading to the plain C object must be first in the inheritance list.
jat@google.com5e86cbd2009-08-22 23:59:24 +000029 *
jat@google.com134be542009-08-03 15:30:11 +000030 * For example:
jat@google.com5e86cbd2009-08-22 23:59:24 +000031 *
jat@google.com134be542009-08-03 15:30:11 +000032 * extern "C" {
33 * typedef struct PlainCstruct {
34 * ... data only members here
35 * } PlainCstruct;
36 * };
jat@google.com5e86cbd2009-08-22 23:59:24 +000037 *
jat@google.com134be542009-08-03 15:30:11 +000038 * class MyWrapper: public PlainCstruct, SessionHandler {
39 * ... virtual functions ok here
40 * };
41 */
42class SessionHandler {
43 friend class HostChannel;
44public:
45 enum SpecialMethodId {
46 HasMethod = SPECIAL_HAS_METHOD,
47 HasProperty = SPECIAL_HAS_PROPERTY,
48 GetProperty = SPECIAL_GET_PROPERTY,
49 SetProperty = SPECIAL_SET_PROPERTY
50 };
51protected:
scottb@google.comb0dbdff2009-11-23 21:18:40 +000052 SessionHandler(): alreadyDisconnected(false) {
53 }
54
55 /**
56 * Called by the server socket when it cannot read, write, or flush.
57 */
58 void disconnectDetected() {
59 if (!alreadyDisconnected) {
60 alreadyDisconnected = true;
61 disconnectDetectedImpl();
62 }
63 }
64
65 /**
66 * Implementors should invoke __gwt_disconnected() in the hosted.html window
67 * to "glass" the screen with a disconnect message.
68 */
69 virtual void disconnectDetectedImpl() = 0;
jat@google.com5e86cbd2009-08-22 23:59:24 +000070
71 /**
72 * Report a fatal error -- the channel will be closed after this method
73 * returns.
74 */
75 virtual void fatalError(HostChannel& channel, const std::string& message) = 0;
76
jat@google.com134be542009-08-03 15:30:11 +000077 virtual void freeValue(HostChannel& channel, int idCount, const int* ids) = 0;
78
79 virtual void loadJsni(HostChannel& channel, const std::string& js) = 0;
80
81 /**
82 * Does not own any of its args -- must copy them if it wants them and should not free the
83 * ones passed in.
jat@google.com5e86cbd2009-08-22 23:59:24 +000084 *
jat@google.com134be542009-08-03 15:30:11 +000085 * Returns true if an exception occurred.
86 */
87 virtual bool invoke(HostChannel& channel, const Value& thisObj, const std::string& methodName,
88 int numArgs, const Value* const args, Value* returnValue)=0;
jat@google.com5e86cbd2009-08-22 23:59:24 +000089
jat@google.com134be542009-08-03 15:30:11 +000090 /**
91 * Invoke a plugin-provided method with the given args. As above, this method does not own
92 * any of its args.
jat@google.com5e86cbd2009-08-22 23:59:24 +000093 *
jat@google.com134be542009-08-03 15:30:11 +000094 * Returns true if an exception occurred.
95 */
96 virtual bool invokeSpecial(HostChannel& channel, SpecialMethodId method, int numArgs,
97 const Value* const args, Value* returnValue) = 0;
98
99 /**
100 * Send any queued up free values back to the server.
101 */
102 virtual void sendFreeValues(HostChannel& channel) = 0;
103
104 virtual ~SessionHandler() {}
scottb@google.comb0dbdff2009-11-23 21:18:40 +0000105
106private:
107 bool alreadyDisconnected;
jat@google.com134be542009-08-03 15:30:11 +0000108};
109
110#endif