-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
index.js
224 lines (174 loc) · 4.62 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
var fuse = require('fuse-bindings')
var mkdirp = require('mkdirp')
var torrents = require('torrent-stream')
var path = require('path')
var ENOENT = -2
var EPERM = -1
module.exports = function (source, mnt, isLazy) {
if (!mnt) mnt = '.'
var handlers = {}
var engine = torrents(source)
var ctime = new Date()
var mtime = new Date()
engine.on('ready', function () {
if (engine.torrent.name === (engine.files[0] && engine.files[0].path)) {
var dir = engine.torrent.name.replace(/\.[^.]+$/, '')
engine.torrent.files.forEach(function (file) {
file.path = path.join(dir, file.path)
})
engine.torrent.name = dir
}
mnt = path.join(mnt, path.resolve('/', engine.torrent.name))
fuse.unmount(mnt, function () {
mkdirp(mnt, function () {
fuse.mount(mnt, handlers)
engine.emit('mount', mnt)
})
})
if (!isLazy) {
engine.files.forEach(function (file) {
file.path = file.path.slice(engine.torrent.name.length + 1)
file.select()
})
}
engine.on('uninterested', function () {
engine.swarm.pause()
})
engine.on('interested', function () {
engine.swarm.resume()
})
})
var find = function (path) {
return engine.files.reduce(function (result, file) {
return result || (file.path === path && file)
}, null)
}
handlers.displayFolder = true
handlers.getattr = function (path, cb) {
path = path.slice(1)
var stat = {}
var file = find(path)
stat.ctime = ctime
stat.mtime = mtime
stat.atime = new Date()
stat.uid = process.getuid()
stat.gid = process.getgid()
if (file) {
stat.size = file.length
stat.mode = 33206 // 0100666
return cb(0, stat)
}
stat.size = 4096
stat.mode = 16877 // 040755
if (!path) return cb(0, stat)
var dir = engine.files.some(function (file) {
return file.path.indexOf(path + '/') === 0
})
if (!dir) return cb(ENOENT)
cb(0, stat)
}
var files = {}
handlers.open = function (path, flags, cb) {
path = path.slice(1)
var file = find(path)
if (!file) return cb(ENOENT)
var fs = files[path] = files[path] || []
var fd = fs.indexOf(null)
if (fd === -1) fd = fs.length
fs[fd] = {offset: 0}
cb(0, fd)
}
handlers.release = function (path, handle, cb) {
path = path.slice(1)
var fs = files[path] || []
var f = fs[handle]
if (f && f.stream) f.stream.destroy()
fs[handle] = null
cb(0)
}
handlers.readdir = function (path, cb) {
path = path.slice(1)
var uniq = {}
var files = engine.files
.filter(function (file) {
return file.path.indexOf(path ? path + '/' : '') === 0
})
.map(function (file) {
return file.path.slice(path ? path.length + 1 : 0).split('/')[0]
})
.filter(function (name) {
if (uniq[name]) return false
uniq[name] = true
return true
})
if (!files.length) return cb(ENOENT)
cb(0, files)
}
handlers.read = function (path, handle, buf, len, offset, cb) {
path = path.slice(1)
var file = find(path)
var fs = files[path] || []
var f = fs[handle]
if (!file) return cb(ENOENT)
if (!f) return cb(ENOENT)
if (len + offset > file.length) len = file.length - offset
if (f.stream && f.offset !== offset) {
f.stream.destroy()
f.stream = null
}
if (!f.stream) {
f.stream = file.createReadStream({start: offset})
f.offset = offset
}
var loop = function () {
var result = f.stream.read(len)
if (!result) return f.stream.once('readable', loop)
result.copy(buf)
cb(result.length)
}
loop()
}
handlers.write = function (path, handle, buf, len, offset, cb) {
cb(EPERM)
}
handlers.unlink = function (path, cb) {
cb(EPERM)
}
handlers.rename = function (src, dst, cb) {
cb(EPERM)
}
handlers.mkdir = function (path, mode, cb) {
cb(EPERM)
}
handlers.rmdir = function (path, cb) {
cb(EPERM)
}
handlers.create = function (path, mode, cb) {
cb(EPERM)
}
handlers.getxattr = function (path, name, buffer, length, offset, cb) {
cb(EPERM)
}
handlers.setxattr = function (path, name, buffer, length, offset, flags, cb) {
cb(0)
}
handlers.statfs = function (path, cb) {
cb(0, {
bsize: 1000000,
frsize: 1000000,
blocks: 1000000,
bfree: 1000000,
bavail: 1000000,
files: 1000000,
ffree: 1000000,
favail: 1000000,
fsid: 1000000,
flag: 1000000,
namemax: 1000000
})
}
handlers.destroy = function (cb) {
cb()
}
return engine
}