2013-05-31 01:38:44 +00:00
|
|
|
define(function(require) {
|
|
|
|
|
|
|
|
var indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB;
|
|
|
|
|
|
|
|
var _ = require('lodash');
|
|
|
|
|
2013-11-08 20:33:44 +00:00
|
|
|
// TextEncoder and TextDecoder will either already be present, or use this shim.
|
|
|
|
// Because of the way the spec is defined, we need to get them off the global.
|
|
|
|
require('encoding-indexes');
|
|
|
|
require('encoding');
|
|
|
|
|
2013-06-22 15:33:08 +00:00
|
|
|
var normalize = require('src/path').normalize;
|
|
|
|
var dirname = require('src/path').dirname;
|
|
|
|
var basename = require('src/path').basename;
|
|
|
|
|
2013-05-31 01:38:44 +00:00
|
|
|
var guid = require('src/shared').guid;
|
|
|
|
var hash = require('src/shared').hash;
|
|
|
|
var nop = require('src/shared').nop;
|
|
|
|
|
2013-05-31 19:03:18 +00:00
|
|
|
var EExists = require('src/error').EExists;
|
2013-05-31 01:38:44 +00:00
|
|
|
var EIsDirectory = require('src/error').EIsDirectory;
|
|
|
|
var ENoEntry = require('src/error').ENoEntry;
|
|
|
|
var EBusy = require('src/error').EBusy;
|
|
|
|
var ENotEmpty = require('src/error').ENotEmpty;
|
|
|
|
var ENotDirectory = require('src/error').ENotDirectory;
|
|
|
|
var EBadFileDescriptor = require('src/error').EBadFileDescriptor;
|
|
|
|
var ENotImplemented = require('src/error').ENotImplemented;
|
|
|
|
var ENotMounted = require('src/error').ENotMounted;
|
2013-05-31 19:03:18 +00:00
|
|
|
var EInvalid = require('src/error').EInvalid;
|
2013-06-22 15:33:08 +00:00
|
|
|
var EIO = require('src/error').EIO;
|
2013-11-23 18:34:48 +00:00
|
|
|
var ELoop = require('src/error').ELoop;
|
2013-07-12 15:11:05 +00:00
|
|
|
var EFileSystemError = require('src/error').EFileSystemError;
|
2013-05-31 01:38:44 +00:00
|
|
|
|
|
|
|
var FS_FORMAT = require('src/constants').FS_FORMAT;
|
2013-06-22 15:33:08 +00:00
|
|
|
var MODE_FILE = require('src/constants').MODE_FILE;
|
|
|
|
var MODE_DIRECTORY = require('src/constants').MODE_DIRECTORY;
|
2013-11-23 18:34:32 +00:00
|
|
|
var MODE_SYMBOLIC_LINK = require('src/constants').MODE_SYMBOLIC_LINK;
|
2013-06-22 15:33:08 +00:00
|
|
|
var ROOT_DIRECTORY_NAME = require('src/constants').ROOT_DIRECTORY_NAME;
|
|
|
|
var ROOT_NODE_ID = require('src/constants').ROOT_NODE_ID;
|
2013-05-31 01:38:44 +00:00
|
|
|
var IDB_RW = require('src/constants').IDB_RW;
|
|
|
|
var IDB_RO = require('src/constants').IDB_RO;
|
|
|
|
var FILE_STORE_NAME = require('src/constants').FILE_STORE_NAME;
|
2013-05-31 15:30:01 +00:00
|
|
|
var METADATA_STORE_NAME = require('src/constants').METADATA_STORE_NAME;
|
2013-11-23 18:34:48 +00:00
|
|
|
var SYMLOOP_MAX = require('src/constants').SYMLOOP_MAX;
|
2013-07-12 15:11:05 +00:00
|
|
|
var FS_READY = require('src/constants').FS_READY;
|
2013-05-31 01:38:44 +00:00
|
|
|
var FS_PENDING = require('src/constants').FS_PENDING;
|
|
|
|
var FS_ERROR = require('src/constants').FS_ERROR;
|
2013-06-22 15:33:08 +00:00
|
|
|
var O_READ = require('src/constants').O_READ;
|
|
|
|
var O_WRITE = require('src/constants').O_WRITE;
|
|
|
|
var O_CREATE = require('src/constants').O_CREATE;
|
|
|
|
var O_EXCLUSIVE = require('src/constants').O_EXCLUSIVE;
|
|
|
|
var O_TRUNCATE = require('src/constants').O_TRUNCATE;
|
|
|
|
var O_APPEND = require('src/constants').O_APPEND;
|
|
|
|
var O_FLAGS = require('src/constants').O_FLAGS;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DirectoryEntry
|
|
|
|
*/
|
|
|
|
|
|
|
|
function DirectoryEntry(id, type) {
|
|
|
|
this.id = id;
|
|
|
|
this.type = type || MODE_FILE;
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* OpenFileDescription
|
|
|
|
*/
|
|
|
|
|
|
|
|
function OpenFileDescription(id, flags, position) {
|
|
|
|
this.id = id;
|
|
|
|
this.flags = flags;
|
|
|
|
this.position = position;
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Node
|
|
|
|
*/
|
|
|
|
|
|
|
|
function Node(id, mode, size, atime, ctime, mtime, flags, xattrs, nlinks, version) {
|
|
|
|
var now = Date.now();
|
|
|
|
|
2013-11-08 20:33:44 +00:00
|
|
|
this.id = id || hash(guid());
|
2013-06-22 15:33:08 +00:00
|
|
|
this.mode = mode || MODE_FILE; // node type (file, directory, etc)
|
|
|
|
this.size = size || 0; // size (bytes for files, entries for directories)
|
|
|
|
this.atime = atime || now; // access time
|
|
|
|
this.ctime = ctime || now; // creation time
|
|
|
|
this.mtime = mtime || now; // modified time
|
|
|
|
this.flags = flags || []; // file flags
|
|
|
|
this.xattrs = xattrs || {}; // extended attributes
|
|
|
|
this.nlinks = nlinks || 0; // links count
|
|
|
|
this.version = version || 0; // node version
|
2013-07-12 15:11:05 +00:00
|
|
|
this.blksize = undefined; // block size
|
|
|
|
this.nblocks = 1; // blocks count
|
|
|
|
this.data = hash(guid()); // id for data object
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-07-29 20:30:24 +00:00
|
|
|
/*
|
|
|
|
* Stats
|
|
|
|
*/
|
|
|
|
|
|
|
|
function Stats(fileNode, devName) {
|
|
|
|
this.node = fileNode.id;
|
|
|
|
this.dev = devName;
|
|
|
|
this.size = fileNode.size;
|
|
|
|
this.nlinks = fileNode.nlinks;
|
|
|
|
this.atime = fileNode.atime;
|
|
|
|
this.mtime = fileNode.mtime;
|
|
|
|
this.ctime = fileNode.ctime;
|
|
|
|
this.type = fileNode.mode;
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-07-29 20:30:24 +00:00
|
|
|
|
2013-06-22 15:33:08 +00:00
|
|
|
/*
|
|
|
|
* find_node
|
|
|
|
*/
|
|
|
|
|
|
|
|
// in: file or directory path
|
|
|
|
// out: node structure, or error
|
|
|
|
function find_node(objectStore, path, callback) {
|
|
|
|
path = normalize(path);
|
|
|
|
if(!path) {
|
|
|
|
return callback(new ENoEntry('path is an empty string'));
|
|
|
|
}
|
|
|
|
var name = basename(path);
|
2013-07-12 15:11:05 +00:00
|
|
|
var parentPath = dirname(path);
|
2013-11-23 18:34:48 +00:00
|
|
|
var followedCount = 0;
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-12 18:14:23 +00:00
|
|
|
function check_root_directory_node(error, rootDirectoryNode) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else if(!rootDirectoryNode) {
|
|
|
|
callback(new ENoEntry('path does not exist'));
|
|
|
|
} else {
|
|
|
|
callback(undefined, rootDirectoryNode);
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-11-12 18:14:23 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-12 18:14:23 +00:00
|
|
|
// in: parent directory node
|
|
|
|
// out: parent directory data
|
|
|
|
function read_parent_directory_data(error, parentDirectoryNode) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else if(parentDirectoryNode.mode !== MODE_DIRECTORY || !parentDirectoryNode.data) {
|
2013-11-12 18:14:23 +00:00
|
|
|
callback(new ENotDirectory('a component of the path prefix is not a directory'));
|
|
|
|
} else {
|
2013-11-23 18:34:48 +00:00
|
|
|
read_object(objectStore, parentDirectoryNode.data, get_node_from_parent_directory_data);
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-11-12 18:14:23 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-12 18:14:23 +00:00
|
|
|
// in: parent directory data
|
2013-11-23 18:34:48 +00:00
|
|
|
// out: searched node
|
|
|
|
function get_node_from_parent_directory_data(error, parentDirectoryData) {
|
2013-11-12 18:14:23 +00:00
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
if(!_(parentDirectoryData).has(name)) {
|
|
|
|
callback(new ENoEntry('path does not exist'));
|
2013-06-22 15:33:08 +00:00
|
|
|
} else {
|
2013-11-12 18:14:23 +00:00
|
|
|
var nodeId = parentDirectoryData[name].id;
|
2013-11-23 18:34:48 +00:00
|
|
|
read_object(objectStore, nodeId, is_symbolic_link);
|
2013-06-22 15:33:08 +00:00
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-11-12 18:14:23 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-23 18:34:48 +00:00
|
|
|
function is_symbolic_link(error, node) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
if(node.mode == MODE_SYMBOLIC_LINK) {
|
|
|
|
followedCount++;
|
|
|
|
if(followedCount > SYMLOOP_MAX){
|
|
|
|
callback(new ELoop('too many symbolic links were encountered'));
|
|
|
|
} else {
|
|
|
|
follow_symbolic_link(node.data);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
callback(undefined, node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function follow_symbolic_link(data) {
|
|
|
|
data = normalize(data);
|
|
|
|
parentPath = dirname(data);
|
|
|
|
name = basename(data);
|
|
|
|
if(ROOT_DIRECTORY_NAME == name) {
|
|
|
|
read_object(objectStore, ROOT_NODE_ID, check_root_directory_node);
|
|
|
|
} else {
|
|
|
|
find_node(objectStore, parentPath, read_parent_directory_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-12 18:14:23 +00:00
|
|
|
if(ROOT_DIRECTORY_NAME == name) {
|
|
|
|
read_object(objectStore, ROOT_NODE_ID, check_root_directory_node);
|
|
|
|
} else {
|
2013-06-22 15:33:08 +00:00
|
|
|
find_node(objectStore, parentPath, read_parent_directory_data);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* read_object
|
|
|
|
*/
|
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function read_object(context, id, callback) {
|
|
|
|
context.get(id, callback);
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* write_object
|
|
|
|
*/
|
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function write_object(context, object, id, callback) {
|
|
|
|
context.put(id, object, callback);
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* delete_object
|
|
|
|
*/
|
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function delete_object(context, id, callback) {
|
|
|
|
context.delete(id, callback);
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* make_root_directory
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Note: this should only be invoked when formatting a new file system
|
|
|
|
function make_root_directory(objectStore, callback) {
|
|
|
|
var directoryNode;
|
|
|
|
var directoryData;
|
|
|
|
|
|
|
|
function write_directory_node(error, existingNode) {
|
|
|
|
if(!error && existingNode) {
|
|
|
|
callback(new EExists());
|
|
|
|
} else if(error && !error instanceof ENoEntry) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryNode = new Node(ROOT_NODE_ID, MODE_DIRECTORY);
|
|
|
|
directoryNode.nlinks += 1;
|
|
|
|
write_object(objectStore, directoryNode, directoryNode.id, write_directory_data);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function write_directory_data(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryData = {};
|
|
|
|
write_object(objectStore, directoryData, directoryNode.data, callback);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
find_node(objectStore, ROOT_DIRECTORY_NAME, write_directory_node);
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* make_directory
|
|
|
|
*/
|
|
|
|
|
|
|
|
function make_directory(objectStore, path, callback) {
|
|
|
|
path = normalize(path);
|
|
|
|
var name = basename(path);
|
|
|
|
var parentPath = dirname(path);
|
|
|
|
|
|
|
|
var directoryNode;
|
|
|
|
var directoryData;
|
|
|
|
var parentDirectoryNode;
|
|
|
|
var parentDirectoryData;
|
|
|
|
|
|
|
|
function check_if_directory_exists(error, result) {
|
|
|
|
if(!error && result) {
|
|
|
|
callback(new EExists());
|
|
|
|
} else if(error && !error instanceof ENoEntry) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
find_node(objectStore, parentPath, read_parent_directory_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function read_parent_directory_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
parentDirectoryNode = result;
|
|
|
|
read_object(objectStore, parentDirectoryNode.data, write_directory_node);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function write_directory_node(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
parentDirectoryData = result;
|
|
|
|
directoryNode = new Node(undefined, MODE_DIRECTORY);
|
|
|
|
directoryNode.nlinks += 1;
|
|
|
|
write_object(objectStore, directoryNode, directoryNode.id, write_directory_data);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function write_directory_data(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryData = {};
|
|
|
|
write_object(objectStore, directoryData, directoryNode.data, update_parent_directory_data);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function update_parent_directory_data(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
parentDirectoryData[name] = new DirectoryEntry(directoryNode.id, MODE_DIRECTORY);
|
|
|
|
write_object(objectStore, parentDirectoryData, parentDirectoryNode.data, callback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
find_node(objectStore, path, check_if_directory_exists);
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* remove_directory
|
|
|
|
*/
|
|
|
|
|
|
|
|
function remove_directory(objectStore, path, callback) {
|
|
|
|
path = normalize(path);
|
|
|
|
var name = basename(path);
|
|
|
|
var parentPath = dirname(path);
|
|
|
|
|
|
|
|
var directoryNode;
|
|
|
|
var directoryData;
|
|
|
|
var parentDirectoryNode;
|
|
|
|
var parentDirectoryData;
|
|
|
|
|
|
|
|
function check_if_directory_exists(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
2013-07-15 15:52:41 +00:00
|
|
|
} else if(ROOT_DIRECTORY_NAME == name) {
|
|
|
|
callback(new EBusy());
|
2013-06-22 15:33:08 +00:00
|
|
|
} else if(!result) {
|
|
|
|
callback(new ENoEntry());
|
|
|
|
} else {
|
|
|
|
directoryNode = result;
|
|
|
|
read_object(objectStore, directoryNode.data, check_if_directory_is_empty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function check_if_directory_is_empty(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryData = result;
|
|
|
|
if(_(directoryData).size() > 0) {
|
|
|
|
callback(new ENotEmpty());
|
|
|
|
} else {
|
|
|
|
find_node(objectStore, parentPath, read_parent_directory_data);
|
|
|
|
}
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function read_parent_directory_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
parentDirectoryNode = result;
|
|
|
|
read_object(objectStore, parentDirectoryNode.data, remove_directory_entry_from_parent_directory_node);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function remove_directory_entry_from_parent_directory_node(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
parentDirectoryData = result;
|
|
|
|
delete parentDirectoryData[name];
|
|
|
|
write_object(objectStore, parentDirectoryData, parentDirectoryNode.data, remove_directory_node);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function remove_directory_node(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
delete_object(objectStore, directoryNode.id, remove_directory_data);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function remove_directory_data(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
delete_object(objectStore, directoryNode.data, callback);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
find_node(objectStore, path, check_if_directory_exists);
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function open_file(fs, objectStore, path, flags, callback) {
|
|
|
|
path = normalize(path);
|
|
|
|
var name = basename(path);
|
|
|
|
var parentPath = dirname(path);
|
|
|
|
|
|
|
|
var directoryNode;
|
|
|
|
var directoryData;
|
|
|
|
var directoryEntry;
|
|
|
|
var fileNode;
|
|
|
|
var fileData;
|
|
|
|
|
2013-07-19 15:22:23 +00:00
|
|
|
if(ROOT_DIRECTORY_NAME == name) {
|
|
|
|
if(_(flags).contains(O_WRITE)) {
|
2013-11-08 20:33:44 +00:00
|
|
|
callback(new EIsDirectory('the named file is a directory and O_WRITE is set'));
|
2013-07-19 15:22:23 +00:00
|
|
|
} else {
|
|
|
|
find_node(objectStore, path, set_file_node);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
find_node(objectStore, parentPath, read_directory_data);
|
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function read_directory_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryNode = result;
|
|
|
|
read_object(objectStore, directoryNode.data, check_if_file_exists);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function check_if_file_exists(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryData = result;
|
|
|
|
if(_(directoryData).has(name)) {
|
|
|
|
if(_(flags).contains(O_EXCLUSIVE)) {
|
2013-11-08 20:33:44 +00:00
|
|
|
callback(new ENoEntry('O_CREATE and O_EXCLUSIVE are set, and the named file exists'));
|
2013-06-22 15:33:08 +00:00
|
|
|
} else {
|
|
|
|
directoryEntry = directoryData[name];
|
2013-07-19 15:22:23 +00:00
|
|
|
if(directoryEntry.type == MODE_DIRECTORY && _(flags).contains(O_WRITE)) {
|
2013-11-08 20:33:44 +00:00
|
|
|
callback(new EIsDirectory('the named file is a directory and O_WRITE is set'));
|
2013-06-22 15:33:08 +00:00
|
|
|
} else {
|
|
|
|
read_object(objectStore, directoryEntry.id, set_file_node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(!_(flags).contains(O_CREATE)) {
|
|
|
|
callback(new ENoEntry('O_CREATE is not set and the named file does not exist'));
|
|
|
|
} else {
|
|
|
|
write_file_node();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function set_file_node(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
fileNode = result;
|
|
|
|
callback(undefined, fileNode);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function write_file_node() {
|
|
|
|
fileNode = new Node(undefined, MODE_FILE);
|
|
|
|
fileNode.nlinks += 1;
|
|
|
|
write_object(objectStore, fileNode, fileNode.id, write_file_data);
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function write_file_data(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
2013-07-22 17:08:35 +00:00
|
|
|
fileData = new Uint8Array(0);
|
2013-06-22 15:33:08 +00:00
|
|
|
write_object(objectStore, fileData, fileNode.data, update_directory_data);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function update_directory_data(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryData[name] = new DirectoryEntry(fileNode.id, MODE_FILE);
|
|
|
|
write_object(objectStore, directoryData, directoryNode.data, handle_update_result);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function handle_update_result(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
callback(undefined, fileNode);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function write_data(objectStore, ofd, buffer, offset, length, position, callback) {
|
|
|
|
var fileNode;
|
|
|
|
var fileData;
|
|
|
|
|
|
|
|
read_object(objectStore, ofd.id, read_file_data);
|
|
|
|
|
|
|
|
function read_file_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
fileNode = result;
|
|
|
|
read_object(objectStore, fileNode.data, update_file_data);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function update_file_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
fileData = result;
|
2013-07-29 18:55:25 +00:00
|
|
|
var _position = (!(undefined === position || null === position)) ? position : ofd.position;
|
2013-06-22 15:33:08 +00:00
|
|
|
var newSize = Math.max(fileData.length, _position + length);
|
|
|
|
var newData = new Uint8Array(newSize);
|
|
|
|
if(fileData) {
|
|
|
|
newData.set(fileData);
|
|
|
|
}
|
|
|
|
newData.set(buffer, _position);
|
|
|
|
if(undefined === position) {
|
|
|
|
ofd.position += length;
|
|
|
|
}
|
|
|
|
|
|
|
|
fileNode.size = newSize;
|
|
|
|
fileNode.mtime = Date.now();
|
|
|
|
fileNode.version += 1;
|
|
|
|
|
2013-07-22 17:08:35 +00:00
|
|
|
write_object(objectStore, newData, fileNode.data, update_file_node);
|
2013-06-22 15:33:08 +00:00
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function update_file_node(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
2013-07-22 17:08:35 +00:00
|
|
|
write_object(objectStore, fileNode, fileNode.id, return_nbytes);
|
2013-06-22 15:33:08 +00:00
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function return_nbytes(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
2013-07-22 17:08:35 +00:00
|
|
|
callback(undefined, length);
|
2013-06-22 15:33:08 +00:00
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-31 01:38:44 +00:00
|
|
|
|
2013-06-22 15:33:08 +00:00
|
|
|
function read_data(objectStore, ofd, buffer, offset, length, position, callback) {
|
|
|
|
var fileNode;
|
|
|
|
var fileData;
|
2013-05-31 01:38:44 +00:00
|
|
|
|
2013-06-22 15:33:08 +00:00
|
|
|
read_object(objectStore, ofd.id, read_file_data);
|
|
|
|
|
|
|
|
function read_file_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
fileNode = result;
|
|
|
|
read_object(objectStore, fileNode.data, handle_file_data);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
|
|
|
function handle_file_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
fileData = result;
|
2013-07-29 18:55:25 +00:00
|
|
|
var _position = (!(undefined === position || null === position)) ? position : ofd.position;
|
2013-06-22 15:33:08 +00:00
|
|
|
length = (_position + length > buffer.length) ? length - _position : length;
|
|
|
|
var dataView = fileData.subarray(_position, _position + length);
|
2013-07-22 17:08:35 +00:00
|
|
|
buffer.set(dataView, offset);
|
2013-06-22 15:33:08 +00:00
|
|
|
if(undefined === position) {
|
|
|
|
ofd.position += length;
|
|
|
|
}
|
|
|
|
callback(undefined, length);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-31 07:52:04 +00:00
|
|
|
|
2013-07-12 15:11:05 +00:00
|
|
|
function stat_file(objectStore, path, callback) {
|
|
|
|
path = normalize(path);
|
|
|
|
var name = basename(path);
|
|
|
|
|
|
|
|
find_node(objectStore, path, check_file);
|
|
|
|
|
|
|
|
function check_file(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
callback(undefined, result);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-12 15:11:05 +00:00
|
|
|
|
2013-07-29 18:55:25 +00:00
|
|
|
function fstat_file(objectStore, ofd, callback) {
|
|
|
|
read_object(objectStore, ofd.id, check_file);
|
|
|
|
|
|
|
|
function check_file(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
callback(undefined, result);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-29 18:55:25 +00:00
|
|
|
|
2013-07-26 02:49:53 +00:00
|
|
|
function link_node(objectStore, oldpath, newpath, callback) {
|
|
|
|
oldpath = normalize(oldpath);
|
|
|
|
var oldname = basename(oldpath);
|
|
|
|
var oldParentPath = dirname(oldpath);
|
|
|
|
|
|
|
|
newpath = normalize(newpath);
|
|
|
|
var newname = basename(newpath);
|
|
|
|
var newParentPath = dirname(newpath);
|
|
|
|
|
|
|
|
var oldDirectoryNode;
|
|
|
|
var oldDirectoryData;
|
|
|
|
var newDirectoryNode;
|
|
|
|
var newDirectoryData;
|
|
|
|
var fileNode;
|
|
|
|
|
|
|
|
find_node(objectStore, oldParentPath, read_old_directory_data);
|
|
|
|
|
|
|
|
function read_old_directory_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
oldDirectoryNode = result;
|
|
|
|
read_object(objectStore, oldDirectoryNode.data, check_if_old_file_exists);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-07-26 02:49:53 +00:00
|
|
|
|
|
|
|
function check_if_old_file_exists(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
oldDirectoryData = result;
|
|
|
|
if(!_(oldDirectoryData).has(oldname)) {
|
|
|
|
callback(new ENoEntry('a component of either path prefix does not exist'));
|
|
|
|
} else {
|
|
|
|
find_node(objectStore, newParentPath, read_new_directory_data);
|
|
|
|
}
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-07-26 02:49:53 +00:00
|
|
|
|
|
|
|
function read_new_directory_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
newDirectoryNode = result;
|
|
|
|
read_object(objectStore, newDirectoryNode.data, check_if_new_file_exists);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-07-26 02:49:53 +00:00
|
|
|
|
|
|
|
function check_if_new_file_exists(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
newDirectoryData = result;
|
|
|
|
if(_(newDirectoryData).has(newname)) {
|
|
|
|
callback(new EExists('newpath resolves to an existing file'));
|
|
|
|
} else {
|
|
|
|
newDirectoryData[newname] = oldDirectoryData[oldname];
|
|
|
|
write_object(objectStore, newDirectoryData, newDirectoryNode.data, read_directory_entry);
|
|
|
|
}
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-07-26 02:49:53 +00:00
|
|
|
|
|
|
|
function read_directory_entry(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
2013-07-26 04:15:48 +00:00
|
|
|
read_object(objectStore, newDirectoryData[newname].id, update_file_node);
|
2013-07-26 02:49:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-26 04:15:48 +00:00
|
|
|
function update_file_node(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
fileNode = result;
|
2013-11-08 20:33:44 +00:00
|
|
|
fileNode.nlinks += 1;
|
2013-07-26 04:15:48 +00:00
|
|
|
write_object(objectStore, fileNode, fileNode.id, callback);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-26 04:15:48 +00:00
|
|
|
|
|
|
|
function unlink_node(objectStore, path, callback) {
|
|
|
|
path = normalize(path);
|
|
|
|
name = basename(path);
|
|
|
|
parentPath = dirname(path);
|
|
|
|
|
|
|
|
var directoryNode;
|
|
|
|
var directoryData;
|
|
|
|
var fileNode;
|
|
|
|
|
|
|
|
find_node(objectStore, parentPath, read_directory_data);
|
|
|
|
|
|
|
|
function read_directory_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryNode = result;
|
|
|
|
read_object(objectStore, directoryNode.data, check_if_file_exists);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-07-26 04:15:48 +00:00
|
|
|
|
|
|
|
function check_if_file_exists(error, result) {
|
2013-07-26 02:49:53 +00:00
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
2013-07-26 04:15:48 +00:00
|
|
|
directoryData = result;
|
|
|
|
if(!_(directoryData).has(name)) {
|
|
|
|
callback(new ENoEntry('a component of the path does not name an existing file'));
|
|
|
|
} else {
|
|
|
|
read_object(objectStore, directoryData[name].id, update_file_node);
|
|
|
|
}
|
2013-07-26 02:49:53 +00:00
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-07-26 02:49:53 +00:00
|
|
|
|
|
|
|
function update_file_node(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
fileNode = result;
|
2013-07-26 04:15:48 +00:00
|
|
|
fileNode.nlinks -= 1;
|
|
|
|
if(fileNode.nlinks < 1) {
|
|
|
|
delete_object(objectStore, fileNode.id, delete_file_data);
|
|
|
|
} else {
|
|
|
|
write_object(objectStore, fileNode, fileNode.id, update_directory_data);
|
|
|
|
}
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-07-26 04:15:48 +00:00
|
|
|
|
|
|
|
function delete_file_data(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
delete_object(objectStore, fileNode.data, update_directory_data);
|
2013-07-26 02:49:53 +00:00
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-07-26 04:15:48 +00:00
|
|
|
|
|
|
|
function update_directory_data(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
delete directoryData[name];
|
|
|
|
write_object(objectStore, directoryData, directoryNode.data, callback);
|
|
|
|
}
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-07-26 02:49:53 +00:00
|
|
|
|
2013-11-07 20:55:14 +00:00
|
|
|
function read_directory(objectStore, path, callback) {
|
|
|
|
path = normalize(path);
|
|
|
|
var name = basename(path);
|
|
|
|
|
|
|
|
var directoryNode;
|
|
|
|
var directoryData;
|
|
|
|
|
|
|
|
find_node(objectStore, path, read_directory_data);
|
|
|
|
|
|
|
|
function read_directory_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryNode = result;
|
|
|
|
read_object(objectStore, directoryNode.data, handle_directory_data);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-11-07 20:55:14 +00:00
|
|
|
|
|
|
|
function handle_directory_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryData = result;
|
|
|
|
var files = Object.keys(directoryData);
|
|
|
|
callback(undefined, files);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
|
|
|
}
|
2013-11-07 20:55:14 +00:00
|
|
|
|
2013-11-23 18:34:40 +00:00
|
|
|
function make_symbolic_link(objectStore, srcpath, dstpath, callback) {
|
|
|
|
dstpath = normalize(dstpath);
|
|
|
|
var name = basename(dstpath);
|
|
|
|
var parentPath = dirname(dstpath);
|
|
|
|
|
|
|
|
var directoryNode;
|
|
|
|
var directoryData;
|
|
|
|
var fileNode;
|
|
|
|
|
|
|
|
if(ROOT_DIRECTORY_NAME == name) {
|
|
|
|
callback(new EExists('the destination path already exists'));
|
|
|
|
} else {
|
|
|
|
find_node(objectStore, parentPath, read_directory_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
function read_directory_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryNode = result;
|
|
|
|
read_object(objectStore, directoryNode.data, check_if_file_exists);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function check_if_file_exists(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryData = result;
|
|
|
|
if(_(directoryData).has(name)) {
|
|
|
|
callback(new EExists('the destination path already exists'));
|
|
|
|
} else {
|
|
|
|
write_file_node();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function write_file_node() {
|
|
|
|
fileNode = new Node(undefined, MODE_SYMBOLIC_LINK);
|
|
|
|
fileNode.nlinks += 1;
|
|
|
|
fileNode.size = srcpath.length;
|
|
|
|
fileNode.data = srcpath;
|
|
|
|
write_object(objectStore, fileNode, fileNode.id, update_directory_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
function update_directory_data(error) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryData[name] = new DirectoryEntry(fileNode.id, MODE_SYMBOLIC_LINK);
|
|
|
|
write_object(objectStore, directoryData, directoryNode.data, callback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-23 18:34:32 +00:00
|
|
|
function read_link(objectStore, path, callback) {
|
|
|
|
path = normalize(path);
|
|
|
|
var name = basename(path);
|
|
|
|
var parentPath = dirname(path);
|
|
|
|
|
|
|
|
var directoryNode;
|
|
|
|
var directoryData;
|
|
|
|
|
|
|
|
find_node(objectStore, parentPath, read_directory_data);
|
|
|
|
|
|
|
|
function read_directory_data(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryNode = result;
|
|
|
|
read_object(objectStore, directoryNode.data, check_if_file_exists);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function check_if_file_exists(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
directoryData = result;
|
|
|
|
if(!_(directoryData).has(name)) {
|
|
|
|
callback(new ENoEntry('a component of the path does not name an existing file'));
|
|
|
|
} else {
|
|
|
|
read_object(objectStore, directoryData[name].id, check_if_symbolic);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function check_if_symbolic(error, result) {
|
|
|
|
if(error) {
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
if(result.mode != MODE_SYMBOLIC_LINK) {
|
|
|
|
callback(new EInvalid("path not a symbolic link"));
|
|
|
|
} else {
|
|
|
|
callback(undefined, result.data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-09 20:12:52 +00:00
|
|
|
function validate_flags(flags) {
|
|
|
|
if(!_(O_FLAGS).has(flags)) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return O_FLAGS[flags];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 01:38:44 +00:00
|
|
|
/*
|
|
|
|
* FileSystem
|
|
|
|
*/
|
|
|
|
|
|
|
|
function FileSystem(name, flags) {
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
FileSystem.prototype._allocate_descriptor = function _allocate_descriptor(openFileDescription) {
|
|
|
|
var fd = this.nextDescriptor ++;
|
|
|
|
this.openFiles[fd] = openFileDescription;
|
|
|
|
return fd;
|
|
|
|
};
|
|
|
|
FileSystem.prototype._release_descriptor = function _release_descriptor(fd) {
|
|
|
|
delete this.openFiles[fd];
|
2013-05-31 01:38:44 +00:00
|
|
|
};
|
2013-11-22 01:44:57 +00:00
|
|
|
FileSystem.prototype._queueOrRun = function _queueOrRun(operation) {
|
|
|
|
var error = undefined;
|
|
|
|
|
|
|
|
if(FS_READY == this.readyState) {
|
|
|
|
operation.call(this);
|
|
|
|
} else if(FS_ERROR == this.readyState) {
|
|
|
|
error = new EFileSystemError('unknown error');
|
|
|
|
} else {
|
|
|
|
this.queue.push(operation);
|
|
|
|
}
|
|
|
|
|
|
|
|
return error;
|
|
|
|
};
|
|
|
|
FileSystem.prototype._runQueued = function _runQueued() {
|
|
|
|
this.queue.forEach(function(operation) {
|
|
|
|
operation.call(this);
|
|
|
|
}.bind(this));
|
|
|
|
this.queue = null;
|
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._open = function _open(context, path, flags, callback) {
|
2013-06-22 15:33:08 +00:00
|
|
|
var that = this;
|
2013-05-31 01:38:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function check_result(error, fileNode) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
|
|
|
var position;
|
|
|
|
if(_(flags).contains(O_APPEND)) {
|
|
|
|
position = fileNode.size;
|
|
|
|
} else {
|
|
|
|
position = 0;
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-11-21 00:24:49 +00:00
|
|
|
var openFileDescription = new OpenFileDescription(fileNode.id, flags, position);
|
|
|
|
var fd = that._allocate_descriptor(openFileDescription);
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined, fd);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-19 15:22:23 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
flags = validate_flags(flags);
|
|
|
|
if(!flags) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EInvalid('flags is not valid'));
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
2013-05-31 07:52:04 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
open_file(that, context, path, flags, check_result);
|
2013-05-31 01:38:44 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._close = function _close(fd, callback) {
|
2013-06-22 15:33:08 +00:00
|
|
|
if(!_(this.openFiles).has(fd)) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EBadFileDescriptor('invalid file descriptor'));
|
2013-06-22 15:33:08 +00:00
|
|
|
} else {
|
|
|
|
this._release_descriptor(fd);
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined);
|
2013-06-22 15:33:08 +00:00
|
|
|
}
|
2013-05-31 01:38:44 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._mkdir = function _mkdir(context, path, callback) {
|
2013-07-12 15:11:05 +00:00
|
|
|
var that = this;
|
2013-05-31 01:38:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function check_result(error) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-31 01:38:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
make_directory(context, path, check_result);
|
2013-05-31 01:38:44 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._rmdir = function _rmdir(context, path, callback) {
|
2013-07-15 15:52:41 +00:00
|
|
|
var that = this;
|
2013-05-31 01:38:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function check_result(error) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-31 01:38:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
remove_directory(context, path, check_result);
|
2013-05-31 01:38:44 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._stat = function _stat(context, path, callback) {
|
2013-07-12 15:11:05 +00:00
|
|
|
var that = this;
|
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function check_result(error, result) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
|
|
|
var stats = new Stats(result, that.name);
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined, stats);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-31 01:38:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
stat_file(context, path, check_result);
|
2013-06-22 15:33:08 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._fstat = function _fstat(context, fd, callback) {
|
2013-07-29 18:55:25 +00:00
|
|
|
var that = this;
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function check_result(error, result) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
|
|
|
var stats = new Stats(result, that.name);
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined, stats);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-29 18:55:25 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
var ofd = that.openFiles[fd];
|
2013-07-29 18:55:25 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
if(!ofd) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EBadFileDescriptor('invalid file descriptor'));
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
|
|
|
fstat_file(context, ofd, check_result);
|
|
|
|
}
|
2013-05-31 01:38:44 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._link = function _link(context, oldpath, newpath, callback) {
|
2013-07-23 03:34:38 +00:00
|
|
|
var that = this;
|
2013-05-31 01:38:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function check_result(error) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-23 03:34:38 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
link_node(context, oldpath, newpath, check_result);
|
2013-05-31 01:38:44 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._unlink = function _unlink(context, path, callback) {
|
2013-07-26 02:49:53 +00:00
|
|
|
var that = this;
|
2013-05-31 01:38:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function check_result(error) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-26 02:49:53 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
unlink_node(context, path, check_result);
|
2013-06-22 15:33:08 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._read = function _read(context, fd, buffer, offset, length, position, callback) {
|
2013-07-22 17:08:35 +00:00
|
|
|
var that = this;
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
offset = (undefined === offset) ? 0 : offset;
|
|
|
|
length = (undefined === length) ? buffer.length - offset : length;
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function check_result(error, nbytes) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined, nbytes);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
var ofd = that.openFiles[fd];
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
if(!ofd) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EBadFileDescriptor('invalid file descriptor'));
|
2013-11-21 00:24:49 +00:00
|
|
|
} else if(!_(ofd.flags).contains(O_READ)) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EBadFileDescriptor('descriptor does not permit reading'));
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
|
|
|
read_data(context, ofd, buffer, offset, length, position, check_result);
|
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._readFile = function _readFile(context, path, options, callback) {
|
2013-11-08 20:33:44 +00:00
|
|
|
var that = this;
|
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
if(!options) {
|
|
|
|
options = { encoding: null, flag: 'r' };
|
|
|
|
} else if(typeof options === "function") {
|
|
|
|
callback = options;
|
|
|
|
options = { encoding: null, flag: 'r' };
|
|
|
|
} else if(typeof options === "string") {
|
|
|
|
options = { encoding: options, flag: 'r' };
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
var flags = validate_flags(options.flag || 'r');
|
|
|
|
if(!flags) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EInvalid('flags is not valid'));
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
open_file(that, context, path, flags, function(err, fileNode) {
|
|
|
|
if(err) {
|
|
|
|
// TODO: abort transaction?
|
2013-11-21 21:15:30 +00:00
|
|
|
return callback(err);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
var ofd = new OpenFileDescription(fileNode.id, flags, 0);
|
|
|
|
var fd = that._allocate_descriptor(ofd);
|
|
|
|
|
|
|
|
fstat_file(context, ofd, function(err2, fstatResult) {
|
|
|
|
if(err2) {
|
|
|
|
// TODO: abort transaction?
|
2013-11-21 21:15:30 +00:00
|
|
|
return callback(err2);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var stats = new Stats(fstatResult, that.name);
|
|
|
|
var size = stats.size;
|
|
|
|
var buffer = new Uint8Array(size);
|
|
|
|
|
|
|
|
read_data(context, ofd, buffer, 0, size, 0, function(err3, nbytes) {
|
|
|
|
if(err3) {
|
2013-11-09 19:51:21 +00:00
|
|
|
// TODO: abort transaction?
|
2013-11-21 21:15:30 +00:00
|
|
|
return callback(err3);
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-11-21 00:24:49 +00:00
|
|
|
that._release_descriptor(fd);
|
2013-11-08 20:33:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
var data;
|
|
|
|
if(options.encoding === 'utf8') {
|
|
|
|
data = new TextDecoder('utf-8').decode(buffer);
|
|
|
|
} else {
|
|
|
|
data = buffer;
|
|
|
|
}
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined, data);
|
2013-11-21 00:24:49 +00:00
|
|
|
});
|
|
|
|
});
|
2013-11-08 20:33:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
FileSystem.prototype._write = function _write(context, fd, buffer, offset, length, position, callback) {
|
|
|
|
var that = this;
|
2013-11-08 20:33:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
offset = (undefined === offset) ? 0 : offset;
|
|
|
|
length = (undefined === length) ? buffer.length - offset : length;
|
|
|
|
|
|
|
|
function check_result(error, nbytes) {
|
|
|
|
if(error) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined, nbytes);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var ofd = that.openFiles[fd];
|
|
|
|
|
|
|
|
if(!ofd) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EBadFileDescriptor('invalid file descriptor'));
|
2013-11-21 00:24:49 +00:00
|
|
|
} else if(!_(ofd.flags).contains(O_WRITE)) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EBadFileDescriptor('descriptor does not permit writing'));
|
2013-11-21 00:24:49 +00:00
|
|
|
} else if(buffer.length - offset < length) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EIO('intput buffer is too small'));
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
|
|
|
write_data(context, ofd, buffer, offset, length, position, check_result);
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._writeFile = function _writeFile(context, path, data, options, callback) {
|
2013-07-22 17:08:35 +00:00
|
|
|
var that = this;
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
if(!options) {
|
|
|
|
options = { encoding: 'utf8', flag: 'w' };
|
|
|
|
} else if(typeof options === "function") {
|
|
|
|
callback = options;
|
|
|
|
options = { encoding: 'utf8', flag: 'w' };
|
|
|
|
} else if(typeof options === "string") {
|
|
|
|
options = { encoding: options, flag: 'w' };
|
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
var flags = validate_flags(options.flag || 'w');
|
|
|
|
if(!flags) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EInvalid('flags is not valid'));
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(typeof data === "string" && options.encoding === 'utf8') {
|
|
|
|
data = new TextEncoder('utf-8').encode(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
open_file(that, context, path, flags, function(err, fileNode) {
|
|
|
|
if(err) {
|
|
|
|
// TODO: abort transaction?
|
2013-11-21 21:15:30 +00:00
|
|
|
return callback(err);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
var ofd = new OpenFileDescription(fileNode.id, flags, 0);
|
|
|
|
var fd = that._allocate_descriptor(ofd);
|
|
|
|
|
|
|
|
write_data(context, ofd, data, 0, data.length, 0, function(err2, nbytes) {
|
|
|
|
if(err2) {
|
|
|
|
// TODO: abort transaction?
|
2013-11-21 21:15:30 +00:00
|
|
|
return callback(err2);
|
2013-11-08 20:33:44 +00:00
|
|
|
}
|
2013-11-21 00:24:49 +00:00
|
|
|
that._release_descriptor(fd);
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined);
|
2013-11-21 00:24:49 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
FileSystem.prototype._getxattr = function _getxattr(path, name, callback) {
|
|
|
|
|
|
|
|
};
|
|
|
|
FileSystem.prototype._setxattr = function _setxattr(path, name, value, callback) {
|
|
|
|
|
|
|
|
};
|
|
|
|
FileSystem.prototype._lseek = function _lseek(context, fd, offset, whence, callback) {
|
|
|
|
var that = this;
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function check_result(error, offset) {
|
|
|
|
if(error) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(offset);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function update_descriptor_position(error, stats) {
|
|
|
|
if(error) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
|
|
|
if(stats.size + offset < 0) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EInvalid('resulting file offset would be negative'));
|
2013-07-22 17:08:35 +00:00
|
|
|
} else {
|
2013-11-21 00:24:49 +00:00
|
|
|
ofd.position = stats.size + offset;
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined, ofd.position);
|
2013-07-22 17:08:35 +00:00
|
|
|
}
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-22 15:33:08 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
var ofd = that.openFiles[fd];
|
|
|
|
|
|
|
|
if(!ofd) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EBadFileDescriptor('invalid file descriptor'));
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if('SET' === whence) {
|
|
|
|
if(offset < 0) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EInvalid('resulting file offset would be negative'));
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
|
|
|
ofd.position = offset;
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined, ofd.position);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
} else if('CUR' === whence) {
|
|
|
|
if(ofd.position + offset < 0) {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EInvalid('resulting file offset would be negative'));
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
|
|
|
ofd.position += offset;
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined, ofd.position);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
} else if('END' === whence) {
|
|
|
|
fstat_file(context, ofd, update_descriptor_position);
|
|
|
|
} else {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(new EInvalid('whence argument is not a proper value'));
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
2013-07-29 18:55:25 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._readdir = function _readdir(context, path, callback) {
|
2013-11-08 20:33:44 +00:00
|
|
|
var that = this;
|
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function check_result(error, files) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined, files);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
read_directory(context, path, check_result);
|
|
|
|
};
|
|
|
|
FileSystem.prototype._utimes = function _utimes(path, atime, mtime, callback) {
|
2013-11-08 20:33:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
};
|
|
|
|
FileSystem.prototype._rename = function _rename(context, oldpath, newpath, callback) {
|
|
|
|
var that = this;
|
2013-11-09 19:51:21 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
link_node(context, oldpath, newpath, unlink_old_node);
|
2013-11-08 20:33:44 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function unlink_old_node(error) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
|
|
|
unlink_node(context, oldpath, check_result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function check_result(error) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
} else {
|
2013-11-21 21:15:30 +00:00
|
|
|
callback(undefined);
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
}
|
2013-11-08 20:33:44 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._truncate = function _truncate(path, length, callback) {
|
|
|
|
|
|
|
|
};
|
|
|
|
FileSystem.prototype._ftruncate = function _ftruncate(fd, length, callback) {
|
|
|
|
|
|
|
|
};
|
2013-11-23 18:34:40 +00:00
|
|
|
FileSystem.prototype._symlink = function _symlink(context, srcpath, dstpath, callback) {
|
|
|
|
var that = this;
|
2013-11-21 00:24:49 +00:00
|
|
|
|
2013-11-23 18:34:40 +00:00
|
|
|
function check_result(error) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
callback(undefined);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
make_symbolic_link(context, srcpath, dstpath, check_result);
|
2013-11-21 00:24:49 +00:00
|
|
|
};
|
2013-11-23 18:34:32 +00:00
|
|
|
FileSystem.prototype._readlink = function _readlink(context, path, callback) {
|
|
|
|
var that = this;
|
2013-07-29 18:55:25 +00:00
|
|
|
|
2013-11-23 18:34:32 +00:00
|
|
|
function check_result(error, result) {
|
|
|
|
if(error) {
|
|
|
|
// if(transaction.error) transaction.abort();
|
|
|
|
callback(error);
|
|
|
|
} else {
|
|
|
|
callback(undefined, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
read_link(context, path, check_result);
|
2013-07-29 18:55:25 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._realpath = function _realpath(fd, length, callback) {
|
2013-07-29 18:55:25 +00:00
|
|
|
|
2013-06-22 15:33:08 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem.prototype._lstat = function _lstat(fd, length, callback) {
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
function IndexedDBContext(objectStore) {
|
|
|
|
this.objectStore = objectStore;
|
|
|
|
}
|
|
|
|
IndexedDBContext.prototype.get = function(key, callback) {
|
|
|
|
try {
|
|
|
|
var request = this.objectStore.get(key);
|
|
|
|
request.onsuccess = function onsuccess(event) {
|
|
|
|
var result = event.target.result;
|
|
|
|
callback(undefined, result);
|
|
|
|
};
|
|
|
|
request.onerror = function onerror(error) {
|
|
|
|
callback(error);
|
|
|
|
};
|
|
|
|
} catch(error) {
|
|
|
|
callback(new EIO(error.message));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
IndexedDBContext.prototype.put = function(key, value, callback) {
|
|
|
|
try {
|
|
|
|
var request = this.objectStore.put(value, key);
|
|
|
|
request.onsuccess = function onsuccess(event) {
|
|
|
|
var result = event.target.result;
|
|
|
|
callback(undefined, result);
|
|
|
|
};
|
|
|
|
request.onerror = function onerror(error) {
|
|
|
|
callback(error);
|
|
|
|
};
|
|
|
|
} catch(error) {
|
|
|
|
callback(new EIO(error.message));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
IndexedDBContext.prototype.delete = function(key, callback) {
|
|
|
|
var request = this.objectStore.delete(key);
|
|
|
|
request.onsuccess = function onsuccess(event) {
|
|
|
|
var result = event.target.result;
|
|
|
|
callback(undefined, result);
|
|
|
|
};
|
|
|
|
request.onerror = function(error) {
|
|
|
|
callback(error);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
function IndexedDBFileSystem(name, flags) {
|
|
|
|
var format = _(flags).contains(FS_FORMAT);
|
2013-07-29 18:55:25 +00:00
|
|
|
var that = this;
|
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
var openRequest = indexedDB.open(name);
|
|
|
|
openRequest.onupgradeneeded = function onupgradeneeded(event) {
|
|
|
|
var db = event.target.result;
|
2013-11-12 18:14:23 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
if(db.objectStoreNames.contains(FILE_STORE_NAME)) {
|
|
|
|
db.deleteObjectStore(FILE_STORE_NAME);
|
|
|
|
}
|
|
|
|
var files = db.createObjectStore(FILE_STORE_NAME);
|
2013-07-29 18:55:25 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
if(db.objectStoreNames.contains(METADATA_STORE_NAME)) {
|
|
|
|
db.deleteObjectStore(METADATA_STORE_NAME);
|
|
|
|
}
|
|
|
|
var metadata = db.createObjectStore(METADATA_STORE_NAME);
|
2013-07-29 18:55:25 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
format = true;
|
|
|
|
};
|
|
|
|
openRequest.onsuccess = function onsuccess(event) {
|
|
|
|
var db = event.target.result;
|
|
|
|
var transaction = db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
2013-07-29 19:59:17 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function complete(error) {
|
|
|
|
that.db = db;
|
|
|
|
if(error) {
|
|
|
|
that.readyState = FS_ERROR;
|
2013-07-29 18:55:25 +00:00
|
|
|
} else {
|
2013-11-21 00:24:49 +00:00
|
|
|
that.readyState = FS_READY;
|
2013-11-22 01:44:57 +00:00
|
|
|
that._runQueued();
|
2013-07-29 18:55:25 +00:00
|
|
|
}
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
2013-07-29 18:55:25 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
if(format) {
|
|
|
|
var clearRequest = files.clear();
|
|
|
|
clearRequest.onsuccess = function onsuccess(event) {
|
|
|
|
make_root_directory(context, complete);
|
|
|
|
};
|
|
|
|
clearRequest.onerror = function onerror(error) {
|
|
|
|
complete(error);
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
complete();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
openRequest.onerror = function onerror(error) {
|
|
|
|
this.readyState = FS_ERROR;
|
2013-11-22 01:44:57 +00:00
|
|
|
this.error = error;
|
2013-11-21 00:24:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
var nextDescriptor = 1;
|
|
|
|
var openFiles = {};
|
|
|
|
|
|
|
|
this.readyState = FS_PENDING;
|
|
|
|
this.db = null;
|
|
|
|
this.nextDescriptor = nextDescriptor;
|
|
|
|
this.openFiles = openFiles;
|
|
|
|
this.name = name;
|
2013-11-22 01:44:57 +00:00
|
|
|
this.error = null;
|
|
|
|
this.queue = [];
|
2013-11-21 00:24:49 +00:00
|
|
|
}
|
|
|
|
IndexedDBFileSystem.prototype = new FileSystem();
|
|
|
|
IndexedDBFileSystem.prototype.constructor = IndexedDBFileSystem;
|
|
|
|
IndexedDBFileSystem.prototype.open = function open(path, flags, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._open(context, path, flags, callback);
|
2013-07-29 18:55:25 +00:00
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-07-23 03:34:38 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
IndexedDBFileSystem.prototype.close = function close(fd, callback) {
|
|
|
|
this._close(fd, callback);
|
|
|
|
};
|
|
|
|
IndexedDBFileSystem.prototype.mkdir = function mkdir(path, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-07 20:55:14 +00:00
|
|
|
function() {
|
2013-11-21 00:24:49 +00:00
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
2013-11-07 20:55:14 +00:00
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
2013-11-21 00:24:49 +00:00
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._mkdir(context, path, callback);
|
2013-11-07 20:55:14 +00:00
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-07-29 21:58:55 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
IndexedDBFileSystem.prototype.rmdir = function rmdir(path, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._rmdir(context, path, callback);
|
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-07-27 01:53:25 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
IndexedDBFileSystem.prototype.stat = function stat(path, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-12 18:39:11 +00:00
|
|
|
function() {
|
2013-11-21 00:24:49 +00:00
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
2013-11-12 18:39:11 +00:00
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
2013-11-21 00:24:49 +00:00
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._stat(context, path, callback);
|
2013-11-12 18:39:11 +00:00
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-07-27 01:53:25 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
IndexedDBFileSystem.prototype.fstat = function fstat(fd, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._fstat(context, fd, callback);
|
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-07-27 01:53:25 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
IndexedDBFileSystem.prototype.link = function link(oldpath, newpath, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._link(context, oldpath, newpath, callback);
|
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-05-31 01:38:44 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
IndexedDBFileSystem.prototype.unlink = function unlink(path, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._unlink(context, path, callback);
|
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
};
|
|
|
|
IndexedDBFileSystem.prototype.read = function read(fd, buffer, offset, length, position, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._read(context, fd, buffer, offset, length, position, callback);
|
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
};
|
|
|
|
IndexedDBFileSystem.prototype.readFile = function readFile(path, options, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._readFile(context, path, options, callback);
|
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
};
|
|
|
|
IndexedDBFileSystem.prototype.write = function write(fd, buffer, offset, length, position, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._write(context, fd, buffer, offset, length, position, callback);
|
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
};
|
|
|
|
IndexedDBFileSystem.prototype.writeFile = function writeFile(path, data, options, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._writeFile(context, path, data, options, callback);
|
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
};
|
|
|
|
IndexedDBFileSystem.prototype.lseek = function lseek(fd, offset, whence, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._lseek(context, fd, offset, whence, callback);
|
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
};
|
|
|
|
IndexedDBFileSystem.prototype.readdir = function readdir(path, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._readdir(context, path, callback);
|
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-11-21 00:24:49 +00:00
|
|
|
};
|
|
|
|
IndexedDBFileSystem.prototype.rename = function rename(oldpath, newpath, callback) {
|
|
|
|
var fs = this;
|
2013-11-22 01:44:57 +00:00
|
|
|
var error = this._queueOrRun(
|
2013-11-21 00:24:49 +00:00
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._rename(context, oldpath, newpath, callback);
|
|
|
|
}
|
|
|
|
);
|
2013-11-22 01:44:57 +00:00
|
|
|
if(error) callback(error);
|
2013-07-29 21:58:55 +00:00
|
|
|
};
|
2013-11-23 18:34:32 +00:00
|
|
|
IndexedDBFileSystem.prototype.readlink = function readlink(path, callback) {
|
|
|
|
var fs = this;
|
|
|
|
var error = this._queueOrRun(
|
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._readlink(context, path, callback);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
if(error) callback(error);
|
|
|
|
};
|
2013-11-23 18:34:40 +00:00
|
|
|
IndexedDBFileSystem.prototype.symlink = function symlink(srcpath, dstpath, callback) {
|
|
|
|
var fs = this;
|
|
|
|
var error = this._queueOrRun(
|
|
|
|
function() {
|
|
|
|
var transaction = fs.db.transaction([FILE_STORE_NAME], IDB_RW);
|
|
|
|
var files = transaction.objectStore(FILE_STORE_NAME);
|
|
|
|
var context = new IndexedDBContext(files);
|
|
|
|
fs._symlink(context, srcpath, dstpath, callback);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
if(error) callback(error);
|
|
|
|
};
|
2013-07-29 21:58:55 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
// FIXME: WebSQL stuff, this needs implementation
|
|
|
|
function WebSQLContext(transaction) {
|
|
|
|
this.transaction = transaction;
|
|
|
|
}
|
|
|
|
WebSQLContext.prototype.get = function(key, callback) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
} catch(error) {
|
|
|
|
callback(new EIO(error.message));
|
|
|
|
}
|
2013-07-29 21:58:55 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
WebSQLContext.prototype.put = function(key, value, callback) {
|
|
|
|
try {
|
2013-07-29 21:58:55 +00:00
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
} catch(error) {
|
|
|
|
callback(new EIO(error.message));
|
|
|
|
}
|
2013-07-29 21:58:55 +00:00
|
|
|
};
|
2013-11-21 00:24:49 +00:00
|
|
|
WebSQLContext.prototype.delete = function(key, callback) {
|
2013-07-29 21:58:55 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-11-21 00:24:49 +00:00
|
|
|
function WebSQLFileSystem(name, flags) {
|
|
|
|
}
|
|
|
|
WebSQLFileSystem.prototype = new FileSystem();
|
|
|
|
IndexedDBFileSystem.prototype.constructor = WebSQLFileSystem;
|
2013-05-31 01:38:44 +00:00
|
|
|
|
|
|
|
return {
|
2013-11-21 00:24:49 +00:00
|
|
|
FileSystem: IndexedDBFileSystem
|
2013-05-31 01:38:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
});
|