blob: b1815ed3237af72f236df792608f0bcdf0d63867 [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 first argument is a pointer to this IP
// configuration instance allowing clients to more easily manage multiple IP
// configurations. The callback's second argument is set to false if IP
// configuration failed.
void RegisterUpdateCallback(Callback2<IPConfigRefPtr, bool>::Type *callback);
const Properties &properties() const { return properties_; }
// Request, renew and release IP configuration. Return true on success, false
// otherwise. The default implementation always returns false indicating a
// failure.
virtual bool RequestIP();
virtual bool RenewIP();
virtual bool ReleaseIP();
protected:
// Updates the IP configuration properties and notifies registered listeners
// about the event. |success| is set to false if the IP configuration failed.
void UpdateProperties(const Properties &properties, bool success);
private:
FRIEND_TEST(IPConfigTest, UpdateCallback);
FRIEND_TEST(IPConfigTest, UpdateProperties);
DeviceConstRefPtr device_;
Properties properties_;
scoped_ptr<Callback2<IPConfigRefPtr, bool>::Type> update_callback_;
DISALLOW_COPY_AND_ASSIGN(IPConfig);
};
} // namespace shill
#endif // SHILL_IPCONFIG_