blob: 58d440762dd78ecf76f61799799756efc1285700 [file] [log] [blame]
// Copyright (c) 2011 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.
#ifndef SHILL_MANAGER_
#define SHILL_MANAGER_
#include <string>
#include <vector>
#include <base/memory/ref_counted.h>
#include <base/memory/scoped_ptr.h>
#include "shill/device.h"
#include "shill/device_info.h"
#include "shill/property_store_interface.h"
#include "shill/service.h"
#include "shill/shill_event.h"
namespace shill {
class ControlInterface;
class Error;
class EventDispatcher;
class ManagerAdaptorInterface;
class Manager : public PropertyStoreInterface {
public:
// A constructor for the Manager object
Manager(ControlInterface *control_interface,
EventDispatcher *dispatcher);
~Manager();
void Start();
void Stop();
void RegisterDevice(DeviceRefPtr to_manage);
void DeregisterDevice(DeviceConstRefPtr to_forget);
void RegisterService(ServiceRefPtr to_manage);
void DeregisterService(ServiceConstRefPtr to_forget);
void FilterByTechnology(Device::Technology tech,
std::vector<DeviceRefPtr> *found);
ServiceRefPtr FindService(const std::string& name);
// Implementation of PropertyStoreInterface
bool SetBoolProperty(const std::string& name, bool value, Error *error);
bool SetStringProperty(const std::string& name,
const std::string& value,
Error *error);
private:
scoped_ptr<ManagerAdaptorInterface> adaptor_;
DeviceInfo device_info_;
bool running_;
std::vector<DeviceRefPtr> devices_;
std::vector<ServiceRefPtr> services_;
friend class ManagerAdaptorInterface;
};
} // namespace shill
#endif // SHILL_MANAGER_