1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
|
// Copyright 2013 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.
// Custom binding for the fileSystemProvider API.
var binding = require('binding').Binding.create('fileSystemProvider');
var fileSystemProviderInternal =
require('binding').Binding.create('fileSystemProviderInternal').generate();
var eventBindings = require('event_bindings');
var fileSystemNatives = requireNative('file_system_natives');
var GetDOMError = fileSystemNatives.GetDOMError;
/**
* Annotates a date with its serialized value.
* @param {Date} date Input date.
* @return {Date} Date with an extra <code>value</code> attribute.
*/
function annotateDate(date) {
// Copy in case the input date is frozen.
var result = new Date(date.getTime());
result.value = result.toString();
return result;
}
/**
* Annotates an entry metadata by serializing its modifiedTime value.
* @param {EntryMetadata} metadata Input metadata.
* @return {EntryMetadata} metadata Annotated metadata, which can be passed
* back to the C++ layer.
*/
function annotateMetadata(metadata) {
var result = {
isDirectory: metadata.isDirectory,
name: metadata.name,
size: metadata.size,
modificationTime: annotateDate(metadata.modificationTime)
};
return result;
}
binding.registerCustomHook(function(bindingsAPI) {
var apiFunctions = bindingsAPI.apiFunctions;
apiFunctions.setUpdateArgumentsPostValidate(
'mount',
function(fileSystemId, displayName, successCallback, errorCallback) {
// Piggyback the error callback onto the success callback,
// so we can use the error callback later.
successCallback.errorCallback_ = errorCallback;
return [fileSystemId, displayName, successCallback];
});
apiFunctions.setCustomCallback(
'mount',
function(name, request, response) {
var domError = null;
if (request.callback && response) {
// DOMError is present only if mount() failed.
if (response[0]) {
// Convert a Dictionary to a DOMError.
domError = GetDOMError(response[0].name, response[0].message);
response.length = 1;
}
var successCallback = request.callback;
var errorCallback = request.callback.errorCallback_;
delete request.callback;
if (domError)
errorCallback(domError);
else
successCallback();
}
});
apiFunctions.setUpdateArgumentsPostValidate(
'unmount',
function(fileSystemId, successCallback, errorCallback) {
// Piggyback the error callback onto the success callback,
// so we can use the error callback later.
successCallback.errorCallback_ = errorCallback;
return [fileSystemId, successCallback];
});
apiFunctions.setCustomCallback(
'unmount',
function(name, request, response) {
var domError = null;
if (request.callback) {
// DOMError is present only if mount() failed.
if (response && response[0]) {
// Convert a Dictionary to a DOMError.
domError = GetDOMError(response[0].name, response[0].message);
response.length = 1;
}
var successCallback = request.callback;
var errorCallback = request.callback.errorCallback_;
delete request.callback;
if (domError)
errorCallback(domError);
else
successCallback();
}
});
});
eventBindings.registerArgumentMassager(
'fileSystemProvider.onUnmountRequested',
function(args, dispatch) {
var fileSystemId = args[0];
var requestId = args[1];
var onSuccessCallback = function() {
fileSystemProviderInternal.unmountRequestedSuccess(
fileSystemId, requestId);
};
var onErrorCallback = function(error) {
fileSystemProviderInternal.unmountRequestedError(
fileSystemId, requestId, error);
}
dispatch([fileSystemId, onSuccessCallback, onErrorCallback]);
});
eventBindings.registerArgumentMassager(
'fileSystemProvider.onGetMetadataRequested',
function(args, dispatch) {
var fileSystemId = args[0];
var requestId = args[1];
var entryPath = args[2];
var onSuccessCallback = function(metadata) {
fileSystemProviderInternal.getMetadataRequestedSuccess(
fileSystemId, requestId, annotateMetadata(metadata));
};
var onErrorCallback = function(error) {
fileSystemProviderInternal.getMetadataRequestedError(
fileSystemId, requestId, error);
}
dispatch([fileSystemId, entryPath, onSuccessCallback, onErrorCallback]);
});
eventBindings.registerArgumentMassager(
'fileSystemProvider.onReadDirectoryRequested',
function(args, dispatch) {
var fileSystemId = args[0];
var requestId = args[1];
var directoryPath = args[2];
var onSuccessCallback = function(entries, hasNext) {
var annotatedEntries = entries.map(annotateMetadata);
fileSystemProviderInternal.readDirectoryRequestedSuccess(
fileSystemId, requestId, annotatedEntries, hasNext);
};
var onErrorCallback = function(error) {
fileSystemProviderInternal.readDirectoryRequestedError(
fileSystemId, requestId, error);
}
dispatch([
fileSystemId, directoryPath, onSuccessCallback, onErrorCallback]);
});
eventBindings.registerArgumentMassager(
'fileSystemProvider.onOpenFileRequested',
function(args, dispatch) {
var fileSystemId = args[0];
var requestId = args[1];
var filePath = args[2];
var mode = args[3];
var create = args[4];
var onSuccessCallback = function() {
fileSystemProviderInternal.openFileRequestedSuccess(
fileSystemId, requestId);
};
var onErrorCallback = function(error) {
fileSystemProviderInternal.openFileRequestedError(
fileSystemId, requestId, error);
}
dispatch([fileSystemId, requestId, filePath, mode, create,
onSuccessCallback, onErrorCallback]);
});
eventBindings.registerArgumentMassager(
'fileSystemProvider.onCloseFileRequested',
function(args, dispatch) {
var fileSystemId = args[0];
var requestId = args[1];
var openRequestId = args[2];
var onSuccessCallback = function() {
fileSystemProviderInternal.closeFileRequestedSuccess(
fileSystemId, requestId);
};
var onErrorCallback = function(error) {
fileSystemProviderInternal.closeFileRequestedError(
fileSystemId, requestId, error);
}
dispatch([fileSystemId, openRequestId, onSuccessCallback,
onErrorCallback]);
});
eventBindings.registerArgumentMassager(
'fileSystemProvider.onReadFileRequested',
function(args, dispatch) {
var fileSystemId = args[0];
var requestId = args[1];
var openRequestId = args[2];
var offset = args[3];
var length = args[4];
var onSuccessCallback = function(data, hasNext) {
fileSystemProviderInternal.readFileRequestedSuccess(
fileSystemId, requestId, data, hasNext);
};
var onErrorCallback = function(error) {
fileSystemProviderInternal.readFileRequestedError(
fileSystemId, requestId, error);
}
dispatch([fileSystemId, openRequestId, offset, length, onSuccessCallback,
onErrorCallback]);
});
exports.binding = binding.generate();
|