Home | History | Annotate | Download | only in extensions
      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_EXTENSIONS_COMPONENT_LOADER_H_
      6 #define CHROME_BROWSER_EXTENSIONS_COMPONENT_LOADER_H_
      7 
      8 #include <string>
      9 #include <vector>
     10 
     11 #include "base/files/file_path.h"
     12 #include "base/gtest_prod_util.h"
     13 #include "base/values.h"
     14 
     15 class ExtensionServiceInterface;
     16 class PrefService;
     17 
     18 namespace extensions {
     19 
     20 // For registering, loading, and unloading component extensions.
     21 class ComponentLoader {
     22  public:
     23   ComponentLoader(ExtensionServiceInterface* extension_service,
     24                   PrefService* prefs,
     25                   PrefService* local_state);
     26   virtual ~ComponentLoader();
     27 
     28   size_t registered_extensions_count() const {
     29     return component_extensions_.size();
     30   }
     31 
     32   // Creates and loads all registered component extensions.
     33   void LoadAll();
     34 
     35   // Registers and possibly loads a component extension. If ExtensionService
     36   // has been initialized, the extension is loaded; otherwise, the load is
     37   // deferred until LoadAll is called. The ID of the added extension is
     38   // returned.
     39   //
     40   // Component extension manifests must contain a "key" property with a unique
     41   // public key, serialized in base64. You can create a suitable value with the
     42   // following commands on a unixy system:
     43   //
     44   //   ssh-keygen -t rsa -b 1024 -N '' -f /tmp/key.pem
     45   //   openssl rsa -pubout -outform DER < /tmp/key.pem 2>/dev/null | base64 -w 0
     46   std::string Add(const std::string& manifest_contents,
     47                   const base::FilePath& root_directory);
     48 
     49   // Convenience method for registering a component extension by resource id.
     50   std::string Add(int manifest_resource_id,
     51                   const base::FilePath& root_directory);
     52 
     53   // Loads a component extension from file system. Replaces previously added
     54   // extension with the same ID.
     55   std::string AddOrReplace(const base::FilePath& path);
     56 
     57   // Returns the extension ID of a component extension specified by resource
     58   // id of its manifest file.
     59   std::string GetExtensionID(int manifest_resource_id,
     60                              const base::FilePath& root_directory);
     61 
     62   // Returns true if an extension with the specified id has been added.
     63   bool Exists(const std::string& id) const;
     64 
     65   // Unloads a component extension and removes it from the list of component
     66   // extensions to be loaded.
     67   void Remove(const base::FilePath& root_directory);
     68   void Remove(const std::string& id);
     69 
     70   // Call this during test setup to load component extensions that have
     71   // background pages for testing, which could otherwise interfere with tests.
     72   static void EnableBackgroundExtensionsForTesting();
     73 
     74   // Adds the default component extensions. If |skip_session_components|
     75   // the loader will skip loading component extensions that weren't supposed to
     76   // be loaded unless we are in signed user session (ChromeOS). For all other
     77   // platforms this |skip_session_components| is expected to be unset.
     78   void AddDefaultComponentExtensions(bool skip_session_components);
     79 
     80   // Similar to above but adds the default component extensions for kiosk mode.
     81   void AddDefaultComponentExtensionsForKioskMode(bool skip_session_components);
     82 
     83   // Parse the given JSON manifest. Returns NULL if it cannot be parsed, or if
     84   // if the result is not a DictionaryValue.
     85   DictionaryValue* ParseManifest(const std::string& manifest_contents) const;
     86 
     87   // Clear the list of registered extensions.
     88   void ClearAllRegistered();
     89 
     90   // Reloads a registered component extension.
     91   void Reload(const std::string& extension_id);
     92 
     93 #if defined(OS_CHROMEOS)
     94   std::string AddChromeVoxExtension();
     95   std::string AddChromeOsSpeechSynthesisExtension();
     96 #endif
     97 
     98  private:
     99   // Information about a registered component extension.
    100   struct ComponentExtensionInfo {
    101     ComponentExtensionInfo(const DictionaryValue* manifest,
    102                            const base::FilePath& root_directory);
    103 
    104     // The parsed contents of the extensions's manifest file.
    105     const DictionaryValue* manifest;
    106 
    107     // Directory where the extension is stored.
    108     base::FilePath root_directory;
    109 
    110     // The component extension's ID.
    111     std::string extension_id;
    112   };
    113 
    114   std::string Add(const DictionaryValue* parsed_manifest,
    115                   const base::FilePath& root_directory);
    116 
    117   // Loads a registered component extension.
    118   void Load(const ComponentExtensionInfo& info);
    119 
    120   void AddDefaultComponentExtensionsWithBackgroundPages(
    121       bool skip_session_components);
    122   void AddFileManagerExtension();
    123   void AddHangoutServicesExtension();
    124   void AddImageLoaderExtension();
    125   void AddBookmarksExtensions();
    126   void AddNetworkSpeechSynthesisExtension();
    127 
    128   void AddWithName(int manifest_resource_id,
    129                    const base::FilePath& root_directory,
    130                    const std::string& name);
    131   void AddChromeApp();
    132   void AddKeyboardApp();
    133   void AddWebStoreApp();
    134 
    135   // Unloads |component| from the memory.
    136   void UnloadComponent(ComponentExtensionInfo* component);
    137 
    138   // Enable HTML5 FileSystem for given component extension in Guest mode.
    139   void EnableFileSystemInGuestMode(const std::string& id);
    140 
    141   PrefService* profile_prefs_;
    142   PrefService* local_state_;
    143 
    144   ExtensionServiceInterface* extension_service_;
    145 
    146   // List of registered component extensions (see Manifest::Location).
    147   typedef std::vector<ComponentExtensionInfo> RegisteredComponentExtensions;
    148   RegisteredComponentExtensions component_extensions_;
    149 
    150   FRIEND_TEST_ALL_PREFIXES(TtsApiTest, NetworkSpeechEngine);
    151   FRIEND_TEST_ALL_PREFIXES(TtsApiTest, NoNetworkSpeechEngineWhenOffline);
    152 
    153   DISALLOW_COPY_AND_ASSIGN(ComponentLoader);
    154 };
    155 
    156 }  // namespace extensions
    157 
    158 #endif  // CHROME_BROWSER_EXTENSIONS_COMPONENT_LOADER_H_
    159