blob: 5fd154003881bb67bc82bd35492f5acdbd9573b3 [file] [log] [blame]
jat@google.com134be542009-08-03 15:30:11 +00001/*
2 * Copyright 2008 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15 */
16
17#include "InvokeSpecialMessage.h"
18#include "HostChannel.h"
19#include "SessionHandler.h"
20#include "scoped_ptr/scoped_ptr.h"
21
22InvokeSpecialMessage::~InvokeSpecialMessage() {
23 delete[] args;
24}
25
26char InvokeSpecialMessage::getType() const {
27 return TYPE;
28}
29
30/**
31 * Receive an InvokeSpecial message from the channel (note that the message
32 * type has already been read). Caller is responsible for destroying
33 * returned message. Returns null on error.
34 */
35InvokeSpecialMessage* InvokeSpecialMessage::receive(HostChannel& channel) {
36 char dispatchId;
37 if (!channel.readByte(dispatchId)) {
38 // TODO(jat): error handling
39 printf("Failed to read method name\n");
40 return 0;
41 }
42 int numArgs;
43 if (!channel.readInt(numArgs)) {
44 // TODO(jat): error handling
45 printf("Failed to read #args\n");
46 return 0;
47 }
48 scoped_array<Value> args(new Value[numArgs]);
49 for (int i = 0; i < numArgs; ++i) {
50 if (!channel.readValue(args[i])) {
51 // TODO(jat): error handling
52 printf("Failed to read arg[%d]\n", i);
53 return 0;
54 }
55 }
56
57 SessionHandler::SpecialMethodId id =
58 static_cast<SessionHandler::SpecialMethodId>(dispatchId);
59 return new InvokeSpecialMessage(id, numArgs, args.release());
60}
61
62/**
63 * Request the server perform a special method and return the result.
64 */
65bool InvokeSpecialMessage::send(HostChannel& channel, int dispatchId,
66 int numArgs, const Value* args) {
67 if (!channel.sendByte(TYPE)) return false;
68 if (!channel.sendByte(dispatchId)) return false;
69 if (!channel.sendInt(numArgs)) return false;
70 for (int i = 0; i < numArgs; ++i) {
71 if (!channel.sendValue(args[i])) return false;
72 }
73 return true;
74}