blob: 08c315f30bcc8dc4e67552a158f3774a91131fbd [file] [log] [blame]
jat@google.com5e86cbd2009-08-22 23:59:24 +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 <cstdarg>
18#include <vector>
19#include "ChooseTransportMessage.h"
20#include "HostChannel.h"
21#include "scoped_ptr/scoped_ptr.h"
22
23ChooseTransportMessage::~ChooseTransportMessage() {
24}
25
26char ChooseTransportMessage::getType() const {
27 return TYPE;
28}
29
30/**
31 * Receive an ChooseTransport 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 */
35ChooseTransportMessage* ChooseTransportMessage::receive(HostChannel& channel) {
36 int length;
37 if (!channel.readInt(length)) {
38 // TODO(jat): error handling
39 printf("Failed to read transport\n");
40 return 0;
41 }
42 std::vector<std::string> transports;
43 for (int i = 0; i < length; ++i) {
44 std::string transport;
45 if (!channel.readString(transport)) {
46 // TODO(jat): error handling
47 printf("Failed to read transport\n");
48 return 0;
49 }
50 transports.push_back(transport);
51 }
52 return new ChooseTransportMessage(transports);
53}
54
55/**
56 * Send this ChooseTransport message on the channel.
57 */
58bool ChooseTransportMessage::send(HostChannel& channel,
59 const std::vector<std::string>& transports) {
60 if (!channel.sendByte(TYPE)) return false;
61 int n = transports.size();
62 if (!channel.sendInt(n)) return false;
63 for (int i = 0; i < n; ++i) {
64 if (!channel.sendString(transports[i])) return false;
65 }
66 return true;
67}