blob: 9694dad8643f64ddc5e61fd2f95f08661e517817 [file] [log] [blame]
// Copyright 2013 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 "components/safe_json/safe_json_parser_impl.h"
#include "base/callback.h"
#include "base/sequenced_task_runner.h"
#include "base/threading/sequenced_task_runner_handle.h"
#include "base/values.h"
#include "components/strings/grit/components_strings.h"
#include "content/public/browser/browser_thread.h"
#include "ui/base/l10n/l10n_util.h"
namespace safe_json {
SafeJsonParserImpl::SafeJsonParserImpl(const std::string& unsafe_json,
const SuccessCallback& success_callback,
const ErrorCallback& error_callback)
: unsafe_json_(unsafe_json),
success_callback_(success_callback),
error_callback_(error_callback) {}
SafeJsonParserImpl::~SafeJsonParserImpl() = default;
void SafeJsonParserImpl::Start() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
mojo_json_parser_.reset(
new content::UtilityProcessMojoClient<mojom::SafeJsonParser>(
l10n_util::GetStringUTF16(IDS_UTILITY_PROCESS_JSON_PARSER_NAME)));
mojo_json_parser_->set_error_callback(base::Bind(
&SafeJsonParserImpl::OnConnectionError, base::Unretained(this)));
mojo_json_parser_->Start();
mojo_json_parser_->service()->Parse(
std::move(unsafe_json_),
base::Bind(&SafeJsonParserImpl::OnParseDone, base::Unretained(this)));
}
void SafeJsonParserImpl::OnConnectionError() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Shut down the utility process.
mojo_json_parser_.reset();
ReportResults(nullptr, "Connection error with the json parser process.");
}
void SafeJsonParserImpl::OnParseDone(std::unique_ptr<base::Value> result,
const base::Optional<std::string>& error) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Shut down the utility process.
mojo_json_parser_.reset();
ReportResults(std::move(result), error.value_or(""));
}
void SafeJsonParserImpl::ReportResults(std::unique_ptr<base::Value> parsed_json,
const std::string& error) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (error.empty() && parsed_json) {
if (!success_callback_.is_null())
success_callback_.Run(std::move(parsed_json));
} else {
if (!error_callback_.is_null())
error_callback_.Run(error);
}
// The parsing is done whether an error occured or not, so this instance can
// be cleaned up.
delete this;
}
} // namespace safe_json