From 534c6d7633a566d117ec3a8cd4563283e85b1a77 Mon Sep 17 00:00:00 2001 From: Ronan Le Martret Date: Wed, 18 Jul 2018 13:52:48 +0200 Subject: Add Make file Signed-off-by: Ronan Le Martret --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..46328b4 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +PREFIX=/usr/local + +MAKEFILE_DIR=$(dir $(realpath $(firstword $(MAKEFILE_LIST)))) +MEDIA=$(wildcard $(MAKEFILE_DIR)/media/*) + +all: help + +help: + @echo "Usage (root access required):" + @echo "* make install" + +install: $(MEDIA) + @echo "Installing audio test files $(notdir $(MEDIA)) into $(DESTDIR)/media" + mkdir -p $(DESTDIR)/media + install $(MEDIA) -m 750 $(DESTDIR)/media + +clean: + @rm -vf $(SCRIPTS) -- cgit 1.2.3-korg From 8afcd54b999813b220b7499d3b080373be25138e Mon Sep 17 00:00:00 2001 From: Stephane Desneux Date: Thu, 19 Jul 2018 13:04:37 +0200 Subject: add script 4a-get_roles for elementary test of 4A high level API Change-Id: I61c9982e73fbc894307da8e29c5c062b136b4d84 Signed-off-by: Stephane Desneux --- Makefile | 14 +++++++++++--- TODO | 6 ++++++ bin/4a-get_roles | 1 + 3 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 TODO create mode 100644 bin/4a-get_roles (limited to 'Makefile') diff --git a/Makefile b/Makefile index 46328b4..65393e0 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,8 @@ -PREFIX=/usr/local +DESTDIR?=/usr/local MAKEFILE_DIR=$(dir $(realpath $(firstword $(MAKEFILE_LIST)))) + +SCRIPTS=$(wildcard $(MAKEFILE_DIR)/bin/*) MEDIA=$(wildcard $(MAKEFILE_DIR)/media/*) all: help @@ -8,11 +10,17 @@ all: help help: @echo "Usage (root access required):" @echo "* make install" + @echo " will install scripts in $(DESTDIR)" + @echo "* make install DESTDIR=/usr" + @echo " changes the destination dir (in this example, the scripts will be installed in /usr/bin)" install: $(MEDIA) + @echo "Installing audio scripts $(notdir $(SCRIPTS)) into $(DESTDIR)/bin" + mkdir -p $(DESTDIR)/bin + install $(SCRIPTS) -m 750 $(DESTDIR)/bin @echo "Installing audio test files $(notdir $(MEDIA)) into $(DESTDIR)/media" mkdir -p $(DESTDIR)/media - install $(MEDIA) -m 750 $(DESTDIR)/media + install $(MEDIA) -m 640 $(DESTDIR)/media clean: - @rm -vf $(SCRIPTS) + @echo "Cleanup done." diff --git a/TODO b/TODO new file mode 100644 index 0000000..56d4ec2 --- /dev/null +++ b/TODO @@ -0,0 +1,6 @@ +* push OGG file +* push WAV file +* add script for basic aplay on output card +* add script for basic aplay through loopback (softmixer) +* add script to play mp3 or ogg using gstreamer (gst-launch-1.0 ...) +* add script to play with mediaplayer api: list / play / stop / next / prev ... diff --git a/bin/4a-get_roles b/bin/4a-get_roles new file mode 100644 index 0000000..fc7f2d0 --- /dev/null +++ b/bin/4a-get_roles @@ -0,0 +1 @@ +afb-client-demo -d unix:/run/user/0/apis/ws/ahl-4a get_roles "" -- cgit 1.2.3-korg From e8b23b37394800332baf1ffc9b9777c67dc664cd Mon Sep 17 00:00:00 2001 From: Stephane Desneux Date: Sat, 21 Jul 2018 16:17:44 +0200 Subject: change media paths Change-Id: I0d4783d37da25a315073eb847c7f525ed1b51d5c Signed-off-by: Stephane Desneux --- Makefile | 8 ++++---- bin/4a-api | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++-- bin/4a-play | 18 +++++++++++++++++- bin/4a-status | 53 ++++++++++++++++++++++++++--------------------------- bin/lib4a-tools.sh | 35 +++++++++++++++++++++++++++++++++++ 5 files changed, 133 insertions(+), 34 deletions(-) create mode 100644 bin/lib4a-tools.sh (limited to 'Makefile') diff --git a/Makefile b/Makefile index 65393e0..906432b 100644 --- a/Makefile +++ b/Makefile @@ -14,13 +14,13 @@ help: @echo "* make install DESTDIR=/usr" @echo " changes the destination dir (in this example, the scripts will be installed in /usr/bin)" -install: $(MEDIA) +install: $(SCRIPTS) $(MEDIA) @echo "Installing audio scripts $(notdir $(SCRIPTS)) into $(DESTDIR)/bin" mkdir -p $(DESTDIR)/bin install $(SCRIPTS) -m 750 $(DESTDIR)/bin - @echo "Installing audio test files $(notdir $(MEDIA)) into $(DESTDIR)/media" - mkdir -p $(DESTDIR)/media - install $(MEDIA) -m 640 $(DESTDIR)/media + @echo "Installing audio test files $(notdir $(MEDIA)) into $(DESTDIR)/4a/media" + mkdir -p $(DESTDIR)/4a/media + install $(MEDIA) -m 640 $(DESTDIR)/4a/media clean: @echo "Cleanup done." diff --git a/bin/4a-api b/bin/4a-api index 4a26121..1e1bb39 100755 --- a/bin/4a-api +++ b/bin/4a-api @@ -1,8 +1,57 @@ #!/bin/bash -WS4A=unix:/run/user/0/apis/ws/ahl-4a +# load shell lib +. $(dirname $BASH_SOURCE)/lib4a-tools.sh -afb-client-demo -H -d $WS4A get_roles "" +cmd=$1 +shift + +function usage() { + log "Usage: $0 [opts]" + log "Commands:" + log " help: show this help" + log " api [args]: send direct request to API verb with args" + log " roles: get AHL roles" + log " hals [-a|--all] [-v|--verbose]: get HALs status" + log " mediaplayer ... : interact with mediaplayer service" + log " radio ... : interact with radio service" + exit 1 +} + +case $cmd in + roles) + 4a-client ahl-4a get_roles "" + ;; + api) + 4a-client "$@" + ;; + hals) + verbose=false + all=false + while [[ -n "$1" ]]; do + case $1 in + -a|--all) all=true;; + -v|--verbose) verbose=true;; + -av) all=true; verbose=true;; + esac + shift + done + 4a-client 4a-hal-manager loaded "{'verbose':$verbose,'all':$all}" + ;; + mediaplayer) + echo "TODO" + ;; + radio) + echo "TODO" + ;; + help|-h|--help) + usage + ;; + *) + error "Invalid command" + usage + ;; +esac # commandes HAL manager: # 4a-hal-manager loaded diff --git a/bin/4a-play b/bin/4a-play index 894ab7f..483b892 100755 --- a/bin/4a-play +++ b/bin/4a-play @@ -1 +1,17 @@ -# TODO: play using aplay +#!/bin/bash + +# load shell lib +. $(dirname $BASH_SOURCE)/lib4a-tools.sh + +function usage() { + log "Usage: $0 [role:file2 ...]" + log "Available roles:" + exit 1 +} + +[[ $# == 0 ]] && usage + +for x in "$@"; do + log "Playing $x ..." + aplay -D Loopback,0,2 $x +done diff --git a/bin/4a-status b/bin/4a-status index 519f470..c3e361e 100755 --- a/bin/4a-status +++ b/bin/4a-status @@ -1,51 +1,50 @@ #!/bin/bash -set -o pipefail +# load shell lib +. $(dirname $BASH_SOURCE)/lib4a-tools.sh -ERR="\\e[31mERROR\\e[0m" -WRN="\\e[33mWARNING\\e[0m" -SUC="\\e[32mSUCCESS\\e[0m" +set -o pipefail -function cout { - echo -e "$*" -} +ERR="${color_red}ERROR${color_none}" +WRN="${color_yellow}WARNING${color_none}" +SUC="${color_green}SUCCESS${color_none}" EXIT_CODE=0 -SOUND_CARDS=$( LANG="C" aplay -l | grep -oEe "^card\\s+[^\\[]+" | cut -d':' -f2 | uniq ) +# ------------------- enumerate sound cards ------------------------ + +log "---- Audio cards detected ----" +LANG="C" aplay -l | grep -oEe "^card\\s+[^\\[]+" | sort -u + +# -------------------- snd-aloop ------------------------ -cout " -- Is snd-aloop is available?" +log "" +log "---- snd-aloop driver availability ----" if zcat /proc/config.gz | grep "CONFIG_SND_ALOOP=y" > /dev/null; then - cout " -- $SUC: Built into the kernel" + log "$SUC: Built into the kernel" else - cout " -- $WRN: Not built into the kernel, devices order can randomly change!" + log "$WRN: Not built into the kernel, devices order can randomly change!" if zcat /proc/config.gz | grep "CONFIG_SND_ALOOP=m" > /dev/null; then - cout " -- $SUC: snd-aloop is provided!" + log "$SUC: snd-aloop is provided!" if lsmod | grep "snd_aloop" > /dev/null; then - cout " -- $SUC: snd-aloop is loaded!" + log "$SUC: snd-aloop is loaded!" else - cout " -- $ERR: snd-aloop is not loaded! 4a-softmixer can't work, please load it using: modprobe snd-aloop" + log "$ERR: snd-aloop is not loaded! 4a-softmixer can't work, please load it using: modprobe snd-aloop" fi else - cout " -- $ERR: snd-aloop is not provided at all, 4a-softmixer can't work!" + log "$ERR: snd-aloop is not provided at all, 4a-softmixer can't work!" EXIT_CODE=1 fi fi -cout " -- Is 4a running?" +log "" +log "---- 4a service status ----" if ps x | grep "service-audio-4a" | grep -v "grep" > /dev/null; then - cout " -- $SUC: Service is currently running!" + log "$SUC: Service is currently running!" else - cout " -- $WRN: Service is not currently running!" + log "$WRN: Service is not currently running!" + log "It can be started using the following command:" + log "systemctl restart *agl-service-audio-4a*.service" fi - -#SERVICE_FILE=$( basename "$( ls "/var/local/lib/systemd/system/afm-service-agl-service-audio-4a--"* )" ) - -cout -cout "Found audio cards:" -for card in $SOUND_CARDS; do - cout " - $card" -done - exit $EXIT_CODE diff --git a/bin/lib4a-tools.sh b/bin/lib4a-tools.sh new file mode 100644 index 0000000..4029046 --- /dev/null +++ b/bin/lib4a-tools.sh @@ -0,0 +1,35 @@ +stdout_in_terminal=0 +[[ -t 1 ]] && stdout_in_terminal=1 +function color { + [[ $stdout_in_terminal == 0 ]] && return + for k in $*; do + case $k in + bold) tput bold 2>/dev/null;; + none) tput sgr0 2>/dev/null;; + *) tput setaf $k 2>/dev/null;; + esac + done +} +color_green=$(color bold 2) +color_yellow=$(color bold 3) +color_red=$(color bold 1) +color_blue=$(color bold 4) +color_none=$(color none) + +function error() { echo "${color_red}$@${color_none}" >&2; } +function warning() { echo "${color_yellow}$@${color_none}" >&2; } +function info() { echo "${color_green}$@${color_none}" >&2; } +function log() { echo "$@" >&2; } +function debug() { [[ "$DEBUG" == 1 ]] && echo "${color_blue}DEBUG:" "$@" "${color_none}" >&2; } + +function 4a-client() { + # get port for audio service + local port=$(grep -sr X-AFM-http /var/local/lib/systemd/system/afm-service-agl-service-audio-4a*.service | cut -f2 -d'=') + + debug "Detected 4A service on port $port" + afb-client-demo -H "localhost:$port/api?token=HELLO&uuid=magic" "$@" +} + +function 4a-roles() { + 4a-client ahl-4a get_roles "" | tail -n +2 | jq '.response|.[]' +} -- cgit 1.2.3-korg From 15812b9f7092fe55e9558bd7c4eb22510e587423 Mon Sep 17 00:00:00 2001 From: Stephane Desneux Date: Mon, 23 Jul 2018 22:57:33 +0200 Subject: Makefile: fix install path Change-Id: I55decba4f946c42ac55689d94b0dcce651b426d5 Signed-off-by: Stephane Desneux --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 906432b..3d4ea57 100644 --- a/Makefile +++ b/Makefile @@ -18,9 +18,9 @@ install: $(SCRIPTS) $(MEDIA) @echo "Installing audio scripts $(notdir $(SCRIPTS)) into $(DESTDIR)/bin" mkdir -p $(DESTDIR)/bin install $(SCRIPTS) -m 750 $(DESTDIR)/bin - @echo "Installing audio test files $(notdir $(MEDIA)) into $(DESTDIR)/4a/media" - mkdir -p $(DESTDIR)/4a/media - install $(MEDIA) -m 640 $(DESTDIR)/4a/media + @echo "Installing audio test files $(notdir $(MEDIA)) into $(DESTDIR)/share/4a/media" + mkdir -p $(DESTDIR)/share/4a/media + install $(MEDIA) -m 640 $(DESTDIR)/share/4a/media clean: @echo "Cleanup done." -- cgit 1.2.3-korg