blob: 143b5366419049df10b1561b0fe712ac736a1baa [file] [log] [blame]
// Copyright 2018 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 "shill/dbus/mm1_modem_modem3gpp_proxy.h"
#include "shill/cellular/cellular_error.h"
#include "shill/logging.h"
using std::string;
namespace shill {
namespace Logging {
static auto kModuleLogScope = ScopeLogger::kDBus;
static string ObjectID(const dbus::ObjectPath* p) {
return p->value();
}
} // namespace Logging
namespace mm1 {
ModemModem3gppProxy::ModemModem3gppProxy(const scoped_refptr<dbus::Bus>& bus,
const RpcIdentifier& path,
const string& service)
: proxy_(new org::freedesktop::ModemManager1::Modem::Modem3gppProxy(
bus, service, path)) {}
ModemModem3gppProxy::~ModemModem3gppProxy() = default;
void ModemModem3gppProxy::Register(const std::string& operator_id,
Error* error,
const ResultCallback& callback,
int timeout) {
SLOG(&proxy_->GetObjectPath(), 2) << __func__ << ": " << operator_id;
proxy_->RegisterAsync(operator_id,
base::Bind(&ModemModem3gppProxy::OnRegisterSuccess,
weak_factory_.GetWeakPtr(), callback),
base::Bind(&ModemModem3gppProxy::OnRegisterFailure,
weak_factory_.GetWeakPtr(), callback),
timeout);
}
void ModemModem3gppProxy::Scan(Error* error,
const KeyValueStoresCallback& callback,
int timeout) {
SLOG(&proxy_->GetObjectPath(), 2) << __func__;
proxy_->ScanAsync(base::Bind(&ModemModem3gppProxy::OnScanSuccess,
weak_factory_.GetWeakPtr(), callback),
base::Bind(&ModemModem3gppProxy::OnScanFailure,
weak_factory_.GetWeakPtr(), callback),
timeout);
}
void ModemModem3gppProxy::SetInitialEpsBearerSettings(
const KeyValueStore& properties,
Error* error,
const ResultCallback& callback,
int timeout) {
SLOG(&proxy_->GetObjectPath(), 2) << __func__;
brillo::VariantDictionary properties_dict =
KeyValueStore::ConvertToVariantDictionary(properties);
proxy_->SetInitialEpsBearerSettingsAsync(
properties_dict,
base::Bind(&ModemModem3gppProxy::OnSetEpsBearerSuccess,
weak_factory_.GetWeakPtr(), callback),
base::Bind(&ModemModem3gppProxy::OnSetEpsBearerFailure,
weak_factory_.GetWeakPtr(), callback),
timeout);
}
void ModemModem3gppProxy::OnRegisterSuccess(const ResultCallback& callback) {
SLOG(&proxy_->GetObjectPath(), 2) << __func__;
callback.Run(Error());
}
void ModemModem3gppProxy::OnRegisterFailure(const ResultCallback& callback,
brillo::Error* dbus_error) {
SLOG(&proxy_->GetObjectPath(), 2) << __func__;
Error error;
CellularError::FromMM1ChromeosDBusError(dbus_error, &error);
callback.Run(error);
}
void ModemModem3gppProxy::OnScanSuccess(
const KeyValueStoresCallback& callback,
const std::vector<brillo::VariantDictionary>& results) {
SLOG(&proxy_->GetObjectPath(), 2) << __func__;
std::vector<KeyValueStore> result_stores;
for (const auto& result : results) {
KeyValueStore result_store =
KeyValueStore::ConvertFromVariantDictionary(result);
result_stores.push_back(result_store);
}
callback.Run(result_stores, Error());
}
void ModemModem3gppProxy::OnScanFailure(const KeyValueStoresCallback& callback,
brillo::Error* dbus_error) {
SLOG(&proxy_->GetObjectPath(), 2) << __func__;
Error error;
CellularError::FromMM1ChromeosDBusError(dbus_error, &error);
callback.Run(std::vector<KeyValueStore>(), error);
}
void ModemModem3gppProxy::OnSetEpsBearerSuccess(
const ResultCallback& callback) {
SLOG(&proxy_->GetObjectPath(), 2) << __func__;
callback.Run(Error());
}
void ModemModem3gppProxy::OnSetEpsBearerFailure(const ResultCallback& callback,
brillo::Error* dbus_error) {
SLOG(&proxy_->GetObjectPath(), 2) << __func__;
Error error;
CellularError::FromMM1ChromeosDBusError(dbus_error, &error);
callback.Run(error);
}
} // namespace mm1
} // namespace shill