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)
564 -- shift position (parking, reverse, other)
567 name = "gear_position",
568 table = "amb_gear_position",
569 columns = { "value" },
570 condition = "key = 'GearPosition'"
573 -- cameras (back, front, left, right)
576 name = "camera_state",
577 inputs = { winker = mdb.select.winker, gear = mdb.select.gear_position },
581 name = "target_camera_state",
585 { "id", mdb.unsigned },
586 { "front_camera", mdb.unsigned },
587 { "back_camera", mdb.unsigned },
588 { "right_camera", mdb.unsigned },
589 { "left_camera", mdb.unsigned }
593 update = function(self)
600 if self.inputs.gear == 128 then
602 elseif self.inputs.winker == 1 then
604 elseif self.inputs.winker == 2 then
608 mdb.table.target_camera_state:replace({ id = 0, front_camera = front_camera, back_camera = back_camera, right_camera = right_camera, left_camera = left_camera })
613 -- load the telephony plugin
614 m:try_load_plugin('telephony')
617 -- system controller test setup
619 if not with_system_controller then
623 m:load_plugin('system-controller')
625 window_manager_operation_names = {
630 function window_manager_operation_name(oper)
631 local name = window_manager_operation_names[oper]
632 if name then return name end
633 return "<unknown " .. tostring(oper) .. ">"
636 window_operation_names = {
645 function window_operation_name(oper)
646 local name = window_operation_names[oper]
647 if name then return name end
648 return "<unknown " .. tostring(oper) .. ">"
651 layer_operation_names = {
657 function layer_operation_name(oper)
658 local name = layer_operation_names[oper]
659 if name then return name end
660 return "<unknown " .. tostring(oper) .. ">"
663 input_manager_operation_names = {
669 function input_manager_operation_name(oper)
670 local name = input_manager_operation_names[oper]
671 if name then return name end
672 return "<unknown " .. tostring(oper) .. ">"
675 input_operation_names = {
681 function input_operation_name(oper)
682 local name = input_operation_names[oper]
683 if name then return name end
684 return "<unknown " .. tostring(oper) .. ">"
687 code_operation_names = {
693 function code_operation_name(oper)
694 local name = code_operation_names[oper]
695 if name then return name end
696 return "<unknown " .. tostring(oper) .. ">"
700 [0x00001] = "send_appid",
701 [0x10001] = "create",
702 [0x10002] = "destroy",
706 [0x10006] = "change_active",
707 [0x10007] = "change_layer",
708 [0x10008] = "change_attr",
710 [0x10011] = "map_thumb",
711 [0x10012] = "unmap_thumb",
712 [0x10020] = "show layer",
713 [0x10021] = "hide_layer",
714 [0x10022] = "change_layer_attr",
715 [0x20001] = "add_input",
716 [0x20002] = "del_input",
717 [0x20003] = "send_input",
718 [0x40001] = "acquire_res",
719 [0x40002] = "release_res",
720 [0x40003] = "deprive_res",
721 [0x40004] = "waiting_res",
722 [0x40005] = "revert_res",
723 [0x40011] = "create_res",
724 [0x40012] = "destroy_res",
725 [0x50001] = "set_region",
726 [0x50002] = "unset_region",
727 [0x60001] = "change_state"
730 function command_name(command)
731 local name = command_names[command]
732 if name then return name end
733 return "<unknown " .. tostring(command) .. ">"
742 resmgr = resource_manager {
743 screen_event_handler = function(self, ev)
744 local event = ev.event
745 local surface = ev.surface
747 if event == "grant" then
749 print("*** make visible surface "..surface)
751 local a = animation({})
752 local r = m:JSON({surface = surface,
755 wmgr:window_request(r,a,0)
756 elseif event == "revoke" then
758 print("*** hide surface "..surface)
760 local a = animation({})
761 local r = m:JSON({surface = ev.surface,
763 wmgr:window_request(r,a,0)
765 elseif event == "create" then
768 print("*** screen resource event: " ..
772 -- For now, consider every application to be an "entertainment"
773 -- application. Whitelist those applications that we know. Later
774 -- check the aul_applications table for actual category (when
775 -- we get the categories there).
777 local regulation = mdb.select.select_driving_mode.single_value
779 if regulation == 1 then
780 conf = getApplication(ev.appid)
782 -- disable only non-whitelisted applications
783 if not conf or conf.resource_class == "player" then
784 resmgr:disable_screen_by_appid("*", "*", ev.appid, true)
788 elseif event == "destroy" then
790 print("*** screen resource event: " ..
795 print("*** screen resource event: " ..
800 audio_event_handler = function(self, ev)
801 local event = ev.event
802 local appid = ev.appid
803 local audioid = ev.audioid
805 if event == "grant" then
806 if verbose > 0 or true then
807 print("*** grant audio to "..appid..
808 " ("..audioid..") in '" ..
811 elseif event == "revoke" then
812 if verbose > 0 or true then
813 print("*** revoke audio from "..appid..
814 " ("..audioid..") in '" ..
818 if verbose > 0 or true then
819 print("*** audio resource event: " ..
826 resclnt = resource_client {}
828 wmgr = window_manager {
829 geometry = function(self, w,h, v)
830 if type(v) == "function" then
836 application = function(self, appid)
838 local app = application_lookup(appid)
840 app = application_lookup("default")
844 return { privileges = {screen="none", audio="none"} }
847 outputs = { { name = "Center",
854 width = function(w,h) return w end,
861 width = function(w,h) return w end,
862 height = function(w,h) return h-64-128 end
868 width = function(w,h) return w end,
869 height = function(w,h) return (h-64-128)/2 end
874 pos_y = function(w,h) return (h-64-128)/2+64 end,
875 width = function(w,h) return w end,
876 height = function(w,h) return (h-64-128)/2 end
882 width = function(w,h) return w/2 end,
883 height = function(w,h) return (h-64-128)/2 end
887 pos_x = function(w,h) return w/2 end,
889 width = function(w,h) return w/2 end,
890 height = function(w,h) return (h-64-128)/2 end
895 pos_y = function(w,h) return (h-64-128/2)+64 end,
896 width = function(w,h) return w/2 end,
897 height = function(w,h) return (h-64-128)/2 end
901 pos_x = function(w,h) return w/2 end,
902 pos_y = function(w,h) return (h-64-128/2)+64 end,
903 width = function(w,h) return w/2 end,
904 height = function(w,h) return (h-64-128)/2 end
910 width = function(w,h) return w end,
911 height = function(w,h) return h-64-128 end
917 width = function(w,h) return w/2-181 end,
918 height = function(w,h) return h-64-128 end
922 pos_x = function(w,h) return w/2+181 end,
924 width = function(w,h) return w/2-181 end,
925 height = function(w,h) return h-64-128 end
935 layers = { { 0, "Background" , 1 },
936 { 1, "Application" , 2 },
937 { 2, "Softkeyboard" , 4 },
938 { 3, "HomeScreen" , 2 },
939 { 4, "ControlBar" , 2 },
940 { 5, "InterruptApp" , 2 },
941 { 6, "OnScreen" , 2 },
942 { 101, "Input" , 3 },
943 { 102, "Cursor" , 5 },
944 { 103, "Startup" , 6 },
945 { 0x1000, "Background" , 1 },
946 { 0x2000, "Normal" , 2 },
947 { 0x3000, "Fullscreen" , 2 },
948 { 0x4000, "InputPanel" , 3 },
949 { 0xA000, "Touch" , 4 },
950 { 0xB000, "Cursor" , 5 },
951 { 0xC000, "Startup" , 6 }
955 manager_update = function(self, oper)
957 print("### <== WINDOW MANAGER UPDATE:" ..
958 window_manager_operation_name(oper))
961 local umask = window_mask { raise = true,
964 local rmask = window_mask { active = true }
966 passthrough_update = umask:tointeger(),
967 passthrough_request = rmask:tointeger()
969 self:manager_request(req)
973 window_update = function(self, oper, win, mask)
975 print("### <== WINDOW UPDATE oper:" ..
976 window_operation_name(oper) ..
977 " mask: " .. tostring(mask))
983 local arg = m:JSON({ surface = win.surface,
988 if oper == 1 then -- create
989 local layertype = win.layertype
990 if layertype and input_layer[layertype] then
992 print("ignoring input panel creation")
997 elseif oper == 2 then -- destroy
999 elseif oper == 3 then -- namechange
1001 elseif oper == 4 or oper == 5 then --visible or configure
1005 arg.layer = win.layer
1006 arg.pos_x = win.pos_x
1007 arg.pos_y = win.pos_y
1008 arg.width = win.width
1009 arg.height = win.height
1010 arg.raise = win.raise
1011 arg.visible = win.visible
1012 arg.active = win.active
1013 elseif oper == 6 then -- active
1015 arg.active = win.active
1018 print("### nothing to do")
1023 local msg = m:JSON({ command = command,
1029 print("### <== sending " ..
1030 command_name(msg.command) ..
1031 " window message to '" .. win.name .. "'")
1036 sc:send_message(homescreen, msg)
1038 if oper == 1 then -- create
1039 local i = input_layer[win.layertype]
1040 local p = self:application(win.appid)
1041 local s = p.privileges.screen
1043 if s == "system" then
1044 local a = animation({})
1045 local r = m:JSON({surface = win.surface,
1048 self:window_request(r,a,0)
1052 print("do not make resource for " ..
1056 resclnt:resource_set_create("screen",
1062 elseif oper == 2 then -- destroy
1063 resclnt:resource_set_destroy("screen", win.surface)
1064 elseif oper == 6 then -- active
1066 local i = input_layer[win.layertype]
1067 local p = self:application(win.appid)
1068 local s = p.privileges.screen
1069 local surface = win.surface
1070 if not i and s ~= "system" then
1071 resclnt:resource_set_acquire("screen",surface)
1072 resmgr:window_raise(win.appid, surface, 1)
1078 layer_update = function(self, oper, layer, mask)
1080 print("### LAYER UPDATE:" ..
1081 layer_operation_name(oper) ..
1082 " mask: " .. tostring(mask))
1087 if oper == 3 then -- visible
1088 local command = 0x10022
1089 local msg = m:JSON({
1092 arg = m:JSON({layer = layer.id,
1093 visible = layer.visible
1097 print("### <== sending "..command_name(command)..
1103 sc:send_message(homescreen, msg)
1106 print("### nothing to do")
1111 output_update = function(self, oper, out, mask)
1112 local idx = out.index
1114 print("### OUTPUT UPDATE:" .. oper ..
1115 " mask: "..tostring(mask))
1118 local outdef = self.outputs[idx+1]
1119 if (oper == 1) then -- create
1121 self:output_request(m:JSON({index = idx,
1126 elseif (oper == 5) then -- done
1127 local ads = outdef.areas
1128 local on = outdef.name
1130 for name,ad in pairs(ads) do
1131 local can = wmgr:canonical_name(on.."."..name)
1132 local a = m:JSON({name = name,
1133 output = out.index})
1134 for fld,val in pairs(ad) do
1135 a[fld] = self:geometry(out.width,
1140 resmgr:area_create(area[can], outdef.zone)
1148 imgr = input_manager {
1149 inputs = {{ name = "G27 Racing Wheel",
1151 switch = { [2] = {appid="org.tizen.ico.app-soundsample" },
1152 [3] = {appid="org.tizen.ico.homescreen", keycode=1},
1153 [4] = {appid="org.tizen.ico.app-soundsample" },
1154 [5] = {appid="org.tizen.ico.homescreen", keycode=2}
1158 manager_update = function(self, oper)
1160 print("### <== INPUT MANAGER UPDATE:" ..
1161 input_manager_operation_name(oper))
1165 input_update = function(self, oper, inp, mask)
1167 print("### INPUT UPDATE:" ..
1168 input_operation_name(oper) ..
1169 " mask: " .. tostring(mask))
1175 code_update = function(self, oper, code, mask)
1177 print("### CODE UPDATE: mask: " .. tostring(mask))
1182 local msg = m:JSON({ command = 1,
1183 appid = "org.tizen.ico.homescreen",
1184 arg = m:JSON({ device = code.device,
1192 print("### <== sending " ..
1193 command_name(msg.command) ..
1199 sc:send_message(homescreen, msg)
1203 sc = m:get_system_controller()
1209 um = m:UserManager()
1214 -- these shoud be before wmgr:connect() is called
1216 print("====== creating applications ======")
1220 area = "Center.Full",
1221 privileges = { screen = "none", audio = "none" },
1222 resource_class = "player",
1228 area = "Center.Full",
1229 privileges = { screen = "system", audio = "none" },
1230 resource_class = "implicit",
1231 screen_priority = 30
1235 appid = "org.tizen.ico.homescreen",
1236 area = "Center.Full",
1237 privileges = { screen = "system", audio = "system" },
1238 resource_class = "player",
1239 screen_priority = 20
1243 appid = "org.tizen.ico.statusbar",
1244 area = "Center.Status",
1245 privileges = { screen = "system", audio = "none" },
1246 resource_class = "player",
1247 screen_priority = 20
1251 appid = "org.tizen.ico.login",
1252 area = "Center.Full",
1253 privileges = { screen = "system", audio = "system" },
1254 resource_class = "player",
1255 screen_priority = 20
1259 appid = "org.tizen.ico.camera_left",
1260 area = "Center.SysApp.Left",
1261 privileges = { screen = "system", audio = "none" },
1262 requisites = { screen = "blinker_left", audio = "none" },
1263 resource_class = "player",
1264 screen_priority = 30
1268 appid = "org.tizen.ico.camera_right",
1269 area = "Center.SysApp.Right",
1270 privileges = { screen = "system", audio = "none" },
1271 requisites = { screen = "blinker_right", audio = "none" },
1272 resource_class = "player",
1273 screen_priority = 30
1277 appid = "net.zmap.navi",
1278 area = "Center.Full",
1279 privileges = { screen = "none", audio = "none" },
1280 resource_class = "navigator",
1281 screen_priority = 30
1285 sc.client_handler = function (self, cid, msg)
1286 local command = msg.command
1288 print('### ==> client handler:')
1293 if not connected then
1294 print('Setting homescreen='..msg.appid)
1295 homescreen = msg.appid
1296 print('Trying to connect to wayland...')
1297 connected = wmgr:connect()
1299 if connected and command then
1300 if command == 1 then -- send_appid
1301 local driving_mode = mdb.select.select_driving_mode.single_value
1302 local night_mode = mdb.select.select_night_mode.single_value
1304 if not driving_mode then driving_mode = 0 end
1305 if not night_mode then night_mode = 0 end
1307 local reply = m:JSON({ command = 0x60001,
1308 arg = m:JSON({ stateid = 1,
1309 state = driving_mode})
1312 print("### <== sending " ..
1313 command_name(command) .. " message")
1318 sc:send_message(homescreen, reply)
1320 reply = m:JSON({ command = 0x60001,
1321 arg = m:JSON({ stateid = 2,
1322 state = night_mode})
1325 print("### <== sending " ..
1326 command_name(command) .. " message")
1331 sc:send_message(homescreen, reply)
1336 sc.generic_handler = function (self, cid, msg)
1338 print('### ==> generic handler:')
1345 sc.window_handler = function (self, cid, msg)
1347 print('### ==> received ' ..
1348 command_name(msg.command) .. ' message')
1350 print(tostring(msg))
1354 local a = animation({})
1356 if msg.command == 0x10003 then -- ico SHOW command
1357 local raise_mask = 0x01000000
1358 local lower_mask = 0x02000000
1359 local nores_mask = 0x40000000
1360 local time_mask = 0x00ffffff
1364 if msg.arg.anim_time then
1365 local t = msg.arg.anim_time
1366 time = m:AND(t, time_mask)
1367 nores = not m:AND(t, nores_mask)
1368 if m:AND(t, raise_mask) then
1370 elseif m:AND(t, lower_mask) then
1374 if msg.arg.anim_name then
1375 a.show = { msg.arg.anim_name, time }
1376 print('time: ' .. tostring(a.show[2]))
1380 local p = wmgr:application(msg.appid)
1381 local s = p.privileges.screen
1382 if s == "system" then
1387 print('### ==> SHOW')
1388 print(tostring(msg.arg))
1391 wmgr:window_request(msg.arg, a, 0)
1393 local surface = msg.arg.surface
1394 resclnt:resource_set_acquire("screen", surface)
1395 resmgr:window_raise(msg.appid, surface, 1)
1397 elseif msg.command == 0x10004 then -- ico HIDE command
1398 local raise_mask = 0x01000000
1399 local lower_mask = 0x02000000
1400 local nores_mask = 0x40000000
1401 local time_mask = 0x00ffffff
1405 if msg.arg.anim_time then
1406 local t = msg.arg.anim_time
1407 time = m:AND(t, time_mask)
1408 nores = not m:AND(t, nores_mask)
1410 if msg.arg.anim_name then
1411 a.hide = { msg.arg.anim_name, time }
1412 print('hide animation time: ' .. tostring(a.hide[2]))
1416 local p = wmgr:application(msg.appid)
1417 local s = p.privileges.screen
1418 if s == "system" then
1423 print('### ==> HIDE REQUEST')
1424 print(tostring(msg.arg))
1427 wmgr:window_request(msg.arg, a, 0)
1429 resmgr:window_raise(msg.appid, msg.arg.surface, -1)
1431 elseif msg.command == 0x10005 then -- ico MOVE
1433 print('### ==> MOVE REQUEST')
1434 print(tostring(msg.arg))
1436 wmgr:window_request(msg.arg, a, 0)
1437 -- TODO: handle if area changed
1438 elseif msg.command == 0x10006 then -- ico ACTIVE
1439 if not msg.arg.active then
1440 msg.arg.active = 3 -- pointer + keyboard
1443 print('### ==> ACTIVE REQUEST')
1444 print(tostring(msg.arg))
1446 wmgr:window_request(msg.arg, a, 0)
1447 elseif msg.command == 0x10007 then -- ico CHANGE_LAYER
1449 print('### ==> CHANGE_LAYER REQUEST')
1450 print(tostring(msg.arg))
1453 if msg.arg.layer ~= 4 or msg.arg.layer ~= 5 then
1454 print("do not change layer for other than cursor or touch")
1458 wmgr:window_request(msg.arg, a, 0)
1459 elseif msg.command == 0x10011 then -- ico MAP_THUMB
1460 local framerate = msg.arg.framerate
1461 if not framerate or framerate < 0 then
1466 print('### ==> MAP_THUMB REQUEST')
1468 print('framerate: '..framerate)
1470 wmgr:window_request(msg.arg, a, framerate)
1471 elseif msg.command == 0x10012 then -- ico UNMAP_THUMB
1474 print('### ==> UNMAP_THUMB REQUEST')
1477 wmgr:window_request(msg.arg, a, 0)
1478 elseif msg.command == 0x10020 then -- ico SHOW_LAYER command
1481 print('### ==> SHOW_LAYER REQUEST')
1484 wmgr:layer_request(msg.arg)
1485 elseif msg.command == 0x10021 then -- ico HIDE_LAYER command
1488 print('### ==> HIDE_LAYER REQUEST')
1491 wmgr:layer_request(msg.arg)
1495 sc.input_handler = function (self, cid, msg)
1497 print('### ==> input handler: ' .. command_name(msg.command))
1502 if msg.command == 0x20001 then -- add_input
1503 msg.arg.appid = msg.appid
1505 print('### ==> ADD_INPUT REQUEST')
1506 print(tostring(msg.arg))
1508 imgr:input_request(msg.arg)
1509 elseif msg.command == 0x20002 then -- del_input
1512 print('### ==> DEL_INPUT REQUEST')
1513 print(tostring(msg.arg))
1515 imgr:input_request(msg.arg)
1516 elseif msg.command == 0x20003 then -- send_input
1520 sc.user_handler = function (self, cid, msg)
1522 print('### ==> user handler: ' .. command_name(msg.command))
1529 print("User Manager not initialized")
1533 if msg.command == 0x00030001 then -- MSG_CMD_CHANGE_USER
1534 print("command CHANGE_USER")
1536 print("invalid message")
1540 username = msg.arg.user
1541 passwd = msg.arg.pass
1543 if not username then
1551 success = um:changeUser(username, passwd)
1558 if sc:send_message(msg.appid, reply) then
1559 print('*** sent authentication failed message')
1561 print('*** failed to send authentication failed message')
1565 elseif msg.command == 0x00030002 then -- MSG_CMD_GET_USERLIST
1566 print("command GET_USERLIST")
1567 if not msg.appid then
1568 print("invalid message")
1572 users, currentUser = um:getUserList()
1575 print("failed to get user list")
1581 for i,v in pairs(users) do
1585 if not currentUser then
1590 print("current user: " .. currentUser)
1592 for i,v in pairs(users) do
1603 user_login = currentUser
1608 print("### <== GetUserList reply: " .. tostring(reply))
1611 if sc:send_message(msg.appid, reply) then
1612 print('*** reply OK')
1614 print('*** reply FAILED')
1617 elseif msg.command == 0x00030003 then -- MSG_CMD_GET_LASTINFO
1618 print("command GET_LASTINFO")
1619 if not msg.appid then
1620 print("invalid message")
1624 lastInfo = um:getLastInfo(msg.appid)
1626 if not lastInfo then
1627 print("failed to get last info for app" .. msg.appid)
1639 if sc:send_message(msg.appid, reply) then
1640 print('*** reply OK')
1642 print('*** reply FAILED')
1645 elseif msg.command == 0x00030004 then -- MSG_CMD_SET_LASTINFO
1646 print("command SET_LASTINFO")
1647 if not msg.arg or not msg.appid then
1648 print("invalid message")
1652 lastInfo = um:setLastInfo(msg.appid, msg.arg.lastinfo)
1656 sc.resource_handler = function (self, cid, msg)
1658 print('### ==> resource handler: ' .. command_name(msg.command))
1664 createResourceSet = function (ctl, client, msg)
1665 cb = function(rset, data)
1666 print("> resource callback")
1668 -- type is either basic (0) or interrupt (1)
1670 if msg.res.type then
1671 requestType = msg.res.type
1674 if rset.acquired then
1675 cmd = 0x00040001 -- acquire
1677 cmd = 0x00040002 -- release
1681 appid = data.client,
1688 if rset.resources.audio_playback then
1697 if rset.resources.display then
1698 reply.res.window = {
1705 if rset.resources.input then
1711 print("sending message to client: " .. data.client)
1713 if sc:send_message(data.client, reply) then
1714 print('*** reply OK')
1716 print('*** reply FAILED')
1720 rset = m:ResourceSet({
1721 application_class = "player",
1722 zone = "driver", -- msg.zone ("full")
1731 if msg.res.sound then
1733 resource_name = "audio_playback"
1735 rset.resources.audio_playback.attributes.pid = tostring(msg.pid)
1736 rset.resources.audio_playback.attributes.appid = msg.appid
1737 print("sound name: " .. msg.res.sound.name)
1738 print("sound zone:" .. msg.res.sound.zone)
1739 print("sound adjust: " .. tostring(msg.res.sound.adjust))
1740 if msg.res.sound.id then
1741 print("sound id: " .. msg.res.sound.id)
1745 if msg.res.input then
1747 resource_name = "input"
1749 rset.resources.input.attributes.pid = tostring(msg.pid)
1750 rset.resources.input.attributes.appid = msg.appid
1751 print("input name: " .. msg.res.sound.name)
1752 print("input event:" .. tostring(msg.res.input.event))
1755 if msg.res.window then
1757 resource_name = "display"
1759 rset.resources.display.attributes.pid = tostring(msg.pid)
1760 rset.resources.display.attributes.appid = msg.appid
1761 print("display name: " .. msg.res.display.name)
1762 print("display zone:" .. msg.res.display.zone)
1763 if msg.res.display.id then
1764 print("display id: " .. msg.res.display.id)
1771 -- parse the message
1773 -- fields common to all messages:
1778 if msg.command == 0x00040011 then -- MSG_CMD_CREATE_RES
1779 print("command CREATE")
1781 if not sets.cid then
1782 sets.cid = createResourceSet(self, cid, msg)
1785 elseif msg.command == 0x00040012 then -- MSG_CMD_DESTORY_RES
1786 print("command DESTROY")
1792 sets.cid = nil -- garbage collecting
1794 elseif msg.command == 0x00040001 then -- MSG_CMD_ACQUIRE_RES
1795 print("command ACQUIRE")
1797 if not sets.cid then
1798 sets.cid = createResourceSet(self, cid, msg)
1803 elseif msg.command == 0x00040002 then -- MSG_CMD_RELEASE_RES
1804 print("command RELEASE")
1810 elseif msg.command == 0x00040003 then -- MSG_CMD_DEPRIVE_RES
1811 print("command DEPRIVE")
1813 elseif msg.command == 0x00040004 then -- MSG_CMD_WAITING_RES
1814 print("command WAITING")
1816 elseif msg.command == 0x00040005 then -- MSG_CMD_REVERT_RES
1817 print("command REVERT")
1821 sc.inputdev_handler = function (self, cid, msg)
1823 print('*** inputdev handler: ' .. command_name(msg.command))