dtas.git  about / heads / tags
duct tape audio suite for *nix
blob 3eedd866d9b00ebe8bf5799cb8d6c42d74946f6c 5722 bytes (raw)
$ git show v0.18.0:bin/dtas-readahead	# shows this blob on the CLI

  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
 
#!/usr/bin/env ruby
# Copyright (C) 2015-2020 all contributors <dtas-all@nongnu.org>
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
# frozen_string_literal: true
#
# Really janky readahead script.  Requires dtas-player to be
# running and unlikely to work outside of Linux as it depends on
# the contents of /proc
unless RUBY_PLATFORM =~ /linux/
  warn "this relies on Linux /proc and probably does not work well for you"
end
@ffprobe = 'ffprobe'
@avprobe = 'avprobe'

require 'yaml'
require 'io/wait'
require 'dtas/unix_client'
require 'dtas/process'

include DTAS::Process
include DTAS::SpawnFix
trap(:CHLD) { DTAS::Process.reaper {} }
trap(:INT) { exit(0) }
trap(:TERM) { exit(0) }
w = DTAS::UNIXClient.new
w.req_ok('watch')
c = DTAS::UNIXClient.new
@max_ra = 30 * 1024 * 1024
null = DTAS.null
@redir = { err: null, out: null, in: null }.freeze
require 'pp'

if RUBY_VERSION.to_r >= '2.3'.to_r
  # Old Rubies did FIONREAD, which breaks on SOCK_SEQPACKET
  def wait_read(w, timeout)
    w.to_io.wait_readable(timeout)
  end
else
  def wait_read(w, timeout)
    r = IO.select([w], nil, nil, timeout)
    r ? r[0] : nil
  end
end

def seek_to_cur_pos(cur_pid, fp)
  cur_fd = []
  fpst = fp.stat
  begin
    Dir["/proc/#{cur_pid}/fd/*"].each do |l|
      path = File.readlink(l)
      begin
        st = File.stat(path)
        if st.dev == fpst.dev && st.ino == fpst.ino
          cur_fd << l.split('/')[-1]
        end
      rescue Errno::ENOENT, Errno::EPERM
      end
    end
  rescue Errno::ENOENT => e # race, process is dead
    return nil
  rescue => e
    warn "error reading FDs from for PID:#{cur_pid}: #{e.message}"
  end
  pos = 0
  # get the position of the file of the sox process
  cur_fd.each do |fd|
    if File.read("/proc/#{cur_pid}/fdinfo/#{fd}") =~ /^pos:\s*(\d+)$/
      n = $1.to_i
      pos = n if n > pos
    end
  end
  pos
rescue Errno::ENOENT => e # race, process is dead
  return nil
end

def children_of(ppid)
  `ps h -o pid --ppid=#{ppid}`.split(/\s+/).map(&:to_i)
end

def expand_pid(pid)
  to_scan = Array(pid)
  pids = []
  while pid = to_scan.shift
    pid > 0 or next
    to_scan.concat(children_of(pid))
    pids << pid
  end
  pids.uniq
end

def do_ra(fp, pos, w)
  size = fp.size
  len = size - pos
  len = @todo_ra if len > @todo_ra
  return if len <= 0
  path = fp.path
  pp({start_ra: File.basename(path),
      len: '%.3f' % (len / (1024 * 1024.0)),
      pos: pos })
  spawn('soxi', path, @redir)
  begin
    spawn(@avprobe, path, @redir)
  rescue Errno::ENOENT
    @avprobe = false unless File.exist?(path)
  end if @avprobe
  begin
    spawn(@ffprobe, path, @redir)
  rescue Errno::ENOENT
    @ffprobe = false unless File.exist?(path)
  end if @ffprobe

  fp.advise(:sequential, pos, len)
  Thread.new(fp.dup) { |d| d.advise(:willneed, pos, len); d.close }

  at_once = 8192
  adj = len
  while len > 0
    n = len > at_once ? at_once : len
    n = IO.copy_stream(fp, DTAS.null, n, pos)
    pos += n
    len -= n

    # stop reading immediately if there's an event
    if wait_read(w, 0)
      adj = @todo_ra
      pos += size
      break
    end
  end
  @todo_ra -= adj
  (pos + len) >= size ? fp.close : nil
end

def do_open(path)
  return unless path # could be a command
  if path =~ /\.ya?ml\z/
    File.open(path) do |fp|
      buf = fp.read(4)
      case buf
      when "---\n"
        buf << fp.read(fp.size - 4)
        Dir.chdir(File.dirname(path)) do
          yml = YAML.load(buf)
          x = yml['infile'] and return File.open(File.expand_path(x).freeze)
        end
      end
    end
  end
  File.open(path)
end

work = {}
begin
  cur_pid = nil
  @todo_ra = @max_ra
  t0 = DTAS.now
  fp = nil
  cur = YAML.load(c.req('current'))
  while @todo_ra > 0 && fp.nil?
    if current = cur['current']
      track = current['infile']
      break unless track.kind_of?(String)
      track.freeze
      fp = work[track] ||= do_open(track)
      cur_pid = current['pid']
      if fp
        pos = expand_pid(cur_pid).map do |pid|
          seek_to_cur_pos(pid, fp)
        end.compact.max
        if pos
          fp = do_ra(fp, pos, w)
          work.delete_if { |_, io| io.closed? }
        end
      end
    else
      break
    end

    # queue has priority, work on it, first
    queue = YAML.load(c.req('queue cat'))
    while @todo_ra > 0 && track = queue.shift
      next unless track.kind_of?(String)
      fp = nil
      begin
        fp = work[track] ||= do_open(track)
      rescue SystemCallError
      end
      fp = do_ra(fp, 0, w) if fp
      work.delete_if { |_, io| io.closed? }
    end
    break if @todo_ra <= 0

    # the normal tracklist
    ids = c.req('tl tracks').split
    ids.shift # ignore count
    idx = ids.find_index(c.req('tl current-id'))
    repeat = c.req('tl repeat').split[-1]
    while @todo_ra > 0 && idx && (cid = ids[idx])
      fp = nil
      track = c.req("tl get #{cid}").sub!(/\A1 \d+=/, '').freeze
      begin
        fp = work[track] ||= do_open(track)
      rescue SystemCallError
      end
      fp = do_ra(fp, 0, w) if fp
      work.delete_if { |_, io| io.closed? }
      if @todo_ra > 0 && fp.nil? && ids[idx += 1].nil?
        idx = repeat == 'true' ? 0 : nil
      end
    end
    idx or break
    cur = YAML.load(c.req('current'))
    current = cur['current'] or break
  end
  if current
    elapsed = DTAS.now - t0
    p [:elapsed, elapsed]
    timeout = 5 - elapsed
    timeout = 0 if timeout < 0
  else
    work.each_value(&:close).clear
    fp.close if fp && !fp.closed?
    fp = timeout = nil
  end
  r = wait_read(w, timeout)
  p w.res_wait if r
rescue EOFError
  abort "dtas-player exited"
rescue => e
  warn "#{e.message} #{e.class})"
  e.backtrace.each {|l| warn l }
  sleep 5
end while true

git clone git://80x24.org/dtas.git
git clone https://80x24.org/dtas.git