79415db19671b1ff95011a82b147d86d5ce6a26a
[profile/ivi/pulseaudio-module-murphy-ivi.git] / murphy / murphy-ivi.lua
1 zone { name = "driver" }
2 zone { name = "passanger1" }
3 zone { name = "passanger2" }
4 zone { name = "passanger3" }
5 zone { name = "passanger4" }
6
7 routing_group {
8     name = "default_driver",
9     node_type = node.output,
10     accept = function(self, n)
11         return (n.type ~= node.bluetooth_carkit and n.type ~= node.hdmi)
12     end,
13     compare = builtin.method.compare_default
14 }
15
16 routing_group {
17     name = "default_passanger1",
18     node_type = node.output,
19     accept = function(self, n)
20         return (n.type == node.hdmi or n.name == 'Silent')
21     end,
22     compare = builtin.method.compare_default
23 }
24
25 routing_group {
26     name = "phone",
27     node_type = node.input,
28     accept = builtin.method.accept_phone,
29     compare = builtin.method.compare_phone
30 }
31
32 routing_group {
33     name = "phone",
34     node_type = node.output,
35     accept = builtin.method.accept_phone,
36     compare = builtin.method.compare_phone
37 }
38
39 application_class {
40     class = "event",
41     node_type = node.event,
42     priority = 6,
43     route = {
44         output = { driver = routing_group.default_driver_output }
45     },
46     roles = { event  = no_resource,
47               speech = no_resource }
48 }
49
50 application_class {
51     class = "phone",
52     node_type = node.phone,
53     priority = 5,
54     route = {
55         input  = { driver = routing_group.phone_input },
56         output = {driver = routing_group.phone_output }
57     },
58     roles = { phone = no_resource, carkit = no_resource }
59 }
60
61 application_class {
62     node_type = node.alert,
63     priority = 4,
64     route = {
65         output = { driver = routing_group.default_driver_output },
66     },
67     roles = { ringtone = no_resource, alarm = no_resource }
68 }
69
70 application_class {
71     class = "navigator",
72     node_type = node.navigator,
73     priority = 3,
74     route = {
75         output = { driver = routing_group.default_driver_output,
76                passanger1 = routing_group.default_passanger1_output }
77     },
78     roles = { navigator = {0, "autorelease", "mandatory", "shared"} },
79     binaries = { ['net.zmap.navi'] = { 0, "autorelease", "mandatory", "shared" } }
80 }
81
82 application_class {
83     class = "game",
84     node_type = node.game,
85     priority = 2,
86     route = {
87         output = { driver = routing_group.default_driver_output,
88                passanger1 = routing_group.default_passanger1_output }
89     },
90     roles = { game = {0, "mandatory", "exclusive"} }
91 }
92
93 application_class {
94     class = "player",
95     node_type = node.radio,
96     priority = 1,
97     route = {
98         output = { driver = routing_group.default_driver_output }
99     },
100     roles = { radio = {1, "mandatory", "exclusive"} },
101 }
102
103 application_class {
104     class = "player",
105     node_type = node.player,
106     priority = 1,
107     route = {
108         output = { driver = routing_group.default_driver_output,
109                    passanger1 = routing_group.default_passanger1_output }
110     },
111     roles = { music    = {0, "mandatory", "exclusive"},
112               video    = {0, "mandatory", "exclusive"},
113               test     = {0, "mandatory", "exclusive"},
114               bt_music = no_resource
115     },
116     binaries = { ['t8j6HTRpuz.MediaPlayer'] = "music" }
117 }
118
119 application_class {
120     class = "player",
121     node_type = node.browser,
122     priority = 1,
123     route = {
124         output = { driver = routing_group.default_driver_output,
125                passanger1 = routing_group.default_passanger1_output }
126     },
127     roles = { browser = {0, "mandatory", "shared"} }
128 }
129
130
131
132 audio_resource {
133     name = { recording = "audio_recording", playback = "audio_playback" },
134     attributes = {
135        role = {"media.role", mdb.string, "music"},
136        pid  = {"application.process.id", mdb.string, "<unknown>"},
137        appid = {"resource.set.appid", mdb.string, "<unknown>"}
138     }
139 }
140
141 mdb.import {
142     table = "speedvol",
143     columns = {"value"},
144     condition = "zone = 'driver' AND device = 'speaker'",
145     maxrow = 1,
146     update = builtin.method.make_volumes
147 }
148
149 mdb.import {
150     table = "audio_playback_owner",
151     columns = {"zone_id", "application_class", "role"},
152     condition = "zone_name = 'driver'",
153     maxrow = 1,
154     update = function(self)
155         zid = self[1].zone_id
156     if (zid == nil) then zid = "<nil>" end
157     class = self[1].application_class
158     if (class == nil) then class = "<nil>" end
159     role = self[1].role
160     if (role == nil) then role = "<nil>" end
161 --      print("*** import "..self.table.." update: zone:"..zid.." class:"..class.." role:"..role)
162     end
163 }
164
165 mdb.import {
166     table = "amb_gear_position",
167     columns = { "value" },
168     condition = "key = 'GearPosition'",
169     maxrow = 1,
170     update = builtin.method.make_volumes
171 }
172
173 volume_limit {
174     name = "speed_adjust",
175     type = volume_limit.generic,
176     limit = mdb.import.speedvol:link(1,"value"),
177     calculate = builtin.method.volume_correct
178 }
179
180 volume_limit {
181     name = "suppress",
182     type = volume_limit.class,
183     limit = -20;
184     node_type = { node.phone },
185     calculate = builtin.method.volume_supress
186 }
187
188 volume_limit {
189     name = "video",
190     type = volume_limit.class,
191     limit = -90,
192     node_type = { node.player, node.game },
193     calculate = function(self, class, device)
194 --      print("*** limit "..self.name.." class:"..class.." stream:"..device.name)
195         position = mdb.import.amb_gear_position[1].value
196         if (position and position == 128) then
197             return self.limit
198         end
199         return 0
200     end
201 }
202
203