OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 // Custom bindings for the storage API. | 5 // Custom binding for the storage API. |
6 | 6 |
7 var chromeHidden = requireNative('chrome_hidden').GetChromeHidden(); | 7 var binding = require('binding').Binding.create('storage'); |
| 8 |
8 var normalizeArgumentsAndValidate = | 9 var normalizeArgumentsAndValidate = |
9 require('schemaUtils').normalizeArgumentsAndValidate | 10 require('schemaUtils').normalizeArgumentsAndValidate |
10 var sendRequest = require('sendRequest').sendRequest; | 11 var sendRequest = require('sendRequest').sendRequest; |
11 | 12 |
12 chromeHidden.registerCustomType('storage.StorageArea', function() { | 13 binding.registerCustomType('storage.StorageArea', function() { |
13 function extendSchema(schema) { | 14 function extendSchema(schema) { |
14 var extendedSchema = schema.slice(); | 15 var extendedSchema = schema.slice(); |
15 extendedSchema.unshift({'type': 'string'}); | 16 extendedSchema.unshift({'type': 'string'}); |
16 return extendedSchema; | 17 return extendedSchema; |
17 } | 18 } |
18 | 19 |
19 function StorageArea(namespace, schema) { | 20 function StorageArea(namespace, schema) { |
20 // Binds an API function for a namespace to its browser-side call, e.g. | 21 // Binds an API function for a namespace to its browser-side call, e.g. |
21 // storage.sync.get('foo') -> (binds to) -> | 22 // storage.sync.get('foo') -> (binds to) -> |
22 // storage.get('sync', 'foo'). | 23 // storage.get('sync', 'foo'). |
23 // | 24 // |
24 // TODO(kalman): Put as a method on CustomBindingsObject and re-use (or | 25 // TODO(kalman): Put as a method on CustombindingObject and re-use (or |
25 // even generate) for other APIs that need to do this. Same for other | 26 // even generate) for other APIs that need to do this. Same for other |
26 // callers of registerCustomType(). | 27 // callers of registerCustomType(). |
27 var self = this; | 28 var self = this; |
28 function bindApiFunction(functionName) { | 29 function bindApiFunction(functionName) { |
29 self[functionName] = function() { | 30 self[functionName] = function() { |
30 var funSchema = this.functionSchemas[functionName]; | 31 var funSchema = this.functionSchemas[functionName]; |
31 var args = Array.prototype.slice.call(arguments); | 32 var args = Array.prototype.slice.call(arguments); |
32 args = normalizeArgumentsAndValidate(args, funSchema); | 33 args = normalizeArgumentsAndValidate(args, funSchema); |
33 return sendRequest( | 34 return sendRequest( |
34 'storage.' + functionName, | 35 'storage.' + functionName, |
35 [namespace].concat(args), | 36 [namespace].concat(args), |
36 extendSchema(funSchema.definition.parameters), | 37 extendSchema(funSchema.definition.parameters), |
37 {preserveNullInObjects: true}); | 38 {preserveNullInObjects: true}); |
38 }; | 39 }; |
39 } | 40 } |
40 var apiFunctions = ['get', 'set', 'remove', 'clear', 'getBytesInUse']; | 41 var apiFunctions = ['get', 'set', 'remove', 'clear', 'getBytesInUse']; |
41 apiFunctions.forEach(bindApiFunction); | 42 apiFunctions.forEach(bindApiFunction); |
42 } | 43 } |
43 | 44 |
44 return StorageArea; | 45 return StorageArea; |
45 }); | 46 }); |
| 47 |
| 48 exports.binding = binding.generate(); |
OLD | NEW |