1 with_system_controller = false
7 -- try loading the various logging plugins
8 m:try_load_plugin('systemd')
9 m:try_load_plugin('dlog')
11 -- load the console plugin
12 m:try_load_plugin('console')
14 m:try_load_plugin('console.disabled', 'webconsole', {
15 address = 'wsck:127.0.0.1:3000/murphy',
16 httpdir = '/usr/share/murphy/webconsole' });
18 -- load the dbus plugin
19 if m:plugin_exists('dbus') then
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")
28 m:info("No native resource plugin found...")
31 -- load the dbus resource plugin
32 m:try_load_plugin('resource-dbus', {
34 dbus_service = "org.Murphy",
36 default_zone = "driver",
37 default_class = "implicit"
40 -- load the domain control plugin
41 if m:plugin_exists('domain-control') then
42 m:load_plugin('domain-control')
44 m:info("No domain-control plugin found...")
47 if m:plugin_exists('glib') then
50 m:info("No glib plugin found...")
53 -- load the AMB plugin
54 if m:plugin_exists('amb') then
55 m:try_load_plugin('amb')
57 if builtin.method.amb_initiate and
58 builtin.method.amb_update
63 m:info("No amb plugin found...")
66 -- load the ASM resource plugin
67 if m:plugin_exists('resource-asm') then
68 m:try_load_plugin('resource-asm', {
70 share_mmplayer = "player:AVP,mandatory,exclusive,strict",
71 ignored_argv0 = "WebProcess"
74 m:info("No audio session manager plugin found...")
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
84 -- define application classes
131 application_class { name="event" , priority=4 , modal=false, share=true , order="fifo" }
132 application_class { name="game" , priority=3 , modal=false, share=false, order="lifo" }
133 --# doesn't need to be created here, ivi-resource-manager creates it if loaded
134 --#application_class { name="basic" , priority=2 , modal=false, share=false, order="lifo" }
135 application_class { name="player" , priority=1 , modal=false, share=true , order="lifo" }
136 application_class { name="implicit" , priority=0 , modal=false, share=false, order="lifo" }
138 -- define zone attributes
140 type = {mdb.string, "common", "rw"},
141 location = {mdb.string, "anywhere", "rw"}
149 location = "front-left"
157 location = "front-right"
165 location = "back-left"
173 location = "back-right"
181 location = "back-left"
186 -- define resource classes
187 if not m:plugin_exists('ivi-resource-manager') and
188 not with_system_controller
191 name = "audio_playback",
194 role = { mdb.string, "music", "rw" },
195 pid = { mdb.string, "<unknown>", "rw" },
196 policy = { mdb.string, "relaxed", "rw" }
202 name = "audio_recording",
205 role = { mdb.string, "music" , "rw" },
206 pid = { mdb.string, "<unknown>", "rw" },
207 policy = { mdb.string, "relaxed" , "rw" }
212 name = "video_playback",
217 name = "video_recording",
221 if not m:plugin_exists('ivi-resource-manager') and
222 not with_system_controller
224 resource.method.veto = {
225 function(zone, rset, grant, owners, req_set)
231 -- test for creating selections
233 name = "audio_owner",
234 table = "audio_playback_owner",
235 columns = {"application_class"},
236 condition = "zone_name = 'driver'"
240 name = "vehicle_speed",
241 table = "amb_vehicle_speed",
243 condition = "key = 'VehicleSpeed'"
247 name = "speed2volume",
248 inputs = { speed = mdb.select.vehicle_speed, param = 9 },
249 outputs = { mdb.table { name = "speedvol",
250 index = {"zone", "device"},
251 columns = {{"zone", mdb.string, 16},
252 {"device", mdb.string, 16},
253 {"value", mdb.floating}},
258 update = function(self)
259 speed = self.inputs.speed.single_value
261 volume = (speed - 144.0) / 7.0
265 diff = volume - self.oldvolume
266 if (diff*diff > self.inputs.param) then
267 print("*** element "..self.name.." update "..volume)
268 self.oldvolume = volume
269 mdb.table.speedvol:replace({zone = "driver", device = "speakers", value = volume})
274 -- Night mode processing chain
277 name = "exterior_brightness",
278 table = "amb_exterior_brightness",
279 columns = { "value" },
280 condition = "key = 'ExteriorBrightness'"
285 inputs = { brightness = mdb.select.exterior_brightness },
289 name = "amb_nightmode",
293 { "id", mdb.unsigned },
294 { "night_mode", mdb.unsigned }
298 update = function(self)
299 -- This is a trivial function to calculate night mode. Later, we will
300 -- need a better threshold value and hysteresis to prevent oscillation.
302 brightness = self.inputs.brightness.single_value
304 if not brightness then
308 print("*** element "..self.name.." update brightness: "..brightness)
310 if brightness > 300 then
316 print("*** resulting mode: ".. mode)
318 if not (mode == self.oldmode) then
319 mdb.table.amb_nightmode:replace({ id = 0, night_mode = mode })
327 name = "select_night_mode",
328 table = "amb_nightmode",
329 columns = { "night_mode" },
336 inputs = { owner = mdb.select.select_night_mode },
337 property = "NightMode",
339 initiate = builtin.method.amb_initiate,
340 update = builtin.method.amb_update
344 -- Night mode general handlers
347 name = "nightmode_homescreen",
348 inputs = { owner = mdb.select.select_night_mode },
349 initiate = function(self)
350 -- data = mdb.select.select_night_mode.single_value
353 update = function(self)
354 data = mdb.select.select_night_mode.single_value
357 print("Night mode updated: " .. tostring(data))
361 -- tell homescreen that night mode was updated
362 sc:send_message(homescreen, m:JSON({command=0x60001,arg=m:JSON({stateid=2,state=data})}))
368 -- Driving mode processing chain
371 name = "drivingmode",
372 inputs = { speed = mdb.select.vehicle_speed },
376 name = "amb_drivingmode",
380 { "id", mdb.unsigned },
381 { "driving_mode", mdb.unsigned }
385 update = function(self)
387 speed = self.inputs.speed.single_value
399 if not (mode == self.oldmode) then
400 mdb.table.amb_drivingmode:replace({ id = 0, driving_mode = mode })
408 name = "select_driving_mode",
409 table = "amb_drivingmode",
410 columns = { "driving_mode" },
416 name = "driving_mode",
417 inputs = { owner = mdb.select.select_driving_mode },
418 property = "DrivingMode",
420 initiate = builtin.method.amb_initiate,
421 update = builtin.method.amb_update
425 -- turn signals (left, right)
429 table = "amb_turn_signal",
430 columns = { "value" },
431 condition = "key = 'TurnSignal'"
434 -- define three categories
437 name = "undefined_applications",
438 table = "aul_applications",
439 columns = { "appid" },
440 condition = "category = '<undefined>'"
444 name = "basic_applications",
445 table = "aul_applications",
446 columns = { "appid" },
447 condition = "category = 'basic'"
451 name = "entertainment_applications",
452 table = "aul_applications",
453 columns = { "appid" },
454 condition = "category = 'entertainment'"
458 -- filter the object garbage out of the tables
461 for k,v in pairs(t) do
462 if k ~= "userdata" and k ~= "new" then
470 function getApplication(appid)
473 -- find the correct local application definition
475 for k,v in pairs(ft(application)) do
476 if appid == v.appid then
485 function regulateApplications(t, regulation)
486 for k,v in pairs(ft(t)) do
488 -- iterate through the undefined and entertainment apps, see if
489 -- they have been overruled in local config
491 local conf = getApplication(v.appid)
493 if conf and conf.resource_class ~= "player" then
494 -- override, don't disable
495 resmgr:disable_screen_by_appid("*", "*", v.appid, false)
497 resmgr:disable_screen_by_appid("*", "*", v.appid, regulation == 1)
502 -- regulation (on), use "select_driving_mode"
505 name = "driving_regulation",
506 inputs = { owner = mdb.select.select_driving_mode },
507 initiate = function(self)
508 -- local data = mdb.select.select_driving_mode.single_value
511 update = function(self)
512 local data = mdb.select.select_driving_mode.single_value
515 print("Driving mode updated: " .. tostring(data))
522 -- tell homescreen that driving mode was updated
523 sc:send_message(homescreen, m:JSON({command=0x60001,arg=m:JSON({stateid=1,state=data})}))
526 -- bulk handle the applications that need requisites
527 r = requisite { driving = true }
528 resmgr:disable_screen_by_requisite("*", "*", r, data == 1)
531 regulateApplications(ft(mdb.select.entertainment_applications), data)
532 regulateApplications(ft(mdb.select.undefined_applications), data)
539 name = "regulated_app_change",
540 inputs = { undef = mdb.select.undefined_applications,
541 entertainment = mdb.select.entertainment_applications },
542 initiate = function(self)
545 update = function(self)
546 local data = mdb.select.select_driving_mode.single_value
553 print("regulated application list was changed")
556 regulateApplications(ft(mdb.select.entertainment_applications), data)
557 regulateApplications(ft(mdb.select.undefined_applications), data)
563 -- shift position (parking, reverse, other)
566 name = "gear_position",
567 table = "amb_gear_position",
568 columns = { "value" },
569 condition = "key = 'GearPosition'"
572 -- cameras (back, front, left, right)
575 name = "camera_state",
576 inputs = { winker = mdb.select.winker, gear = mdb.select.gear_position },
580 name = "target_camera_state",
584 { "id", mdb.unsigned },
585 { "front_camera", mdb.unsigned },
586 { "back_camera", mdb.unsigned },
587 { "right_camera", mdb.unsigned },
588 { "left_camera", mdb.unsigned }
592 update = function(self)
599 if self.inputs.gear == 128 then
601 elseif self.inputs.winker == 1 then
603 elseif self.inputs.winker == 2 then
607 mdb.table.target_camera_state:replace({ id = 0, front_camera = front_camera, back_camera = back_camera, right_camera = right_camera, left_camera = left_camera })
612 -- load the telephony plugin
613 m:try_load_plugin('telephony')
616 -- system controller test setup
618 if not with_system_controller then
622 m:load_plugin('system-controller')
624 window_manager_operation_names = {
629 function window_manager_operation_name(oper)
630 local name = window_manager_operation_names[oper]
631 if name then return name end
632 return "<unknown " .. tostring(oper) .. ">"
635 window_operation_names = {
644 function window_operation_name(oper)
645 local name = window_operation_names[oper]
646 if name then return name end
647 return "<unknown " .. tostring(oper) .. ">"
650 layer_operation_names = {
656 function layer_operation_name(oper)
657 local name = layer_operation_names[oper]
658 if name then return name end
659 return "<unknown " .. tostring(oper) .. ">"
662 input_manager_operation_names = {
668 function input_manager_operation_name(oper)
669 local name = input_manager_operation_names[oper]
670 if name then return name end
671 return "<unknown " .. tostring(oper) .. ">"
674 input_operation_names = {
680 function input_operation_name(oper)
681 local name = input_operation_names[oper]
682 if name then return name end
683 return "<unknown " .. tostring(oper) .. ">"
686 code_operation_names = {
692 function code_operation_name(oper)
693 local name = code_operation_names[oper]
694 if name then return name end
695 return "<unknown " .. tostring(oper) .. ">"
699 [0x00001] = "send_appid",
700 [0x10001] = "create",
701 [0x10002] = "destroy",
705 [0x10006] = "change_active",
706 [0x10007] = "change_layer",
707 [0x10008] = "change_attr",
709 [0x10011] = "map_thumb",
710 [0x10012] = "unmap_thumb",
711 [0x10020] = "show layer",
712 [0x10021] = "hide_layer",
713 [0x10022] = "change_layer_attr",
714 [0x20001] = "add_input",
715 [0x20002] = "del_input",
716 [0x20003] = "send_input",
717 [0x40001] = "acquire_res",
718 [0x40002] = "release_res",
719 [0x40003] = "deprive_res",
720 [0x40004] = "waiting_res",
721 [0x40005] = "revert_res",
722 [0x40011] = "create_res",
723 [0x40012] = "destroy_res",
724 [0x50001] = "set_region",
725 [0x50002] = "unset_region",
726 [0x60001] = "change_state"
729 function command_name(command)
730 local name = command_names[command]
731 if name then return name end
732 return "<unknown " .. tostring(command) .. ">"
741 resmgr = resource_manager {
742 screen_event_handler = function(self, ev)
743 local event = ev.event
744 local surface = ev.surface
746 if event == "grant" then
748 print("*** make visible surface "..surface)
750 local a = animation({})
751 local r = m:JSON({surface = surface,
754 wmgr:window_request(r,a,0)
755 elseif event == "revoke" then
757 print("*** hide surface "..surface)
759 local a = animation({})
760 local r = m:JSON({surface = ev.surface,
762 wmgr:window_request(r,a,0)
765 print("*** screen resource event: " ..
770 audio_event_handler = function(self, ev)
771 local event = ev.event
772 local appid = ev.appid
773 local audioid = ev.audioid
775 if event == "grant" then
776 if verbose > 0 or true then
777 print("*** grant audio to "..appid..
778 " ("..audioid..") in '" ..
781 elseif event == "revoke" then
782 if verbose > 0 or true then
783 print("*** revoke audio from "..appid..
784 " ("..audioid..") in '" ..
788 if verbose > 0 or true then
789 print("*** audio resource event: " ..
796 resclnt = resource_client {}
798 wmgr = window_manager {
799 geometry = function(self, w,h, v)
800 if type(v) == "function" then
806 application = function(self, appid)
808 local app = application_lookup(appid)
810 app = application_lookup("default")
814 return { privileges = {screen="none", audio="none"} }
817 outputs = { { name = "Center",
824 width = function(w,h) return w end,
831 width = function(w,h) return w end,
832 height = function(w,h) return h-64-128 end
838 width = function(w,h) return w end,
839 height = function(w,h) return (h-64-128)/2 end
844 pos_y = function(w,h) return (h-64-128)/2+64 end,
845 width = function(w,h) return w end,
846 height = function(w,h) return (h-64-128)/2 end
852 width = function(w,h) return w/2 end,
853 height = function(w,h) return (h-64-128)/2 end
857 pos_x = function(w,h) return w/2 end,
859 width = function(w,h) return w/2 end,
860 height = function(w,h) return (h-64-128)/2 end
865 pos_y = function(w,h) return (h-64-128/2)+64 end,
866 width = function(w,h) return w/2 end,
867 height = function(w,h) return (h-64-128)/2 end
871 pos_x = function(w,h) return w/2 end,
872 pos_y = function(w,h) return (h-64-128/2)+64 end,
873 width = function(w,h) return w/2 end,
874 height = function(w,h) return (h-64-128)/2 end
880 width = function(w,h) return w end,
881 height = function(w,h) return h-64-128 end
887 width = function(w,h) return w/2-181 end,
888 height = function(w,h) return h-64-128 end
892 pos_x = function(w,h) return w/2+181 end,
894 width = function(w,h) return w/2-181 end,
895 height = function(w,h) return h-64-128 end
905 layers = { { 0, "Background" , 1 },
906 { 1, "Application" , 2 },
907 { 2, "Softkeyboard" , 4 },
908 { 3, "HomeScreen" , 2 },
909 { 4, "ControlBar" , 2 },
910 { 5, "InterruptApp" , 2 },
911 { 6, "OnScreen" , 2 },
912 { 101, "Input" , 3 },
913 { 102, "Cursor" , 5 },
914 { 103, "Startup" , 6 },
915 { 0x1000, "Background" , 1 },
916 { 0x2000, "Normal" , 2 },
917 { 0x3000, "Fullscreen" , 2 },
918 { 0x4000, "InputPanel" , 3 },
919 { 0xA000, "Touch" , 4 },
920 { 0xB000, "Cursor" , 5 },
921 { 0xC000, "Startup" , 6 }
925 manager_update = function(self, oper)
927 print("### <== WINDOW MANAGER UPDATE:" ..
928 window_manager_operation_name(oper))
931 local umask = window_mask { raise = true,
934 local rmask = window_mask { active = true }
936 passthrough_update = umask:tointeger(),
937 passthrough_request = rmask:tointeger()
939 self:manager_request(req)
943 window_update = function(self, oper, win, mask)
945 print("### <== WINDOW UPDATE oper:" ..
946 window_operation_name(oper) ..
947 " mask: " .. tostring(mask))
953 local arg = m:JSON({ surface = win.surface,
958 if oper == 1 then -- create
959 local layertype = win.layertype
960 if layertype and input_layer[layertype] then
962 print("ignoring input panel creation")
967 elseif oper == 2 then -- destroy
969 elseif oper == 3 then -- namechange
971 elseif oper == 4 or oper == 5 then --visible or configure
975 arg.layer = win.layer
976 arg.pos_x = win.pos_x
977 arg.pos_y = win.pos_y
978 arg.width = win.width
979 arg.height = win.height
980 arg.raise = win.raise
981 arg.visible = win.visible
982 arg.active = win.active
983 elseif oper == 6 then -- active
985 arg.active = win.active
988 print("### nothing to do")
993 local msg = m:JSON({ command = command,
999 print("### <== sending " ..
1000 command_name(msg.command) ..
1001 " window message to '" .. win.name .. "'")
1006 sc:send_message(homescreen, msg)
1008 if oper == 1 then -- create
1009 local i = input_layer[win.layertype]
1010 local p = self:application(win.appid)
1011 local s = p.privileges.screen
1013 if s == "system" then
1014 local a = animation({})
1015 local r = m:JSON({surface = win.surface,
1018 self:window_request(r,a,0)
1022 print("do not make resource for " ..
1026 resclnt:resource_set_create("screen",
1032 elseif oper == 2 then -- destroy
1033 resclnt:resource_set_destroy("screen", win.surface)
1034 elseif oper == 6 then -- active
1036 local i = input_layer[win.layertype]
1037 local p = self:application(win.appid)
1038 local s = p.privileges.screen
1039 local surface = win.surface
1040 if not i and s ~= "system" then
1041 resclnt:resource_set_acquire("screen",surface)
1042 resmgr:window_raise(win.appid, surface, 1)
1048 layer_update = function(self, oper, layer, mask)
1050 print("### LAYER UPDATE:" ..
1051 layer_operation_name(oper) ..
1052 " mask: " .. tostring(mask))
1057 if oper == 3 then -- visible
1058 local command = 0x10022
1059 local msg = m:JSON({
1062 arg = m:JSON({layer = layer.id,
1063 visible = layer.visible
1067 print("### <== sending "..command_name(command)..
1073 sc:send_message(homescreen, msg)
1076 print("### nothing to do")
1081 output_update = function(self, oper, out, mask)
1082 local idx = out.index
1084 print("### OUTPUT UPDATE:" .. oper ..
1085 " mask: "..tostring(mask))
1088 local outdef = self.outputs[idx+1]
1089 if (oper == 1) then -- create
1091 self:output_request(m:JSON({index = idx,
1096 elseif (oper == 5) then -- done
1097 local ads = outdef.areas
1098 local on = outdef.name
1100 for name,ad in pairs(ads) do
1101 local can = wmgr:canonical_name(on.."."..name)
1102 local a = m:JSON({name = name,
1103 output = out.index})
1104 for fld,val in pairs(ad) do
1105 a[fld] = self:geometry(out.width,
1110 resmgr:area_create(area[can], outdef.zone)
1118 imgr = input_manager {
1119 inputs = {{ name = "G27 Racing Wheel",
1121 switch = { [2] = {appid="org.tizen.ico.app-soundsample" },
1122 [3] = {appid="org.tizen.ico.homescreen", keycode=1},
1123 [4] = {appid="org.tizen.ico.app-soundsample" },
1124 [5] = {appid="org.tizen.ico.homescreen", keycode=2}
1128 manager_update = function(self, oper)
1130 print("### <== INPUT MANAGER UPDATE:" ..
1131 input_manager_operation_name(oper))
1135 input_update = function(self, oper, inp, mask)
1137 print("### INPUT UPDATE:" ..
1138 input_operation_name(oper) ..
1139 " mask: " .. tostring(mask))
1145 code_update = function(self, oper, code, mask)
1147 print("### CODE UPDATE: mask: " .. tostring(mask))
1152 local msg = m:JSON({ command = 1,
1153 appid = "org.tizen.ico.homescreen",
1154 arg = m:JSON({ device = code.device,
1162 print("### <== sending " ..
1163 command_name(msg.command) ..
1169 sc:send_message(homescreen, msg)
1173 sc = m:get_system_controller()
1179 um = m:UserManager()
1184 -- these shoud be before wmgr:connect() is called
1186 print("====== creating applications ======")
1190 area = "Center.Full",
1191 privileges = { screen = "none", audio = "none" },
1192 resource_class = "player",
1198 area = "Center.Full",
1199 privileges = { screen = "system", audio = "none" },
1200 resource_class = "implicit",
1201 screen_priority = 30
1205 appid = "org.tizen.ico.homescreen",
1206 area = "Center.Full",
1207 privileges = { screen = "system", audio = "system" },
1208 resource_class = "player",
1209 screen_priority = 20
1213 appid = "org.tizen.ico.statusbar",
1214 area = "Center.Status",
1215 privileges = { screen = "system", audio = "none" },
1216 resource_class = "player",
1217 screen_priority = 20
1221 appid = "org.tizen.ico.login",
1222 area = "Center.Full",
1223 privileges = { screen = "system", audio = "system" },
1224 resource_class = "player",
1225 screen_priority = 20
1229 appid = "org.tizen.ico.camera_left",
1230 area = "Center.SysApp.Left",
1231 privileges = { screen = "system", audio = "none" },
1232 requisites = { screen = "blinker_left", audio = "none" },
1233 resource_class = "player",
1234 screen_priority = 30
1238 appid = "org.tizen.ico.camera_right",
1239 area = "Center.SysApp.Right",
1240 privileges = { screen = "system", audio = "none" },
1241 requisites = { screen = "blinker_right", audio = "none" },
1242 resource_class = "player",
1243 screen_priority = 30
1247 appid = "net.zmap.navi",
1248 area = "Center.Full",
1249 privileges = { screen = "none", audio = "none" },
1250 resource_class = "navigator",
1251 screen_priority = 30
1255 sc.client_handler = function (self, cid, msg)
1256 local command = msg.command
1258 print('### ==> client handler:')
1263 if not connected then
1264 print('Setting homescreen='..msg.appid)
1265 homescreen = msg.appid
1266 print('Trying to connect to wayland...')
1267 connected = wmgr:connect()
1269 if connected and command then
1270 if command == 1 then -- send_appid
1271 local driving_mode = mdb.select.select_driving_mode.single_value
1272 local night_mode = mdb.select.select_night_mode.single_value
1274 if not driving_mode then driving_mode = 0 end
1275 if not night_mode then night_mode = 0 end
1277 local reply = m:JSON({ command = 0x60001,
1278 arg = m:JSON({ stateid = 1,
1279 state = driving_mode})
1282 print("### <== sending " ..
1283 command_name(command) .. " message")
1288 sc:send_message(homescreen, reply)
1290 reply = m:JSON({ command = 0x60001,
1291 arg = m:JSON({ stateid = 2,
1292 state = night_mode})
1295 print("### <== sending " ..
1296 command_name(command) .. " message")
1301 sc:send_message(homescreen, reply)
1306 sc.generic_handler = function (self, cid, msg)
1308 print('### ==> generic handler:')
1315 sc.window_handler = function (self, cid, msg)
1317 print('### ==> received ' ..
1318 command_name(msg.command) .. ' message')
1320 print(tostring(msg))
1324 local a = animation({})
1326 if msg.command == 0x10003 then -- ico SHOW command
1327 local raise_mask = 0x01000000
1328 local lower_mask = 0x02000000
1329 local nores_mask = 0x40000000
1330 local time_mask = 0x00ffffff
1334 if msg.arg.anim_time then
1335 local t = msg.arg.anim_time
1336 time = m:AND(t, time_mask)
1337 nores = m:AND(t, nores_mask)
1338 if m:AND(t, raise_mask) then
1340 elseif m:AND(t, lower_mask) then
1344 if msg.arg.anim_name then
1345 a.show = { msg.arg.anim_name, time }
1346 print('time: ' .. tostring(a.show[2]))
1350 local p = wmgr:application(msg.appid)
1351 local s = p.privileges.screen
1352 if s == "system" then
1357 print('### ==> SHOW')
1358 print(tostring(msg.arg))
1361 wmgr:window_request(msg.arg, a, 0)
1363 local surface = msg.arg.surface
1364 resclnt:resource_set_acquire("screen", surface)
1365 resmgr:window_raise(msg.appid, surface, 1)
1367 elseif msg.command == 0x10004 then -- ico HIDE command
1368 local raise_mask = 0x01000000
1369 local lower_mask = 0x02000000
1370 local nores_mask = 0x40000000
1371 local time_mask = 0x00ffffff
1375 if msg.arg.anim_time then
1376 local t = msg.arg.anim_time
1377 time = m:AND(t, time_mask)
1378 nores = m:AND(t, nores_mask)
1380 if msg.arg.anim_name then
1381 a.hide = { msg.arg.anim_name, time }
1382 print('hide animation time: ' .. tostring(a.hide[2]))
1386 local p = wmgr:application(msg.appid)
1387 local s = p.privileges.screen
1388 if s == "system" then
1393 print('### ==> HIDE REQUEST')
1394 print(tostring(msg.arg))
1397 wmgr:window_request(msg.arg, a, 0)
1399 resmgr:window_raise(msg.appid, msg.arg.surface, -1)
1401 elseif msg.command == 0x10005 then -- ico MOVE
1403 print('### ==> MOVE REQUEST')
1404 print(tostring(msg.arg))
1406 wmgr:window_request(msg.arg, a, 0)
1407 -- TODO: handle if area changed
1408 elseif msg.command == 0x10006 then -- ico ACTIVE
1409 if not msg.arg.active then
1410 msg.arg.active = 3 -- pointer + keyboard
1413 print('### ==> ACTIVE REQUEST')
1414 print(tostring(msg.arg))
1416 wmgr:window_request(msg.arg, a, 0)
1417 elseif msg.command == 0x10007 then -- ico CHANGE_LAYER
1419 print('### ==> CHANGE_LAYER REQUEST')
1420 print(tostring(msg.arg))
1423 if msg.arg.layer ~= 4 or msg.arg.layer ~= 5 then
1424 print("do not change layer for other than cursor or touch")
1428 wmgr:window_request(msg.arg, a, 0)
1429 elseif msg.command == 0x10011 then -- ico MAP_THUMB
1430 local framerate = msg.arg.framerate
1431 if not framerate or framerate < 0 then
1436 print('### ==> MAP_THUMB REQUEST')
1438 print('framerate: '..framerate)
1440 wmgr:window_request(msg.arg, a, framerate)
1441 elseif msg.command == 0x10012 then -- ico UNMAP_THUMB
1444 print('### ==> UNMAP_THUMB REQUEST')
1447 wmgr:window_request(msg.arg, a, 0)
1448 elseif msg.command == 0x10020 then -- ico SHOW_LAYER command
1451 print('### ==> SHOW_LAYER REQUEST')
1454 wmgr:layer_request(msg.arg)
1455 elseif msg.command == 0x10021 then -- ico HIDE_LAYER command
1458 print('### ==> HIDE_LAYER REQUEST')
1461 wmgr:layer_request(msg.arg)
1465 sc.input_handler = function (self, cid, msg)
1467 print('### ==> input handler: ' .. command_name(msg.command))
1472 if msg.command == 0x20001 then -- add_input
1473 msg.arg.appid = msg.appid
1475 print('### ==> ADD_INPUT REQUEST')
1476 print(tostring(msg.arg))
1478 imgr:input_request(msg.arg)
1479 elseif msg.command == 0x20002 then -- del_input
1482 print('### ==> DEL_INPUT REQUEST')
1483 print(tostring(msg.arg))
1485 imgr:input_request(msg.arg)
1486 elseif msg.command == 0x20003 then -- send_input
1490 sc.user_handler = function (self, cid, msg)
1492 print('### ==> user handler: ' .. command_name(msg.command))
1499 print("User Manager not initialized")
1503 if msg.command == 0x00030001 then -- MSG_CMD_CHANGE_USER
1504 print("command CHANGE_USER")
1506 print("invalid message")
1510 username = msg.arg.user
1511 passwd = msg.arg.pass
1513 if not username then
1521 success = um:changeUser(username, passwd)
1528 if sc:send_message(msg.appid, reply) then
1529 print('*** sent authentication failed message')
1531 print('*** failed to send authentication failed message')
1535 elseif msg.command == 0x00030002 then -- MSG_CMD_GET_USERLIST
1536 print("command GET_USERLIST")
1537 if not msg.appid then
1538 print("invalid message")
1542 users, currentUser = um:getUserList()
1545 print("failed to get user list")
1551 for i,v in pairs(users) do
1555 if not currentUser then
1560 print("current user: " .. currentUser)
1562 for i,v in pairs(users) do
1573 user_login = currentUser
1578 print("### <== GetUserList reply: " .. tostring(reply))
1581 if sc:send_message(msg.appid, reply) then
1582 print('*** reply OK')
1584 print('*** reply FAILED')
1587 elseif msg.command == 0x00030003 then -- MSG_CMD_GET_LASTINFO
1588 print("command GET_LASTINFO")
1589 if not msg.appid then
1590 print("invalid message")
1594 lastInfo = um:getLastInfo(msg.appid)
1596 if not lastInfo then
1597 print("failed to get last info for app" .. msg.appid)
1609 if sc:send_message(msg.appid, reply) then
1610 print('*** reply OK')
1612 print('*** reply FAILED')
1615 elseif msg.command == 0x00030004 then -- MSG_CMD_SET_LASTINFO
1616 print("command SET_LASTINFO")
1617 if not msg.arg or not msg.appid then
1618 print("invalid message")
1622 lastInfo = um:setLastInfo(msg.appid, msg.arg.lastinfo)
1626 sc.resource_handler = function (self, cid, msg)
1628 print('### ==> resource handler: ' .. command_name(msg.command))
1634 createResourceSet = function (ctl, client, msg)
1635 cb = function(rset, data)
1636 print("> resource callback")
1638 -- type is either basic (0) or interrupt (1)
1640 if msg.res.type then
1641 requestType = msg.res.type
1644 if rset.acquired then
1645 cmd = 0x00040001 -- acquire
1647 cmd = 0x00040002 -- release
1651 appid = data.client,
1658 if rset.resources.audio_playback then
1667 if rset.resources.display then
1668 reply.res.window = {
1675 if rset.resources.input then
1681 print("sending message to client: " .. data.client)
1683 if sc:send_message(data.client, reply) then
1684 print('*** reply OK')
1686 print('*** reply FAILED')
1690 rset = m:ResourceSet({
1691 application_class = "player",
1692 zone = "driver", -- msg.zone ("full")
1701 if msg.res.sound then
1703 resource_name = "audio_playback"
1705 rset.resources.audio_playback.attributes.pid = tostring(msg.pid)
1706 rset.resources.audio_playback.attributes.appid = msg.appid
1707 print("sound name: " .. msg.res.sound.name)
1708 print("sound zone:" .. msg.res.sound.zone)
1709 print("sound adjust: " .. tostring(msg.res.sound.adjust))
1710 if msg.res.sound.id then
1711 print("sound id: " .. msg.res.sound.id)
1715 if msg.res.input then
1717 resource_name = "input"
1719 rset.resources.input.attributes.pid = tostring(msg.pid)
1720 rset.resources.input.attributes.appid = msg.appid
1721 print("input name: " .. msg.res.sound.name)
1722 print("input event:" .. tostring(msg.res.input.event))
1725 if msg.res.window then
1727 resource_name = "display"
1729 rset.resources.display.attributes.pid = tostring(msg.pid)
1730 rset.resources.display.attributes.appid = msg.appid
1731 print("display name: " .. msg.res.display.name)
1732 print("display zone:" .. msg.res.display.zone)
1733 if msg.res.display.id then
1734 print("display id: " .. msg.res.display.id)
1741 -- parse the message
1743 -- fields common to all messages:
1748 if msg.command == 0x00040011 then -- MSG_CMD_CREATE_RES
1749 print("command CREATE")
1751 if not sets.cid then
1752 sets.cid = createResourceSet(self, cid, msg)
1755 elseif msg.command == 0x00040012 then -- MSG_CMD_DESTORY_RES
1756 print("command DESTROY")
1762 sets.cid = nil -- garbage collecting
1764 elseif msg.command == 0x00040001 then -- MSG_CMD_ACQUIRE_RES
1765 print("command ACQUIRE")
1767 if not sets.cid then
1768 sets.cid = createResourceSet(self, cid, msg)
1773 elseif msg.command == 0x00040002 then -- MSG_CMD_RELEASE_RES
1774 print("command RELEASE")
1780 elseif msg.command == 0x00040003 then -- MSG_CMD_DEPRIVE_RES
1781 print("command DEPRIVE")
1783 elseif msg.command == 0x00040004 then -- MSG_CMD_WAITING_RES
1784 print("command WAITING")
1786 elseif msg.command == 0x00040005 then -- MSG_CMD_REVERT_RES
1787 print("command REVERT")
1791 sc.inputdev_handler = function (self, cid, msg)
1793 print('*** inputdev handler: ' .. command_name(msg.command))