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

Side by Side Diff: content/browser/service_worker/service_worker_cache.h

Issue 465463002: Initial implementation of ServiceWorkerCache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cache2
Patch Set: Default backend Created 6 years, 3 months 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 unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_cache.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CACHE_H_ 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CACHE_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CACHE_H_ 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CACHE_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
11 #include "content/common/service_worker/service_worker_types.h"
12 #include "net/base/completion_callback.h"
13 #include "net/disk_cache/disk_cache.h"
11 14
12 namespace net { 15 namespace net {
13 class URLRequestContext; 16 class URLRequestContext;
17 class IOBufferWithSize;
14 } 18 }
15 19
16 namespace storage { 20 namespace storage {
21 class BlobData;
22 class BlobDataHandle;
17 class BlobStorageContext; 23 class BlobStorageContext;
18 } 24 }
19 25
20 namespace content { 26 namespace content {
27 class ChromeBlobStorageContext;
21 28
22 // TODO(jkarlin): Fill this in with a real Cache implementation as
23 // specified in
24 // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html.
25 // TODO(jkarlin): Unload cache backend from memory once the cache object is no 29 // TODO(jkarlin): Unload cache backend from memory once the cache object is no
26 // longer referenced in javascript. 30 // longer referenced in javascript.
27 31
28 // Represents a ServiceWorker Cache as seen in 32 // Represents a ServiceWorker Cache as seen in
29 // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html. 33 // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html.
30 // InitializeIfNeeded must be called before calling the other public members. 34 // InitializeIfNeeded must be called before calling the other public members.
31 class ServiceWorkerCache { 35 class CONTENT_EXPORT ServiceWorkerCache {
32 public: 36 public:
37 enum ErrorType {
38 ErrorTypeOK = 0,
39 ErrorTypeExists,
40 ErrorTypeStorage,
41 ErrorTypeNotFound
42 };
43 enum EntryIndex { INDEX_HEADERS = 0, INDEX_RESPONSE_BODY };
44 typedef base::Callback<void(ErrorType)> ErrorCallback;
45 typedef base::Callback<void(ErrorType,
46 scoped_ptr<ServiceWorkerResponse>,
47 scoped_ptr<storage::BlobDataHandle>)>
48 ResponseCallback;
33 static scoped_ptr<ServiceWorkerCache> CreateMemoryCache( 49 static scoped_ptr<ServiceWorkerCache> CreateMemoryCache(
34 const std::string& name, 50 const std::string& name,
35 net::URLRequestContext* request_context, 51 net::URLRequestContext* request_context,
36 base::WeakPtr<storage::BlobStorageContext> blob_context); 52 base::WeakPtr<storage::BlobStorageContext> blob_context);
37 static scoped_ptr<ServiceWorkerCache> CreatePersistentCache( 53 static scoped_ptr<ServiceWorkerCache> CreatePersistentCache(
38 const base::FilePath& path, 54 const base::FilePath& path,
39 const std::string& name, 55 const std::string& name,
40 net::URLRequestContext* request_context, 56 net::URLRequestContext* request_context,
41 base::WeakPtr<storage::BlobStorageContext> blob_context); 57 base::WeakPtr<storage::BlobStorageContext> blob_context);
42 58
43 virtual ~ServiceWorkerCache(); 59 virtual ~ServiceWorkerCache();
44 60
45 // Loads the backend and calls the callback with the result (true for 61 // Loads the backend and calls the callback with the result (true for
46 // success). This must be called before member functions that require a 62 // success). This must be called before member functions that require a
47 // backend are called. 63 // backend are called. The callback will always be called.
48 void CreateBackend(const base::Callback<void(bool)>& callback); 64 void CreateBackend(const ErrorCallback& callback);
49 65
66 // Returns ErrorTypeNotFound if not found. The callback will always be called.
67 // |request| must remain valid until the callback is called.
68 void Match(ServiceWorkerFetchRequest* request,
69 const ResponseCallback& callback);
70
71 // Puts the request and response object in the cache. The response body (if
72 // present) is stored in the cache, but not the request body. Returns
73 // ErrorTypeOK on success. The callback will always be called. |request| and
74 // |response| must remain valid until the callback is called.
75 void Put(ServiceWorkerFetchRequest* request,
76 ServiceWorkerResponse* response,
77 const ErrorCallback& callback);
78
79 // Returns ErrorNotFound if not found. Otherwise deletes and returns
80 // ErrorTypeOK. The callback will always be called. |request| must remain
81 // valid until the callback is called.
82 void Delete(ServiceWorkerFetchRequest* request,
83 const ErrorCallback& callback);
84
85 // Call to determine if CreateBackend must be called.
86 bool HasCreatedBackend() const;
87
88 void set_backend(scoped_ptr<disk_cache::Backend> backend) {
89 backend_ = backend.Pass();
90 }
50 void set_name(const std::string& name) { name_ = name; } 91 void set_name(const std::string& name) { name_ = name; }
51 const std::string& name() const { return name_; } 92 const std::string& name() const { return name_; }
52 int32 id() const { return id_; } 93 int32 id() const { return id_; }
53 void set_id(int32 id) { id_ = id; } 94 void set_id(int32 id) { id_ = id; }
54 95
55 base::WeakPtr<ServiceWorkerCache> AsWeakPtr(); 96 base::WeakPtr<ServiceWorkerCache> AsWeakPtr();
56 97
57 private: 98 private:
58 ServiceWorkerCache(const base::FilePath& path, 99 ServiceWorkerCache(const base::FilePath& path,
59 const std::string& name, 100 const std::string& name,
60 net::URLRequestContext* request_context, 101 net::URLRequestContext* request_context,
61 base::WeakPtr<storage::BlobStorageContext> blob_context); 102 base::WeakPtr<storage::BlobStorageContext> blob_context);
62 103
104 scoped_ptr<disk_cache::Backend> backend_;
63 base::FilePath path_; 105 base::FilePath path_;
64 std::string name_; 106 std::string name_;
65 net::URLRequestContext* request_context_; 107 net::URLRequestContext* request_context_;
66 base::WeakPtr<storage::BlobStorageContext> blob_storage_context_; 108 base::WeakPtr<storage::BlobStorageContext> blob_storage_context_;
67 int32 id_; 109 int32 id_;
68 110
69 base::WeakPtrFactory<ServiceWorkerCache> weak_ptr_factory_; 111 base::WeakPtrFactory<ServiceWorkerCache> weak_ptr_factory_;
70 112
71 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerCache); 113 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerCache);
72 }; 114 };
73 115
74 } // namespace content 116 } // namespace content
75 117
76 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CACHE_H_ 118 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CACHE_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698