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
|
// Copyright (c) 2012 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 fileSystem API.
var binding = require('binding').Binding.create('fileSystem');
var fileSystemNatives = requireNative('file_system_natives');
var GetIsolatedFileSystem = fileSystemNatives.GetIsolatedFileSystem;
var lastError = require('lastError');
var entryIdManager = require('entryIdManager');
binding.registerCustomHook(function(bindingsAPI) {
var apiFunctions = bindingsAPI.apiFunctions;
var fileSystem = bindingsAPI.compiledApi;
function bindFileEntryFunction(functionName) {
apiFunctions.setUpdateArgumentsPostValidate(
functionName, function(fileEntry, callback) {
var fileSystemName = fileEntry.filesystem.name;
var relativePath = fileEntry.fullPath.slice(1);
return [fileSystemName, relativePath, callback];
});
}
['getDisplayPath', 'getWritableEntry', 'isWritableEntry']
.forEach(bindFileEntryFunction);
function bindFileEntryCallback(functionName) {
apiFunctions.setCustomCallback(functionName,
function(name, request, response) {
if (request.callback && response) {
var callback = request.callback;
request.callback = null;
var fileSystemId = response.fileSystemId;
var baseName = response.baseName;
// TODO(koz): Generate a persistent id in the browser and use it here.
var id = fileSystemId + ":" + baseName;
var fs = GetIsolatedFileSystem(fileSystemId);
try {
// TODO(koz): fs.root.getFile() makes a trip to the browser process,
// but it might be possible avoid that by calling
// WebFrame::createFileEntry().
fs.root.getFile(baseName, {}, function(fileEntry) {
entryIdManager.registerEntry(id, fileEntry);
callback(fileEntry);
}, function(fileError) {
lastError.set('Error getting fileEntry, code: ' + fileError.code);
callback();
});
} catch (e) {
lastError.set('Error in event handler for onLaunched: ' + e.stack);
callback();
}
}
});
}
['getWritableEntry', 'chooseEntry'].forEach(bindFileEntryCallback);
apiFunctions.setHandleRequest('getEntryId', function(fileEntry) {
return entryIdManager.getEntryId(fileEntry);
});
apiFunctions.setHandleRequest('getEntryById', function(id) {
return entryIdManager.getEntryById(id);
});
// TODO(benwells): Remove these deprecated versions of the functions.
fileSystem.getWritableFileEntry = function() {
console.log("chrome.fileSystem.getWritableFileEntry is deprecated");
console.log("Please use chrome.fileSystem.getWritableEntry instead");
fileSystem.getWritableEntry.apply(this, arguments);
};
fileSystem.isWritableFileEntry = function() {
console.log("chrome.fileSystem.isWritableFileEntry is deprecated");
console.log("Please use chrome.fileSystem.isWritableEntry instead");
fileSystem.isWritableEntry.apply(this, arguments);
};
fileSystem.chooseFile = function() {
console.log("chrome.fileSystem.chooseFile is deprecated");
console.log("Please use chrome.fileSystem.chooseEntry instead");
fileSystem.chooseEntry.apply(this, arguments);
};
});
exports.binding = binding.generate();
|