| // 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_BROWSER_UI_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ |
| #define CHROME_BROWSER_UI_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ |
| |
| #include <map> |
| #include <string> |
| #include <vector> |
| |
| #include "base/basictypes.h" |
| #include "base/compiler_specific.h" |
| #include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
| #include "net/url_request/url_request_job_factory.h" |
| |
| class ChromeURLDataManagerBackend; |
| class GURL; |
| class URLRequestChromeJob; |
| |
| namespace base { |
| class RefCountedMemory; |
| } |
| |
| namespace net { |
| class NetworkDelegate; |
| class URLRequest; |
| class URLRequestJob; |
| } |
| |
| // ChromeURLDataManagerBackend is used internally by ChromeURLDataManager on the |
| // IO thread. In most cases you can use the API in ChromeURLDataManager and |
| // ignore this class. ChromeURLDataManagerBackend is owned by |
| // ChromeURLRequestContext. |
| class ChromeURLDataManagerBackend { |
| public: |
| typedef int RequestID; |
| |
| ChromeURLDataManagerBackend(); |
| ~ChromeURLDataManagerBackend(); |
| |
| // Invoked to create the protocol handler for chrome://. |
| static net::URLRequestJobFactory::ProtocolHandler* CreateProtocolHandler( |
| ChromeURLDataManagerBackend* backend); |
| |
| // Adds a DataSource to the collection of data sources. |
| void AddDataSource(ChromeURLDataManager::DataSource* source); |
| |
| // DataSource invokes this. Sends the data to the URLRequest. |
| void DataAvailable(RequestID request_id, base::RefCountedMemory* bytes); |
| |
| static net::URLRequestJob* Factory(net::URLRequest* request, |
| const std::string& scheme); |
| |
| private: |
| friend class URLRequestChromeJob; |
| |
| typedef std::map<std::string, |
| scoped_refptr<ChromeURLDataManager::DataSource> > DataSourceMap; |
| typedef std::map<RequestID, URLRequestChromeJob*> PendingRequestMap; |
| |
| // Called by the job when it's starting up. |
| // Returns false if |url| is not a URL managed by this object. |
| bool StartRequest(const GURL& url, URLRequestChromeJob* job); |
| |
| // Remove a request from the list of pending requests. |
| void RemoveRequest(URLRequestChromeJob* job); |
| |
| // Returns true if the job exists in |pending_requests_|. False otherwise. |
| // Called by ~URLRequestChromeJob to verify that |pending_requests_| is kept |
| // up to date. |
| bool HasPendingJob(URLRequestChromeJob* job) const; |
| |
| // Custom sources of data, keyed by source path (e.g. "favicon"). |
| DataSourceMap data_sources_; |
| |
| // All pending URLRequestChromeJobs, keyed by ID of the request. |
| // URLRequestChromeJob calls into this object when it's constructed and |
| // destructed to ensure that the pointers in this map remain valid. |
| PendingRequestMap pending_requests_; |
| |
| // The ID we'll use for the next request we receive. |
| RequestID next_request_id_; |
| |
| DISALLOW_COPY_AND_ASSIGN(ChromeURLDataManagerBackend); |
| }; |
| |
| net::URLRequestJobFactory::ProtocolHandler* |
| CreateDevToolsProtocolHandler(ChromeURLDataManagerBackend* backend, |
| net::NetworkDelegate* network_delegate); |
| |
| #endif // CHROME_BROWSER_UI_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ |