blob: caa68b3fa1b1d78de495b8843d24b6767b93f17f [file] [log] [blame]
//
// Copyright (C) 2015 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#include "update_engine/shill_proxy.h"
#include <chromeos/dbus/service_constants.h>
using org::chromium::flimflam::ManagerProxy;
using org::chromium::flimflam::ManagerProxyInterface;
using org::chromium::flimflam::ServiceProxy;
using org::chromium::flimflam::ServiceProxyInterface;
namespace chromeos_update_engine {
ShillProxy::ShillProxy(const scoped_refptr<dbus::Bus>& bus) : bus_(bus) {}
bool ShillProxy::Init() {
manager_proxy_.reset(
new ManagerProxy(bus_,
shill::kFlimflamServiceName,
dbus::ObjectPath(shill::kFlimflamServicePath)));
return true;
}
ManagerProxyInterface* ShillProxy::GetManagerProxy() {
return manager_proxy_.get();
}
std::unique_ptr<ServiceProxyInterface> ShillProxy::GetServiceForPath(
const std::string& path) {
DCHECK(bus_.get());
return std::unique_ptr<ServiceProxyInterface>(new ServiceProxy(
bus_, shill::kFlimflamServiceName, dbus::ObjectPath(path)));
}
} // namespace chromeos_update_engine