Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(790)

Unified Diff: chrome/browser/chromeos/policy/cloud_external_data_policy_observer.h

Issue 88423002: Add CloudExternalDataPolicyObserverChromeOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed suggestion. Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/policy/cloud_external_data_policy_observer.h
diff --git a/chrome/browser/chromeos/policy/cloud_external_data_policy_observer.h b/chrome/browser/chromeos/policy/cloud_external_data_policy_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..7f523fb3e4ea86b30f94779c191ff8eb8b9b14f3
--- /dev/null
+++ b/chrome/browser/chromeos/policy/cloud_external_data_policy_observer.h
@@ -0,0 +1,138 @@
+// Copyright 2013 The Chromium 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 CHROME_BROWSER_CHROMEOS_POLICY_CLOUD_EXTERNAL_DATA_POLICY_OBSERVER_H_
+#define CHROME_BROWSER_CHROMEOS_POLICY_CLOUD_EXTERNAL_DATA_POLICY_OBSERVER_H_
+
+#include <map>
+#include <string>
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "base/memory/linked_ptr.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "chrome/browser/chromeos/policy/device_local_account_policy_service.h"
+#include "chrome/browser/chromeos/settings/cros_settings.h"
+#include "components/policy/core/common/policy_map.h"
+#include "content/public/browser/notification_observer.h"
+#include "content/public/browser/notification_registrar.h"
+
+namespace chromeos {
+class UserManager;
+}
+
+namespace policy {
+
+// Helper for implementing policies referencing external data: This class
+// observes a given |policy_| and fetches the external data that it references
+// for all users on the device. Notifications are emitted when an external data
+// reference is set, cleared or an external data fetch completes successfully.
+//
+// State is kept at runtime only: External data references that already exist
+// when the class is instantiated are considered new, causing a notification to
+// be emitted that an external data reference has been set and the referenced
+// external data to be fetched.
+class CloudExternalDataPolicyObserver
+ : public content::NotificationObserver,
+ public DeviceLocalAccountPolicyService::Observer {
+ public:
+ class Delegate {
+ public:
+ // Invoked when an external data reference is set for |user_id|.
+ virtual void OnExternalDataSet(const std::string& policy,
+ const std::string& user_id);
+
+ // Invoked when the external data reference is cleared for |user_id|.
+ virtual void OnExternalDataCleared(const std::string& policy,
+ const std::string& user_id);
+
+ // Invoked when the external data referenced for |user_id| has been fetched.
+ // Failed fetches are retried and the method is called only when a fetch
+ // eventually succeeds. If a fetch fails permanently (e.g. because the
+ // external data reference specifies an invalid URL), the method is not
+ // called at all.
+ virtual void OnExternalDataFetched(const std::string& policy,
+ const std::string& user_id,
+ scoped_ptr<std::string> data);
+
+ protected:
+ virtual ~Delegate();
+ };
+
+ CloudExternalDataPolicyObserver(
+ chromeos::CrosSettings* cros_settings,
+ chromeos::UserManager* user_manager,
+ DeviceLocalAccountPolicyService* device_local_account_policy_service,
+ const std::string& policy,
+ Delegate* delegate);
+ virtual ~CloudExternalDataPolicyObserver();
+
+ void Init();
+
+ // content::NotificationObserver:
+ virtual void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) OVERRIDE;
+
+ // DeviceLocalAccountPolicyService:
+ virtual void OnPolicyUpdated(const std::string& user_id) OVERRIDE;
+ virtual void OnDeviceLocalAccountsChanged() OVERRIDE;
+
+ private:
+ // Helper class that observes |policy_| for a logged-in user.
+ class PolicyServiceObserver;
+
+ void RetrieveDeviceLocalAccounts();
+
+ // Handles the new policy map |entry| for |user_id| by canceling any external
+ // data fetch currently in progress, emitting a notification that an external
+ // data reference has been cleared (if |entry| is NULL) or set (otherwise),
+ // starting a new external data fetch in the latter case.
+ void HandleExternalDataPolicyUpdate(const std::string& user_id,
+ const PolicyMap::Entry* entry);
+
+ void OnExternalDataFetched(const std::string& user_id,
+ scoped_ptr<std::string> data);
+
+ // A map from each device-local account user ID to its current policy map
+ // entry for |policy_|.
+ typedef std::map<std::string, PolicyMap::Entry> DeviceLocalAccountEntryMap;
+ DeviceLocalAccountEntryMap device_local_account_entries_;
+
+ // A map from each logged-in user to the helper that observes |policy_| in the
+ // user's PolicyService.
+ typedef std::map<std::string, linked_ptr<PolicyServiceObserver> >
+ LoggedInUserObserverMap;
+ LoggedInUserObserverMap logged_in_user_observers_;
+
+ chromeos::CrosSettings* cros_settings_;
+ chromeos::UserManager* user_manager_;
+ DeviceLocalAccountPolicyService* device_local_account_policy_service_;
+
+ // The policy that |this| observes.
+ std::string policy_;
+
+ Delegate* delegate_;
+
+ content::NotificationRegistrar notification_registrar_;
+ scoped_ptr<chromeos::CrosSettings::ObserverSubscription>
+ device_local_accounts_subscription_;
+
+ // A map from user ID to a base::WeakPtr for each external data fetch
+ // currently in progress. This allows fetches to be effectively be canceled by
+ // invalidating the pointers.
+ typedef base::WeakPtrFactory<CloudExternalDataPolicyObserver>
+ WeakPtrFactory;
+ typedef std::map<std::string, linked_ptr<WeakPtrFactory> > FetchWeakPtrMap;
+ FetchWeakPtrMap fetch_weak_ptrs_;
+
+ base::WeakPtrFactory<CloudExternalDataPolicyObserver> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(CloudExternalDataPolicyObserver);
+};
+
+} // namespace policy
+
+#endif // CHROME_BROWSER_CHROMEOS_POLICY_CLOUD_EXTERNAL_DATA_POLICY_OBSERVER_H_
« no previous file with comments | « chrome/app/policy/policy_templates.json ('k') | chrome/browser/chromeos/policy/cloud_external_data_policy_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698