afm-util/install: use of web socket connection
[src/app-framework-main.git] / scripts / afm-util
index eb800d9..4d86218 100755 (executable)
@@ -1,25 +1,8 @@
-#!/bin/sh
-
-if [ "x" = "x${DBUS_SESSION_BUS_ADDRESS}" ]; then
-       DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/$UID/bus"
-fi
-export DBUS_SESSION_BUS_ADDRESS
-
-pretty() {
-       sed \
-               -e '/^method return .*/d' \
-               -e 's/^Error org.freedesktop.DBus.Error.Failed: "\?\(.*\)"\?$/ERROR: \1/' \
-               -e 's/^   string "\(.*\)"/\1/' \
-               -e 's/},/&\n/'
-}
+#!/bin/bash
 
 send() {
-       dbus-send --session --print-reply \
-               --dest=org.AGL.afm.user \
-               /org/AGL/afm/user \
-               org.AGL.afm.user.$1 \
-               "string:$2" |
-       pretty
+       afb-client-demo -H -d unix:/run/afm/apis/ws/afm-main "$1" "$2" |
+       awk '$1=="ON-REPLY-FAIL"{$1="ERROR:";$2="";print;exit 1;}NR>1'
 }
 
 case "$1" in
@@ -52,6 +35,11 @@ case "$1" in
     send start "\"$i\""
     ;;
 
+  run-remote|start-remote)
+    i=$2
+    send start '{"id":"'"$i"'","mode":"remote"}'
+    ;;
+
   once)
     i=$2
     send once "\"$i\""