OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef COMPONENTS_PREVIEWS_PREVIEWS_BLACK_LIST_H_ | |
6 #define COMPONENTS_PREVIEWS_PREVIEWS_BLACK_LIST_H_ | |
7 | |
8 #include <stdint.h> | |
9 | |
10 #include <memory> | |
11 #include <queue> | |
12 #include <string> | |
13 #include <vector> | |
14 | |
15 #include "base/callback.h" | |
16 #include "base/macros.h" | |
17 #include "base/memory/weak_ptr.h" | |
18 #include "base/threading/thread_checker.h" | |
19 #include "components/previews/previews_opt_out_store.h" | |
20 | |
21 class GURL; | |
22 | |
23 namespace base { | |
24 class Time; | |
25 } | |
26 | |
27 namespace previews { | |
28 class PreviewsBlackListItem; | |
29 | |
30 // Manages the state of black listed domains for the previews experiment. Loads | |
31 // the stored black list from |opt_out_store| and manages an in memory black | |
32 // list on the IO thread. Updates to the black list are stored in memory and | |
33 // pushed to the store. Asynchronous modifications are stored in a queue and | |
34 // executed in order. Reading from the black list is always synchronous, and if | |
35 // the black list is not currently loaded (e.g., at startup, after clearing | |
36 // browsing history), domains are reported as black listed. | |
37 class PreviewsBlackList { | |
38 public: | |
39 // |opt_out_store| is the backing store to retrieve and store black list | |
40 // information, and can be null. When |opt_out_store| is null, the in-memory | |
41 // map will be immeadiately loaded to empty. If |opt_out_store| is non-null, | |
42 // it will be used to load the in-memory map asynchronously. | |
43 explicit PreviewsBlackList( | |
44 std::unique_ptr<PreviewsOptOutStore> opt_out_store); | |
45 ~PreviewsBlackList(); | |
46 | |
47 typedef base::Closure QueueClosure; | |
48 typedef base::Callback<void(bool)> BlackListedCallback; | |
49 | |
50 // Asynchronously adds a new navigation to to the in-memory black list and | |
51 // backing store. |opt_out| is whether the uesr opted out of the preview or | |
52 // navigated away from the page by another way. |type| is only passed to the | |
53 // backing store. | |
54 void AddPreviewNavigation(const GURL& url, bool opt_out, PreviewsType type); | |
55 | |
56 // Synchronously determines if |host_name| should be allowed to show previews. | |
57 // If the black list has loaded yet, this will always return false. |type| is | |
58 // not used to make this decision. | |
59 bool IsLoadedAndAllowed(const GURL& url, PreviewsType type); | |
60 | |
61 private: | |
62 // Synchronously adds a new navigation to the in-memory black list. Adds a new | |
63 // navigation to backing store. |opt_out| is whether the uesr opted out of | |
tbansal1
2016/09/14 20:17:50
typo in uesr.
RyanSturm
2016/09/14 21:01:04
Done.
| |
64 // the preview or navigated away from the page by another way. |type| is only | |
tbansal1
2016/09/14 20:17:50
What is "another way"?
RyanSturm
2016/09/14 21:01:04
Done.
| |
65 // passed to the backing store. | |
66 void AddPreviewNavigationSync(const GURL& host_name, | |
tbansal1
2016/09/14 20:17:50
For this function, you can simply say: "Synchronou
RyanSturm
2016/09/14 21:01:04
Done.
| |
67 bool opt_out, | |
68 PreviewsType type); | |
69 | |
70 // Returns the PreviewsBlackListItem representing |host_name|. If there is no | |
71 // item for |host_name|, one will be created iff |create_if_needed| is true. | |
72 PreviewsBlackListItem* GetBlackListItem(const std::string& host_name, | |
73 bool create_if_needed); | |
74 | |
75 // Callback passed to the backing store when loading black list information. | |
76 // Moves the returned map into the in-memory black list and runs any | |
77 // outstanding tasks. | |
78 void LoadBlackListDone(std::unique_ptr<BlackListItemMap> black_list_item_map); | |
79 | |
80 // Called while waiting for the black list to be loaded from the backing | |
81 // store. | |
82 // Enqueues a task to run when when loading black list information has | |
83 // completed. Maintains the order that tasks were called in. | |
84 void QueuePendingTask(QueueClosure callback); | |
85 | |
86 // Map maintaining the in-memory black list. | |
87 std::unique_ptr<BlackListItemMap> black_list_item_map_; | |
88 | |
89 // Whether the black list is done being loaded from the backing store. | |
90 bool loaded_; | |
91 | |
92 // The backing store of the black list information. | |
93 std::unique_ptr<PreviewsOptOutStore> opt_out_store_; | |
94 | |
95 // Callbacks to be run after loading information from the backing store has | |
96 // completed. | |
97 std::queue<QueueClosure> pending_callbacks_; | |
98 | |
99 base::ThreadChecker thread_checker_; | |
100 | |
101 base::WeakPtrFactory<PreviewsBlackList> weak_factory_; | |
102 | |
103 DISALLOW_COPY_AND_ASSIGN(PreviewsBlackList); | |
104 }; | |
105 | |
106 } // namespace previews | |
107 | |
108 #endif // COMPONENTS_PREVIEWS_PREVIEWS_BLACK_LIST_ITEM_H_ | |
OLD | NEW |