blob: 04fcc36a202a27f7620dc2e1b9ad9a74b49ef649 [file] [log] [blame]
// Copyright 2014 The Chromium OS 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 "buffet/manager.h"
#include <map>
#include <string>
#include <base/bind.h>
#include <base/bind_helpers.h>
#include <base/json/json_reader.h>
#include <base/json/json_writer.h>
#include <chromeos/dbus/async_event_sequencer.h>
#include <chromeos/dbus/exported_object_manager.h>
#include <chromeos/errors/error.h>
#include <chromeos/key_value_store.h>
#include <dbus/bus.h>
#include <dbus/object_path.h>
#include <dbus/values_util.h>
#include "buffet/commands/command_instance.h"
#include "buffet/commands/command_manager.h"
#include "buffet/states/state_change_queue.h"
#include "buffet/states/state_manager.h"
using chromeos::dbus_utils::AsyncEventSequencer;
using chromeos::dbus_utils::ExportedObjectManager;
namespace buffet {
namespace {
// Max of 100 state update events should be enough in the queue.
const size_t kMaxStateChangeQueueSize = 100;
} // anonymous namespace
Manager::Manager(const base::WeakPtr<ExportedObjectManager>& object_manager)
: dbus_object_(object_manager.get(),
object_manager->GetBus(),
org::chromium::Buffet::ManagerAdaptor::GetObjectPath()) {}
Manager::~Manager() {}
void Manager::RegisterAsync(const AsyncEventSequencer::CompletionAction& cb) {
command_manager_ =
std::make_shared<CommandManager>(dbus_object_.GetObjectManager());
command_manager_->Startup();
state_change_queue_ = std::unique_ptr<StateChangeQueue>(
new StateChangeQueue(kMaxStateChangeQueueSize));
state_manager_ = std::make_shared<StateManager>(state_change_queue_.get());
state_manager_->Startup();
std::unique_ptr<chromeos::KeyValueStore> config_store{
new chromeos::KeyValueStore};
config_store->Load(base::FilePath(
FILE_PATH_LITERAL("/etc/buffet/buffet.conf")));
device_info_ = std::unique_ptr<DeviceRegistrationInfo>(
new DeviceRegistrationInfo(command_manager_,
state_manager_,
std::move(config_store)));
device_info_->Load();
dbus_adaptor_.RegisterWithDBusObject(&dbus_object_);
dbus_object_.RegisterAsync(cb);
}
void Manager::StartDevice(DBusMethodResponse<> response) {
LOG(INFO) << "Received call to Manager.StartDevice()";
chromeos::ErrorPtr error;
device_info_->StartDevice(&error);
if (error)
response->ReplyWithError(error.get());
else
response->Return();
}
void Manager::CheckDeviceRegistered(DBusMethodResponse<std::string> response) {
LOG(INFO) << "Received call to Manager.CheckDeviceRegistered()";
chromeos::ErrorPtr error;
bool registered = device_info_->CheckRegistration(&error);
// If it fails due to any reason other than 'device not registered',
// treat it as a real error and report it to the caller.
if (!registered &&
!error->HasError(kErrorDomainGCD, "device_not_registered")) {
response->ReplyWithError(error.get());
return;
}
std::string device_id;
if (registered) {
error.reset();
device_id = device_info_->GetDeviceId(&error);
if (error) {
response->ReplyWithError(error.get());
return;
}
}
response->Return(device_id);
}
void Manager::GetDeviceInfo(DBusMethodResponse<std::string> response) {
LOG(INFO) << "Received call to Manager.GetDeviceInfo()";
chromeos::ErrorPtr error;
auto device_info = device_info_->GetDeviceInfo(&error);
if (!device_info) {
response->ReplyWithError(error.get());
return;
}
std::string device_info_str;
base::JSONWriter::Write(device_info.get(), &device_info_str);
response->Return(device_info_str);
}
void Manager::RegisterDevice(DBusMethodResponse<std::string> response,
const chromeos::VariantDictionary& params) {
LOG(INFO) << "Received call to Manager.RegisterDevice()";
chromeos::ErrorPtr error;
std::map<std::string, std::string> str_params;
for (const auto& pair : params) {
if (!pair.second.IsTypeCompatible<std::string>()) {
response->ReplyWithError(FROM_HERE, chromeos::errors::dbus::kDomain,
DBUS_ERROR_INVALID_ARGS,
"String value expected");
return;
}
str_params.emplace_hint(str_params.end(),
pair.first, pair.second.Get<std::string>());
}
std::string device_id = device_info_->RegisterDevice(str_params, &error);
if (error)
response->ReplyWithError(error.get());
else
response->Return(device_id);
}
void Manager::UpdateState(DBusMethodResponse<> response,
const chromeos::VariantDictionary& property_set) {
chromeos::ErrorPtr error;
base::Time timestamp = base::Time::Now();
bool all_success = true;
for (const auto& pair : property_set) {
if (!state_manager_->SetPropertyValue(pair.first, pair.second,
timestamp, &error)) {
// Remember that an error occurred but keep going and update the rest of
// the properties if possible.
all_success = false;
}
}
if (!all_success)
response->ReplyWithError(error.get());
else
response->Return();
}
bool Manager::GetState(chromeos::ErrorPtr* error, std::string* state) {
auto json = state_manager_->GetStateValuesAsJson(error);
if (!json)
return false;
base::JSONWriter::Write(json.get(), state);
return true;
}
void Manager::AddCommand(DBusMethodResponse<> response,
const std::string& json_command) {
static int next_id = 0;
std::string error_message;
std::unique_ptr<base::Value> value(base::JSONReader::ReadAndReturnError(
json_command, base::JSON_PARSE_RFC, nullptr, &error_message));
if (!value) {
response->ReplyWithError(FROM_HERE, chromeos::errors::json::kDomain,
chromeos::errors::json::kParseError,
error_message);
return;
}
chromeos::ErrorPtr error;
auto command_instance = buffet::CommandInstance::FromJson(
value.get(), command_manager_->GetCommandDictionary(), &error);
if (!command_instance) {
response->ReplyWithError(error.get());
return;
}
command_instance->SetID(std::to_string(++next_id));
command_manager_->AddCommand(std::move(command_instance));
response->Return();
}
std::string Manager::TestMethod(const std::string& message) {
LOG(INFO) << "Received call to test method: " << message;
return message;
}
} // namespace buffet