[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 1 | // Copyright (c) 2012 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 CHROME_BROWSER_SPELLCHECKER_SPELLING_SERVICE_CLIENT_H_ |
| 6 | #define CHROME_BROWSER_SPELLCHECKER_SPELLING_SERVICE_CLIENT_H_ |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 7 | |
[email protected] | 5cc8fb2 | 2013-03-06 00:24:58 | [diff] [blame] | 8 | #include <map> |
dcheng | 4d0d72ef | 2016-04-14 01:11:33 | [diff] [blame^] | 9 | #include <memory> |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 10 | #include <string> |
| 11 | #include <vector> |
| 12 | |
| 13 | #include "base/callback.h" |
| 14 | #include "base/compiler_specific.h" |
[email protected] | 24a555b6 | 2013-06-10 22:01:17 | [diff] [blame] | 15 | #include "base/strings/string16.h" |
[email protected] | 15fb2aa | 2012-05-22 22:52:59 | [diff] [blame] | 16 | #include "net/url_request/url_fetcher_delegate.h" |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 17 | |
[email protected] | 80fe2b36 | 2012-05-02 04:19:38 | [diff] [blame] | 18 | class GURL; |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 19 | class TextCheckClientDelegate; |
[email protected] | 7ed49c2 | 2012-02-17 02:14:53 | [diff] [blame] | 20 | struct SpellCheckResult; |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 21 | |
[email protected] | ee9cda5a | 2013-09-17 21:29:14 | [diff] [blame] | 22 | namespace content { |
| 23 | class BrowserContext; |
| 24 | } |
| 25 | |
[email protected] | 15fb2aa | 2012-05-22 22:52:59 | [diff] [blame] | 26 | namespace net { |
| 27 | class URLFetcher; |
| 28 | } // namespace net |
| 29 | |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 30 | // A class that encapsulates a JSON-RPC call to the Spelling service to check |
| 31 | // text there. This class creates a JSON-RPC request, sends the request to the |
| 32 | // service with URLFetcher, parses a response from the service, and calls a |
| 33 | // provided callback method. When a user deletes this object before it finishes |
| 34 | // a JSON-RPC call, this class cancels the JSON-RPC call without calling the |
| 35 | // callback method. A simple usage is creating a SpellingServiceClient and |
| 36 | // calling its RequestTextCheck method as listed in the following snippet. |
| 37 | // |
| 38 | // class MyClient { |
| 39 | // public: |
| 40 | // MyClient(); |
| 41 | // virtual ~MyClient(); |
| 42 | // |
| 43 | // void OnTextCheckComplete( |
| 44 | // int tag, |
[email protected] | 80fe2b36 | 2012-05-02 04:19:38 | [diff] [blame] | 45 | // bool success, |
[email protected] | 7ed49c2 | 2012-02-17 02:14:53 | [diff] [blame] | 46 | // const std::vector<SpellCheckResult>& results) { |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 47 | // ... |
| 48 | // } |
| 49 | // |
[email protected] | a04db82 | 2013-12-11 19:14:40 | [diff] [blame] | 50 | // void MyTextCheck(BrowserContext* context, const base::string16& text) { |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 51 | // client_.reset(new SpellingServiceClient); |
[email protected] | ee9cda5a | 2013-09-17 21:29:14 | [diff] [blame] | 52 | // client_->RequestTextCheck(context, 0, text, |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 53 | // base::Bind(&MyClient::OnTextCheckComplete, |
| 54 | // base::Unretained(this)); |
| 55 | // } |
| 56 | // private: |
dcheng | 4d0d72ef | 2016-04-14 01:11:33 | [diff] [blame^] | 57 | // std::unique_ptr<SpellingServiceClient> client_; |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 58 | // }; |
| 59 | // |
[email protected] | 15fb2aa | 2012-05-22 22:52:59 | [diff] [blame] | 60 | class SpellingServiceClient : public net::URLFetcherDelegate { |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 61 | public: |
[email protected] | 182bdf0 | 2012-04-07 01:40:41 | [diff] [blame] | 62 | // Service types provided by the Spelling service. The Spelling service |
| 63 | // consists of a couple of backends: |
| 64 | // * SUGGEST: Retrieving suggestions for a word (used by Google Search), and; |
| 65 | // * SPELLCHECK: Spellchecking text (used by Google Docs). |
| 66 | // This type is used for choosing a backend when sending a JSON-RPC request to |
| 67 | // the service. |
| 68 | enum ServiceType { |
| 69 | SUGGEST = 1, |
| 70 | SPELLCHECK = 2, |
| 71 | }; |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 72 | typedef base::Callback<void( |
[email protected] | 80fe2b36 | 2012-05-02 04:19:38 | [diff] [blame] | 73 | bool /* success */, |
[email protected] | a04db82 | 2013-12-11 19:14:40 | [diff] [blame] | 74 | const base::string16& /* text */, |
[email protected] | 7ed49c2 | 2012-02-17 02:14:53 | [diff] [blame] | 75 | const std::vector<SpellCheckResult>& /* results */)> |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 76 | TextCheckCompleteCallback; |
| 77 | |
| 78 | SpellingServiceClient(); |
Daniel Cheng | a542fca | 2014-10-21 09:51:29 | [diff] [blame] | 79 | ~SpellingServiceClient() override; |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 80 | |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 81 | // Sends a text-check request to the Spelling service. When we send a request |
| 82 | // to the Spelling service successfully, this function returns true. (This |
| 83 | // does not mean the service finishes checking text successfully.) We will |
| 84 | // call |callback| when we receive a text-check response from the service. |
[email protected] | ee9cda5a | 2013-09-17 21:29:14 | [diff] [blame] | 85 | bool RequestTextCheck(content::BrowserContext* context, |
[email protected] | 182bdf0 | 2012-04-07 01:40:41 | [diff] [blame] | 86 | ServiceType type, |
[email protected] | a04db82 | 2013-12-11 19:14:40 | [diff] [blame] | 87 | const base::string16& text, |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 88 | const TextCheckCompleteCallback& callback); |
| 89 | |
[email protected] | ee9cda5a | 2013-09-17 21:29:14 | [diff] [blame] | 90 | // Returns whether the specified service is available for the given context. |
| 91 | static bool IsAvailable(content::BrowserContext* context, ServiceType type); |
[email protected] | 12cc3653 | 2012-06-14 05:38:04 | [diff] [blame] | 92 | |
[email protected] | 427276ee | 2013-05-31 20:27:03 | [diff] [blame] | 93 | protected: |
| 94 | // Parses a JSON-RPC response from the Spelling service. |
| 95 | bool ParseResponse(const std::string& data, |
| 96 | std::vector<SpellCheckResult>* results); |
| 97 | |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 98 | private: |
[email protected] | 5cc8fb2 | 2013-03-06 00:24:58 | [diff] [blame] | 99 | struct TextCheckCallbackData { |
[email protected] | a04db82 | 2013-12-11 19:14:40 | [diff] [blame] | 100 | TextCheckCallbackData(TextCheckCompleteCallback callback, |
| 101 | base::string16 text); |
[email protected] | 5cc8fb2 | 2013-03-06 00:24:58 | [diff] [blame] | 102 | ~TextCheckCallbackData(); |
| 103 | |
| 104 | // The callback function to be called when we receive a response from the |
| 105 | // Spelling service and parse it. |
| 106 | TextCheckCompleteCallback callback; |
| 107 | |
| 108 | // The text checked by the Spelling service. |
[email protected] | a04db82 | 2013-12-11 19:14:40 | [diff] [blame] | 109 | base::string16 text; |
[email protected] | 5cc8fb2 | 2013-03-06 00:24:58 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | // net::URLFetcherDelegate implementation. |
Daniel Cheng | a542fca | 2014-10-21 09:51:29 | [diff] [blame] | 113 | void OnURLFetchComplete(const net::URLFetcher* source) override; |
[email protected] | 5cc8fb2 | 2013-03-06 00:24:58 | [diff] [blame] | 114 | |
[email protected] | 80fe2b36 | 2012-05-02 04:19:38 | [diff] [blame] | 115 | // Creates a URLFetcher object used for sending a JSON-RPC request. This |
[email protected] | 5cc8fb2 | 2013-03-06 00:24:58 | [diff] [blame] | 116 | // function is overridden by unit tests to prevent them from actually sending |
[email protected] | 80fe2b36 | 2012-05-02 04:19:38 | [diff] [blame] | 117 | // requests to the Spelling service. |
dcheng | 4d0d72ef | 2016-04-14 01:11:33 | [diff] [blame^] | 118 | virtual std::unique_ptr<net::URLFetcher> CreateURLFetcher(const GURL& url); |
[email protected] | 80fe2b36 | 2012-05-02 04:19:38 | [diff] [blame] | 119 | |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 120 | // The URLFetcher object used for sending a JSON-RPC request. |
[email protected] | 5cc8fb2 | 2013-03-06 00:24:58 | [diff] [blame] | 121 | std::map<const net::URLFetcher*, TextCheckCallbackData*> spellcheck_fetchers_; |
[email protected] | 65d98836 | 2012-02-03 11:20:07 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | #endif // CHROME_BROWSER_SPELLCHECKER_SPELLING_SERVICE_CLIENT_H_ |