blob: 05f3a1b1cd1ca0e2cda8725d559917c7953e719c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/automation/automation_provider_json.h"
#include "base/json/json_writer.h"
#include "base/json/string_escape.h"
#include "chrome/test/automation/automation_messages.h"
namespace {
// Util for creating a JSON error return string (dict with key
// 'error' and error string value). No need to quote input.
std::string JSONErrorString(const std::string& err) {
std::string prefix = "{\"error\": \"";
std::string no_quote_err;
std::string suffix = "\"}";
base::JsonDoubleQuote(err, false, &no_quote_err);
return prefix + no_quote_err + suffix;
}
} // namespace
AutomationJSONReply::AutomationJSONReply(AutomationProvider* provider,
IPC::Message* reply_message)
: provider_(provider),
message_(reply_message) {
}
AutomationJSONReply::~AutomationJSONReply() {
DCHECK(!message_) << "JSON automation request not replied!";
}
void AutomationJSONReply::SendSuccess(const Value* value) {
DCHECK(message_) << "Resending reply for JSON automation request";
std::string json_string = "{}";
if (value)
base::JSONWriter::Write(value, false, &json_string);
AutomationMsg_SendJSONRequest::WriteReplyParams(
message_, json_string, true);
provider_->Send(message_);
message_ = NULL;
}
void AutomationJSONReply::SendError(const std::string& error_message) {
DCHECK(message_) << "Resending reply for JSON automation request";
std::string json_string = JSONErrorString(error_message);
AutomationMsg_SendJSONRequest::WriteReplyParams(
message_, json_string, false);
provider_->Send(message_);
message_ = NULL;
}
|