jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 1 | #ifndef _H_SessionHandler |
| 2 | #define _H_SessionHandler |
| 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 "BrowserChannel.h" |
| 20 | #include "Value.h" |
| 21 | |
| 22 | class HostChannel; |
| 23 | |
| 24 | /** |
| 25 | * Interface for session-handling needs. |
jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 26 | * |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 27 | * 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.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 29 | * |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 30 | * For example: |
jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 31 | * |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 32 | * extern "C" { |
| 33 | * typedef struct PlainCstruct { |
| 34 | * ... data only members here |
| 35 | * } PlainCstruct; |
| 36 | * }; |
jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 37 | * |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 38 | * class MyWrapper: public PlainCstruct, SessionHandler { |
| 39 | * ... virtual functions ok here |
| 40 | * }; |
| 41 | */ |
| 42 | class SessionHandler { |
| 43 | friend class HostChannel; |
| 44 | public: |
| 45 | enum SpecialMethodId { |
| 46 | HasMethod = SPECIAL_HAS_METHOD, |
| 47 | HasProperty = SPECIAL_HAS_PROPERTY, |
| 48 | GetProperty = SPECIAL_GET_PROPERTY, |
| 49 | SetProperty = SPECIAL_SET_PROPERTY |
| 50 | }; |
| 51 | protected: |
scottb@google.com | b0dbdff | 2009-11-23 21:18:40 +0000 | [diff] [blame] | 52 | 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.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 70 | |
| 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.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 77 | 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.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 84 | * |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 85 | * 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.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 89 | |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 90 | /** |
| 91 | * Invoke a plugin-provided method with the given args. As above, this method does not own |
| 92 | * any of its args. |
jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 93 | * |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 94 | * 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.com | b0dbdff | 2009-11-23 21:18:40 +0000 | [diff] [blame] | 105 | |
| 106 | private: |
| 107 | bool alreadyDisconnected; |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | #endif |