Adding float-no-zero branch hosted build
This commit is contained in:
@@ -0,0 +1,399 @@
|
||||
// Copyright 2013 The Closure Library Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS-IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
/**
|
||||
* @fileoverview Concrete implementations of the
|
||||
* goog.fs.DirectoryEntry, and goog.fs.FileEntry interfaces.
|
||||
*/
|
||||
goog.provide('goog.fs.DirectoryEntryImpl');
|
||||
goog.provide('goog.fs.EntryImpl');
|
||||
goog.provide('goog.fs.FileEntryImpl');
|
||||
|
||||
goog.require('goog.array');
|
||||
goog.require('goog.async.Deferred');
|
||||
goog.require('goog.fs.DirectoryEntry');
|
||||
goog.require('goog.fs.Entry');
|
||||
goog.require('goog.fs.Error');
|
||||
goog.require('goog.fs.FileEntry');
|
||||
goog.require('goog.fs.FileWriter');
|
||||
goog.require('goog.functions');
|
||||
goog.require('goog.string');
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Base class for concrete implementations of goog.fs.Entry.
|
||||
* @param {!goog.fs.FileSystem} fs The wrapped filesystem.
|
||||
* @param {!Entry} entry The underlying Entry object.
|
||||
* @constructor
|
||||
* @implements {goog.fs.Entry}
|
||||
*/
|
||||
goog.fs.EntryImpl = function(fs, entry) {
|
||||
/**
|
||||
* The wrapped filesystem.
|
||||
*
|
||||
* @type {!goog.fs.FileSystem}
|
||||
* @private
|
||||
*/
|
||||
this.fs_ = fs;
|
||||
|
||||
/**
|
||||
* The underlying Entry object.
|
||||
*
|
||||
* @type {!Entry}
|
||||
* @private
|
||||
*/
|
||||
this.entry_ = entry;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.isFile = function() {
|
||||
return this.entry_.isFile;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.isDirectory = function() {
|
||||
return this.entry_.isDirectory;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.getName = function() {
|
||||
return this.entry_.name;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.getFullPath = function() {
|
||||
return this.entry_.fullPath;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.getFileSystem = function() {
|
||||
return this.fs_;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.getLastModified = function() {
|
||||
return this.getMetadata().addCallback(function(metadata) {
|
||||
return metadata.modificationTime;
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.getMetadata = function() {
|
||||
var d = new goog.async.Deferred();
|
||||
|
||||
this.entry_.getMetadata(
|
||||
function(metadata) { d.callback(metadata); },
|
||||
goog.bind(function(err) {
|
||||
var msg = 'retrieving metadata for ' + this.getFullPath();
|
||||
d.errback(new goog.fs.Error(err.code, msg));
|
||||
}, this));
|
||||
return d;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.moveTo = function(parent, opt_newName) {
|
||||
var d = new goog.async.Deferred();
|
||||
this.entry_.moveTo(
|
||||
parent.dir_, opt_newName,
|
||||
goog.bind(function(entry) { d.callback(this.wrapEntry(entry)); }, this),
|
||||
goog.bind(function(err) {
|
||||
var msg = 'moving ' + this.getFullPath() + ' into ' +
|
||||
parent.getFullPath() +
|
||||
(opt_newName ? ', renaming to ' + opt_newName : '');
|
||||
d.errback(new goog.fs.Error(err.code, msg));
|
||||
}, this));
|
||||
return d;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.copyTo = function(parent, opt_newName) {
|
||||
var d = new goog.async.Deferred();
|
||||
this.entry_.copyTo(
|
||||
parent.dir_, opt_newName,
|
||||
goog.bind(function(entry) { d.callback(this.wrapEntry(entry)); }, this),
|
||||
goog.bind(function(err) {
|
||||
var msg = 'copying ' + this.getFullPath() + ' into ' +
|
||||
parent.getFullPath() +
|
||||
(opt_newName ? ', renaming to ' + opt_newName : '');
|
||||
d.errback(new goog.fs.Error(err.code, msg));
|
||||
}, this));
|
||||
return d;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.wrapEntry = function(entry) {
|
||||
return entry.isFile ?
|
||||
new goog.fs.FileEntryImpl(this.fs_, /** @type {!FileEntry} */ (entry)) :
|
||||
new goog.fs.DirectoryEntryImpl(
|
||||
this.fs_, /** @type {!DirectoryEntry} */ (entry));
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.toUrl = function(opt_mimeType) {
|
||||
return this.entry_.toURL(opt_mimeType);
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.toUri = goog.fs.EntryImpl.prototype.toUrl;
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.remove = function() {
|
||||
var d = new goog.async.Deferred();
|
||||
this.entry_.remove(
|
||||
goog.bind(d.callback, d, true /* result */),
|
||||
goog.bind(function(err) {
|
||||
var msg = 'removing ' + this.getFullPath();
|
||||
d.errback(new goog.fs.Error(err.code, msg));
|
||||
}, this));
|
||||
return d;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.EntryImpl.prototype.getParent = function() {
|
||||
var d = new goog.async.Deferred();
|
||||
this.entry_.getParent(
|
||||
goog.bind(function(parent) {
|
||||
d.callback(new goog.fs.DirectoryEntryImpl(this.fs_, parent));
|
||||
}, this),
|
||||
goog.bind(function(err) {
|
||||
var msg = 'getting parent of ' + this.getFullPath();
|
||||
d.errback(new goog.fs.Error(err.code, msg));
|
||||
}, this));
|
||||
return d;
|
||||
};
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* A directory in a local FileSystem.
|
||||
*
|
||||
* This should not be instantiated directly. Instead, it should be accessed via
|
||||
* {@link goog.fs.FileSystem#getRoot} or
|
||||
* {@link goog.fs.DirectoryEntry#getDirectoryEntry}.
|
||||
*
|
||||
* @param {!goog.fs.FileSystem} fs The wrapped filesystem.
|
||||
* @param {!DirectoryEntry} dir The underlying DirectoryEntry object.
|
||||
* @constructor
|
||||
* @extends {goog.fs.EntryImpl}
|
||||
* @implements {goog.fs.DirectoryEntry}
|
||||
*/
|
||||
goog.fs.DirectoryEntryImpl = function(fs, dir) {
|
||||
goog.base(this, fs, dir);
|
||||
|
||||
/**
|
||||
* The underlying DirectoryEntry object.
|
||||
*
|
||||
* @type {!DirectoryEntry}
|
||||
* @private
|
||||
*/
|
||||
this.dir_ = dir;
|
||||
};
|
||||
goog.inherits(goog.fs.DirectoryEntryImpl, goog.fs.EntryImpl);
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.DirectoryEntryImpl.prototype.getFile = function(path, opt_behavior) {
|
||||
var d = new goog.async.Deferred();
|
||||
this.dir_.getFile(
|
||||
path, this.getOptions_(opt_behavior),
|
||||
goog.bind(function(entry) {
|
||||
d.callback(new goog.fs.FileEntryImpl(this.fs_, entry));
|
||||
}, this),
|
||||
goog.bind(function(err) {
|
||||
var msg = 'loading file ' + path + ' from ' + this.getFullPath();
|
||||
d.errback(new goog.fs.Error(err.code, msg));
|
||||
}, this));
|
||||
return d;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.DirectoryEntryImpl.prototype.getDirectory =
|
||||
function(path, opt_behavior) {
|
||||
var d = new goog.async.Deferred();
|
||||
this.dir_.getDirectory(
|
||||
path, this.getOptions_(opt_behavior),
|
||||
goog.bind(function(entry) {
|
||||
d.callback(new goog.fs.DirectoryEntryImpl(this.fs_, entry));
|
||||
}, this),
|
||||
goog.bind(function(err) {
|
||||
var msg = 'loading directory ' + path + ' from ' + this.getFullPath();
|
||||
d.errback(new goog.fs.Error(err.code, msg));
|
||||
}, this));
|
||||
return d;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.DirectoryEntryImpl.prototype.createPath = function(path) {
|
||||
// If the path begins at the root, reinvoke createPath on the root directory.
|
||||
if (goog.string.startsWith(path, '/')) {
|
||||
var root = this.getFileSystem().getRoot();
|
||||
if (this.getFullPath() != root.getFullPath()) {
|
||||
return root.createPath(path);
|
||||
}
|
||||
}
|
||||
|
||||
// Filter out any empty path components caused by '//' or a leading slash.
|
||||
var parts = goog.array.filter(path.split('/'), goog.functions.identity);
|
||||
var existed = [];
|
||||
|
||||
function getNextDirectory(dir) {
|
||||
if (!parts.length) {
|
||||
return goog.async.Deferred.succeed(dir);
|
||||
}
|
||||
|
||||
var def;
|
||||
var nextDir = parts.shift();
|
||||
|
||||
if (nextDir == '..') {
|
||||
def = dir.getParent();
|
||||
} else if (nextDir == '.') {
|
||||
def = goog.async.Deferred.succeed(dir);
|
||||
} else {
|
||||
def = dir.getDirectory(nextDir, goog.fs.DirectoryEntry.Behavior.CREATE);
|
||||
}
|
||||
return def.addCallback(getNextDirectory);
|
||||
}
|
||||
|
||||
return getNextDirectory(this);
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.DirectoryEntryImpl.prototype.listDirectory = function() {
|
||||
var d = new goog.async.Deferred();
|
||||
var reader = this.dir_.createReader();
|
||||
var results = [];
|
||||
|
||||
var errorCallback = goog.bind(function(err) {
|
||||
var msg = 'listing directory ' + this.getFullPath();
|
||||
d.errback(new goog.fs.Error(err.code, msg));
|
||||
}, this);
|
||||
|
||||
var successCallback = goog.bind(function(entries) {
|
||||
if (entries.length) {
|
||||
for (var i = 0, entry; entry = entries[i]; i++) {
|
||||
results.push(this.wrapEntry(entry));
|
||||
}
|
||||
reader.readEntries(successCallback, errorCallback);
|
||||
} else {
|
||||
d.callback(results);
|
||||
}
|
||||
}, this);
|
||||
|
||||
reader.readEntries(successCallback, errorCallback);
|
||||
return d;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.DirectoryEntryImpl.prototype.removeRecursively = function() {
|
||||
var d = new goog.async.Deferred();
|
||||
this.dir_.removeRecursively(
|
||||
goog.bind(d.callback, d, true /* result */),
|
||||
goog.bind(function(err) {
|
||||
var msg = 'removing ' + this.getFullPath() + ' recursively';
|
||||
d.errback(new goog.fs.Error(err.code, msg));
|
||||
}, this));
|
||||
return d;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Converts a value in the Behavior enum into an options object expected by the
|
||||
* File API.
|
||||
*
|
||||
* @param {goog.fs.DirectoryEntry.Behavior=} opt_behavior The behavior for
|
||||
* existing files.
|
||||
* @return {Object.<boolean>} The options object expected by the File API.
|
||||
* @private
|
||||
*/
|
||||
goog.fs.DirectoryEntryImpl.prototype.getOptions_ = function(opt_behavior) {
|
||||
if (opt_behavior == goog.fs.DirectoryEntry.Behavior.CREATE) {
|
||||
return {'create': true};
|
||||
} else if (opt_behavior == goog.fs.DirectoryEntry.Behavior.CREATE_EXCLUSIVE) {
|
||||
return {'create': true, 'exclusive': true};
|
||||
} else {
|
||||
return {};
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* A file in a local filesystem.
|
||||
*
|
||||
* This should not be instantiated directly. Instead, it should be accessed via
|
||||
* {@link goog.fs.DirectoryEntry#getFile}.
|
||||
*
|
||||
* @param {!goog.fs.FileSystem} fs The wrapped filesystem.
|
||||
* @param {!FileEntry} file The underlying FileEntry object.
|
||||
* @constructor
|
||||
* @extends {goog.fs.EntryImpl}
|
||||
* @implements {goog.fs.FileEntry}
|
||||
*/
|
||||
goog.fs.FileEntryImpl = function(fs, file) {
|
||||
goog.base(this, fs, file);
|
||||
|
||||
/**
|
||||
* The underlying FileEntry object.
|
||||
*
|
||||
* @type {!FileEntry}
|
||||
* @private
|
||||
*/
|
||||
this.file_ = file;
|
||||
};
|
||||
goog.inherits(goog.fs.FileEntryImpl, goog.fs.EntryImpl);
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.FileEntryImpl.prototype.createWriter = function() {
|
||||
var d = new goog.async.Deferred();
|
||||
this.file_.createWriter(
|
||||
function(w) { d.callback(new goog.fs.FileWriter(w)); },
|
||||
goog.bind(function(err) {
|
||||
var msg = 'creating writer for ' + this.getFullPath();
|
||||
d.errback(new goog.fs.Error(err.code, msg));
|
||||
}, this));
|
||||
return d;
|
||||
};
|
||||
|
||||
|
||||
/** @override */
|
||||
goog.fs.FileEntryImpl.prototype.file = function() {
|
||||
var d = new goog.async.Deferred();
|
||||
this.file_.file(
|
||||
function(f) { d.callback(f); },
|
||||
goog.bind(function(err) {
|
||||
var msg = 'getting file for ' + this.getFullPath();
|
||||
d.errback(new goog.fs.Error(err.code, msg));
|
||||
}, this));
|
||||
return d;
|
||||
};
|
||||
Reference in New Issue
Block a user