blob: edd7649115a26bcba52f3e59f4371fa53fe876cc [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_location_proxy.h"
#include "shill/cellular_error.h"
#include "shill/dbus_async_call_helper.h"
#include "shill/logging.h"
using std::string;
namespace shill {
namespace mm1 {
ModemLocationProxy::ModemLocationProxy(DBus::Connection *connection,
const string &path,
const string &service)
: proxy_(connection, path, service) {}
ModemLocationProxy::~ModemLocationProxy() {}
void ModemLocationProxy::Setup(uint32_t sources,
bool signal_location,
Error *error,
const ResultCallback &callback,
int timeout) {
BeginAsyncDBusCall(__func__, proxy_, &Proxy::SetupAsync, callback,
error, &CellularError::FromMM1DBusError, timeout,
sources, signal_location);
}
void ModemLocationProxy::GetLocation(Error *error,
const DBusEnumValueMapCallback &callback,
int timeout) {
BeginAsyncDBusCall(__func__, proxy_, &Proxy::GetLocationAsync, callback,
error, &CellularError::FromMM1DBusError, timeout);
}
ModemLocationProxy::Proxy::Proxy(DBus::Connection *connection,
const string &path,
const string &service)
: DBus::ObjectProxy(*connection, path, service.c_str()) {}
ModemLocationProxy::Proxy::~Proxy() {}
// Method callbacks inherited from
// org::freedesktop::ModemManager1::Modem:LocationProxy
void ModemLocationProxy::Proxy::SetupCallback(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 ModemLocationProxy::Proxy::GetLocationCallback(
const DBusEnumValueMap &location,
const ::DBus::Error &dberror,
void *data) {
SLOG(DBus, 2) << __func__;
scoped_ptr<DBusEnumValueMapCallback> callback(
reinterpret_cast<DBusEnumValueMapCallback *>(data));
Error error;
CellularError::FromMM1DBusError(dberror, &error);
callback->Run(location, error);
}
} // namespace mm1
} // namespace shill