1 // Copyright 2013 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.
5 #ifndef EXTENSIONS_COMMON_EXTENSION_API_H_
6 #define EXTENSIONS_COMMON_EXTENSION_API_H_
11 #include "base/basictypes.h"
12 #include "base/gtest_prod_util.h"
13 #include "base/memory/linked_ptr.h"
14 #include "base/memory/scoped_ptr.h"
15 #include "base/memory/singleton.h"
16 #include "base/strings/string_piece.h"
17 #include "base/values.h"
18 #include "extensions/common/features/feature.h"
19 #include "extensions/common/features/feature_provider.h"
20 #include "extensions/common/url_pattern_set.h"
23 class DictionaryValue
;
29 namespace extensions
{
34 // C++ Wrapper for the JSON API definitions in chrome/common/extensions/api/.
36 // WARNING: This class is accessed on multiple threads in the browser process
37 // (see ExtensionFunctionDispatcher). No state should be modified after
41 // Returns a single shared instance of this class. This is the typical use
44 // TODO(aa): Make this const to enforce thread-safe usage.
45 static ExtensionAPI
* GetSharedInstance();
47 // Creates a new instance configured the way ExtensionAPI typically is in
48 // Chrome. Use the default constructor to get a clean instance.
49 static ExtensionAPI
* CreateWithDefaultConfiguration();
51 // Splits a name like "permission:bookmark" into ("permission", "bookmark").
52 // The first part refers to a type of feature, for example "manifest",
53 // "permission", or "api". The second part is the full name of the feature.
55 // TODO(kalman): ExtensionAPI isn't really the right place for this function.
56 static void SplitDependencyName(const std::string
& full_name
,
57 std::string
* feature_type
,
58 std::string
* feature_name
);
60 class OverrideSharedInstanceForTest
{
62 explicit OverrideSharedInstanceForTest(ExtensionAPI
* testing_api
);
63 ~OverrideSharedInstanceForTest();
66 ExtensionAPI
* original_api_
;
69 // Creates a completely clean instance. Configure using RegisterSchema() and
70 // RegisterDependencyProvider before use.
72 virtual ~ExtensionAPI();
74 // Add a (non-generated) API schema resource.
75 void RegisterSchemaResource(const std::string
& api_name
, int resource_id
);
77 // Add a FeatureProvider for APIs. The features are used to specify
78 // dependencies and constraints on the availability of APIs.
79 void RegisterDependencyProvider(const std::string
& name
,
80 const FeatureProvider
* provider
);
82 // Returns true if the API item called |api_full_name| and all of its
83 // dependencies are available in |context|.
85 // |api_full_name| can be either a namespace name (like "bookmarks") or a
86 // member name (like "bookmarks.create").
88 // Depending on the configuration of |api| (in _api_features.json), either
89 // |extension| or |url| (or both) may determine its availability, but this is
90 // up to the configuration of the individual feature.
92 // TODO(kalman): This is just an unnecessary combination of finding a Feature
93 // then calling Feature::IsAvailableToContext(..) on it. Just provide that
94 // FindFeature function and let callers compose if they want.
95 Feature::Availability
IsAvailable(const std::string
& api_full_name
,
96 const Extension
* extension
,
97 Feature::Context context
,
100 // Determines whether an API, or any parts of that API, are available in
102 bool IsAnyFeatureAvailableToContext(const Feature
& api
,
103 const Extension
* extension
,
104 Feature::Context context
,
107 // Returns true if |name| is available to WebUI contexts on |url|.
108 bool IsAvailableToWebUI(const std::string
& name
, const GURL
& url
);
110 // Gets the schema for the extension API with namespace |full_name|.
111 // Ownership remains with this object.
112 const base::DictionaryValue
* GetSchema(const std::string
& full_name
);
114 // Splits a full name from the extension API into its API and child name
115 // parts. Some examples:
117 // "bookmarks.create" -> ("bookmarks", "create")
118 // "experimental.input.ui.cursorUp" -> ("experimental.input.ui", "cursorUp")
119 // "storage.sync.set" -> ("storage", "sync.get")
120 // "<unknown-api>.monkey" -> ("", "")
122 // The |child_name| parameter can be be NULL if you don't need that part.
123 std::string
GetAPINameFromFullName(const std::string
& full_name
,
124 std::string
* child_name
);
126 // Gets a feature from any dependency provider registered with ExtensionAPI.
127 // Returns NULL if the feature could not be found.
128 Feature
* GetFeatureDependency(const std::string
& dependency_name
);
131 FRIEND_TEST_ALL_PREFIXES(ExtensionAPITest
, DefaultConfigurationFeatures
);
132 FRIEND_TEST_ALL_PREFIXES(ExtensionAPITest
, TypesHaveNamespace
);
133 friend struct base::DefaultSingletonTraits
<ExtensionAPI
>;
135 void InitDefaultConfiguration();
137 bool default_configuration_initialized_
;
140 void LoadSchema(const std::string
& name
, const base::StringPiece
& schema
);
142 // Map from each API that hasn't been loaded yet to the schema which defines
143 // it. Note that there may be multiple APIs per schema.
144 typedef std::map
<std::string
, int> UnloadedSchemaMap
;
145 UnloadedSchemaMap unloaded_schemas_
;
147 // Schemas for each namespace.
148 typedef std::map
<std::string
, linked_ptr
<const base::DictionaryValue
> >
152 // FeatureProviders used for resolving dependencies.
153 typedef std::map
<std::string
, const FeatureProvider
*> FeatureProviderMap
;
154 FeatureProviderMap dependency_providers_
;
156 DISALLOW_COPY_AND_ASSIGN(ExtensionAPI
);
159 } // namespace extensions
161 #endif // EXTENSIONS_COMMON_EXTENSION_API_H_