Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef NET_BASE_ADDRESS_TRACKER_LINUX_H_ | |
| 6 #define NET_BASE_ADDRESS_TRACKER_LINUX_H_ | |
| 7 | |
| 8 #include <sys/socket.h> // Needed to include netlink. | |
| 9 // Mask superfluous definition of |struct net|. This is fixed in Linux 2.6.38. | |
| 10 #define net net_kernel | |
| 11 #include <linux/rtnetlink.h> | |
| 12 #undef net | |
| 13 | |
| 14 #include <map> | |
| 15 | |
| 16 #include "base/basictypes.h" | |
| 17 #include "base/callback.h" | |
| 18 #include "base/message_loop.h" | |
| 19 #include "base/synchronization/lock.h" | |
| 20 #include "net/base/net_util.h" | |
| 21 | |
| 22 namespace net { | |
| 23 namespace internal { | |
| 24 | |
| 25 // Keeps track of network interface addresses using rtnetlink. Used by | |
| 26 // NetworkChangeNotifier to provide signals to registered IPAddressObservers. | |
| 27 class AddressTrackerLinux : public MessageLoopForIO::Watcher { | |
| 28 public: | |
| 29 typedef std::map<IPAddressNumber, struct ifaddrmsg> AddressMap; | |
| 30 | |
| 31 // Will run |callback| when the AddressMap changes. | |
| 32 explicit AddressTrackerLinux(const base::Closure& callback); | |
| 33 virtual ~AddressTrackerLinux(); | |
| 34 | |
| 35 // Starts watching system configuration for changes. The current thread must | |
| 36 // have a MessageLoopForIO. The signals will be delivered directly to | |
| 37 // the global NetworkChangeNotifier. | |
| 38 void Init(); | |
| 39 | |
| 40 AddressMap GetMap() const; | |
| 41 | |
| 42 protected: | |
| 43 friend class AddressTrackerLinuxTest; | |
|
vandebo (ex-Chrome)
2012/07/12 18:34:26
HandleMessage and the friend declaration should be
| |
| 44 | |
| 45 // Returns true if |map_| changed while reading the message from |buffer|. | |
| 46 bool HandleMessage(const char* buffer, size_t length); | |
| 47 | |
| 48 private: | |
| 49 bool ReadMessages(); | |
| 50 | |
| 51 // MessageLoopForIO::Watcher: | |
| 52 virtual void OnFileCanReadWithoutBlocking(int fd) OVERRIDE; | |
| 53 virtual void OnFileCanWriteWithoutBlocking(int /* fd */) OVERRIDE; | |
| 54 | |
| 55 base::Closure callback_; | |
| 56 | |
| 57 int netlink_fd_; | |
| 58 MessageLoopForIO::FileDescriptorWatcher watcher_; | |
| 59 | |
| 60 mutable base::Lock lock_; | |
| 61 AddressMap map_; | |
| 62 }; | |
| 63 | |
| 64 } // namespace internal | |
| 65 } // namespace net | |
| 66 | |
| 67 #endif // NET_BASE_ADDRESS_TRACKER_LINUX_H_ | |
| OLD | NEW |