system-controller: support for full-screen layer
[profile/ivi/murphy.git] / packaging.in / murphy.lua
1 with_system_controller = false
2 with_amb = false
3 verbose = 0
4
5 m = murphy.get()
6
7 -- try loading the various logging plugins
8 m:try_load_plugin('systemd')
9 m:try_load_plugin('dlog')
10
11 -- load the console plugin
12 m:try_load_plugin('console')
13
14 m:try_load_plugin('console.disabled', 'webconsole', {
15                   address = 'wsck:127.0.0.1:3000/murphy',
16                   httpdir = '/usr/share/murphy/webconsole' });
17
18 -- load the dbus plugin
19 if m:plugin_exists('dbus') then
20     m:load_plugin('dbus')
21 end
22
23 -- load the native resource plugin
24 if m:plugin_exists('resource-native') then
25     m:load_plugin('resource-native')
26     m:info("native resource plugin loaded")
27 else
28     m:info("No native resource plugin found...")
29 end
30
31 -- load the dbus resource plugin
32 m:try_load_plugin('resource-dbus', {
33     dbus_bus = "system",
34     dbus_service = "org.Murphy",
35     dbus_track = true,
36     default_zone = "driver",
37     default_class = "implicit"
38 })
39
40 -- load the domain control plugin
41 if m:plugin_exists('domain-control') then
42     m:load_plugin('domain-control')
43 else
44     m:info("No domain-control plugin found...")
45 end
46
47 if m:plugin_exists('glib') then
48     m:load_plugin('glib')
49 else
50     m:info("No glib plugin found...")
51 end
52
53 -- load the AMB plugin
54 if m:plugin_exists('amb') then
55     m:try_load_plugin('amb')
56
57     if builtin.method.amb_initiate and
58        builtin.method.amb_update
59     then
60         with_amb = true
61     end
62 else
63     m:info("No amb plugin found...")
64 end
65
66 -- load the ASM resource plugin
67 if m:plugin_exists('resource-asm') then
68     m:try_load_plugin('resource-asm', {
69         zone = "driver",
70         share_mmplayer = "player:AVP,mandatory,exclusive,strict",
71         ignored_argv0 = "WebProcess"
72     })
73 else
74     m:info("No audio session manager plugin found...")
75 end
76
77 if m:plugin_exists('system-controller') then
78     with_system_controller = true
79 elseif m:plugin_exists('ivi-resource-manager') then
80     m:load_plugin('ivi-resource-manager')
81     with_system_controller = false
82 end
83
84 -- define application classes
85 application_class {
86     name     = "interrupt",
87     priority = 99,
88     modal    = true ,
89     share    = false,
90     order    = "fifo"
91 }
92
93 application_class {
94     name     = "emergency",
95     priority = 80,
96     modal    = false,
97     share    = false,
98     order    = "fifo"
99 }
100 application_class {
101     name     = "system",
102     priority = 52,
103     modal    = false,
104     share    = true,
105     order    = "lifo"
106 }
107 application_class {
108     name     = "alert",
109     priority = 51,
110     modal    = false,
111     share    = false,
112     order    = "fifo"
113 }
114
115 application_class {
116     name     = "navigator",
117     priority = 50,
118     modal    = false,
119     share    = true,
120     order    = "fifo"
121 }
122
123 application_class {
124     name     = "phone",
125     priority = 6 ,
126     modal    = false,
127     share    = true ,
128     order    = "lifo"
129 }
130 application_class {
131     name     = "camera",
132     priority = 5,
133     modal    = false,
134     share    = false,
135     order    = "lifo"
136 }
137
138 application_class { name="event"    , priority=4 , modal=false, share=true , order="fifo" }
139 application_class { name="game"     , priority=3 , modal=false, share=false, order="lifo" }
140 --# doesn't need to be created here, ivi-resource-manager creates it if loaded
141 --#application_class { name="basic"    , priority=2 , modal=false, share=false, order="lifo" }
142 application_class { name="player"   , priority=1 , modal=false, share=true , order="lifo" }
143 application_class { name="implicit" , priority=0 , modal=false, share=false, order="lifo" }
144
145 -- define zone attributes
146 zone.attributes {
147     type = {mdb.string, "common", "rw"},
148     location = {mdb.string, "anywhere", "rw"}
149 }
150
151 -- define zones
152 zone {
153      name = "driver",
154      attributes = {
155          type = "common",
156          location = "front-left"
157      }
158 }
159
160 zone {
161      name = "passanger1",
162      attributes = {
163          type = "private",
164          location = "front-right"
165      }
166 }
167
168 zone {
169      name = "passanger2",
170      attributes = {
171          type = "private",
172          location = "back-left"
173      }
174 }
175
176 zone {
177      name = "passanger3",
178      attributes = {
179          type = "private",
180          location = "back-right"
181      }
182 }
183
184 zone {
185      name = "passanger4",
186      attributes = {
187          type = "private",
188          location = "back-left"
189      }
190 }
191
192
193 -- define resource classes
194 if not m:plugin_exists('ivi-resource-manager') and
195    not with_system_controller
196 then
197    resource.class {
198         name = "audio_playback",
199         shareable = true,
200         attributes = {
201             role = { mdb.string, "music", "rw" },
202             pid = { mdb.string, "<unknown>", "rw" },
203             policy = { mdb.string, "relaxed", "rw" }
204         }
205    }
206 end
207
208 resource.class {
209      name = "audio_recording",
210      shareable = true,
211      attributes = {
212          role   = { mdb.string, "music"    , "rw" },
213          pid    = { mdb.string, "<unknown>", "rw" },
214          policy = { mdb.string, "relaxed"  , "rw" }
215      }
216 }
217
218 resource.class {
219      name = "video_playback",
220      shareable = false,
221 }
222
223 resource.class {
224      name = "video_recording",
225      shareable = false
226 }
227
228 resource.class {
229      name = "speech_recognition",
230      shareable = true
231 }
232
233 resource.class {
234      name = "speech_synthesis",
235      shareable = true
236 }
237
238 if not m:plugin_exists('ivi-resource-manager') and
239    not with_system_controller
240 then
241     resource.method.veto = {
242         function(zone, rset, grant, owners, req_set)
243             return true
244          end
245     }
246 end
247
248 -- test for creating selections
249 mdb.select {
250            name = "audio_owner",
251            table = "audio_playback_owner",
252            columns = {"application_class"},
253            condition = "zone_name = 'driver'"
254 }
255
256 mdb.select {
257            name = "vehicle_speed",
258            table = "amb_vehicle_speed",
259            columns = {"value"},
260            condition = "key = 'VehicleSpeed'"
261 }
262
263 element.lua {
264    name    = "speed2volume",
265    inputs  = { speed = mdb.select.vehicle_speed, param = 9 },
266    outputs = {  mdb.table { name = "speedvol",
267                             index = {"zone", "device"},
268                             columns = {{"zone", mdb.string, 16},
269                                        {"device", mdb.string, 16},
270                                        {"value", mdb.floating}},
271                             create = true
272                            }
273              },
274    oldvolume = 0.0,
275    update  = function(self)
276                 speed = self.inputs.speed.single_value
277                 if (speed) then
278                     volume = (speed - 144.0) / 7.0
279                 else
280                     volume = 0.0
281                 end
282                 diff = volume - self.oldvolume
283                 if (diff*diff > self.inputs.param) then
284                     print("*** element "..self.name.." update "..volume)
285                     self.oldvolume = volume
286                     mdb.table.speedvol:replace({zone = "driver", device = "speakers", value = volume})
287                 end
288              end
289 }
290
291 mdb.select {
292     name = "amb_state",
293     table = "amb_state",
294     columns = { "state" },
295     condition = "id = 0"
296 }
297
298 -- Night mode processing chain
299
300 mdb.select {
301     name = "exterior_brightness",
302     table = "amb_exterior_brightness",
303     columns = { "value" },
304     condition = "key = 'ExteriorBrightness'"
305 }
306
307 element.lua {
308     name    = "nightmode",
309     inputs  = { brightness = mdb.select.exterior_brightness },
310     oldmode = -1;
311     outputs = {
312         mdb.table {
313             name = "amb_nightmode",
314             index = { "id" },
315             create = true,
316             columns = {
317                 { "id", mdb.unsigned },
318                 { "night_mode", mdb.unsigned }
319             }
320         }
321     },
322     update = function(self)
323         -- This is a trivial function to calculate night mode. Later, we will
324         -- need a better threshold value and hysteresis to prevent oscillation.
325
326         brightness = self.inputs.brightness.single_value
327
328         if not brightness then
329             return
330         end
331
332         print("*** element "..self.name.." update brightness: "..brightness)
333
334         if brightness > 300 then
335             mode = 0
336         else
337             mode = 1
338         end
339
340         print("*** resulting mode: ".. mode)
341
342         if not (mode == self.oldmode) then
343             mdb.table.amb_nightmode:replace({ id = 0, night_mode = mode })
344         end
345
346         self.oldmode = mode
347     end
348 }
349
350 mdb.select {
351     name = "select_night_mode",
352     table = "amb_nightmode",
353     columns = { "night_mode" },
354     condition = "id = 0"
355 }
356
357 if with_amb then
358     sink.lua {
359         name = "night_mode",
360         inputs = { NightMode = mdb.select.select_night_mode,
361                    amb_state = mdb.select.amb_state },
362         property = "NightMode",
363         type = "b",
364         initiate = builtin.method.amb_initiate,
365         update = builtin.method.amb_update
366     }
367 end
368
369 -- Night mode general handlers
370
371 if with_system_controller then
372     sink.lua {
373         name = "nightmode_homescreen",
374         inputs = { owner = mdb.select.select_night_mode },
375         initiate = function(self)
376                 -- data = mdb.select.select_night_mode.single_value
377                 return true
378             end,
379         update = function(self)
380                 send_night_mode_to_home_screen()
381             end
382     }
383 end
384
385 -- Driving mode processing chain
386
387 element.lua {
388     name    = "drivingmode",
389     inputs  = { speed = mdb.select.vehicle_speed },
390     oldmode = -1;
391     outputs = {
392         mdb.table {
393             name = "amb_drivingmode",
394             index = { "id" },
395             create = true,
396             columns = {
397                 { "id", mdb.unsigned },
398                 { "driving_mode", mdb.unsigned }
399             }
400         }
401     },
402     update = function(self)
403
404         speed = self.inputs.speed.single_value
405
406         if not speed then
407             return
408         end
409
410         if speed == 0 then
411             mode = 0
412         else
413             mode = 1
414         end
415
416         if not (mode == self.oldmode) then
417             mdb.table.amb_drivingmode:replace({ id = 0, driving_mode = mode })
418         end
419
420         self.oldmode = mode
421     end
422 }
423
424 mdb.select {
425     name = "select_driving_mode",
426     table = "amb_drivingmode",
427     columns = { "driving_mode" },
428     condition = "id = 0"
429 }
430
431 if with_amb then
432     sink.lua {
433         name = "driving_mode",
434         inputs = { DrivingMode = mdb.select.select_driving_mode,
435                    amb_state = mdb.select.amb_state },
436         property = "DrivingMode",
437         type = "u",
438         initiate = builtin.method.amb_initiate,
439         update = builtin.method.amb_update
440     }
441 end
442
443 -- turn signals (left, right)
444
445 mdb.select {
446     name = "winker",
447     table = "amb_turn_signal",
448     columns = { "value" },
449     condition = "key = 'TurnSignal'"
450 }
451
452 -- define three categories
453
454 mdb.select {
455     name = "undefined_applications",
456     table = "aul_applications",
457     columns = { "appid" },
458     condition = "category = '<undefined>'"
459 }
460
461 mdb.select {
462     name = "basic_applications",
463     table = "aul_applications",
464     columns = { "appid" },
465     condition = "category = 'basic'"
466 }
467
468 mdb.select {
469     name = "entertainment_applications",
470     table = "aul_applications",
471     columns = { "appid" },
472     condition = "category = 'entertainment'"
473 }
474
475 function ft(t)
476     -- filter the object garbage out of the tables
477     ret = {}
478
479     for k,v in pairs(t) do
480         if k ~= "userdata" and k ~= "new" then
481             ret[k] = v
482         end
483     end
484
485     return ret
486 end
487
488 function getApplication(appid)
489     local conf = nil
490
491     -- find the correct local application definition
492
493     for k,v in pairs(ft(application)) do
494         if appid == v.appid then
495             conf = v
496             break
497         end
498     end
499
500     return conf
501 end
502
503 function regulateApplications(t, regulation)
504     for k,v in pairs(ft(t)) do
505
506         -- iterate through the undefined and entertainment apps, see if
507         -- they have been overruled in local config
508
509         local conf = getApplication(v.appid)
510
511         if conf and conf.resource_class ~= "player" then
512             -- override, don't disable
513             resmgr:disable_screen_by_appid("*", "*", v.appid, false, false)
514         else
515             resmgr:disable_screen_by_appid("*", "*", v.appid, regulation == 1, false)
516         end
517     end
518     resource.method.recalc("driver")
519 end
520
521 -- regulation (on), use "select_driving_mode"
522
523 sink.lua {
524     name = "driving_regulation",
525     inputs = { owner = mdb.select.select_driving_mode },
526     initiate = function(self)
527         -- local data = mdb.select.select_driving_mode.single_value
528         return true
529     end,
530     update = function(self)
531         local data = mdb.select.select_driving_mode.single_value
532
533         if verbose > 1 then
534             print("Driving mode updated: " .. tostring(data))
535         end
536
537         if not sc then
538             return true
539         end
540
541         -- tell homescreen that driving mode was updated
542         send_driving_mode_to_home_screen()
543
544         regulateApplications(ft(mdb.select.entertainment_applications), data)
545         regulateApplications(ft(mdb.select.undefined_applications), data)
546
547         return true
548     end
549 }
550 --[[
551 sink.lua {
552     name = "regulated_app_change",
553     inputs = { undef = mdb.select.undefined_applications,
554                entertainment = mdb.select.entertainment_applications },
555     initiate = function(self)
556         return true
557     end,
558     update = function(self)
559         local data = mdb.select.select_driving_mode.single_value
560
561         if not sc then
562             return
563         end
564
565         if verbose > 1 then
566             print("regulated application list was changed")
567         end
568
569         regulateApplications(ft(mdb.select.entertainment_applications), data)
570         regulateApplications(ft(mdb.select.undefined_applications), data)
571
572         return true
573     end
574 }
575 --]]
576
577 -- shift position (parking, reverse, other)
578
579 mdb.select {
580     name = "gear_position",
581     table = "amb_gear_position",
582     columns = { "value" },
583     condition = "key = 'GearPosition'"
584 }
585
586 -- cameras (back, front, left, right)
587
588 element.lua {
589     name    = "camera_state",
590     inputs  = { winker = mdb.select.winker, gear = mdb.select.gear_position },
591     oldmode = -1;
592     outputs = {
593         mdb.table {
594             name = "target_camera_state",
595             index = { "id" },
596             create = true,
597             columns = {
598                 { "id", mdb.unsigned },
599                 { "front_camera", mdb.unsigned },
600                 { "back_camera", mdb.unsigned },
601                 { "right_camera", mdb.unsigned },
602                 { "left_camera", mdb.unsigned }
603             }
604         }
605     },
606     update = function(self)
607
608         front_camera = 0
609         back_camera = 0
610         right_camera = 0
611         left_camera = 0
612
613         if self.inputs.gear == 128 then
614             back_camera = 1
615         elseif self.inputs.winker == 1 then
616             right_camera = 1
617         elseif self.inputs.winker == 2 then
618             left_camera = 1
619         end
620
621         mdb.table.target_camera_state:replace({ id = 0, front_camera = front_camera, back_camera = back_camera, right_camera = right_camera, left_camera = left_camera })
622
623     end
624 }
625
626 -- system controller test setup
627
628 if not with_system_controller then
629    -- ok, we should have 'audio_playback' defined by now
630    m:try_load_plugin('telephony')
631    return
632 end
633
634 m:load_plugin('system-controller')
635
636 window_manager_operation_names = {
637     [1] = "create",
638     [2] = "destroy"
639 }
640
641 function window_manager_operation_name(oper)
642     local name = window_manager_operation_names[oper]
643     if name then return name end
644     return "<unknown " .. tostring(oper) .. ">"
645 end
646
647 window_operation_names = {
648     [1] = "create",
649     [2] = "destroy",
650     [3] = "name_change",
651     [4] = "visible",
652     [5] = "configure",
653     [6] = "active",
654     [7] = "map"
655 }
656
657 function window_operation_name(oper)
658     local name = window_operation_names[oper]
659     if name then return name end
660     return "<unknown " .. tostring(oper) .. ">"
661 end
662
663 layer_operation_names = {
664     [1] = "create",
665     [2] = "destroy",
666     [3] = "visible"
667 }
668
669 function layer_operation_name(oper)
670     local name = layer_operation_names[oper]
671     if name then return name end
672     return "<unknown " .. tostring(oper) .. ">"
673 end
674
675 input_manager_operation_names = {
676     [1] = "create",
677     [2] = "destroy",
678     [3] = "ready"
679 }
680
681 function input_manager_operation_name(oper)
682     local name = input_manager_operation_names[oper]
683     if name then return name end
684     return "<unknown " .. tostring(oper) .. ">"
685 end
686
687 input_operation_names = {
688     [1] = "create",
689     [2] = "destroy",
690     [3] = "update"
691 }
692
693 function input_operation_name(oper)
694     local name = input_operation_names[oper]
695     if name then return name end
696     return "<unknown " .. tostring(oper) .. ">"
697 end
698
699 code_operation_names = {
700     [1] = "create",
701     [2] = "destroy",
702     [3] = "state_change"
703 }
704
705 function code_operation_name(oper)
706     local name = code_operation_names[oper]
707     if name then return name end
708     return "<unknown " .. tostring(oper) .. ">"
709 end
710
711 command_names = {
712     [0x00001] = "send_appid",
713     [0x10001] = "create",
714     [0x10002] = "destroy",
715     [0x10003] = "show",
716     [0x10004] = "hide",
717     [0x10005] = "move",
718     [0x10006] = "change_active",
719     [0x10007] = "change_layer",
720     [0x10008] = "change_attr",
721     [0x10009] = "name",
722     [0x10011] = "map_thumb",
723     [0x10012] = "unmap_thumb",
724     [0x10020] = "show layer",
725     [0x10021] = "hide_layer",
726     [0x10022] = "change_layer_attr",
727     [0x20001] = "add_input",
728     [0x20002] = "del_input",
729     [0x20003] = "send_input",
730     [0x40001] = "acquire_res",
731     [0x40002] = "release_res",
732     [0x40003] = "deprive_res",
733     [0x40004] = "waiting_res",
734     [0x40005] = "revert_res",
735     [0x40011] = "create_res",
736     [0x40012] = "destroy_res",
737     [0x50001] = "set_region",
738     [0x50002] = "unset_region",
739     [0x60001] = "change_state"
740 }
741
742 function command_name(command)
743     local name = command_names[command]
744     if name then return name end
745     return "<unknown " .. tostring(command) .. ">"
746 end
747
748 input_layer = {
749    [3] = true, -- input
750    [4] = true, -- touch
751    [5] = true  -- cursor
752 }
753
754 -- some day this should be merged with wmgr.layers
755 ico_layer_type = {
756    [1] = 0x1000, -- background
757    [2] = 0x2000, -- application
758    [3] = 0x4000, -- input
759    [4] = 0xa000, -- touch
760    [5] = 0xb000, -- cursor
761    [6] = 0xc000, -- startup
762    [7] = 0x3000  -- fullscreen
763 }
764
765 resmgr = resource_manager {
766   screen_event_handler = function(self, ev)
767                              local event = ev.event
768                              local surface = ev.surface
769
770                              if event == "init" then
771                                  if verbose > 0 then
772                                      print("*** init screen resource allocation -- disable all 'player'")
773                                  end
774                                  resmgr:disable_audio_by_appid("*", "player", "*", true, false)
775                              elseif event == "preallocate" then
776                                  if verbose > 0 then
777                                      print("*** preallocate screen resource "..
778                                            "for '" .. ev.appid .. "' -- enable 'player', if any")
779                                  end
780                                  resmgr:disable_audio_by_appid("*", "player", ev.appid, false, false)
781                              elseif event == "grant" then
782                                  if verbose > 0 then
783                                     print("*** make visible surface "..surface)
784                                  end
785                                  local a = animation({})
786                                  local r = m:JSON({surface = surface,
787                                                    visible = 1,
788                                                    raise   = 1})
789                                  wmgr:window_request(r,a,0)
790                              elseif event == "revoke" then
791                                  if verbose > 0 then
792                                     print("*** hide surface "..surface)
793                                  end
794                                  local a = animation({})
795                                  local r = m:JSON({surface = ev.surface,
796                                                    visible = 0})
797                                  wmgr:window_request(r,a,0)
798
799                              elseif event == "create" then
800
801                                 if verbose > 0 then
802                                     print("*** screen resource event: " ..
803                                           tostring(ev))
804                                 end
805
806                                 local regulation = mdb.select.select_driving_mode.single_value
807
808                                 if regulation == 1 then
809
810                                     local blacklisted = false
811
812                                     -- applications which have their category set to "entertainment"
813                                     -- or "undefined" are blacklisted, meaning they should be regulated
814
815                                     for i,v in pairs(ft(mdb.select.undefined_applications)) do
816                                         if v.appid == ev.appid then
817                                             if verbose > 0 then
818                                                 print(ev.appid .. " was blacklisted (undefined)")
819                                             end
820                                             blacklisted = true
821                                             break
822                                         end
823                                     end
824
825                                     if not blacklisted then
826                                         for i,v in pairs(ft(mdb.select.entertainment_applications)) do
827                                             if v.appid == ev.appid then
828                                                 if verbose > 0 then
829                                                     print(ev.appid .. " was blacklisted (entertainment)")
830                                                 end
831                                                 blacklisted = true
832                                                 break
833                                             end
834                                         end
835                                     end
836
837                                     -- our local application config, which takes precedence
838                                     local conf = getApplication(ev.appid)
839
840                                     -- disable only non-whitelisted applications
841                                     if not conf or conf.resource_class == "player" then
842                                         if blacklisted then
843                                             if verbose > 0 then
844                                                 print("disabling screen for " .. ev.appid)
845                                             end
846                                             resmgr:disable_screen_by_appid("*", "*", ev.appid, true, true)
847                                         end
848                                     end
849                                 end
850
851                              elseif event == "destroy" then
852                                if verbose > 0 then
853                                     print("*** screen resource event: " ..
854                                           tostring(ev))
855                                  end
856                              else
857                                  if verbose > 0 then
858                                     print("*** screen resource event: " ..
859                                           tostring(ev))
860                                  end
861                              end
862                          end,
863   audio_event_handler = function(self, ev)
864                              local event = ev.event
865                              local appid = ev.appid
866                              local audioid = ev.audioid
867
868                              if event == "grant" then
869                                  if verbose > 0 then
870                                     print("*** grant audio to "..appid..
871                                           " ("..audioid..") in '" ..
872                                           ev.zone .. "' zone")
873                                  end
874                              elseif event == "revoke" then
875                                  if verbose > 0 then
876                                     print("*** revoke audio from "..appid..
877                                           " ("..audioid..") in '" ..
878                                           ev.zone .. "' zone")
879                                  end
880                              else
881                                  if verbose > 0 then
882                                     print("*** audio resource event: " ..
883                                           tostring(ev))
884                                  end
885                              end
886                         end
887 }
888
889 resclnt = resource_client {}
890
891 wmgr = window_manager {
892   geometry = function(self, w,h, v)
893                   if type(v) == "function" then
894                       return v(w,h)
895                   end
896                   return v
897              end,
898
899   application = function(self, appid)
900                      if appid then
901                          local app = application_lookup(appid)
902                          if not app then
903                              app = application_lookup("default")
904                          end
905                          return app
906                      end
907                      return { privileges = {screen="none", audio="none"} }
908                 end,
909
910   output_order = { 1, 0 },
911
912   outputs = { { name  = "Mid",
913                 id    = 0,
914                 zone  = "driver",
915                 areas = { Full = {
916                               id     = 20,
917                               pos_x  = 0,
918                               pos_y  = 0,
919                               width  = function(w,h) return w end,
920                               height = function(w,h) return h end
921                           },
922                           Left = {
923                               id     = 21,
924                               pos_x  = 0,
925                               pos_y  = 0,
926                               width  = 320,
927                               height = function(w,h) return h end
928                           },
929                           Right = {
930                               id     = 22,
931                               pos_x  = function(w,h) return w-320 end,
932                               pos_y  = 0,
933                               width  = 320,
934                               height = function(w,h) return h end
935                           }
936                         }
937                },
938                { name  = "Center",
939                  id    = 1,
940                  zone  = "driver",
941                  areas = { Status = {
942                               id     = 0,
943                               pos_x  = 0,
944                               pos_y  = 0,
945                               width  = function(w,h) return w end,
946                               height = 64
947                            },
948                            Full = {
949                               id     = 1,
950                               pos_x  = 0,
951                               pos_y  = 64,
952                               width  = function(w,h) return w end,
953                               height = function(w,h) return h-64-128 end
954                            },
955                            Upper = {
956                               id     = 2,
957                               pos_x  = 0,
958                               pos_y  = 64,
959                               width  = function(w,h) return w end,
960                               height = function(w,h) return (h-64-128)/2 end
961                            },
962                            Lower = {
963                               id     = 3,
964                               pos_x  = 0,
965                               pos_y  = function(w,h) return (h-64-128)/2+64 end,
966                               width  = function(w,h) return w end,
967                               height = function(w,h) return (h-64-128)/2 end
968                            },
969                            UpperLeft = {
970                               id     = 4,
971                               pos_x  = 0,
972                               pos_y  = 64,
973                               width  = function(w,h) return w/2 end,
974                               height = function(w,h) return (h-64-128)/2 end
975                            },
976                            UpperRight = {
977                               id     = 5,
978                               pos_x  = function(w,h) return w/2 end,
979                               pos_y  = 64,
980                               width  = function(w,h) return w/2 end,
981                               height = function(w,h) return (h-64-128)/2 end
982                            },
983                            LowerLeft = {
984                               id     = 6,
985                               pos_x  = 0,
986                               pos_y  = function(w,h) return (h-64-128/2)+64 end,
987                               width  = function(w,h) return w/2 end,
988                               height = function(w,h) return (h-64-128)/2 end
989                            },
990                            LowerRight = {
991                               id     = 7,
992                               pos_x  = function(w,h) return w/2 end,
993                               pos_y  = function(w,h) return (h-64-128/2)+64 end,
994                               width  = function(w,h) return w/2 end,
995                               height = function(w,h) return (h-64-128)/2 end
996                            },
997                            SysApp = {
998                               id     = 8,
999                               pos_x  = 0,
1000                               pos_y  = 64,
1001                               width  = function(w,h) return w end,
1002                               height = function(w,h) return h-64-128 end
1003                            },
1004                            ["SysApp.Left"] = {
1005                               id     = 9,
1006                               pos_x  = 0,
1007                               pos_y  = 64,
1008                               width  = function(w,h) return w/2-181 end,
1009                               height = function(w,h) return h-64-128 end
1010                            },
1011                            ["SysApp.Right"] = {
1012                               id     = 10,
1013                               pos_x  = function(w,h) return w/2+181 end,
1014                               pos_y  = 64,
1015                               width  = function(w,h) return w/2-181 end,
1016                               height = function(w,h) return h-64-128 end
1017                            },
1018                            Control = {
1019                               id     = 11,
1020                               pos_x  = 0,
1021                               pos_y  = function(w,h) return h-128 end,
1022                               width  = function(w,h) return w end,
1023                               height = 128
1024                            },
1025                         }
1026               }
1027   },
1028   layers = { {      0, "Background"   , 1 },
1029              {      1, "Application"  , 2 },
1030              {      2, "Softkeyboard" , 4 },
1031              {      3, "HomeScreen"   , 2 },
1032              {      4, "ControlBar"   , 2 },
1033              {      5, "InterruptApp" , 2 },
1034              {      6, "OnScreen"     , 2 },
1035              {    101, "Input"        , 3 },
1036              {    102, "Cursor"       , 5 },
1037              {    103, "Startup"      , 6 },
1038              { 0x1000, "Background"   , 1 },
1039              { 0x2000, "Normal"       , 2 },
1040              { 0x3000, "Fullscreen"   , 7 },
1041              { 0x4000, "InputPanel"   , 3 },
1042              { 0xA000, "Touch"        , 4 },
1043              { 0xB000, "Cursor"       , 5 },
1044              { 0xC000, "Startup"      , 6 }
1045   },
1046
1047
1048   manager_update = function(self, oper)
1049                        if verbose > 0 then
1050                            print("### <== WINDOW MANAGER UPDATE:" ..
1051                                  window_manager_operation_name(oper))
1052                        end
1053                        if oper == 1 then
1054                            local wumask = window_mask { raise   = true,
1055                                                         visible = true,
1056                                                         active  = true }
1057                            local wrmask = window_mask { active  = true }
1058                            local lumask = layer_mask  { visible = true }
1059                            local lrmask = layer_mask  { visible = true }
1060                            local req = m:JSON({
1061                                passthrough_window_update  = wumask:tointeger(),
1062                                passthrough_window_request = wrmask:tointeger(),
1063                                passthrough_layer_update   = lumask:tointeger(),
1064                                passthrough_layer_request  = lrmask:tointeger()
1065                            })
1066                            self:manager_request(req)
1067                        end
1068                    end,
1069
1070   window_update = function(self, oper, win, mask)
1071                       if verbose > 0 then
1072                           print("### <== WINDOW UPDATE oper:" ..
1073                                 window_operation_name(oper) ..
1074                                 " mask: " .. tostring(mask))
1075                           if verbose > 1 then
1076                               print(win)
1077                           end
1078                       end
1079
1080                       local arg = m:JSON({ surface = win.surface,
1081                                            winname = win.name,
1082                       })
1083                       local command = 0
1084
1085                       if oper == 1 then -- create
1086                            local layertype = win.layertype
1087                            if layertype and input_layer[layertype] then
1088                                if verbose > 0 then
1089                                    print("ignoring input panel creation")
1090                                end
1091                                return
1092                            end
1093                            command     = 0x10001
1094                       elseif oper == 2 then -- destroy
1095                            command     = 0x10002
1096                       elseif oper == 3 then  -- namechange
1097                            command     = 0x10009
1098                       elseif oper == 4 or oper == 5 then --visible or configure
1099                            local icolayer = ico_layer_type[win.layertype]
1100                            command     = 0x10008
1101                            arg.zone    = win.area
1102                            arg.node    = win.node
1103                            if icolayer then
1104                                arg.layertype = icolayer
1105                            end
1106                            arg.layer   = win.layer
1107                            arg.pos_x   = win.pos_x
1108                            arg.pos_y   = win.pos_y
1109                            arg.width   = win.width
1110                            arg.height  = win.height
1111                            arg.raise   = win.raise
1112                            arg.visible = win.visible
1113                            arg.active  = win.active
1114                       elseif oper == 6 then -- active
1115                            command     = 0x10006
1116                            arg.active  = win.active
1117                       elseif oper == 7 then -- map
1118                            local map = win.map
1119                            if not map then
1120                                return
1121                            end
1122                            if win.mapped == 0 then
1123                                command = 0x10012
1124                            else
1125                                command = 0x10011
1126                            end
1127                            arg.attr = map.type
1128                            arg.name = map.target
1129                            arg.width = map.width
1130                            arg.height = map.height
1131                            arg.stride = map.stride
1132                            arg.format = map.format
1133                       else
1134                            if verbose > 0 then
1135                                print("### nothing to do")
1136                            end
1137                            return
1138                       end
1139
1140                       local msg = m:JSON({ command = command,
1141                                            appid   = win.appid,
1142                                            pid     = win.pid,
1143                                            arg     = arg
1144                       })
1145                       if verbose > 0 then
1146                           print("### <== sending " ..
1147                                 command_name(msg.command) ..
1148                                 " window message to '" .. win.name .. "'")
1149                           if verbose > 1 then
1150                               print(msg)
1151                           end
1152                       end
1153                       sc:send_message(homescreen, msg)
1154
1155                       if oper == 1 then -- create
1156                           local i = input_layer[win.layertype]
1157                           local p = self:application(win.appid)
1158                           local s = p.privileges.screen
1159
1160                           if s == "system" then
1161                               local a = animation({})
1162                               local r = m:JSON({surface = win.surface,
1163                                                 visible = 1,
1164                                                 raise   = 1})
1165                               self:window_request(r,a,0)
1166                           else
1167                               if i then
1168                                   if verbose > 0 then
1169                                       print("do not make resource for " ..
1170                                             "input window")
1171                                   end
1172                               else
1173                                   resclnt:resource_set_create("screen",
1174                                                                "driver",
1175                                                                win.appid,
1176                                                                win.surface)
1177                                   special_screen_sets[win.surface] = true
1178                               end
1179                           end
1180                       elseif oper == 2 then -- destroy
1181                           resclnt:resource_set_destroy("screen", win.surface)
1182                           special_screen_sets[win.surface] = nil
1183                       elseif oper == 6 then -- active
1184                           if win.active then
1185                               local i = input_layer[win.layertype]
1186                               local p = self:application(win.appid)
1187                               local s = p.privileges.screen
1188                               local surface = win.surface
1189                               if not i and s ~= "system" then
1190                                  resclnt:resource_set_acquire("screen",surface)
1191                                  resmgr:window_raise(win.appid, surface, 1)
1192                               end
1193                           end
1194                       end
1195                   end,
1196
1197   layer_update = function(self, oper, layer, mask)
1198                       if verbose > 0 then
1199                           print("### LAYER UPDATE:" ..
1200                                 layer_operation_name(oper) ..
1201                                 " mask: " .. tostring(mask))
1202                           if verbose > 1 then
1203                               print(layer)
1204                           end
1205                       end
1206                       if oper == 3 then -- visible
1207                          local command = 0x10022
1208                          local msg = m:JSON({
1209                                          command = command,
1210                                          appid = "",
1211                                          arg = m:JSON({layer = layer.id,
1212                                                        visible = layer.visible
1213                                          })
1214                                 })
1215                          if verbose > 0 then
1216                             print("### <== sending "..command_name(command)..
1217                                   " layer message")
1218                             if verbose > 1 then
1219                                 print(msg)
1220                             end
1221                          end
1222                          sc:send_message(homescreen, msg)
1223                       else
1224                            if verbose > 0 then
1225                                print("### nothing to do")
1226                            end
1227                       end
1228                  end,
1229
1230   output_update = function(self, oper, out, mask)
1231                       local idx = out.index
1232                       local defidx = self.output_order[idx+1]
1233                       if verbose > 0 then
1234                           print("### OUTPUT UPDATE:" .. oper ..
1235                                 " mask: "..tostring(mask))
1236                       end
1237                       if not defidx then
1238                           return
1239                       end
1240                       print(out)
1241                       local outdef = self.outputs[defidx+1]
1242                       if (oper == 1) then -- create
1243                           if outdef then
1244                               self:output_request(m:JSON({index = idx,
1245                                                           id    = outdef.id,
1246                                                           name  = outdef.name
1247                                                           }))
1248                           end
1249                       elseif (oper == 5) then -- done
1250                           local ads = outdef.areas
1251                           local on = outdef.name
1252                           if ads then
1253                               for name,ad in pairs(ads) do
1254                                   local can = wmgr:canonical_name(on.."."..name)
1255                                   local a = m:JSON({name   = name,
1256                                                     output = out.index})
1257                                   for fld,val in pairs(ad) do
1258                                       a[fld] = self:geometry(out.width,
1259                                                              out.height,
1260                                                              val)
1261                                    end
1262                                    self:area_create(a)
1263                                    resmgr:area_create(area[can], outdef.zone)
1264                               end
1265                           end
1266                       end
1267                   end
1268 }
1269
1270
1271 imgr = input_manager {
1272   inputs = {{ name = "G27 Racing Wheel",
1273               id = 0,
1274               switch = { [2] = {appid="org.tizen.ico.app-soundsample"      },
1275                          [3] = {appid="org.tizen.ico.homescreen", keycode=1},
1276                          [4] = {appid="org.tizen.ico.app-soundsample"      },
1277                          [5] = {appid="org.tizen.ico.homescreen", keycode=2}
1278              }}
1279   },
1280
1281   manager_update = function(self, oper)
1282                        if verbose > 0 then
1283                            print("### <== INPUT MANAGER UPDATE:" ..
1284                                  input_manager_operation_name(oper))
1285                        end
1286                    end,
1287
1288   input_update = function(self, oper, inp, mask)
1289                      if verbose > 0 then
1290                          print("### INPUT UPDATE:" ..
1291                                 input_operation_name(oper) ..
1292                                 " mask: " .. tostring(mask))
1293                           if verbose > 1 then
1294                               print(inp)
1295                           end
1296                       end
1297                  end,
1298   code_update  = function(self, oper, code, mask)
1299                      if verbose > 0 then
1300                          print("### CODE UPDATE: mask: " .. tostring(mask))
1301                          if verbose > 1 then
1302                              print(code)
1303                          end
1304                      end
1305                      local msg = m:JSON({ command = 1,
1306                                           appid = "org.tizen.ico.homescreen",
1307                                           arg = m:JSON({ device = code.device,
1308                                                          time = code.time,
1309                                                          input = code.input,
1310                                                          code = code.id,
1311                                                          state = code.state
1312                                            })
1313                      })
1314                      if verbose > 0 then
1315                          print("### <== sending " ..
1316                                command_name(msg.command) ..
1317                                " input message")
1318                          if verbose > 1 then
1319                              print(msg)
1320                          end
1321                      end
1322                      sc:send_message(homescreen, msg)
1323                  end
1324 }
1325
1326 sc = m:get_system_controller()
1327
1328 -- resource sets
1329 sets = {}
1330
1331 -- special screen resource sets
1332 -- TODO: just rewrite screen resource handling to use regular resource API
1333
1334 special_screen_sets = {}
1335
1336 -- user manager
1337 um = m:UserManager()
1338
1339 connected = false
1340 homescreen = ""
1341 onscreen = ""
1342
1343 -- these shoud be before wmgr:connect() is called
1344 if verbose > 0 then
1345    print("====== creating applications ======")
1346 end
1347 application {
1348     appid          = "default",
1349     area           = "Center.Full",
1350     privileges     = { screen = "none", audio = "none" },
1351     resource_class = "player",
1352     screen_priority = 0
1353 }
1354
1355 application {
1356     appid           = "weston",
1357     area            = "Center.Full",
1358     privileges      = { screen = "system", audio = "none" },
1359     resource_class  = "implicit",
1360     screen_priority = 30
1361 }
1362
1363 application {
1364     appid           = "org.tizen.ico.homescreen",
1365     area            = "Center.Full",
1366     windows         = { {'ico_hs_controlbarwindow', 'Center.Control'} },
1367     privileges      = { screen = "system", audio = "system" },
1368     resource_class  = "player",
1369     screen_priority = 20
1370 }
1371
1372 application {
1373     appid           = "org.tizen.ico.statusbar",
1374     area            = "Center.Status",
1375     privileges      = { screen = "system", audio = "none" },
1376     resource_class  = "player",
1377     screen_priority = 20
1378 }
1379
1380 application {
1381     appid           = "org.tizen.ico.onscreen",
1382     area            = "Center.Full",
1383     privileges      = { screen = "system", audio = "system" },
1384     resource_class  = "player",
1385     screen_priority = 20
1386 }
1387
1388 application {
1389     appid           = "org.tizen.ico.login",
1390     area            = "Center.Full",
1391     privileges      = { screen = "system", audio = "system" },
1392     resource_class  = "player",
1393     screen_priority = 20
1394 }
1395
1396 application {
1397     appid           = "org.tizen.ico.camera_left",
1398     area            = "Center.SysApp.Left",
1399     privileges      = { screen = "system", audio = "none" },
1400     requisites      = { screen = "blinker_left", audio = "none" },
1401     resource_class  = "player",
1402     screen_priority = 30
1403 }
1404
1405 application {
1406     appid           = "org.tizen.ico.camera_right",
1407     area            = "Center.SysApp.Right",
1408     privileges      = { screen = "system", audio = "none" },
1409     requisites      = { screen = "blinker_right", audio = "none" },
1410     resource_class  = "player",
1411     screen_priority = 30
1412 }
1413
1414 application {
1415     appid           = "net.zmap.navi",
1416     area            = "Center.Full",
1417     privileges      = { screen = "none", audio = "none" },
1418     resource_class  = "navigator",
1419     screen_priority = 30
1420 }
1421
1422 application {
1423     appid           = "GV3ySIINq7.GhostCluster",
1424     area            = "Mid.Full",
1425     privileges      = { screen = "none", audio = "none" },
1426     resource_class  = "system",
1427     screen_priority = 30
1428 }
1429
1430 if sc then
1431     sc.client_handler = function (self, cid, msg)
1432         local command = msg.command
1433         local appid = msg.appid
1434         if verbose > 0 then
1435             print('### ==> client handler:')
1436             if verbose > 1 then
1437                 print(msg)
1438             end
1439         end
1440
1441         -- known commands: 1 for SEND_APPID, synthetic command 0xFFFF for
1442         -- disconnection
1443
1444         if command == 0xFFFF then
1445             if verbose > 1 then
1446                 print('client ' .. cid .. ' (' .. msg.appid .. ') disconnected')
1447             end
1448             if msg.appid == homescreen then
1449                 homescreen = ""
1450                 for i,v in pairs(special_screen_sets) do
1451                     resclnt:resource_set_destroy("screen", i)
1452                     special_screen_sets[i] = nil
1453                 end
1454             end
1455             return
1456         end
1457
1458         -- handle the connection to weston
1459
1460         if appid then
1461             if appid == "org.tizen.ico.homescreen" then
1462                 print('Setting homescreen='..appid)
1463                 homescreen = appid
1464                 if command and command == 1 then
1465                     send_driving_mode_to_home_screen()
1466                     send_night_mode_to_home_screen()
1467                 end
1468             elseif appid == "org.tizen.ico.onscreen" then
1469                 onscreen = appid
1470             end
1471
1472             if not connected and appid == "org.tizen.ico.homescreen" then
1473                 print('Trying to connect to weston...')
1474                 connected = wmgr:connect()
1475             end
1476         end
1477     end
1478
1479     sc.generic_handler = function (self, cid, msg)
1480         if verbose > 0 then
1481             print('### ==> generic handler:')
1482             if verbose > 1 then
1483                print(msg)
1484             end
1485         end
1486     end
1487
1488     sc.window_handler = function (self, cid, msg)
1489         if verbose > 0 then
1490             print('### ==> received ' ..
1491                    command_name(msg.command) .. ' message')
1492             if verbose > 1 then
1493                 print(tostring(msg))
1494             end
1495         end
1496
1497         local a = animation({})
1498         local nores = false
1499         if msg.command == 0x10003 then       -- ico SHOW command
1500             local raise_mask = 0x01000000
1501             local lower_mask = 0x02000000
1502             local nores_mask = 0x40000000
1503             local time_mask  = 0x00ffffff
1504             msg.arg.visible = 1
1505             if msg.arg then
1506                 local time = 200
1507                 if  msg.arg.anim_time then
1508                     local t = msg.arg.anim_time
1509                     time = m:AND(t, time_mask)
1510                     nores = not m:AND(t, nores_mask)
1511                     if m:AND(t, raise_mask) then
1512                         msg.arg.raise = 1
1513                     elseif m:AND(t, lower_mask) then
1514                         msg.arg.raise = 0
1515                     end
1516                 end
1517                 if msg.arg.anim_name then
1518                     a.show = { msg.arg.anim_name, time }
1519                     print('time: ' .. tostring(a.show[2]))
1520                 end
1521             end
1522             if not nores then
1523                 local p = wmgr:application(msg.appid)
1524                 local s = p.privileges.screen
1525                 if s == "system" then
1526                     nores = true
1527                     if not msg.arg.raise then
1528                         msg.arg.raise = 1
1529                     end
1530                 end
1531             end
1532             if verbose > 2 then
1533                 print('### ==> SHOW')
1534                 print(tostring(msg.arg))
1535             end
1536             if nores then
1537                 wmgr:window_request(msg.arg, a, 0)
1538             else
1539                 local surface = msg.arg.surface
1540                 resclnt:resource_set_acquire("screen", surface)
1541                 resmgr:window_raise(msg.appid, surface, 1)
1542             end
1543         elseif msg.command == 0x10004 then   -- ico HIDE command
1544             local raise_mask = 0x01000000
1545             local lower_mask = 0x02000000
1546             local nores_mask = 0x40000000
1547             local time_mask  = 0x00ffffff
1548             msg.arg.visible = 0
1549             if msg.arg then
1550                 local time = 200
1551                 if msg.arg.anim_time then
1552                     local t = msg.arg.anim_time
1553                     time = m:AND(t, time_mask)
1554                     nores = not m:AND(t, nores_mask)
1555                 end
1556                 if msg.arg.anim_name then
1557                     a.hide = { msg.arg.anim_name, time }
1558                     print('hide animation time: ' .. tostring(a.hide[2]))
1559                 end
1560             end
1561             if not nores then
1562                 local p = wmgr:application(msg.appid)
1563                 local s = p.privileges.screen
1564                 if s == "system" then
1565                     nores = true
1566                     msg.arg.raise = 0
1567                 end
1568             end
1569             if verbose > 2 then
1570                 print('### ==> HIDE REQUEST')
1571                 print(tostring(msg.arg))
1572             end
1573             if nores then
1574                 wmgr:window_request(msg.arg, a, 0)
1575             else
1576                 resmgr:window_raise(msg.appid, msg.arg.surface, -1)
1577             end
1578         elseif msg.command == 0x10005 then   -- ico MOVE
1579             if verbose > 2 then
1580                 print('### ==> MOVE REQUEST')
1581                 print(tostring(msg.arg))
1582             end
1583             if msg.arg.zone then
1584                 msg.arg.area = msg.arg.zone
1585             end
1586             wmgr:window_request(msg.arg, a, 0)
1587             -- TODO: handle if area changed
1588         elseif msg.command == 0x10006 then   -- ico ACTIVE
1589             if not msg.arg.active then
1590                 msg.arg.active = 3 -- pointer + keyboard
1591             end
1592             if verbose > 2 then
1593                 print('### ==> ACTIVE REQUEST')
1594                 print(tostring(msg.arg))
1595             end
1596             wmgr:window_request(msg.arg, a, 0)
1597         elseif msg.command == 0x10007 then   -- ico CHANGE_LAYER
1598             if verbose > 2 then
1599                 print('### ==> CHANGE_LAYER REQUEST')
1600                 print(tostring(msg.arg))
1601             end
1602             --[[
1603             if msg.arg.layer ~= 4 or msg.arg.layer ~= 5 then
1604                 print("do not change layer for other than cursor or touch")
1605                 return
1606             end
1607             --]]
1608             wmgr:window_request(msg.arg, a, 0)
1609         elseif msg.command == 0x10011 then   -- ico MAP_THUMB
1610             local framerate = msg.arg.framerate
1611             if not framerate or framerate < 0 then
1612                 framerate = 0
1613             end
1614             msg.arg.mapped = 1
1615             if verbose > 2 then
1616                 print('### ==> MAP_THUMB REQUEST')
1617                 print(msg.arg)
1618                 print('framerate: '..framerate)
1619             end
1620             wmgr:window_request(msg.arg, a, framerate)
1621         elseif msg.command == 0x10012 then   -- ico UNMAP_THUMB
1622             msg.arg.mapped = 0
1623             if verbose > 2 then
1624                 print('### ==> UNMAP_THUMB REQUEST')
1625                 print(msg.arg)
1626             end
1627             wmgr:window_request(msg.arg, a, 0)
1628         elseif msg.command == 0x10020 then   -- ico SHOW_LAYER command
1629             msg.arg.visible = 1
1630             if verbose > 2 then
1631                 print('### ==> SHOW_LAYER REQUEST')
1632                 print(msg.arg)
1633             end
1634             wmgr:layer_request(msg.arg)
1635         elseif msg.command == 0x10021 then   -- ico HIDE_LAYER command
1636             msg.arg.visible = 0
1637             if verbose > 2 then
1638                 print('### ==> HIDE_LAYER REQUEST')
1639                 print(msg.arg)
1640             end
1641             wmgr:layer_request(msg.arg)
1642         end
1643     end
1644
1645     sc.input_handler = function (self, cid, msg)
1646         if verbose > 0 then
1647             print('### ==> input handler: ' .. command_name(msg.command))
1648             if verbose > 1 then
1649                 print(msg)
1650             end
1651         end
1652         if msg.command == 0x20001 then -- add_input
1653             msg.arg.appid = msg.appid
1654             if verbose > 2 then
1655                 print('### ==> ADD_INPUT REQUEST')
1656                 print(tostring(msg.arg))
1657             end
1658             imgr:input_request(msg.arg)
1659         elseif msg.command == 0x20002 then -- del_input
1660             msg.arg.appid = ''
1661             if verbose > 2 then
1662                 print('### ==> DEL_INPUT REQUEST')
1663                 print(tostring(msg.arg))
1664             end
1665             imgr:input_request(msg.arg)
1666         elseif msg.command == 0x20003 then -- send_input
1667         end
1668     end
1669
1670     sc.user_handler = function (self, cid, msg)
1671         if verbose > 0 then
1672             print('### ==> user handler: ' .. command_name(msg.command))
1673             if verbose > 1 then
1674                 print(msg)
1675             end
1676         end
1677
1678         if not um then
1679             print("User Manager not initialized")
1680             return
1681         end
1682
1683         if msg.command == 0x00030001 then -- MSG_CMD_CHANGE_USER
1684             print("command CHANGE_USER")
1685             if not msg.arg then
1686                 print("invalid message")
1687                 return
1688             end
1689
1690             username = msg.arg.user
1691             passwd = msg.arg.pass
1692
1693             if not username then
1694                 username = ""
1695             end
1696
1697             if not passwd then
1698                 passwd = ""
1699             end
1700
1701             success = um:changeUser(username, passwd)
1702
1703             if not success then
1704                 reply = m.JSON({
1705                     appid = msg.appid,
1706                     command = cmd
1707                 })
1708                 if sc:send_message(msg.appid, reply) then
1709                     print('*** sent authentication failed message')
1710                 else
1711                     print('*** failed to send authentication failed message')
1712                 end
1713             end
1714
1715         elseif msg.command == 0x00030002 then -- MSG_CMD_GET_USERLIST
1716             print("command GET_USERLIST")
1717             if not msg.appid then
1718                 print("invalid message")
1719                 return
1720             end
1721
1722             users, currentUser = um:getUserList()
1723
1724             if not users then
1725                 print("failed to get user list")
1726                 return
1727             end
1728
1729             nUsers = 0
1730
1731             for i,v in pairs(users) do
1732                 nUsers = nUsers + 1
1733             end
1734
1735             if not currentUser then
1736                 currentUser = ""
1737             end
1738
1739             if verbose > 1 then
1740                 print("current user: " .. currentUser)
1741                 print("user list:")
1742                 for i,v in pairs(users) do
1743                     print(v)
1744                 end
1745             end
1746
1747             reply = m.JSON({
1748                 appid = msg.appid,
1749                 command = cmd,
1750                 arg = m.JSON({
1751                     user_num = nUsers,
1752                     user_list = users,
1753                     user_login = currentUser
1754                 })
1755             })
1756
1757             if verbose > 1 then
1758                 print("### <== GetUserList reply: " .. tostring(reply))
1759             end
1760
1761             if sc:send_message(msg.appid, reply) then
1762                 print('*** reply OK')
1763             else
1764                 print('*** reply FAILED')
1765             end
1766
1767         elseif msg.command == 0x00030003 then -- MSG_CMD_GET_LASTINFO
1768             print("command GET_LASTINFO")
1769             if not msg.appid then
1770                 print("invalid message")
1771                 return
1772             end
1773
1774             lastInfo = um:getLastInfo(msg.appid)
1775
1776             if not lastInfo then
1777                 print("failed to get last info for app" .. msg.appid)
1778                 return
1779             end
1780
1781             reply = m.JSON({
1782                 appid = msg.appid,
1783                 command = cmd,
1784                 arg = m.JSON({
1785                     lastinfo = lastinfo
1786                 })
1787             })
1788
1789             if sc:send_message(msg.appid, reply) then
1790                 print('*** reply OK')
1791             else
1792                 print('*** reply FAILED')
1793             end
1794
1795         elseif msg.command == 0x00030004 then -- MSG_CMD_SET_LASTINFO
1796             print("command SET_LASTINFO")
1797             if not msg.arg or not msg.appid then
1798                 print("invalid message")
1799                 return
1800             end
1801
1802             lastInfo = um:setLastInfo(msg.appid, msg.arg.lastinfo)
1803         end
1804     end
1805
1806     sc.resource_handler = function (self, cid, msg)
1807         if verbose > 0 then
1808             print('### ==> resource handler: ' .. command_name(msg.command))
1809             if verbose > 1 then
1810                 print(msg)
1811             end
1812         end
1813
1814         createResourceSet = function (ctl, client, msg)
1815             cb = function(rset, data)
1816                 print("> resource callback")
1817
1818                 -- type is either basic (0) or interrupt (1)
1819                 requestType = 0
1820                 if msg.res.type then
1821                     requestType = msg.res.type
1822                 end
1823
1824                 if rset.acquired then
1825                     cmd = 0x00040001 -- acquire
1826                 else
1827                     cmd = 0x00040002 -- release
1828                 end
1829
1830                 reply = m.JSON({
1831                         appid = data.client,
1832                         command = cmd,
1833                         res = {
1834                             type = requestType
1835                         }
1836                     })
1837
1838                 if rset.resources.audio_playback then
1839                     reply.res.sound = {
1840                         zone = "driver",
1841                         name = msg.appid,
1842                         adjust = 0,
1843                         -- id = "0"
1844                     }
1845                 end
1846
1847                 if rset.resources.display then
1848                     reply.res.window = {
1849                         zone = "driver",
1850                         name = msg.appid,
1851                         -- id = "0"
1852                     }
1853                 end
1854
1855                 if rset.resources.input then
1856                     reply.res.input = {
1857                         name = msg.appid,
1858                         event = 0
1859                     }
1860                 end
1861                 print("sending message to client: " .. data.client)
1862
1863                 if sc:send_message(data.client, reply) then
1864                     print('*** reply OK')
1865                 else
1866                     print('*** reply FAILED')
1867                 end
1868             end
1869
1870             rset = m:ResourceSet({
1871                     application_class = "player",
1872                     zone = "driver", -- msg.zone ("full")
1873                     callback = cb
1874                 })
1875
1876             rset.data = {
1877                 cid = cid,
1878                 ctl = ctl
1879             }
1880
1881             if msg.res.sound then
1882                 rset:addResource({
1883                         resource_name = "audio_playback"
1884                     })
1885                 rset.resources.audio_playback.attributes.pid = tostring(msg.pid)
1886                 rset.resources.audio_playback.attributes.appid = msg.appid
1887                 print("sound name: " .. msg.res.sound.name)
1888                 print("sound zone:" .. msg.res.sound.zone)
1889                 print("sound adjust: " .. tostring(msg.res.sound.adjust))
1890                 if msg.res.sound.id then
1891                     print("sound id: " .. msg.res.sound.id)
1892                 end
1893             end
1894
1895             if msg.res.input then
1896                 rset:addResource({
1897                         resource_name = "input"
1898                     })
1899                 rset.resources.input.attributes.pid = tostring(msg.pid)
1900                 rset.resources.input.attributes.appid = msg.appid
1901                 print("input name: " .. msg.res.sound.name)
1902                 print("input event:" .. tostring(msg.res.input.event))
1903             end
1904
1905             if msg.res.window then
1906                 rset:addResource({
1907                         resource_name = "display"
1908                     })
1909                 rset.resources.display.attributes.pid = tostring(msg.pid)
1910                 rset.resources.display.attributes.appid = msg.appid
1911                 print("display name: " .. msg.res.display.name)
1912                 print("display zone:" .. msg.res.display.zone)
1913                 if msg.res.display.id then
1914                     print("display id: " .. msg.res.display.id)
1915                 end
1916             end
1917
1918             return rset
1919         end
1920
1921         -- parse the message
1922
1923         -- fields common to all messages:
1924         --      msg.command
1925         --      msg.appid
1926         --      msg.pid
1927
1928         if msg.command == 0x00040011 then -- MSG_CMD_CREATE_RES
1929             print("command CREATE")
1930
1931             if not sets.cid then
1932                 sets.cid = createResourceSet(self, cid, msg)
1933             end
1934
1935         elseif msg.command == 0x00040012 then -- MSG_CMD_DESTORY_RES
1936             print("command DESTROY")
1937
1938             if sets.cid then
1939                 sets.cid:release()
1940             end
1941
1942             sets.cid = nil -- garbage collecting
1943
1944         elseif msg.command == 0x00040001 then -- MSG_CMD_ACQUIRE_RES
1945             print("command ACQUIRE")
1946
1947             if not sets.cid then
1948                 sets.cid = createResourceSet(self, cid, msg)
1949             end
1950
1951             sets.cid:acquire()
1952
1953         elseif msg.command == 0x00040002 then -- MSG_CMD_RELEASE_RES
1954             print("command RELEASE")
1955
1956             if sets.cid then
1957                 sets.cid:release()
1958             end
1959
1960         elseif msg.command == 0x00040003 then -- MSG_CMD_DEPRIVE_RES
1961             print("command DEPRIVE")
1962
1963         elseif msg.command == 0x00040004 then -- MSG_CMD_WAITING_RES
1964             print("command WAITING")
1965
1966         elseif msg.command == 0x00040005 then -- MSG_CMD_REVERT_RES
1967             print("command REVERT")
1968         end
1969     end
1970
1971     sc.inputdev_handler = function (self, cid, msg)
1972         if verbose > 0 then
1973             print('*** inputdev handler: ' .. command_name(msg.command))
1974             if verbose > 1 then
1975                 print(msg)
1976             end
1977         end
1978     end
1979 end
1980
1981 function send_driving_mode_to_home_screen()
1982     if homescreen == "" then
1983         return
1984     end
1985
1986     local driving_mode = mdb.select.select_driving_mode.single_value
1987
1988     if not driving_mode then driving_mode = 0 end
1989
1990     local reply = m:JSON({ command = 0x60001,
1991                            arg     = m:JSON({ stateid = 1,
1992                                               state   = driving_mode
1993                                      })
1994                   })
1995
1996     if verbose > 0 then
1997         print("### <== sending " .. command_name(reply.command) .. " message")
1998         if verbose > 1 then
1999             print(reply)
2000         end
2001     end
2002
2003     sc:send_message(homescreen, reply)
2004 end
2005
2006 function send_night_mode_to_home_screen()
2007     if homescreen == "" then
2008         return
2009     end
2010
2011     local night_mode = mdb.select.select_night_mode.single_value
2012
2013     if not night_mode then night_mode = 0 end
2014
2015     local reply = m:JSON({ command = 0x60001,
2016                            arg     = m:JSON({ stateid = 2,
2017                                               state   = night_mode
2018                                      })
2019                   })
2020
2021     if verbose > 0 then
2022         print("### <== sending " .. command_name(reply.command) .. " message")
2023         if verbose > 1 then
2024             print(reply)
2025         end
2026      end
2027
2028      sc:send_message(homescreen, reply)
2029 end
2030
2031 -- we should have 'audio_playback' defined by now
2032 m:try_load_plugin('telephony')