mirror of
https://github.com/fuse-friends/fuse-native
synced 2024-10-27 18:34:01 +00:00
added Windows abstractions + dokany (still wip)
dokany found at `dokan-dev/dokany`
This commit is contained in:
parent
7a87f2cea2
commit
4aa5a3da3a
@ -1,10 +1,10 @@
|
|||||||
#include "abstractions.h"
|
#include "abstractions.h"
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
|
|
||||||
#ifdef __APPLE__
|
|
||||||
|
|
||||||
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
||||||
|
|
||||||
void thread_create (thread_t* thread, thread_fn fn, void* data) {
|
void thread_create (thread_t* thread, thread_fn fn, void* data) {
|
||||||
@ -25,8 +25,27 @@ void fusermount (char *path) {
|
|||||||
else execvp(argv[0], argv);
|
else execvp(argv[0], argv);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#elif defined(_WIN32)
|
||||||
|
|
||||||
|
HANDLE mutex = CreateMutex(NULL, false, NULL);
|
||||||
|
|
||||||
|
void thread_create (HANDLE* thread, thread_fn fn, void* data) {
|
||||||
|
*thread = CreateThread(NULL, 0, fn, data, 0, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
void thread_join (HANDLE thread) {
|
||||||
|
WaitForSingleObject(thread, INFINITE);
|
||||||
|
}
|
||||||
|
|
||||||
|
void fusermount (char *path) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/wait.h>
|
||||||
|
|
||||||
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
||||||
|
|
||||||
void thread_create (thread_t* thread, thread_fn fn, void* data) {
|
void thread_create (thread_t* thread, thread_fn fn, void* data) {
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
#include <nan.h>
|
#include <nan.h>
|
||||||
|
|
||||||
typedef void*(*thread_fn)(void*);
|
|
||||||
|
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
|
|
||||||
// OS X
|
// OS X
|
||||||
|
#include <sys/mount.h>
|
||||||
|
|
||||||
#include <semaphore.h>
|
#include <semaphore.h>
|
||||||
#include <dispatch/dispatch.h>
|
#include <dispatch/dispatch.h>
|
||||||
|
|
||||||
@ -34,13 +34,50 @@ NAN_INLINE static void mutex_unlock (pthread_mutex_t *mutex) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
typedef pthread_t thread_t;
|
typedef pthread_t thread_t;
|
||||||
|
typedef void* thread_fn_rtn_t;
|
||||||
|
|
||||||
void thread_create (thread_t*, thread_fn, void*);
|
#elif defined(_WIN32)
|
||||||
void thread_join (thread_t);
|
|
||||||
|
#include <windows.h>
|
||||||
|
#include <io.h>
|
||||||
|
#include <winsock2.h>
|
||||||
|
|
||||||
|
typedef HANDLE bindings_sem_t;
|
||||||
|
|
||||||
|
NAN_INLINE static int semaphore_init (HANDLE *sem) {
|
||||||
|
*sem = CreateSemaphore(NULL, 0, 10, NULL);
|
||||||
|
return *sem == NULL ? -1 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
NAN_INLINE static void semaphore_wait (HANDLE *sem) {
|
||||||
|
WaitForSingleObject(*sem, INFINITE);
|
||||||
|
}
|
||||||
|
|
||||||
|
NAN_INLINE static void semaphore_signal (HANDLE *sem) {
|
||||||
|
ReleaseSemaphore(*sem, 1, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
extern HANDLE mutex;
|
||||||
|
|
||||||
|
NAN_INLINE static void mutex_lock (HANDLE *mutex) {
|
||||||
|
WaitForSingleObject(*mutex, INFINITE);
|
||||||
|
}
|
||||||
|
|
||||||
|
NAN_INLINE static void mutex_unlock (HANDLE *mutex) {
|
||||||
|
ReleaseMutex(*mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
typedef HANDLE thread_t;
|
||||||
|
typedef DWORD thread_fn_rtn_t;
|
||||||
|
|
||||||
|
#define fuse_session_remove_chan(x)
|
||||||
|
#define stat _stati64
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
// Linux and whatnot
|
// Linux and whatnot
|
||||||
|
#include <sys/mount.h>
|
||||||
|
|
||||||
#include <semaphore.h>
|
#include <semaphore.h>
|
||||||
|
|
||||||
typedef sem_t bindings_sem_t;
|
typedef sem_t bindings_sem_t;
|
||||||
@ -68,10 +105,13 @@ NAN_INLINE static void mutex_unlock (pthread_mutex_t *mutex) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
typedef pthread_t thread_t;
|
typedef pthread_t thread_t;
|
||||||
|
typedef void* thread_fn_rtn_t;
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef thread_fn_rtn_t(*thread_fn)(void*);
|
||||||
|
|
||||||
void thread_create (thread_t*, thread_fn, void*);
|
void thread_create (thread_t*, thread_fn, void*);
|
||||||
void thread_join (thread_t);
|
void thread_join (thread_t);
|
||||||
|
|
||||||
void fusermount (char*);
|
void fusermount (char*);
|
||||||
|
|
||||||
#endif
|
|
||||||
|
59
binding.gyp
59
binding.gyp
@ -1,17 +1,46 @@
|
|||||||
{
|
{
|
||||||
"targets": [
|
"targets": [{
|
||||||
{
|
"target_name": "fuse_bindings",
|
||||||
"target_name": "fuse_bindings",
|
"sources": ["fuse-bindings.cc", "abstractions.cc"],
|
||||||
"sources": [ "fuse-bindings.cc", "abstractions.cc" ],
|
"conditions": [
|
||||||
"include_dirs": [
|
['OS!="win"', {
|
||||||
"<!(node -e \"require('nan')\")",
|
"include_dirs": [
|
||||||
"<!@(pkg-config fuse --cflags-only-I | sed s/-I//g)"
|
"<!(node -e \"require('nan')\")",
|
||||||
],
|
"<!@(pkg-config fuse --cflags-only-I | sed s/-I//g)"
|
||||||
"link_settings": {
|
],
|
||||||
"libraries": [
|
"link_settings": {
|
||||||
"<!@(pkg-config --libs-only-L --libs-only-l fuse)"
|
"libraries": [
|
||||||
]
|
"<!@(pkg-config --libs-only-L --libs-only-l fuse)"
|
||||||
}
|
]
|
||||||
}
|
}
|
||||||
]
|
}],
|
||||||
|
['OS=="win"', {
|
||||||
|
"include_dirs": [
|
||||||
|
"<!(node -e \"require('nan')\")",
|
||||||
|
"D:\\Git-Repos\\dokany\\dokan_fuse\\include"
|
||||||
|
],
|
||||||
|
"link_settings": {
|
||||||
|
"libraries": [
|
||||||
|
"C:\\Program Files\\Dokan\\DokanLibrary\\dokanfuse.lib"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
],
|
||||||
|
"configurations": {
|
||||||
|
"Debug": {
|
||||||
|
"msvs_settings": {
|
||||||
|
"VCCLCompilerTool": {
|
||||||
|
"RuntimeLibrary": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Release": {
|
||||||
|
"msvs_settings": {
|
||||||
|
"VCCLCompilerTool": {
|
||||||
|
"RuntimeLibrary": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
var fuse = require('./')
|
var fuse = require('./')
|
||||||
|
|
||||||
fuse.mount('./mnt', {
|
var mountPath = process.platform ? './mnt' : 'M:\\';
|
||||||
|
|
||||||
|
fuse.mount(mountPath, {
|
||||||
readdir: function (path, cb) {
|
readdir: function (path, cb) {
|
||||||
console.log('readdir(%s)', path)
|
console.log('readdir(%s)', path)
|
||||||
if (path === '/') return cb(0, ['test'])
|
if (path === '/') return cb(0, ['test'])
|
||||||
@ -49,11 +51,11 @@ fuse.mount('./mnt', {
|
|||||||
}
|
}
|
||||||
}, function (err) {
|
}, function (err) {
|
||||||
if (err) throw err
|
if (err) throw err
|
||||||
console.log('filesystem mounted on ./mnt')
|
console.log('filesystem mounted on ' + mountPath)
|
||||||
})
|
})
|
||||||
|
|
||||||
process.on('SIGINT', function () {
|
process.on('SIGINT', function () {
|
||||||
fuse.unmount('./mnt', function () {
|
fuse.unmount(mountPath, function () {
|
||||||
process.exit()
|
process.exit()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -4,13 +4,12 @@
|
|||||||
|
|
||||||
#include <fuse.h>
|
#include <fuse.h>
|
||||||
#include <fuse_opt.h>
|
#include <fuse_opt.h>
|
||||||
#include <fuse_lowlevel.h>
|
// #include <fuse_lowlevel.h>
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <sys/mount.h>
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include "abstractions.h"
|
#include "abstractions.h"
|
||||||
@ -116,8 +115,8 @@ struct bindings_t {
|
|||||||
struct fuse_file_info *info;
|
struct fuse_file_info *info;
|
||||||
char *path;
|
char *path;
|
||||||
char *name;
|
char *name;
|
||||||
off_t offset;
|
FUSE_OFF_T offset;
|
||||||
off_t length;
|
FUSE_OFF_T length;
|
||||||
void *data; // various structs
|
void *data; // various structs
|
||||||
int mode;
|
int mode;
|
||||||
int dev;
|
int dev;
|
||||||
@ -194,7 +193,7 @@ static int bindings_mknod (const char *path, mode_t mode, dev_t dev) {
|
|||||||
return bindings_call(b);
|
return bindings_call(b);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int bindings_truncate (const char *path, off_t size) {
|
static int bindings_truncate (const char *path, FUSE_OFF_T size) {
|
||||||
bindings_t *b = bindings_get_context();
|
bindings_t *b = bindings_get_context();
|
||||||
|
|
||||||
b->op = OP_TRUNCATE;
|
b->op = OP_TRUNCATE;
|
||||||
@ -204,7 +203,7 @@ static int bindings_truncate (const char *path, off_t size) {
|
|||||||
return bindings_call(b);
|
return bindings_call(b);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int bindings_ftruncate (const char *path, off_t size, struct fuse_file_info *info) {
|
static int bindings_ftruncate (const char *path, FUSE_OFF_T size, struct fuse_file_info *info) {
|
||||||
bindings_t *b = bindings_get_context();
|
bindings_t *b = bindings_get_context();
|
||||||
|
|
||||||
b->op = OP_FTRUNCATE;
|
b->op = OP_FTRUNCATE;
|
||||||
@ -268,7 +267,7 @@ static int bindings_fsyncdir (const char *path, int datasync, struct fuse_file_i
|
|||||||
return bindings_call(b);
|
return bindings_call(b);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int bindings_readdir (const char *path, void *buf, fuse_fill_dir_t filler, off_t offset, struct fuse_file_info *info) {
|
static int bindings_readdir (const char *path, void *buf, fuse_fill_dir_t filler, FUSE_OFF_T offset, struct fuse_file_info *info) {
|
||||||
bindings_t *b = bindings_get_context();
|
bindings_t *b = bindings_get_context();
|
||||||
|
|
||||||
b->op = OP_READDIR;
|
b->op = OP_READDIR;
|
||||||
@ -399,7 +398,7 @@ static int bindings_opendir (const char *path, struct fuse_file_info *info) {
|
|||||||
return bindings_call(b);
|
return bindings_call(b);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int bindings_read (const char *path, char *buf, size_t len, off_t offset, struct fuse_file_info *info) {
|
static int bindings_read (const char *path, char *buf, size_t len, FUSE_OFF_T offset, struct fuse_file_info *info) {
|
||||||
bindings_t *b = bindings_get_context();
|
bindings_t *b = bindings_get_context();
|
||||||
|
|
||||||
b->op = OP_READ;
|
b->op = OP_READ;
|
||||||
@ -412,7 +411,7 @@ static int bindings_read (const char *path, char *buf, size_t len, off_t offset,
|
|||||||
return bindings_call(b);
|
return bindings_call(b);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int bindings_write (const char *path, const char *buf, size_t len, off_t offset, struct fuse_file_info * info) {
|
static int bindings_write (const char *path, const char *buf, size_t len, FUSE_OFF_T offset, struct fuse_file_info * info) {
|
||||||
bindings_t *b = bindings_get_context();
|
bindings_t *b = bindings_get_context();
|
||||||
|
|
||||||
b->op = OP_WRITE;
|
b->op = OP_WRITE;
|
||||||
@ -600,7 +599,7 @@ static void bindings_on_close (uv_handle_t *handle) {
|
|||||||
mutex_unlock(&mutex);
|
mutex_unlock(&mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void *bindings_thread (void *data) {
|
static thread_fn_rtn_t bindings_thread (void *data) {
|
||||||
bindings_t *b = (bindings_t *) data;
|
bindings_t *b = (bindings_t *) data;
|
||||||
|
|
||||||
struct fuse_operations ops = { };
|
struct fuse_operations ops = { };
|
||||||
@ -671,7 +670,7 @@ static void *bindings_thread (void *data) {
|
|||||||
|
|
||||||
uv_close((uv_handle_t*) &(b->async), &bindings_on_close);
|
uv_close((uv_handle_t*) &(b->async), &bindings_on_close);
|
||||||
|
|
||||||
return NULL;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
NAN_INLINE static Local<Date> bindings_get_date (struct timespec *out) {
|
NAN_INLINE static Local<Date> bindings_get_date (struct timespec *out) {
|
||||||
@ -697,6 +696,7 @@ NAN_INLINE static void bindings_set_stat (struct stat *stat, Local<Object> obj)
|
|||||||
if (obj->Has(NanNew<String>("gid"))) stat->st_gid = obj->Get(NanNew<String>("gid"))->NumberValue();
|
if (obj->Has(NanNew<String>("gid"))) stat->st_gid = obj->Get(NanNew<String>("gid"))->NumberValue();
|
||||||
if (obj->Has(NanNew<String>("rdev"))) stat->st_rdev = obj->Get(NanNew<String>("rdev"))->NumberValue();
|
if (obj->Has(NanNew<String>("rdev"))) stat->st_rdev = obj->Get(NanNew<String>("rdev"))->NumberValue();
|
||||||
if (obj->Has(NanNew<String>("size"))) stat->st_size = obj->Get(NanNew<String>("size"))->NumberValue();
|
if (obj->Has(NanNew<String>("size"))) stat->st_size = obj->Get(NanNew<String>("size"))->NumberValue();
|
||||||
|
#ifndef _WIN32
|
||||||
if (obj->Has(NanNew<String>("blksize"))) stat->st_blksize = obj->Get(NanNew<String>("blksize"))->NumberValue();
|
if (obj->Has(NanNew<String>("blksize"))) stat->st_blksize = obj->Get(NanNew<String>("blksize"))->NumberValue();
|
||||||
if (obj->Has(NanNew<String>("blocks"))) stat->st_blocks = obj->Get(NanNew<String>("blocks"))->NumberValue();
|
if (obj->Has(NanNew<String>("blocks"))) stat->st_blocks = obj->Get(NanNew<String>("blocks"))->NumberValue();
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
@ -708,6 +708,7 @@ NAN_INLINE static void bindings_set_stat (struct stat *stat, Local<Object> obj)
|
|||||||
if (obj->Has(NanNew<String>("ctime"))) bindings_set_date(&stat->st_ctim, obj->Get(NanNew("ctime")).As<Date>());
|
if (obj->Has(NanNew<String>("ctime"))) bindings_set_date(&stat->st_ctim, obj->Get(NanNew("ctime")).As<Date>());
|
||||||
if (obj->Has(NanNew<String>("atime"))) bindings_set_date(&stat->st_atim, obj->Get(NanNew("atime")).As<Date>());
|
if (obj->Has(NanNew<String>("atime"))) bindings_set_date(&stat->st_atim, obj->Get(NanNew("atime")).As<Date>());
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
NAN_INLINE static void bindings_set_statfs (struct statvfs *statfs, Local<Object> obj) { // from http://linux.die.net/man/2/stat
|
NAN_INLINE static void bindings_set_statfs (struct statvfs *statfs, Local<Object> obj) { // from http://linux.die.net/man/2/stat
|
||||||
@ -768,7 +769,7 @@ NAN_METHOD(OpCallback) {
|
|||||||
case OP_READLINK: {
|
case OP_READLINK: {
|
||||||
if (args.Length() > 2 && args[2]->IsString()) {
|
if (args.Length() > 2 && args[2]->IsString()) {
|
||||||
NanUtf8String path(args[2]);
|
NanUtf8String path(args[2]);
|
||||||
stpcpy((char *) b->data, *path);
|
strcpy((char *) b->data, *path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -1130,8 +1131,8 @@ NAN_METHOD(Mount) {
|
|||||||
Local<Value> tmp[] = {NanNew<Number>(index), NanNew<FunctionTemplate>(OpCallback)->GetFunction()};
|
Local<Value> tmp[] = {NanNew<Number>(index), NanNew<FunctionTemplate>(OpCallback)->GetFunction()};
|
||||||
b->callback = new NanCallback(callback_constructor->Call(2, tmp).As<Function>());
|
b->callback = new NanCallback(callback_constructor->Call(2, tmp).As<Function>());
|
||||||
|
|
||||||
stpcpy(b->mnt, *path);
|
strcpy(b->mnt, *path);
|
||||||
stpcpy(b->mntopts, "-o");
|
strcpy(b->mntopts, "-o");
|
||||||
|
|
||||||
Local<Array> options = ops->Get(NanNew<String>("options")).As<Array>();
|
Local<Array> options = ops->Get(NanNew<String>("options")).As<Array>();
|
||||||
if (options->IsArray()) {
|
if (options->IsArray()) {
|
||||||
@ -1203,7 +1204,7 @@ NAN_METHOD(Unmount) {
|
|||||||
Local<Function> callback = args[1].As<Function>();
|
Local<Function> callback = args[1].As<Function>();
|
||||||
|
|
||||||
char *path_alloc = (char *) malloc(1024);
|
char *path_alloc = (char *) malloc(1024);
|
||||||
stpcpy(path_alloc, *path);
|
strcpy(path_alloc, *path);
|
||||||
|
|
||||||
NanAsyncQueueWorker(new UnmountWorker(new NanCallback(callback), path_alloc));
|
NanAsyncQueueWorker(new UnmountWorker(new NanCallback(callback), path_alloc));
|
||||||
NanReturnUndefined();
|
NanReturnUndefined();
|
||||||
|
20
index.js
20
index.js
@ -68,14 +68,18 @@ exports.mount = function (mnt, ops, cb) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var mount = function () {
|
var mount = function () {
|
||||||
fs.stat(mnt, function (err, stat) {
|
// TODO: I got a feeling this can be done better
|
||||||
if (err) return cb(new Error('Mountpoint does not exist'))
|
if(os.platform() !== 'win32') {
|
||||||
if (!stat.isDirectory()) return cb(new Error('Mountpoint is not a directory'))
|
fs.stat(mnt, function (err, stat) {
|
||||||
fs.stat(path.join(mnt, '..'), function (_, parent) {
|
if (err) return cb(new Error('Mountpoint does not exist'))
|
||||||
if (parent && parent.dev !== stat.dev) return cb(new Error('Mountpoint in use'))
|
if (!stat.isDirectory()) return cb(new Error('Mountpoint is not a directory'))
|
||||||
fuse.mount(mnt, ops)
|
fs.stat(path.join(mnt, '..'), function (_, parent) {
|
||||||
})
|
if (parent && parent.dev !== stat.dev) return cb(new Error('Mountpoint in use'))
|
||||||
})
|
fuse.mount(mnt, ops)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
else fuse.mount(mnt, ops)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ops.force) return mount()
|
if (!ops.force) return mount()
|
||||||
|
Loading…
Reference in New Issue
Block a user