| // Copyright (c) 2012 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_SERVICE_CLOUD_PRINT_JOB_STATUS_UPDATER_H_ |
| #define CHROME_SERVICE_CLOUD_PRINT_JOB_STATUS_UPDATER_H_ |
| |
| #include <string> |
| |
| #include "base/compiler_specific.h" |
| #include "base/macros.h" |
| #include "base/memory/ref_counted.h" |
| #include "base/threading/thread.h" |
| #include "chrome/service/cloud_print/cloud_print_url_fetcher.h" |
| #include "chrome/service/cloud_print/print_system.h" |
| #include "net/url_request/url_request_status.h" |
| #include "url/gurl.h" |
| |
| namespace cloud_print { |
| |
| // Periodically monitors the status of a local print job and updates the |
| // cloud print server accordingly. When the job has been completed this |
| // object releases the reference to itself which should cause it to |
| // self-destruct. |
| class JobStatusUpdater : public base::RefCountedThreadSafe<JobStatusUpdater>, |
| public CloudPrintURLFetcher::Delegate { |
| public: |
| class Delegate { |
| public: |
| virtual bool OnJobCompleted(JobStatusUpdater* updater) = 0; |
| virtual void OnAuthError() = 0; |
| |
| protected: |
| virtual ~Delegate() {} |
| }; |
| |
| JobStatusUpdater(const std::string& printer_name, |
| const std::string& job_id, |
| PlatformJobId local_job_id, |
| const GURL& cloud_print_server_url, |
| PrintSystem* print_system, |
| Delegate* delegate); |
| |
| // Checks the status of the local print job and sends an update. |
| void UpdateStatus(); |
| void Stop(); |
| |
| // CloudPrintURLFetcher::Delegate implementation. |
| CloudPrintURLFetcher::ResponseAction HandleJSONData( |
| const net::URLFetcher* source, |
| const GURL& url, |
| const base::DictionaryValue* json_data, |
| bool succeeded) override; |
| CloudPrintURLFetcher::ResponseAction OnRequestAuthError() override; |
| std::string GetAuthHeader() override; |
| |
| base::Time start_time() const { |
| return start_time_; |
| } |
| |
| private: |
| friend class base::RefCountedThreadSafe<JobStatusUpdater>; |
| ~JobStatusUpdater() override; |
| |
| base::Time start_time_; |
| std::string printer_name_; |
| std::string job_id_; |
| PlatformJobId local_job_id_; |
| PrintJobDetails last_job_details_; |
| scoped_refptr<CloudPrintURLFetcher> request_; |
| GURL cloud_print_server_url_; |
| scoped_refptr<PrintSystem> print_system_; |
| Delegate* delegate_; |
| // A flag that is set to true in Stop() and will ensure the next scheduled |
| // task will do nothing. |
| bool stopped_; |
| DISALLOW_COPY_AND_ASSIGN(JobStatusUpdater); |
| }; |
| |
| } // namespace cloud_print |
| |
| #endif // CHROME_SERVICE_CLOUD_PRINT_JOB_STATUS_UPDATER_H_ |