| // 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/profile_dbus_adaptor.h" |
| |
| #include <map> |
| #include <string> |
| #include <vector> |
| |
| #include <dbus-c++/dbus.h> |
| |
| #include "shill/error.h" |
| #include "shill/logging.h" |
| #include "shill/profile.h" |
| #include "shill/profile_dbus_property_exporter.h" |
| #include "shill/service.h" |
| |
| using std::map; |
| using std::string; |
| using std::vector; |
| |
| namespace shill { |
| |
| // static |
| const char ProfileDBusAdaptor::kPath[] = "/profile/"; |
| |
| ProfileDBusAdaptor::ProfileDBusAdaptor(DBus::Connection* conn, Profile *profile) |
| : DBusAdaptor(conn, kPath + profile->GetFriendlyName()), |
| profile_(profile) { |
| } |
| |
| ProfileDBusAdaptor::~ProfileDBusAdaptor() { |
| profile_ = NULL; |
| } |
| |
| void ProfileDBusAdaptor::EmitBoolChanged(const string &name, bool value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::BoolToVariant(value)); |
| } |
| |
| void ProfileDBusAdaptor::EmitUintChanged(const string &name, |
| uint32 value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::Uint32ToVariant(value)); |
| } |
| |
| void ProfileDBusAdaptor::EmitIntChanged(const string &name, int value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::Int32ToVariant(value)); |
| } |
| |
| void ProfileDBusAdaptor::EmitStringChanged(const string &name, |
| const string &value) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| PropertyChanged(name, DBusAdaptor::StringToVariant(value)); |
| } |
| |
| map<string, ::DBus::Variant> ProfileDBusAdaptor::GetProperties( |
| ::DBus::Error &error) { |
| SLOG(DBus, 2) << __func__; |
| map<string, ::DBus::Variant> properties; |
| DBusAdaptor::GetProperties(profile_->store(), &properties, &error); |
| return properties; |
| } |
| |
| void ProfileDBusAdaptor::SetProperty(const string &name, |
| const ::DBus::Variant &value, |
| ::DBus::Error &error) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| if (DBusAdaptor::SetProperty(profile_->mutable_store(), |
| name, |
| value, |
| &error)) { |
| PropertyChanged(name, value); |
| } |
| } |
| |
| map<string, ::DBus::Variant> ProfileDBusAdaptor::GetEntry( |
| const std::string &name, |
| ::DBus::Error &error) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| Error e; |
| ServiceRefPtr service = profile_->GetServiceFromEntry(name, &e); |
| map<string, ::DBus::Variant> properties; |
| if (e.IsSuccess()) { |
| DBusAdaptor::GetProperties(service->store(), &properties, &error); |
| return properties; |
| } |
| |
| ProfileDBusPropertyExporter loader(profile_->GetConstStorage(), name); |
| if (!loader.LoadServiceProperties(&properties, &e)) { |
| e.ToDBusError(&error); |
| } |
| return properties; |
| } |
| |
| void ProfileDBusAdaptor::DeleteEntry(const std::string &name, |
| ::DBus::Error &error) { |
| SLOG(DBus, 2) << __func__ << ": " << name; |
| Error e; |
| profile_->DeleteEntry(name, &e); |
| e.ToDBusError(&error); |
| } |
| |
| } // namespace shill |