config: do not make volume suppression when navigator stream is present
[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     },
115     binaries = { ['t8j6HTRpuz.MediaPlayer'] = "music" }
116 }
117
118 application_class {
119     class = "player",
120     node_type = node.browser,
121     priority = 1,
122     route = {
123         output = { driver = routing_group.default_driver_output,
124                    passanger1 = routing_group.default_passanger1_output }
125     },
126     roles = { browser = {0, "mandatory", "shared"} }
127 }
128
129
130
131 audio_resource {
132     name = { recording = "audio_recording", playback = "audio_playback" },
133     attributes = {
134        role = {"media.role", mdb.string, "music"},
135        pid  = {"application.process.id", mdb.string, "<unknown>"},
136        appid = {"resource.set.appid", mdb.string, "<unknown>"}
137     }
138 }
139
140 mdb.import {
141     table = "speedvol",
142     columns = {"value"},
143     condition = "zone = 'driver' AND device = 'speaker'",
144     maxrow = 1,
145     update = builtin.method.make_volumes
146 }
147
148 mdb.import {
149     table = "audio_playback_owner",
150     columns = {"zone_id", "application_class", "role"},
151     condition = "zone_name = 'driver'",
152     maxrow = 1,
153     update = function(self)
154         zid = self[1].zone_id
155         if (zid == nil) then zid = "<nil>" end
156         class = self[1].application_class
157         if (class == nil) then class = "<nil>" end
158         role = self[1].role
159         if (role == nil) then role = "<nil>" end
160 --      print("*** import "..self.table.." update: zone:"..zid.." class:"..class.." role:"..role)
161     end
162 }
163
164 mdb.import {
165     table = "amb_shift_position",
166     columns = {"shift_position"},
167     condition = "id = 0",
168     maxrow = 1,
169     update = builtin.method.make_volumes
170 }
171
172 volume_limit {
173     name = "speed_adjust",
174     type = volume_limit.generic,
175     limit = mdb.import.speedvol:link(1,"value"),
176     calculate = builtin.method.volume_correct
177 }
178
179 volume_limit {
180     name = "suppress",
181     type = volume_limit.class,
182     limit = -20;
183     node_type = { node.phone },
184     calculate = builtin.method.volume_supress
185 }
186
187 volume_limit {
188     name = "video",
189     type = volume_limit.class,
190     limit = -90,
191     node_type = { node.player, node.game },
192     calculate = function(self, class, device)
193 --      print("*** limit "..self.name.." class:"..class.." stream:"..device.name)
194         position = mdb.import.amb_shift_position[1].shift_position
195         if (position  and position == 128) then
196             return self.limit
197         end
198         return 0
199     end
200 }
201
202