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
|
// Copyright (c) 2011 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.
/**
* Namespace for utility functions.
*/
var util = {
/**
* Returns a function that console.log's its arguments, prefixed by |msg|.
*
* @param {string} msg The message prefix to use in the log.
* @param {function(*)} opt_callback A function to invoke after logging.
*/
flog: function(msg, opt_callback) {
return function() {
var ary = Array.apply(null, arguments);
console.log(msg + ': ' + ary.join(', '));
if (opt_callback)
opt_callback.call(arguments);
};
},
/**
* Returns a function that throws an exception that includes its arguments
* prefixed by |msg|.
*
* @param {string} msg The message prefix to use in the exception.
*/
ferr: function(msg) {
return function() {
var ary = Array.apply(null, arguments);
throw new Error(msg + ': ' + ary.join(', '));
};
},
/**
* Install a sensible toString() on the FileError object.
*
* FileError.prototype.code is a numeric code describing the cause of the
* error. The FileError constructor has a named property for each possible
* error code, but provides no way to map the code to the named property.
* This toString() implementation fixes that.
*/
installFileErrorToString: function() {
FileError.prototype.toString = function() {
return '[object FileError: ' + util.getFileErrorMnemonic(this.code) + ']';
}
},
getFileErrorMnemonic: function(code) {
for (var key in FileError) {
if (key.search(/_ERR$/) != -1 && FileError[key] == code)
return key;
}
return code;
},
/**
* Utility function to invoke callback once for each entry in dirEntry.
*
* @param {DirectoryEntry} dirEntry The directory entry to enumerate.
* @param {function(Entry)} callback The function to invoke for each entry in
* dirEntry.
*/
forEachDirEntry: function(dirEntry, callback) {
var reader;
function onReadSome(results) {
if (results.length == 0)
return callback(null);
for (var i = 0; i < results.length; i++)
callback(results[i]);
reader.readEntries(onReadSome);
};
reader = dirEntry.createReader();
reader.readEntries(onReadSome);
},
/**
* Utility function to resolve multiple directories with a single call.
*
* The successCallback will be invoked once for each directory object
* found. The errorCallback will be invoked once for each
* path that could not be resolved.
*
* The successCallback is invoked with a null entry when all paths have
* been processed.
*
* @param {DirEntry} dirEntry The base directory.
* @param {Object} params The parameters to pass to the underlying
* getDirectory calls.
* @param {Array<string>} paths The list of directories to resolve.
* @param {function(!DirEntry)} successCallback The function to invoke for
* each DirEntry found. Also invoked once with null at the end of the
* process.
* @param {function(string, FileError)} errorCallback The function to invoke
* for each path that cannot be resolved.
*/
getDirectories: function(dirEntry, params, paths, successCallback,
errorCallback) {
// Copy the params array, since we're going to destroy it.
params = [].slice.call(params);
function onComplete() {
successCallback(null);
}
function getNextDirectory() {
var path = paths.shift();
if (!path)
return onComplete();
dirEntry.getDirectory(
path, params,
function(entry) {
successCallback(entry);
getNextDirectory();
},
function(err) {
errorCallback(path, err);
getNextDirectory();
});
}
getNextDirectory();
},
/**
* Lookup tables used by bytesToSi.
*/
units_: ['B', 'k', 'M', 'G', 'T', 'P'],
scale_: [1, 1e3, 1e6, 1e9, 1e12, 1e15],
/**
* Convert a number of bytes into an appropriate International System of
* Units (SI) representation, using the correct number separators.
*
* The first time this function is called it computes a lookup table which
* is cached for subsequent calls.
*
* @param {number} bytes The number of bytes.
*/
bytesToSi: function(bytes) {
function fmt(s, u) {
var rounded = Math.round(bytes / s * 10) / 10;
// TODO(rginda): Switch to v8Locale's number formatter when it's
// available.
return rounded.toLocaleString() + u;
}
// This loop index is used outside the loop if it turns out |bytes|
// requires the largest unit.
var i;
for (i = 0; i < this.units_.length - 1; i++) {
if (bytes < this.scale_[i + 1])
return fmt(this.scale_[i], this.units_[i]);
}
return fmt(this.scale_[i], this.units_[i]);
},
/**
* Utility function to read specified range of bytes from file
* @param file {File} file to read
* @param begin {int} starting byte(included)
* @param end {int} last byte(excluded)
* @param callback {function(File, Uint8Array)} callback to invoke
* @param onError {function(err)} error handler
*/
readFileBytes: function(file, begin, end, callback, onError) {
var fileReader = new FileReader();
fileReader.onerror = onError;
fileReader.onloadend = function() {
callback(file, new ByteReader(fileReader.result))
};
fileReader.readAsArrayBuffer(file.webkitSlice(begin, end));
}
};
|