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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
| | # -*- encoding: utf-8 -*-
# Copyright (C) 2015 all contributors <dtas-all@nongnu.org>
# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
require_relative '../dtas'
require_relative 'process'
require 'socket'
# For the DTAS Music Library, based on what MPD uses.
class DTAS::Mlib
attr_accessor :follow_outside_symlinks
attr_accessor :follow_inside_symlinks
attr_accessor :tags
DM_DIR = -1
DM_IGN = -2
include DTAS::Process
Job = Struct.new(:wd, :ctime, :parent_id, :path)
# same capitalization as in mpd
TAGS = Hash[*(
%w(Artist ArtistSort
Album AlbumSort
AlbumArtist AlbumArtistSort
Title Track Name
Genre Date Composer Performer Comment Disc
MUSICBRAINZ_ARTISTID MUSICBRAINZ_ALBUMID
MUSICBRAINZ_ALBUMARTISTID
MUSICBRAINZ_TRACKID
MUSICBRAINZ_RELEASETRACKID).map! { |x| [ x.downcase, x ] }.flatten!)]
def initialize(db)
if String === db
db = "sqlite://#{db}" unless db.include?('://')
require 'sequel/no_core_ext'
db = Sequel.connect(db, single_threaded: true)
end
if db.class.to_s.downcase.include?('sqlite')
db.transaction_mode = :immediate
db.synchronous = :off
end
@db = db
@pwd = nil
@follow_outside_symlinks = true
@follow_inside_symlinks = true
@root_node = nil
@tags = TAGS.dup
@tag_map = nil
@suffixes = nil
@work = nil
end
def init_suffixes
`sox --help 2>/dev/null` =~ /\nAUDIO FILE FORMATS:\s*([^\n]+)/s
re = $1.split(/\s+/).map { |x| Regexp.quote(x) }.join('|')
@suffixes = Regexp.new("\\.(?:#{re})\\z", Regexp::IGNORECASE)
end
def worker(todo)
@work.close
@db.tables # reconnect before chdir
@pwd = Dir.pwd.b
begin
buf = todo.recv(16384) # 4x bigger than PATH_MAX ought to be enough
exit if buf.empty?
job = Marshal.load(buf)
buf.clear
worker_work(job)
rescue => e
warn "#{e.message} (#{e.class}) #{e.backtrace.join("\n")}\n"
end while true
end
def ignore(job)
@db.transaction do
node_ensure(job.parent_id, job.path, DM_IGN, job.ctime)
end
end
def worker_work(job)
tlen = nil
wd = job.wd
if wd != @pwd
Dir.chdir(wd)
@pwd = wd
end
tmp = {}
path = job.path
tlen = qx(%W(soxi -D #{path}), no_raise: true)
return ignore(job) unless String === tlen
tlen = tlen.to_f
return ignore(job) if tlen < 0
tlen = tlen.round
buf = qx(%W(soxi -a #{path}), no_raise: true)
return ignore(job) unless String === buf
# no, we don't support comments with newlines in them
buf = buf.split("\n".freeze)
while line = buf.shift
tag, value = line.split('='.freeze, 2)
tag && value or next
tag.downcase!
tag_id = @tag_map[tag] or next
value.strip!
# FIXME: this fallback needs testing
[ Encoding::UTF_8, Encoding::ISO_8859_1 ].each do |enc|
value.force_encoding(enc)
if value.valid_encoding?
value.encode!(Encoding::UTF_8) if enc != Encoding::UTF_8
tmp[tag_id] = value
break
end
end
end
@db.transaction do
node_id = node_ensure(job.parent_id, path, tlen, job.ctime)[:id]
vals = @db[:vals]
comments = @db[:comments]
q = { node_id: node_id }
comments.where(q).delete
tmp.each do |tid, val|
v = vals[val: val]
q[:val_id] = v ? v[:id] : vals.insert(val: val)
q[:tag_id] = tid
comments.insert(q)
end
end
end
def update(path, jobs: 8)
# n.b. "jobs" is for CPU concurrency. Audio media is typically stored
# on high-latency media or slow network file systems; so we use a high
# number of jobs by default to compensate for the seek-heavy workload
# this generates
init_suffixes
st = File.stat(path) # we always follow the first dir even if it's a symlink
st.directory? or
raise ArgumentError, "path: #{path.inspect} is not a directory"
@work and raise 'update already running'
todo, @work = UNIXSocket.pair(:SOCK_SEQPACKET)
@db.disconnect
jobs.times { |i| fork { worker(todo) } }
todo.close
scan_dir(path, st)
@work.close
Process.waitall
ensure
@work = nil
end
def migrate
require 'sequel'
Sequel.extension(:migration, :core_extensions) # ugh...
@db.transaction do
Sequel::Migrator.apply(@db, "#{File.dirname(__FILE__)}/mlib/migrations")
root_node # ensure this exists
load_tags
end
end
def load_tags
tag_map = {}
tags = @db[:tags]
@tags.each do |lc, mc|
unless q = tags[tag: mc]
q = { tag: mc }
q[:id] = tags.insert(q)
end
tag_map[lc] = q[:id]
end
# Xiph tags use "tracknumber" and "discnumber"
%w(track disc).each do |x|
tag_id = tag_map[x] and tag_map["#{x}number"] = tag_id
end
@tag_map = tag_map
end
def scan_any(path, parent_id)
st = File.lstat(path) rescue return
if st.directory?
scan_dir(path, st, parent_id)
elsif st.file?
scan_file(path, st, parent_id)
# elsif st.symlink? TODO
# scan_link(path, st, parent_id)
end
end
def scan_file(path, st, parent_id)
return if @suffixes !~ path || st.size == 0
# no-op if no change
if node = @db[:nodes][name: path, parent_id: parent_id]
return if st.ctime.to_i == node[:ctime] || node[:tlen] == DM_IGN
end
job = Job.new(@pwd, st.ctime.to_i, parent_id, path)
send_harder(@work, Marshal.dump(job))
end
def root_node
q = @root_node and return q
# root node always has parent_id: 1
q = {
parent_id: 1, # self
name: '',
}
node = @db[:nodes][q] and return (@root_node = node)
begin
q[:tlen] = DM_DIR
q[:id] = @db[:nodes].insert(q)
q
rescue Sequel::DatabaseError
# we may conflict on insert if we didn't use a transaction
raise if @db.in_transaction?
@root_node = @db[:paths][q] or raise
end
end
def dir_vivify(parts, ctime)
@db.transaction do
dir = root_node
last = parts.pop
parts.each do |name|
dir = node_ensure(dir[:id], name, DM_DIR)
end
node_ensure(dir[:id], last, DM_DIR, ctime)
end
end
def node_update_maybe(node, tlen, ctime)
q = {}
q[:ctime] = ctime if ctime && ctime != node[:ctime]
q[:tlen] = tlen if tlen != node[:tlen]
return if q.empty?
node_id = node.delete(:id)
@db[:nodes].where(id: node_id).update(node.merge(q))
node[:id] = node_id
end
def node_ensure(parent_id, name, tlen, ctime = nil)
q = { name: name, parent_id: parent_id }
if node = @db[:nodes][q]
node_update_maybe(node, tlen, ctime)
else
# brand new node
node = q.dup
node[:tlen] = tlen
node[:ctime] = ctime
node[:id] = @db[:nodes].insert(node)
end
node
end
def scan_dir(path, st, parent_id = nil)
prev_wd = @pwd
Dir.chdir(path)
cur = @pwd = Dir.pwd.b
# TODO: use parent_id if given
dir = dir_vivify(cur.split(%r{/+}n), st.ctime.to_i)
Dir.foreach('.', encoding: Encoding::BINARY) do |x|
case x
when '.', '..', %r{\n}n
# files with newlines in them are rare and last I checked (in 2008),
# mpd could not support them, either. So lets not bother for now.
next
else
scan_any(x, dir[:id])
end
end
ensure
Dir.chdir(prev_wd) if cur && prev_wd
@pwd = prev_wd
end
def send_harder(sock, msg)
sock.sendmsg(msg)
rescue Errno::EMSGSIZE
sock.setsockopt(:SOL_SOCKET, :SO_SNDBUF, msg.bytesize + 1024)
# if it still fails, oh well...
begin
sock.sendmsg(msg)
rescue => e
warn "#{msg.bytesize} too big, dropped #{e.class}"
end
end
end
|