| // 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/service_dbus_adaptor.h" |
| |
| #include <map> |
| #include <string> |
| |
| #include "shill/error.h" |
| #include "shill/logging.h" |
| #include "shill/service.h" |
| |
| using std::map; |
| using std::string; |
| using std::vector; |
| |
| namespace shill { |
| |
| // static |
| const char ServiceDBusAdaptor::kPath[] = "/service/"; |
| |
| ServiceDBusAdaptor::ServiceDBusAdaptor(DBus::Connection* conn, Service *service) |
| : DBusAdaptor(conn, kPath + service->unique_name()), |
| service_(service) {} |
| |
| ServiceDBusAdaptor::~ServiceDBusAdaptor() { |
| service_ = NULL; |
| } |
| |
| void ServiceDBusAdaptor::UpdateConnected() {} |
| |
| void ServiceDBusAdaptor::EmitBoolChanged(const string &name, bool value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::BoolToVariant(value)); |
| } |
| |
| void ServiceDBusAdaptor::EmitUint8Changed(const string &name, uint8 value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::ByteToVariant(value)); |
| } |
| |
| void ServiceDBusAdaptor::EmitUint16Changed(const string &name, uint16 value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::Uint16ToVariant(value)); |
| } |
| |
| void ServiceDBusAdaptor::EmitUintChanged(const string &name, uint32 value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::Uint32ToVariant(value)); |
| } |
| |
| void ServiceDBusAdaptor::EmitIntChanged(const string &name, int value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::Int32ToVariant(value)); |
| } |
| |
| void ServiceDBusAdaptor::EmitRpcIdentifierChanged(const string &name, |
| const string &value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::PathToVariant(value)); |
| } |
| |
| void ServiceDBusAdaptor::EmitStringChanged(const string &name, |
| const string &value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::StringToVariant(value)); |
| } |
| |
| void ServiceDBusAdaptor::EmitStringmapChanged(const string &name, |
| const Stringmap &value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::StringmapToVariant(value)); |
| } |
| |
| map<string, ::DBus::Variant> ServiceDBusAdaptor::GetProperties( |
| ::DBus::Error &error) { |
| SLOG(DBus, 2) << __func__; |
| map<string, ::DBus::Variant> properties; |
| DBusAdaptor::GetProperties(service_->store(), &properties, &error); |
| return properties; |
| } |
| |
| void ServiceDBusAdaptor::SetProperty(const string &name, |
| const ::DBus::Variant &value, |
| ::DBus::Error &error) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| DBusAdaptor::SetProperty(service_->mutable_store(), name, value, &error); |
| if (!error.is_set()) { |
| service_->OnPropertyChanged(name); |
| } |
| } |
| |
| void ServiceDBusAdaptor::ClearProperty(const string &name, |
| ::DBus::Error &error) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| DBusAdaptor::ClearProperty(service_->mutable_store(), name, &error); |
| if (!error.is_set()) { |
| service_->OnPropertyChanged(name); |
| } |
| } |
| |
| vector<bool> ServiceDBusAdaptor::ClearProperties(const vector<string> &names, |
| ::DBus::Error &/*error*/) { |
| SLOG(DBus, 2) << __func__; |
| vector<bool> results; |
| vector<string>::const_iterator it; |
| for (it = names.begin(); it != names.end(); ++it) { |
| ::DBus::Error error; |
| ClearProperty(*it, error); |
| results.push_back(!error.is_set()); |
| } |
| return results; |
| } |
| |
| void ServiceDBusAdaptor::Connect(::DBus::Error &error) { |
| SLOG(DBus, 2) << __func__; |
| Error e; |
| service_->Connect(&e); |
| e.ToDBusError(&error); |
| } |
| |
| void ServiceDBusAdaptor::Disconnect(::DBus::Error &error) { |
| SLOG(DBus, 2) << __func__; |
| Error e; |
| service_->UserInitiatedDisconnect(&e); |
| e.ToDBusError(&error); |
| } |
| |
| void ServiceDBusAdaptor::Remove(::DBus::Error &/*error*/) { |
| SLOG(DBus, 2) << __func__; |
| } |
| |
| void ServiceDBusAdaptor::MoveBefore(const ::DBus::Path& , |
| ::DBus::Error &/*error*/) { |
| SLOG(DBus, 2) << __func__; |
| } |
| |
| void ServiceDBusAdaptor::MoveAfter(const ::DBus::Path& , |
| ::DBus::Error &/*error*/) { |
| SLOG(DBus, 2) << __func__; |
| } |
| |
| void ServiceDBusAdaptor::ActivateCellularModem(const string &carrier, |
| ::DBus::Error &error) { |
| SLOG(DBus, 2) << __func__; |
| Error e(Error::kOperationInitiated); |
| DBus::Tag *tag = new DBus::Tag(); |
| service_->ActivateCellularModem(carrier, &e, GetMethodReplyCallback(tag)); |
| ReturnResultOrDefer(tag, e, &error); |
| } |
| |
| } // namespace shill |