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