OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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 CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_SERVICE_H_ |
| 6 #define CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_SERVICE_H_ |
| 7 #pragma once |
| 8 |
| 9 #include <deque> |
| 10 #include <map> |
| 11 #include <string> |
| 12 |
| 13 #include "chrome/browser/policy/device_management_backend.h" |
| 14 #include "chrome/common/net/url_fetcher.h" |
| 15 #include "googleurl/src/gurl.h" |
| 16 |
| 17 class Profile; |
| 18 class URLRequestContextGetter; |
| 19 |
| 20 namespace policy { |
| 21 |
| 22 class DeviceManagementJob; |
| 23 |
| 24 // The device management service is responsible for everything related to |
| 25 // communication with the device management server. It creates the backends |
| 26 // objects that the device management policy provider and friends use to issue |
| 27 // requests. |
| 28 class DeviceManagementService : public URLFetcher::Delegate { |
| 29 public: |
| 30 explicit DeviceManagementService(const std::string& server_url); |
| 31 virtual ~DeviceManagementService(); |
| 32 |
| 33 // Constructs a device management backend for use by client code. Ownership of |
| 34 // the returned backend object is transferred to the caller. |
| 35 DeviceManagementBackend* CreateBackend(); |
| 36 |
| 37 // Provides the backend with a request context so it can make actual network |
| 38 // requests. This will also fire any requests queued earlier. |
| 39 void Initialize(URLRequestContextGetter* request_context_getter); |
| 40 |
| 41 // Makes the service stop all requests and drop the reference to the request |
| 42 // context. |
| 43 void Shutdown(); |
| 44 |
| 45 // Get the agent string (used for HTTP user agent and as agent passed to the |
| 46 // server). |
| 47 static std::string GetAgentString(); |
| 48 |
| 49 private: |
| 50 typedef std::map<const URLFetcher*, DeviceManagementJob*> JobFetcherMap; |
| 51 typedef std::deque<DeviceManagementJob*> JobQueue; |
| 52 |
| 53 friend class DeviceManagementBackendProxy; |
| 54 |
| 55 // Adds a job. Caller must make sure the job pointer stays valid until the job |
| 56 // completes or gets cancelled via RemoveJob(). |
| 57 void AddJob(DeviceManagementJob* job); |
| 58 |
| 59 // Removes a job. The job will be removed and won't receive a completion |
| 60 // callback. |
| 61 void RemoveJob(DeviceManagementJob* job); |
| 62 |
| 63 // Starts the given job. |
| 64 void StartJob(DeviceManagementJob* job); |
| 65 |
| 66 // URLFetcher::Delegate override. |
| 67 virtual void OnURLFetchComplete(const URLFetcher* source, |
| 68 const GURL& url, |
| 69 const URLRequestStatus& status, |
| 70 int response_code, |
| 71 const ResponseCookies& cookies, |
| 72 const std::string& data); |
| 73 |
| 74 // Server at which to contact the service. |
| 75 const std::string server_url_; |
| 76 |
| 77 // The request context we use. |
| 78 scoped_refptr<URLRequestContextGetter> request_context_getter_; |
| 79 |
| 80 // The jobs we currently have in flight. |
| 81 JobFetcherMap pending_jobs_; |
| 82 |
| 83 // Jobs that are registered, but not started yet. |
| 84 JobQueue queued_jobs_; |
| 85 |
| 86 DISALLOW_COPY_AND_ASSIGN(DeviceManagementService); |
| 87 }; |
| 88 |
| 89 } // namespace policy |
| 90 |
| 91 #endif // CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_SERVICE_H_ |
OLD | NEW |