OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 import posixpath | 5 from copy import copy |
6 | 6 |
7 from branch_utility import BranchUtility | |
7 from compiled_file_system import SingleFile, Unicode | 8 from compiled_file_system import SingleFile, Unicode |
9 from docs_server_utils import StringIdentity | |
8 from extensions_paths import API_PATHS, JSON_TEMPLATES | 10 from extensions_paths import API_PATHS, JSON_TEMPLATES |
9 import features_utility | |
10 from file_system import FileNotFoundError | 11 from file_system import FileNotFoundError |
11 from future import Future | 12 from future import Future |
13 from path_util import Join | |
14 from platform_util import GetExtensionTypes, PlatformToExtensionType | |
12 from third_party.json_schema_compiler.json_parse import Parse | 15 from third_party.json_schema_compiler.json_parse import Parse |
13 | 16 |
14 | 17 |
15 _API_FEATURES = '_api_features.json' | 18 _API_FEATURES = '_api_features.json' |
16 _MANIFEST_FEATURES = '_manifest_features.json' | 19 _MANIFEST_FEATURES = '_manifest_features.json' |
17 _PERMISSION_FEATURES = '_permission_features.json' | 20 _PERMISSION_FEATURES = '_permission_features.json' |
18 | 21 |
19 | 22 |
20 def _GetFeaturePaths(feature_file, *extra_paths): | 23 def HasParentFeature(feature_name, feature, all_feature_names): |
21 paths = [posixpath.join(api_path, feature_file) for api_path in API_PATHS] | 24 # A feature has a parent if it has a . in its name, its parent exists, |
22 paths.extend(extra_paths) | 25 # and it does not explicitly specify that it has no parent. |
23 return paths | 26 return ('.' in feature_name and |
24 | 27 feature_name.rsplit('.', 1)[0] in all_feature_names and |
25 | 28 not feature.get('noparent')) |
26 def _AddPlatformsAndChannelsFromDependencies(feature, | 29 |
27 api_features, | 30 |
28 manifest_features, | 31 def GetParentFeature(feature_name, feature, all_feature_names): |
29 permission_features): | 32 '''Returns the name of the parent feature, or None if it does not have a |
30 features_map = { | 33 parent. |
31 'api': api_features, | 34 ''' |
32 'manifest': manifest_features, | 35 if not HasParentFeature(feature_name, feature, all_feature_names): |
33 'permission': permission_features, | 36 return None |
34 } | 37 return feature_name.rsplit('.', 1)[0] |
35 dependencies = feature.get('dependencies') | 38 |
36 if dependencies is None: | 39 |
37 return | 40 def _CreateFeaturesFromJSONFutures(json_futures): |
38 platforms = set() | 41 '''Returns a dict of features. The value of each feature is a list with |
39 channel = None | 42 all of its possible values. |
40 for dependency in dependencies: | 43 ''' |
41 dep_type, dep_name = dependency.split(':') | 44 def ignore_feature(name, value): |
42 dependency_features = features_map[dep_type] | 45 '''Returns true if this feature should be ignored. Features are ignored if |
43 dependency_feature = dependency_features.get(dep_name) | 46 they are only available to whitelisted apps or component extensions/apps, as |
44 # If the dependency can't be resolved, it is inaccessible and therefore | 47 in these cases the APIs are not available to public developers. |
45 # so is this feature. | 48 |
46 if dependency_feature is None: | 49 Private APIs are also unavailable to public developers, but logic elsewhere |
47 return | 50 makes sure they are not listed. So they shouldn't be ignored via this |
48 # Import the platforms from the dependency. The logic is a bit odd; if | 51 mechanism. |
49 # |feature| specifies platforms the it's considered an override. If not, | 52 ''' |
50 # we form the union of all dependency's platforms. | 53 if name.endswith('Private'): |
51 # TODO(kalman): Fix this (see http://crbug.com/322094). | 54 return False |
52 platforms.update(dependency_feature.get('platforms', set())) | 55 return value.get('location') == 'component' or 'whitelist' in value |
53 # Import the channel from the dependency. | 56 |
54 channel = dependency_feature.get('channel', channel) | 57 features = {} |
55 if platforms and not feature.get('platforms'): | 58 |
56 feature['platforms'] = list(platforms) | 59 for json_future in json_futures: |
57 if channel and not feature.get('channel'): | 60 try: |
58 feature['channel'] = channel | 61 features_json = Parse(json_future.Get()) |
62 except FileNotFoundError: | |
63 # Not all file system configurations have the extra files. | |
64 continue | |
65 for name, rawvalue in features_json.iteritems(): | |
66 if name not in features: | |
67 features[name] = [] | |
68 for value in (rawvalue if isinstance(rawvalue, list) else (rawvalue,)): | |
69 if not ignore_feature(name, value): | |
70 features[name].append(value) | |
71 | |
72 return features | |
73 | |
74 | |
75 def _CopyParentFeatureValues(child, parent): | |
76 '''Takes data from feature dict |parent| and copies/merges it | |
77 into feature dict |child|. | |
78 ''' | |
79 if parent is not None: | |
not at google - send to devlin
2014/06/23 22:45:02
invert this condition so the majority of the body
| |
80 merged = copy(parent) | |
81 merged.pop('noparent', None) | |
82 merged.pop('name', None) | |
83 merged.update(child) | |
84 return merged | |
85 return child | |
86 | |
87 | |
88 def _ResolveFeature(feature_name, | |
89 feature_values, | |
90 extra_feature_values, | |
91 platform, | |
92 features_type, | |
93 features_map): | |
94 '''Filters and combines the possible values for a feature into one dict. | |
95 | |
96 It uses |features_map| to resolve dependencies for each value and inherit | |
97 unspecified platform and channel data. |feature_values| is then filtered | |
98 by platform and all values with the most stable platform are merged into one | |
99 dict. All values in |extra_feature_values| get merged into this dict. | |
100 | |
101 Returns |resolve_successful| and |feature|. |resolve_successful| is False | |
102 if the feature's dependencies have not been merged yet themselves, meaning | |
103 that this feature can not be reliably resolved yet. |feature| is the | |
104 resulting feature dict, or None if the feature does not exist on the | |
105 platform specified. | |
106 ''' | |
107 feature = None | |
108 most_stable_channel = None | |
109 for value in feature_values: | |
110 # If 'extension_types' or 'channel' is unspecified, these values should | |
111 # be inherited from dependencies. If they are specified, these values | |
112 # should override anything specified by dependencies. | |
113 inherit_valid_platform = 'extension_types' not in value | |
114 if inherit_valid_platform: | |
115 valid_platform = None | |
116 else: | |
117 valid_platform = (value['extension_types'] == 'all' or | |
118 platform in value['extension_types']) | |
119 inherit_channel = 'channel' not in value | |
120 channel = value.get('channel') | |
121 | |
122 dependencies = value.get('dependencies', []) | |
123 parent = GetParentFeature( | |
124 feature_name, value, features_map[features_type]['all_names']) | |
125 if parent is not None: | |
126 # The parent data needs to be resolved so the child can inherit it. | |
127 if parent in features_map[features_type].get('unresolved', ()): | |
128 return False, None | |
129 value = _CopyParentFeatureValues( | |
130 value, features_map[features_type]['resolved'].get(parent)) | |
131 # Add the parent as a dependency to ensure proper platform filtering. | |
132 dependencies.append(features_type + ':' + parent) | |
133 | |
134 for dependency in dependencies: | |
135 dep_type, dep_name = dependency.split(':') | |
136 if (dep_type not in features_map or | |
137 dep_name in features_map[dep_type].get('unresolved', ())): | |
138 # The dependency itself has not been merged yet or the features map | |
139 # does not have the needed data. Fail to resolve. | |
140 return False, None | |
141 | |
142 dep = features_map[dep_type]['resolved'].get(dep_name) | |
143 if inherit_valid_platform and (valid_platform is None or valid_platform): | |
144 # If dep is None, the dependency does not exist because it has been | |
145 # filtered out by platform. This feature value does not explicitly | |
146 # specify platform data, so filter this feature value out. | |
147 # Only run this check if valid_platform is True or None so that it | |
148 # can't be reset once it is False. | |
149 valid_platform = dep is not None | |
150 if inherit_channel and dep and 'channel' in dep: | |
151 if channel is None or BranchUtility.NewestChannel( | |
152 (dep['channel'], channel)) != channel: | |
153 # Inherit the least stable channel from the dependencies. | |
154 channel = dep['channel'] | |
155 | |
156 # Default to stable on all platforms. | |
157 if valid_platform is None: | |
158 valid_platform = True | |
159 if valid_platform and channel is None: | |
160 channel = 'stable' | |
161 | |
162 if valid_platform: | |
163 # The feature value is valid. Merge it into the feature dict. | |
164 if feature is None or BranchUtility.NewestChannel( | |
165 (most_stable_channel, channel)) != channel: | |
166 # If this is the first feature value to be merged, copy the dict. | |
167 # If this feature value has a more stable channel than the most stable | |
168 # channel so far, replace the old dict so that it only merges values | |
169 # from the most stable channel. | |
170 feature = copy(value) | |
171 most_stable_channel = channel | |
172 elif channel == most_stable_channel: | |
173 feature.update(value) | |
174 | |
175 if feature is None: | |
176 # Nothing was left after filtering the values, but all dependency resolves | |
177 # were successful. This feature does not exist on |platform|. | |
178 return True, None | |
179 | |
180 # Merge in any extra values. | |
181 for value in extra_feature_values: | |
182 feature.update(value) | |
183 | |
184 # Cleanup, fill in missing fields. | |
185 if 'name' not in feature: | |
186 feature['name'] = feature_name | |
187 feature['channel'] = most_stable_channel | |
188 return True, feature | |
59 | 189 |
60 | 190 |
61 class _FeaturesCache(object): | 191 class _FeaturesCache(object): |
62 def __init__(self, file_system, compiled_fs_factory, json_paths): | 192 def __init__(self, |
63 populate = self._CreateCache | 193 file_system, |
64 if len(json_paths) == 1: | 194 compiled_fs_factory, |
65 populate = SingleFile(populate) | 195 json_paths, |
66 | 196 extra_paths, |
67 self._cache = compiled_fs_factory.Create(file_system, populate, type(self)) | 197 platform, |
198 features_type): | |
199 self._cache = compiled_fs_factory.Create( | |
200 file_system, self._CreateCache, type(self), category=platform) | |
68 self._text_cache = compiled_fs_factory.ForUnicode(file_system) | 201 self._text_cache = compiled_fs_factory.ForUnicode(file_system) |
69 self._json_path = json_paths[0] | 202 self._json_paths = json_paths |
70 self._extra_paths = json_paths[1:] | 203 self._extra_paths = extra_paths |
204 self._platform = platform | |
205 self._features_type = features_type | |
71 | 206 |
72 @Unicode | 207 @Unicode |
73 def _CreateCache(self, _, features_json): | 208 def _CreateCache(self, _, features_json): |
209 json_path_futures = [self._text_cache.GetFromFile(path) | |
210 for path in self._json_paths[1:]] | |
74 extra_path_futures = [self._text_cache.GetFromFile(path) | 211 extra_path_futures = [self._text_cache.GetFromFile(path) |
75 for path in self._extra_paths] | 212 for path in self._extra_paths] |
76 features = features_utility.Parse(Parse(features_json)) | 213 |
77 for path_future in extra_path_futures: | 214 features_values = _CreateFeaturesFromJSONFutures( |
78 try: | 215 [Future(value=features_json)] + json_path_futures) |
79 extra_json = path_future.Get() | 216 |
80 except FileNotFoundError: | 217 extra_features_values = _CreateFeaturesFromJSONFutures(extra_path_futures) |
81 # Not all file system configurations have the extra files. | 218 |
82 continue | 219 features = { |
83 features = features_utility.MergedWith( | 220 'resolved': {}, |
84 features_utility.Parse(Parse(extra_json)), features) | 221 'unresolved': copy(features_values), |
222 'extra': extra_features_values, | |
223 'all_names': set(features_values.keys()) | |
224 } | |
225 | |
226 # Merges as many feature values as possible without resolving dependencies | |
227 # from other FeaturesCaches. Pass in a features_map with just this | |
228 # FeatureCache's features_type. Makes repeated passes until no new | |
229 # resolves are successful. | |
230 new_resolves = True | |
231 while new_resolves: | |
232 new_resolves = False | |
233 for feature_name, feature_values in features_values.iteritems(): | |
234 if feature_name not in features['unresolved']: | |
235 continue | |
236 resolve_successful, feature = _ResolveFeature( | |
237 feature_name, | |
238 feature_values, | |
239 extra_features_values.get(feature_name, ()), | |
240 self._platform, | |
241 self._features_type, | |
242 {self._features_type: features}) | |
243 if resolve_successful: | |
244 del features['unresolved'][feature_name] | |
245 new_resolves = True | |
246 if feature is not None: | |
247 features['resolved'][feature_name] = feature | |
248 | |
85 return features | 249 return features |
86 | 250 |
87 def GetFeatures(self): | 251 def GetFeatures(self): |
88 if self._json_path is None: | 252 if not self._json_paths: |
89 return Future(value={}) | 253 return Future(value={}) |
90 return self._cache.GetFromFile(self._json_path) | 254 return self._cache.GetFromFile(self._json_paths[0]) |
91 | 255 |
92 | 256 |
93 class FeaturesBundle(object): | 257 class FeaturesBundle(object): |
94 '''Provides access to properties of API, Manifest, and Permission features. | 258 '''Provides access to properties of API, Manifest, and Permission features. |
95 ''' | 259 ''' |
96 def __init__(self, file_system, compiled_fs_factory, object_store_creator): | 260 def __init__(self, |
97 self._api_cache = _FeaturesCache( | 261 file_system, |
98 file_system, | 262 compiled_fs_factory, |
99 compiled_fs_factory, | 263 object_store_creator, |
100 _GetFeaturePaths(_API_FEATURES)) | 264 platform): |
101 self._manifest_cache = _FeaturesCache( | 265 def create_features_cache(features_type, feature_file, *extra_paths): |
102 file_system, | 266 return _FeaturesCache( |
103 compiled_fs_factory, | 267 file_system, |
104 _GetFeaturePaths(_MANIFEST_FEATURES, | 268 compiled_fs_factory, |
105 posixpath.join(JSON_TEMPLATES, 'manifest.json'))) | 269 [Join(path, feature_file) for path in API_PATHS], |
106 self._permission_cache = _FeaturesCache( | 270 extra_paths, |
107 file_system, | 271 self._platform, |
108 compiled_fs_factory, | 272 features_type) |
109 _GetFeaturePaths(_PERMISSION_FEATURES, | 273 |
110 posixpath.join(JSON_TEMPLATES, 'permissions.json'))) | 274 if platform not in GetExtensionTypes(): |
111 self._identity = file_system.GetIdentity() | 275 self._platform = PlatformToExtensionType(platform) |
276 else: | |
277 self._platform = platform | |
278 | |
279 self._caches = { | |
280 'api': create_features_cache('api', _API_FEATURES), | |
281 'manifest': create_features_cache( | |
282 'manifest', | |
283 _MANIFEST_FEATURES, | |
284 Join(JSON_TEMPLATES, 'manifest.json')), | |
285 'permission': create_features_cache( | |
286 'permission', | |
287 _PERMISSION_FEATURES, | |
288 Join(JSON_TEMPLATES, 'permissions.json')) | |
289 } | |
290 # Namespace the object store by the file system ID because this class is | |
291 # used by the availability finder cross-channel. | |
112 self._object_store = object_store_creator.Create( | 292 self._object_store = object_store_creator.Create( |
113 _FeaturesCache, | 293 _FeaturesCache, |
114 category=self._identity) | 294 category=StringIdentity(file_system.GetIdentity(), self._platform)) |
115 | 295 |
116 def GetPermissionFeatures(self): | 296 def GetPermissionFeatures(self): |
117 return self._permission_cache.GetFeatures() | 297 return self.GetFeatures('permission', ('permission',)) |
118 | 298 |
119 def GetManifestFeatures(self): | 299 def GetManifestFeatures(self): |
120 return self._manifest_cache.GetFeatures() | 300 return self.GetFeatures('manifest', ('manifest',)) |
121 | 301 |
122 def GetAPIFeatures(self): | 302 def GetAPIFeatures(self): |
123 api_features = self._object_store.Get('api_features').Get() | 303 return self.GetFeatures('api', ('api', 'manifest', 'permission')) |
124 if api_features is not None: | 304 |
125 return Future(value=api_features) | 305 def GetFeatures(self, features_type, dependencies): |
126 | 306 '''Resolves all dependencies in the categories specified by |dependencies|. |
127 api_features_future = self._api_cache.GetFeatures() | 307 Returns the features in the |features_type| category. |
128 manifest_features_future = self._manifest_cache.GetFeatures() | 308 ''' |
129 permission_features_future = self._permission_cache.GetFeatures() | 309 features = self._object_store.Get(features_type).Get() |
310 if features is not None: | |
311 return Future(value=features) | |
312 | |
313 futures = {} | |
314 for cache_type in dependencies: | |
315 dependency_features = self._object_store.Get(cache_type).Get() | |
316 if dependency_features is not None: | |
317 # Get cached dependencies if possible. If it has been cached, all | |
318 # of its features have been resolved, so the other fields are | |
319 # unnecessary. | |
320 futures[cache_type] = Future(value={'resolved': dependency_features}) | |
321 else: | |
322 futures[cache_type] = self._caches[cache_type].GetFeatures() | |
323 | |
130 def resolve(): | 324 def resolve(): |
131 api_features = api_features_future.Get() | 325 features_map = {} |
132 manifest_features = manifest_features_future.Get() | 326 for cache_type, future in futures.iteritems(): |
133 permission_features = permission_features_future.Get() | 327 # Copy down to features_map level because the 'resolved' and |
134 # TODO(rockot): Handle inter-API dependencies more gracefully. | 328 # 'unresolved' dicts will be modified. |
135 # Not yet a problem because there is only one such case (windows -> tabs). | 329 features_map[cache_type] = dict((c, copy(d)) |
136 # If we don't store this value before annotating platforms, inter-API | 330 for c, d in future.Get().iteritems()) |
137 # dependencies will lead to infinite recursion. | 331 |
138 for feature in api_features.itervalues(): | 332 def has_unresolved(): |
139 _AddPlatformsAndChannelsFromDependencies( | 333 '''Determines if there are any unresolved features left over in any |
140 feature, api_features, manifest_features, permission_features) | 334 of the categories in |dependencies|. |
141 self._object_store.Set('api_features', api_features) | 335 ''' |
142 return api_features | 336 return any(cache['unresolved'] for cache in features_map.itervalues()) |
337 | |
338 # Iterate until everything is resolved. If dependencies are multiple | |
339 # levels deep, it might take multiple passes to inherit data to the | |
340 # topmost feature. | |
341 while has_unresolved(): | |
342 for cache_type, cache in features_map.iteritems(): | |
343 to_remove = [] | |
344 for feature_name, feature_values in cache['unresolved'].iteritems(): | |
345 resolve_successful, feature = _ResolveFeature( | |
346 feature_name, | |
347 feature_values, | |
348 cache['extra'].get(feature_name, ()), | |
349 self._platform, | |
350 cache_type, | |
351 features_map) | |
352 if not resolve_successful: | |
353 continue # Try again on the next iteration of the while loop | |
354 | |
355 # When successfully resolved, remove it from the unresolved dict. | |
356 # Add it to the resolved dict if it didn't get deleted. | |
357 to_remove.append(feature_name) | |
358 if feature is not None: | |
359 cache['resolved'][feature_name] = feature | |
360 | |
361 for key in to_remove: | |
362 del cache['unresolved'][key] | |
363 | |
364 for cache_type, cache in features_map.iteritems(): | |
365 self._object_store.Set(cache_type, cache['resolved']) | |
366 return features_map[features_type]['resolved'] | |
367 | |
143 return Future(callback=resolve) | 368 return Future(callback=resolve) |
144 | |
145 def GetIdentity(self): | |
146 return self._identity | |
OLD | NEW |