blob: 5e2ae32e7f1318914ef22b6ce3cd33dcd5c3bd85 [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_IPCONFIG_
#define SHILL_IPCONFIG_
#include <string>
#include <vector>
#include <base/callback_old.h>
#include <base/memory/ref_counted.h>
#include <base/memory/scoped_ptr.h>
#include <gtest/gtest_prod.h> // for FRIEND_TEST
#include "shill/device.h"
namespace shill {
class IPConfig;
typedef scoped_refptr<IPConfig> IPConfigRefPtr;
// IPConfig superclass. Individual IP configuration types will inherit from this
// class.
class IPConfig : public base::RefCounted<IPConfig> {
public:
struct Properties {
Properties() : subnet_cidr(0), mtu(0) {}
std::string address;
int subnet_cidr;
std::string broadcast_address;
std::string gateway;
std::vector<std::string> dns_servers;
std::string domain_name;
std::vector<std::string> domain_search;
int mtu;
};
explicit IPConfig(DeviceConstRefPtr device);
virtual ~IPConfig();
DeviceConstRefPtr device() const { return device_; }
const std::string &GetDeviceName() const;
// Registers a callback that's executed every time the configuration
// properties change. Takes ownership of |callback|. Pass NULL to remove a
// callback. The callback's argument is a pointer to this IP configuration
// instance allowing clients to more easily manage multiple IP configurations.
void RegisterUpdateCallback(Callback1<IPConfigRefPtr>::Type *callback);
const Properties &properties() const { return properties_; }
// Request or renew IP configuration. Return true on success, false
// otherwise. The default implementation always returns false indicating a
// failure.
virtual bool Request();
virtual bool Renew();
protected:
// Updates the IP configuration properties and notifies registered listeners
// about the event.
void UpdateProperties(const Properties &properties);
private:
FRIEND_TEST(IPConfigTest, UpdateCallback);
FRIEND_TEST(IPConfigTest, UpdateProperties);
DeviceConstRefPtr device_;
Properties properties_;
scoped_ptr<Callback1<IPConfigRefPtr>::Type> update_callback_;
DISALLOW_COPY_AND_ASSIGN(IPConfig);
};
} // namespace shill
#endif // SHILL_IPCONFIG_