blob: 74367e8ac479f4c92051a80c6fdba737edf01ba6 [file] [log] [blame]
// Copyright (c) 2012 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/mm1_modem_modemcdma_proxy.h"
#include "shill/cellular_error.h"
#include "shill/logging.h"
using std::string;
namespace shill {
namespace mm1 {
ModemModemCdmaProxy::ModemModemCdmaProxy(DBus::Connection *connection,
const string &path,
const string &service)
: proxy_(connection, path, service) {}
ModemModemCdmaProxy::~ModemModemCdmaProxy() {}
void ModemModemCdmaProxy::Activate(const std::string &carrier,
Error *error,
const ResultCallback &callback,
int timeout) {
scoped_ptr<ResultCallback> cb(new ResultCallback(callback));
try {
SLOG(DBus, 2) << __func__;
proxy_.Activate(carrier, cb.get(), timeout);
cb.release();
} catch (const DBus::Error &e) {
if (error)
CellularError::FromMM1DBusError(e, error);
}
}
void ModemModemCdmaProxy::ActivateManual(
const DBusPropertiesMap &properties,
Error *error,
const ResultCallback &callback,
int timeout) {
scoped_ptr<ResultCallback> cb(new ResultCallback(callback));
try {
SLOG(DBus, 2) << __func__;
proxy_.ActivateManual(properties, cb.get(), timeout);
cb.release();
} catch (const DBus::Error &e) {
if (error)
CellularError::FromMM1DBusError(e, error);
}
}
void ModemModemCdmaProxy::set_activation_state_callback(
const ActivationStateSignalCallback &callback) {
proxy_.set_activation_state_callback(callback);
}
// Inherited properties from ModemModemCdmaProxyInterface.
std::string ModemModemCdmaProxy::Meid() {
SLOG(DBus, 2) << __func__;
try {
return proxy_.Meid();
} catch (const DBus::Error &e) {
LOG(FATAL) << "DBus exception: " << e.name() << ": " << e.what();
return std::string(); // Make the compiler happy.
}
};
std::string ModemModemCdmaProxy::Esn() {
SLOG(DBus, 2) << __func__;
try {
return proxy_.Esn();
} catch (const DBus::Error &e) {
LOG(FATAL) << "DBus exception: " << e.name() << ": " << e.what();
return std::string(); // Make the compiler happy.
}
};
uint32_t ModemModemCdmaProxy::ActivationState() {
SLOG(DBus, 2) << __func__;
try {
return proxy_.ActivationState();
} catch (const DBus::Error &e) {
LOG(FATAL) << "DBus exception: " << e.name() << ": " << e.what();
return 0; // Make the compiler happy.
}
};
uint32_t ModemModemCdmaProxy::Sid() {
SLOG(DBus, 2) << __func__;
try {
return proxy_.Sid();
} catch (const DBus::Error &e) {
LOG(FATAL) << "DBus exception: " << e.name() << ": " << e.what();
return 0; // Make the compiler happy.
}
};
uint32_t ModemModemCdmaProxy::Nid() {
SLOG(DBus, 2) << __func__;
try {
return proxy_.Nid();
} catch (const DBus::Error &e) {
LOG(FATAL) << "DBus exception: " << e.name() << ": " << e.what();
return 0; // Make the compiler happy.
}
};
uint32_t ModemModemCdmaProxy::Cdma1xRegistrationState() {
SLOG(DBus, 2) << __func__;
try {
return proxy_.Cdma1xRegistrationState();
} catch (const DBus::Error &e) {
LOG(FATAL) << "DBus exception: " << e.name() << ": " << e.what();
return 0; // Make the compiler happy.
}
};
uint32_t ModemModemCdmaProxy::EvdoRegistrationState() {
SLOG(DBus, 2) << __func__;
try {
return proxy_.EvdoRegistrationState();
} catch (const DBus::Error &e) {
LOG(FATAL) << "DBus exception: " << e.name() << ": " << e.what();
return 0; // Make the compiler happy.
}
};
// ModemModemCdmaProxy::Proxy
ModemModemCdmaProxy::Proxy::Proxy(DBus::Connection *connection,
const std::string &path,
const std::string &service)
: DBus::ObjectProxy(*connection, path, service.c_str()) {}
ModemModemCdmaProxy::Proxy::~Proxy() {}
void ModemModemCdmaProxy::Proxy::set_activation_state_callback(
const ActivationStateSignalCallback &callback) {
activation_state_callback_ = callback;
}
// Signal callbacks inherited from Proxy
void ModemModemCdmaProxy::Proxy::ActivationStateChanged(
const uint32_t &activation_state,
const uint32_t &activation_error,
const DBusPropertiesMap &status_changes) {
SLOG(DBus, 2) << __func__;
activation_state_callback_.Run(activation_state,
activation_error,
status_changes);
}
// Method callbacks inherited from
// org::freedesktop::ModemManager1::Modem::ModemModemCdmaProxy
void ModemModemCdmaProxy::Proxy::ActivateCallback(const ::DBus::Error& dberror,
void *data) {
SLOG(DBus, 2) << __func__;
scoped_ptr<ResultCallback> callback(reinterpret_cast<ResultCallback *>(data));
Error error;
CellularError::FromMM1DBusError(dberror, &error);
callback->Run(error);
}
void ModemModemCdmaProxy::Proxy::ActivateManualCallback(
const ::DBus::Error& dberror,
void *data) {
SLOG(DBus, 2) << __func__;
scoped_ptr<ResultCallback> callback(reinterpret_cast<ResultCallback *>(data));
Error error;
CellularError::FromMM1DBusError(dberror, &error);
callback->Run(error);
}
} // namespace mm1
} // namespace shill