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

Side by Side Diff: components/enhanced_bookmarks/bookmark_server_search_service.h

Issue 637323005: Add Search Service in Enhanced Bookmark Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Respond to comments Created 6 years, 1 month 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 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 COMPONENTS_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_SEARCH_SERVICE_H_ 5 #ifndef COMPONENTS_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_SEARCH_SERVICE_H_
6 #define COMPONENTS_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_SEARCH_SERVICE_H_ 6 #define COMPONENTS_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_SEARCH_SERVICE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/containers/mru_cache.h"
11 #include "components/enhanced_bookmarks/bookmark_server_service.h" 12 #include "components/enhanced_bookmarks/bookmark_server_service.h"
12 #include "net/url_request/url_fetcher.h" 13 #include "net/url_request/url_fetcher.h"
13 14
14 namespace enhanced_bookmarks { 15 namespace enhanced_bookmarks {
15 16
16 class EnhancedBookmarkModel; 17 class EnhancedBookmarkModel;
17 18
18 // Sends requests to the bookmark server to search for bookmarks relevant to a 19 // Sends requests to the bookmark server to search for bookmarks relevant to a
19 // given query. Will handle one outgoing request at a time. 20 // given query. Will handle one outgoing request at a time.
20 class BookmarkServerSearchService : public BookmarkServerService { 21 class BookmarkServerSearchService : public BookmarkServerService {
21 public: 22 public:
22 BookmarkServerSearchService( 23 BookmarkServerSearchService(
23 scoped_refptr<net::URLRequestContextGetter> request_context_getter, 24 scoped_refptr<net::URLRequestContextGetter> request_context_getter,
24 ProfileOAuth2TokenService* token_service, 25 ProfileOAuth2TokenService* token_service,
25 SigninManagerBase* signin_manager, 26 SigninManagerBase* signin_manager,
26 EnhancedBookmarkModel* bookmark_model); 27 EnhancedBookmarkModel* bookmark_model);
27 ~BookmarkServerSearchService() override; 28 ~BookmarkServerSearchService() override;
28 29
29 // Triggers a search. The query must not be empty. A call to this method 30 // Triggers a search. The query must not be empty. A call to this method
30 // cancels any previous searches. OnChange() is garanteed to be called once 31 // cancels any previous searches.If there have been multiple queries in
31 // per query. 32 // between, onChange will only be called for the last query.
32 void Search(const std::string& query); 33 void Search(const std::string& query);
33 34
34 // Returns the search results. The results are only available after the 35 // Returns search results for a query. The results are only available after
35 // OnChange() observer methods has been sent. This method will return an empty 36 // OnChange() observer methods has been sent. If this method returns empty
36 // result otherwise. query should be a string passed to Search() previously. 37 // vector, it means there are no bookmarks matching the given query. If
37 std::vector<const BookmarkNode*> ResultForQuery(const std::string& query); 38 // returns null pointer, it means we are still loading and no results have
Kibeom Kim (inactive) 2014/10/30 03:13:11 We aren't necessarily loading if |Search| has not
Ian Wen 2014/10/30 04:31:00 Yes.
39 // come to the client. Previously cancelled queries will not trigger
40 // onChange(), and this method will return null for those queries.
41 scoped_ptr<std::vector<const BookmarkNode*>> ResultForQuery(
42 const std::string& query);
38 43
39 protected: 44 protected:
40 scoped_ptr<net::URLFetcher> CreateFetcher() override; 45 scoped_ptr<net::URLFetcher> CreateFetcher() override;
41 46
42 bool ProcessResponse(const std::string& response, 47 bool ProcessResponse(const std::string& response,
43 bool* should_notify) override; 48 bool* should_notify) override;
44 49
45 void CleanAfterFailure() override; 50 void CleanAfterFailure() override;
46 51
47 // EnhancedBookmarkModelObserver methods. 52 // EnhancedBookmarkModelObserver methods.
48 void EnhancedBookmarkModelLoaded() override{}; 53 void EnhancedBookmarkModelLoaded() override{};
49 void EnhancedBookmarkAdded(const BookmarkNode* node) override; 54 void EnhancedBookmarkAdded(const BookmarkNode* node) override;
50 void EnhancedBookmarkRemoved(const BookmarkNode* node) override{}; 55 void EnhancedBookmarkRemoved(const BookmarkNode* node) override{};
51 void EnhancedBookmarkAllUserNodesRemoved() override; 56 void EnhancedBookmarkAllUserNodesRemoved() override;
52 void EnhancedBookmarkRemoteIdChanged(const BookmarkNode* node, 57 void EnhancedBookmarkRemoteIdChanged(const BookmarkNode* node,
53 const std::string& old_remote_id, 58 const std::string& old_remote_id,
54 const std::string& remote_id) override; 59 const std::string& remote_id) override;
55 60
56 private: 61 private:
57 // The search data, a map from query to a vector of stars.id. 62 // Cache for previous search result, a map from a query string to vector of
58 std::map<std::string, std::vector<std::string> > searches_; 63 // star_ids.
64 base::MRUCache<std::string, std::vector<std::string> > cache_;
Kibeom Kim (inactive) 2014/10/30 03:13:11 nit: >>
Ian Wen 2014/10/30 04:31:00 Done.
65 // The query currently on the fly, and is cleared as soon as the result is
66 // available.
59 std::string current_query_; 67 std::string current_query_;
60 DISALLOW_COPY_AND_ASSIGN(BookmarkServerSearchService); 68 DISALLOW_COPY_AND_ASSIGN(BookmarkServerSearchService);
61 }; 69 };
62 } // namespace enhanced_bookmarks 70 } // namespace enhanced_bookmarks
63 71
64 #endif // COMPONENTS_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_SEARCH_SERVICE_H_ 72 #endif // COMPONENTS_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_SEARCH_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698