// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_TRANSLATE_TRANSLATE_MANAGER_H_ #define CHROME_BROWSER_TRANSLATE_TRANSLATE_MANAGER_H_ #include #include #include #include #include "base/gtest_prod_util.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" #include "base/observer_list.h" #include "base/prefs/pref_change_registrar.h" #include "base/time.h" #include "chrome/common/translate_errors.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" #include "net/url_request/url_fetcher_delegate.h" template struct DefaultSingletonTraits; class GURL; struct LanguageDetectionDetails; struct PageTranslatedDetails; class PrefService; struct ShortcutConfiguration; struct TranslateErrorDetails; class TranslateInfoBarDelegate; class TranslateLanguageList; namespace content { class WebContents; } namespace net { class URLFetcher; } // The TranslateManager class is responsible for showing an info-bar when a page // in a language different than the user language is loaded. It triggers the // page translation the user requests. // It is a singleton. class TranslateManager : public content::NotificationObserver, public net::URLFetcherDelegate { public: // Returns the singleton instance. static TranslateManager* GetInstance(); virtual ~TranslateManager(); // Let the caller decide if and when we should fetch the language list from // the translate server. This is a NOOP if switches::kDisableTranslate is set // or if prefs::kEnableTranslate is set to false. void FetchLanguageListFromTranslateServer(PrefService* prefs); // Allows caller to cleanup pending URLFetcher objects to make sure they // get released in the appropriate thread... Mainly for tests. void CleanupPendingUlrFetcher(); // Translates the page contents from |source_lang| to |target_lang|. // The actual translation might be performed asynchronously if the translate // script is not yet available. void TranslatePage(content::WebContents* web_contents, const std::string& source_lang, const std::string& target_lang); // Reverts the contents of the page in |web_contents| to its original // language. void RevertTranslation(content::WebContents* web_contents); // Reports to the Google translate server that a page language was incorrectly // detected. This call is initiated by the user selecting the "report" menu // under options in the translate infobar. void ReportLanguageDetectionError(content::WebContents* web_contents); // Clears the translate script, so it will be fetched next time we translate. void ClearTranslateScript() { translate_script_.clear(); } // content::NotificationObserver implementation: virtual void Observe(int type, const content::NotificationSource& source, const content::NotificationDetails& details) OVERRIDE; // net::URLFetcherDelegate implementation: virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; // Used by unit-tests to override some defaults: // Delay after which the translate script is fetched again from the // translation server. void set_translate_script_expiration_delay(int delay_ms) { translate_script_expiration_delay_ = base::TimeDelta::FromMilliseconds(delay_ms); } // Number of attempts before waiting for a page to be fully reloaded. void set_translate_max_reload_attemps(int attempts) { max_reload_check_attempts_ = attempts; } // Returns true if the URL can be translated. static bool IsTranslatableURL(const GURL& url); // Fills |languages| with the list of languages that the translate server can // translate to and from. static void GetSupportedLanguages(std::vector* languages); // Returns the language code that can be used with the Translate method for a // specified |chrome_locale|. static std::string GetLanguageCode(const std::string& chrome_locale); // Returns true if |language| is supported by the translation server. static bool IsSupportedLanguage(const std::string& language); // Returns true if |language| is supported by the translation server as a // alpha language. static bool IsAlphaLanguage(const std::string& language); // The observer class for TranslateManager. class Observer { public: virtual void OnLanguageDetection( const LanguageDetectionDetails& details) = 0; virtual void OnTranslateError( const TranslateErrorDetails& details) = 0; }; // Adds/removes observer. void AddObserver(Observer* obs); void RemoveObserver(Observer* obs); protected: TranslateManager(); private: friend struct DefaultSingletonTraits; // Structure that describes a translate request. // Translation may be deferred while the translate script is being retrieved // from the translate server. struct PendingRequest { int render_process_id; int render_view_id; int page_id; std::string source_lang; std::string target_lang; }; // Starts the translation process on |tab| containing the page in the // |page_lang| language. void InitiateTranslation(content::WebContents* web_contents, const std::string& page_lang); // If the tab identified by |process_id| and |render_id| has been closed, this // does nothing, otherwise it calls InitiateTranslation. void InitiateTranslationPosted(int process_id, int render_id, const std::string& page_lang, int attempt); // Sends a translation request to the RenderView of |web_contents|. void DoTranslatePage(content::WebContents* web_contents, const std::string& translate_script, const std::string& source_lang, const std::string& target_lang); // Shows the after translate or error infobar depending on the details. void PageTranslated(content::WebContents* web_contents, PageTranslatedDetails* details); // Returns true if the passed language has been configured by the user as an // accept language. bool IsAcceptLanguage(content::WebContents* web_contents, const std::string& language); // Initializes the |accept_languages_| language table based on the associated // preference in |prefs|. void InitAcceptLanguages(PrefService* prefs); // Fetches the JS translate script (the script that is injected in the page // to translate it). void RequestTranslateScript(); // Notifies to the observers when a language is detected. void NotifyLanguageDetection(const LanguageDetectionDetails& details); // Notifies to the observers when translate failed. void NotifyTranslateError(const TranslateErrorDetails& details); // Returns the language to translate to. The language returned is the // first language found in the following list that is supported by the // translation service: // the UI language // the accept-language list // If no language is found then an empty string is returned. static std::string GetTargetLanguage(PrefService* prefs); // Returns the different parameters used to decide whether extra shortcuts // are needed. static ShortcutConfiguration ShortcutConfig(); content::NotificationRegistrar notification_registrar_; // Each PrefChangeRegistrar only tracks a single PrefService, so a map from // each PrefService used to its registrar is needed. typedef std::map PrefServiceRegistrarMap; PrefServiceRegistrarMap pref_change_registrars_; // A map that associates a profile with its parsed "accept languages". typedef std::set LanguageSet; typedef std::map PrefServiceLanguagesMap; PrefServiceLanguagesMap accept_languages_; base::WeakPtrFactory weak_method_factory_; // The JS injected in the page to do the translation. std::string translate_script_; // Delay after which the translate script is fetched again // from the translate server. base::TimeDelta translate_script_expiration_delay_; // Max number of attempts before checking if a page has been reloaded. int max_reload_check_attempts_; // Set when the translate JS is currently being retrieved. NULL otherwise. scoped_ptr translate_script_request_pending_; // The list of pending translate requests. Translate requests are queued when // the translate script is not ready and has to be fetched from the translate // server. std::vector pending_requests_; // List of registered observers. ObserverList observer_list_; // An instance of TranslateLanguageList which manages supported language list. scoped_ptr language_list_; DISALLOW_COPY_AND_ASSIGN(TranslateManager); }; #endif // CHROME_BROWSER_TRANSLATE_TRANSLATE_MANAGER_H_