123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- // 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, msg));
- }, this));
- return d;
- };
- /** @override */
- goog.fs.EntryImpl.prototype.moveTo = function(parent, opt_newName) {
- var d = new goog.async.Deferred();
- this.entry_.moveTo(
- /** @type {!goog.fs.DirectoryEntryImpl} */ (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, msg));
- }, this));
- return d;
- };
- /** @override */
- goog.fs.EntryImpl.prototype.copyTo = function(parent, opt_newName) {
- var d = new goog.async.Deferred();
- this.entry_.copyTo(
- /** @type {!goog.fs.DirectoryEntryImpl} */ (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, 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, 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, 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}
- * @final
- */
- goog.fs.DirectoryEntryImpl = function(fs, dir) {
- goog.fs.DirectoryEntryImpl.base(this, 'constructor', 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, 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, 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);
- /**
- * @param {goog.fs.DirectoryEntryImpl} dir
- * @return {!goog.async.Deferred}
- */
- 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, 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, 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}
- * @final
- */
- goog.fs.FileEntryImpl = function(fs, file) {
- goog.fs.FileEntryImpl.base(this, 'constructor', 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, 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, msg));
- }, this));
- return d;
- };
|