jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 1 | #ifndef __INVOKESPECIALMESSAGE_H |
| 2 | #define __INVOKESPECIALMESSAGE_H |
| 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 <string> |
| 20 | #include "Message.h" |
| 21 | #include "BrowserChannel.h" |
| 22 | #include "SessionHandler.h" |
| 23 | #include "Value.h" |
| 24 | |
| 25 | class HostChannel; |
| 26 | |
| 27 | /** |
jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 28 | * Class representing an InvokeSpecial message received from the server, and a |
| 29 | * way to send an invoke message to the server. |
jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 30 | */ |
| 31 | class InvokeSpecialMessage : public Message { |
| 32 | public: |
| 33 | static const char TYPE = MESSAGE_TYPE_INVOKESPECIAL; |
| 34 | private: |
| 35 | SessionHandler::SpecialMethodId dispatchId; |
| 36 | int numArgs; |
| 37 | const Value* args; |
| 38 | |
| 39 | protected: |
| 40 | /** |
| 41 | * @param args array of arguments -- InvokeMessage takes ownership and will |
| 42 | * destroy when it is destroyed. |
| 43 | */ |
| 44 | InvokeSpecialMessage(SessionHandler::SpecialMethodId dispatchId, int numArgs, const Value* args) : dispatchId(dispatchId), |
| 45 | numArgs(numArgs), args(args) {} |
| 46 | |
| 47 | public: |
| 48 | ~InvokeSpecialMessage(); |
| 49 | virtual char getType() const; |
| 50 | |
| 51 | SessionHandler::SpecialMethodId getDispatchId() const { return dispatchId; } |
| 52 | int getNumArgs() const { return numArgs; } |
| 53 | const Value* const getArgs() const { return args; } |
| 54 | |
| 55 | static InvokeSpecialMessage* receive(HostChannel& channel); |
| 56 | static bool send(HostChannel& channel, int dispatchId, int numArgs, |
| 57 | const Value* args); |
| 58 | }; |
| 59 | #endif |