1 // Copyright (c) 2013 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.
5 #ifndef CHROMEOS_NETWORK_NETWORK_PROFILE_HANDLER_H_
6 #define CHROMEOS_NETWORK_NETWORK_PROFILE_HANDLER_H_
11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h"
13 #include "base/memory/weak_ptr.h"
14 #include "base/observer_list.h"
15 #include "chromeos/chromeos_export.h"
16 #include "chromeos/dbus/dbus_method_call_status.h"
17 #include "chromeos/dbus/shill_property_changed_observer.h"
18 #include "chromeos/network/network_handler.h"
19 #include "chromeos/network/network_profile.h"
22 class DictionaryValue
;
27 class NetworkProfileObserver
;
28 class NetworkStateHandler
;
30 class CHROMEOS_EXPORT NetworkProfileHandler
31 : public ShillPropertyChangedObserver
{
33 typedef std::vector
<NetworkProfile
> ProfileList
;
35 virtual ~NetworkProfileHandler();
37 void AddObserver(NetworkProfileObserver
* observer
);
38 void RemoveObserver(NetworkProfileObserver
* observer
);
40 void GetManagerPropertiesCallback(DBusMethodCallStatus call_status
,
41 const base::DictionaryValue
& properties
);
43 // ShillPropertyChangedObserver overrides
44 virtual void OnPropertyChanged(const std::string
& name
,
45 const base::Value
& value
) OVERRIDE
;
47 void GetProfilePropertiesCallback(const std::string
& profile_path
,
48 const base::DictionaryValue
& properties
);
50 const NetworkProfile
* GetProfileForPath(
51 const std::string
& profile_path
) const;
52 const NetworkProfile
* GetProfileForUserhash(
53 const std::string
& userhash
) const;
55 // Returns the first profile entry with a non-empty userhash.
56 // TODO(stevenjb): Replace with GetProfileForUserhash() with the correct
58 const NetworkProfile
* GetDefaultUserProfile() const;
60 static const char kSharedProfilePath
[];
63 friend class ClientCertResolverTest
;
64 friend class NetworkHandler
;
65 NetworkProfileHandler();
67 // Add ShillManagerClient property observer and request initial list.
68 // Sets |network_state_handler_| for triggering Manager updates (can be NULL).
69 void Init(NetworkStateHandler
* network_state_handler
);
71 void AddProfile(const NetworkProfile
& profile
);
72 void RemoveProfile(const std::string
& profile_path
);
75 NetworkStateHandler
* network_state_handler_
;
76 ProfileList profiles_
;
77 ObserverList
<NetworkProfileObserver
> observers_
;
79 // For Shill client callbacks
80 base::WeakPtrFactory
<NetworkProfileHandler
> weak_ptr_factory_
;
83 DISALLOW_COPY_AND_ASSIGN(NetworkProfileHandler
);
86 } // namespace chromeos
88 #endif // CHROMEOS_NETWORK_NETWORK_PROFILE_HANDLER_H_