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

Side by Side Diff: components/offline_pages/background/request_queue_store_sql.h

Issue 2221323003: Add an API to Pause and Resume background offlining requests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switch to request ID as key Created 4 years, 4 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ 5 #ifndef COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_
6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ 6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 16 matching lines...) Expand all
27 // SQLite implementation of RequestQueueStore. 27 // SQLite implementation of RequestQueueStore.
28 class RequestQueueStoreSQL : public RequestQueueStore { 28 class RequestQueueStoreSQL : public RequestQueueStore {
29 public: 29 public:
30 RequestQueueStoreSQL( 30 RequestQueueStoreSQL(
31 scoped_refptr<base::SequencedTaskRunner> background_task_runner, 31 scoped_refptr<base::SequencedTaskRunner> background_task_runner,
32 const base::FilePath& database_dir); 32 const base::FilePath& database_dir);
33 ~RequestQueueStoreSQL() override; 33 ~RequestQueueStoreSQL() override;
34 34
35 // RequestQueueStore implementation. 35 // RequestQueueStore implementation.
36 void GetRequests(const GetRequestsCallback& callback) override; 36 void GetRequests(const GetRequestsCallback& callback) override;
37
37 void AddOrUpdateRequest(const SavePageRequest& offline_page, 38 void AddOrUpdateRequest(const SavePageRequest& offline_page,
38 const UpdateCallback& callback) override; 39 const UpdateCallback& callback) override;
39 void RemoveRequests(const std::vector<int64_t>& request_ids, 40 void RemoveRequests(const std::vector<int64_t>& request_ids,
40 const RemoveCallback& callback) override; 41 const RemoveCallback& callback) override;
41 void RemoveRequestsByClientId(const std::vector<ClientId>& client_ids, 42 void RemoveRequestsByClientId(const std::vector<ClientId>& client_ids,
42 const RemoveCallback& callback) override; 43 const RemoveCallback& callback) override;
44
45 void PauseRequests(const std::vector<int64_t>& request_ids,
46 const UpdateCallback& callback) override;
47
48 void ResumeRequests(const std::vector<int64_t>& request_ids,
49 const UpdateCallback& callback) override;
50
43 void Reset(const ResetCallback& callback) override; 51 void Reset(const ResetCallback& callback) override;
44 52
45 private: 53 private:
46 // Synchronous implementations, these are run on the background thread 54 // Synchronous implementations, these are run on the background thread
47 // and actually do the work to access SQL. The implementations above 55 // and actually do the work to access SQL. The implementations above
48 // simply dispatch to the corresponding *Sync method on the background thread. 56 // simply dispatch to the corresponding *Sync method on the background thread.
49 // 'runner' is where to run the callback. 57 // 'runner' is where to run the callback.
50 static void GetRequestsSync( 58 static void GetRequestsSync(
51 sql::Connection* db, 59 sql::Connection* db,
52 scoped_refptr<base::SingleThreadTaskRunner> runner, 60 scoped_refptr<base::SingleThreadTaskRunner> runner,
53 const GetRequestsCallback& callback); 61 const GetRequestsCallback& callback);
54 static void AddOrUpdateRequestSync( 62 static void AddOrUpdateRequestSync(
55 sql::Connection* db, 63 sql::Connection* db,
56 scoped_refptr<base::SingleThreadTaskRunner> runner, 64 scoped_refptr<base::SingleThreadTaskRunner> runner,
57 const SavePageRequest& offline_page, 65 const SavePageRequest& offline_page,
58 const UpdateCallback& callback); 66 const UpdateCallback& callback);
59 static void RemoveRequestsSync( 67 static void RemoveRequestsSync(
60 sql::Connection* db, 68 sql::Connection* db,
61 scoped_refptr<base::SingleThreadTaskRunner> runner, 69 scoped_refptr<base::SingleThreadTaskRunner> runner,
62 const std::vector<int64_t>& request_ids, 70 const std::vector<int64_t>& request_ids,
63 const RemoveCallback& callback); 71 const RemoveCallback& callback);
64 static void RemoveRequestsByClientIdSync( 72 static void RemoveRequestsByClientIdSync(
65 sql::Connection* db, 73 sql::Connection* db,
66 scoped_refptr<base::SingleThreadTaskRunner> runner, 74 scoped_refptr<base::SingleThreadTaskRunner> runner,
67 const std::vector<ClientId>& client_ids, 75 const std::vector<ClientId>& client_ids,
68 const RemoveCallback& callback); 76 const RemoveCallback& callback);
77 static void PauseRequestsSync(
78 sql::Connection* db,
79 scoped_refptr<base::SingleThreadTaskRunner> runner,
80 const std::vector<int64_t>& request_ids,
81 const UpdateCallback& callback);
82 static void ResumeRequestsSync(
83 sql::Connection* db,
84 scoped_refptr<base::SingleThreadTaskRunner> runner,
85 const std::vector<int64_t>& request_ids,
86 const UpdateCallback& callback);
69 static void ResetSync(sql::Connection* db, 87 static void ResetSync(sql::Connection* db,
70 const base::FilePath& db_file_path, 88 const base::FilePath& db_file_path,
71 scoped_refptr<base::SingleThreadTaskRunner> runner, 89 scoped_refptr<base::SingleThreadTaskRunner> runner,
72 const ResetCallback& callback); 90 const ResetCallback& callback);
73 91
74 // Used to initialize DB connection. 92 // Used to initialize DB connection.
75 static void OpenConnectionSync( 93 static void OpenConnectionSync(
76 sql::Connection* db, 94 sql::Connection* db,
77 scoped_refptr<base::SingleThreadTaskRunner> runner, 95 scoped_refptr<base::SingleThreadTaskRunner> runner,
78 const base::FilePath& path, 96 const base::FilePath& path,
(...skipping 13 matching lines...) Expand all
92 // Database connection. 110 // Database connection.
93 std::unique_ptr<sql::Connection> db_; 111 std::unique_ptr<sql::Connection> db_;
94 112
95 base::WeakPtrFactory<RequestQueueStoreSQL> weak_ptr_factory_; 113 base::WeakPtrFactory<RequestQueueStoreSQL> weak_ptr_factory_;
96 DISALLOW_COPY_AND_ASSIGN(RequestQueueStoreSQL); 114 DISALLOW_COPY_AND_ASSIGN(RequestQueueStoreSQL);
97 }; 115 };
98 116
99 } // namespace offline_pages 117 } // namespace offline_pages
100 118
101 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_ 119 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_QUEUE_STORE_SQL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698