Darin Petkov | 33af05c | 2012-02-28 10:10:30 +0100 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS 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 SHILL_VPN_SERVICE_ |
| 6 | #define SHILL_VPN_SERVICE_ |
| 7 | |
| 8 | #include <base/memory/scoped_ptr.h> |
| 9 | #include <gtest/gtest_prod.h> // for FRIEND_TEST |
| 10 | |
| 11 | #include "shill/service.h" |
| 12 | |
| 13 | namespace shill { |
| 14 | |
Darin Petkov | 0286771 | 2012-03-12 14:25:05 +0100 | [diff] [blame] | 15 | class KeyValueStore; |
Darin Petkov | 33af05c | 2012-02-28 10:10:30 +0100 | [diff] [blame] | 16 | class VPNDriver; |
| 17 | |
| 18 | class VPNService : public Service { |
| 19 | public: |
Darin Petkov | 79d74c9 | 2012-03-07 17:20:32 +0100 | [diff] [blame] | 20 | VPNService(ControlInterface *control, |
Darin Petkov | 33af05c | 2012-02-28 10:10:30 +0100 | [diff] [blame] | 21 | EventDispatcher *dispatcher, |
| 22 | Metrics *metrics, |
| 23 | Manager *manager, |
| 24 | VPNDriver *driver); // Takes ownership of |driver|. |
| 25 | virtual ~VPNService(); |
| 26 | |
| 27 | // Inherited from Service. |
| 28 | virtual void Connect(Error *error); |
Darin Petkov | 6aa2187 | 2012-03-09 16:10:19 +0100 | [diff] [blame] | 29 | virtual void Disconnect(Error *error); |
Darin Petkov | 33af05c | 2012-02-28 10:10:30 +0100 | [diff] [blame] | 30 | virtual std::string GetStorageIdentifier() const; |
Darin Petkov | f3c71d7 | 2012-03-21 12:32:15 +0100 | [diff] [blame] | 31 | virtual bool Load(StoreInterface *storage); |
| 32 | virtual bool Save(StoreInterface *storage); |
Paul Stewart | 65512e1 | 2012-03-26 18:01:08 -0700 | [diff] [blame] | 33 | virtual bool Unload(); |
Darin Petkov | 6aa2187 | 2012-03-09 16:10:19 +0100 | [diff] [blame] | 34 | |
Paul Stewart | ebd3856 | 2012-03-23 13:06:40 -0700 | [diff] [blame] | 35 | virtual void InitDriverPropertyStore(); |
| 36 | |
Darin Petkov | 6aa2187 | 2012-03-09 16:10:19 +0100 | [diff] [blame] | 37 | VPNDriver *driver() const { return driver_.get(); } |
Darin Petkov | 33af05c | 2012-02-28 10:10:30 +0100 | [diff] [blame] | 38 | |
Darin Petkov | 0286771 | 2012-03-12 14:25:05 +0100 | [diff] [blame] | 39 | static std::string CreateStorageIdentifier(const KeyValueStore &args, |
| 40 | Error *error); |
| 41 | void set_storage_id(const std::string &id) { storage_id_ = id; } |
| 42 | |
Darin Petkov | 33af05c | 2012-02-28 10:10:30 +0100 | [diff] [blame] | 43 | private: |
| 44 | FRIEND_TEST(VPNServiceTest, GetDeviceRpcId); |
| 45 | |
| 46 | virtual std::string GetDeviceRpcId(Error *error); |
| 47 | |
Darin Petkov | 0286771 | 2012-03-12 14:25:05 +0100 | [diff] [blame] | 48 | std::string storage_id_; |
Darin Petkov | 33af05c | 2012-02-28 10:10:30 +0100 | [diff] [blame] | 49 | scoped_ptr<VPNDriver> driver_; |
| 50 | |
Paul Stewart | 2280799 | 2012-04-11 08:48:31 -0700 | [diff] [blame] | 51 | // Provided only for compatibility. crosbug.com/29286 |
| 52 | std::string vpn_domain_; |
| 53 | |
Darin Petkov | 33af05c | 2012-02-28 10:10:30 +0100 | [diff] [blame] | 54 | DISALLOW_COPY_AND_ASSIGN(VPNService); |
| 55 | }; |
| 56 | |
| 57 | } // namespace shill |
| 58 | |
| 59 | #endif // SHILL_VPN_SERVICE_ |