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
|
{
"$schema": "ToBeDone",
"metadata": {
"label": "sample-audio-policy",
"info": "Provide Default Audio Policy for Multimedia, Navigation and Emergency",
"version": "1.0"
},
"onload": {
"info": "controler initialisation config",
"plugin": "sample-audio-policy.so",
"actions": [
{
"info": "Call policy sharelib install entrypoint",
"callback": "SamplePolicyInstall",
"args": {"arg1" : "first_arg", "nextarg": "second arg value"}
}, {
"info": "Assert AlsaCore Presence",
"api": "alsacore",
"verb": "ping"
}
]
},
"controls":
[{
"label": "multimedia",
"actions": [
{
"label": "multimedia-policy-cb",
"info": "Call Sharelib Sample Callback",
"callback": "samplePolicyCB",
"args": {
"arg1": "snoopy",
"arg2": "toto"
}
}, {
"label": "multimedia-policy-ucm",
"info": "Subcall AlSA UCM navigation",
"api": "alsacore",
"verb": "ucmset",
"args": {
"verb": "multimedia"
}
}
]
},
{
"label":"navigation",
"action" : {
"api": "alsacore",
"verb": "ucmset",
"args": {
"verb": "navigation"
},
"optional": true,
"timeout": 100
}
}, {
"label":"emergency",
"action": {
"api": "alsacore",
"verb": "ucmset",
"args": {
"verb": "emergency"
}
}
}]
,
"events": [
{
"label": "SampleEvent",
"comment": "define action when receiving a given event",
"actions": [
{
"info": "Event Callback-1",
"callback": "ProcessEventCB",
"args": {
"arg": "action-1"
}
}, {
"info": "Event Callback-2",
"callback": "ProcessEventCB",
"args": {
"arg": "action-2"
}
}
]
}
]
}
|