dtas.git  about / heads / tags
duct tape audio suite for *nix
blob 9abf2dc6e144ca82d0bef06659fcf67e29b1ad17 1342 bytes (raw)
$ git show v0.16.1:bin/dtas-msinkctl	# 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
 
#!/usr/bin/env ruby
# Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
# frozen_string_literal: true
require 'yaml'
require 'dtas/unix_client'
usage = "#$0 <active-set|active-add|active-sub|nonblock|active> SINK"
c = DTAS::UNIXClient.new
action = ARGV.shift
sink_args = ARGV

buf = c.req("sink ls")
abort(buf) if buf =~ /\AERR/
player_sinks = buf.split(/ /)

non_existent = sink_args - player_sinks
non_existent[0] and
  abort "non-existent sink(s): #{non_existent.join(' ')}"

def activate_sinks(c, sink_names)
  sink_names.each { |name| c.req_ok("sink ed #{name} active=true") }
end

def deactivate_sinks(c, sink_names)
  sink_names.each { |name| c.req_ok("sink ed #{name} active=false") }
end

def filter(c, player_sinks, key)
  rv = []
  player_sinks.each do |name|
    buf = c.req("sink cat #{name}")
    sink = YAML.load(buf)
    rv << sink["name"] if sink[key]
  end
  rv
end

case action
when "active-set"
  activate_sinks(c, sink_args)
  deactivate_sinks(c, player_sinks - sink_args)
when "active-add" # idempotent
  activate_sinks(c, sink_args)
when "active-sub"
  deactivate_sinks(c, sink_args)
when "active", "nonblock"
  abort "`#$0 #{action}' takes no arguments" if sink_args[0]
  puts filter(c, player_sinks, action).join(' ')
else
  abort usage
end

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