jat@google.com | 5e86cbd | 2009-08-22 23:59:24 +0000 | [diff] [blame] | 1 | /* |
| 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 "FatalErrorMessage.h" |
| 18 | #include "HostChannel.h" |
| 19 | #include "scoped_ptr/scoped_ptr.h" |
| 20 | |
| 21 | FatalErrorMessage::~FatalErrorMessage() { |
| 22 | } |
| 23 | |
| 24 | char FatalErrorMessage::getType() const { |
| 25 | return TYPE; |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Receive an FatalError message from the channel (note that the message |
| 30 | * type has already been read). Caller is responsible for destroying |
| 31 | * returned message. Returns null on error. |
| 32 | */ |
| 33 | FatalErrorMessage* FatalErrorMessage::receive(HostChannel& channel) { |
| 34 | std::string error; |
| 35 | if (!channel.readString(error)) { |
| 36 | // TODO(jat): error handling |
| 37 | printf("Failed to read error message\n"); |
| 38 | return 0; |
| 39 | } |
| 40 | return new FatalErrorMessage(error); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Send a fatal error message on the channel. |
| 45 | */ |
| 46 | bool FatalErrorMessage::send(HostChannel& channel, const std::string& error) { |
| 47 | if (!channel.sendByte(TYPE)) return false; |
| 48 | if (!channel.sendString(error)) return false; |
| 49 | return true; |
| 50 | } |