2 * app_power - zavai power handling
4 * Copyright (C) 2009 Enrico Zini <enrico@enricozini.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 // Compute a-b in microseconds
28 static long timediff(Posix.timeval* a, Posix.timeval* b)
30 return (a->tv_sec - b->tv_sec) * 1000000 + (a->tv_usec - b->tv_usec);
33 public class Power : zavai.Resource, Object
35 public dynamic DBus.Object usage;
36 public bool screen_locked;
37 private int screen_lock_fd;
38 // Timestamp of the past power button pressed even (0 if the button has
40 private Posix.timeval last_down;
41 private Posix.timeval last_short_press;
43 private bool hide_after_closing_power_menu;
45 public signal void screen_lock_changed(bool state);
47 public signal void power_short_press(Posix.timeval* t);
48 public signal void power_long_press();
49 private uint button_press_timeout;
53 screen_locked = false;
55 hide_after_closing_power_menu = false;
57 last_down.tv_usec = 0;
58 last_short_press.tv_sec = 0;
59 last_short_press.tv_usec = 0;
60 button_press_timeout = 0;
62 usage = zavai.registry.sbus.get_object(
63 "org.freesmartphone.ousaged",
64 "/org/freesmartphone/Usage",
65 "org.freesmartphone.Usage");
67 zavai.input.power_button.power_button += on_power_button;
68 zavai.input.power_button.request("zavai.ui.powerbutton.power");
70 power_short_press += on_power_short_press;
71 power_long_press += on_power_long_press;
74 public void shutdown()
76 zavai.input.power_button.release("zavai.ui.powerbutton.power");
79 public void do_suspend()
84 zavai.log.error("Suspending phone: " + e.message);
87 public void do_shutdown()
91 zavai.app.run_script("shutdown -h now");
93 zavai.log.error("Shutting down phone: " + e.message);
96 public void do_reboot()
100 zavai.app.run_script("shutdown -r now");
102 zavai.log.error("Rebooting phone: " + e.message);
106 public void set_screen_lock(bool locked)
108 if (locked && screen_locked)
110 if (!locked && !screen_locked)
115 screen_lock_fd = Posix.open("/dev/input/event1", Posix.O_RDWR | Posix.O_NONBLOCK);
116 if (screen_lock_fd < 0)
118 zavai.log.error("Cannot open /dev/input/event1");
122 // FIXME: X won't see events, but it's still generating interrupts,
124 int EVIOCGRAB = 0x40044590;
125 if (Posix.ioctl(screen_lock_fd, EVIOCGRAB, locked ? 1 : 0) != 0)
127 zavai.log.error("Cannot EVIOCGRAB /dev/input/event1");
128 Posix.close(screen_lock_fd);
132 backlight.lock_screen();
134 Posix.close(screen_lock_fd);
135 backlight.unlock_screen();
137 screen_locked = locked;
141 screen_lock_changed(locked);
144 private bool on_power_button_timeout()
146 last_down.tv_sec = 0;
147 last_down.tv_usec = 0;
153 private void on_power_button(Posix.timeval* t, bool pressed)
155 bool short_press = false;
156 bool long_press = false;
160 if (last_down.tv_sec == 0)
163 button_press_timeout = Timeout.add(1000, on_power_button_timeout);
167 long diff = timediff(t, &last_down);
168 long_press = diff >= 1000000;
171 if (last_down.tv_sec == 0)
173 // Ignore: release has been simulated with the timeout
175 if (button_press_timeout != 0)
177 // Cancel the timeout
178 Source.remove(button_press_timeout);
179 button_press_timeout = 0;
181 long diff = timediff(t, &last_down);
187 last_down.tv_sec = 0;
188 last_down.tv_usec = 0;
195 last_short_press.tv_sec = 0;
196 last_short_press.tv_usec = 0;
198 if (short_press) power_short_press(t);
201 private void on_power_short_press(Posix.timeval* t)
203 long diff = timediff(t, &last_short_press);
204 bool combo = screen_locked && (diff <= 5000000);
205 last_short_press = *t;
209 // Short press: turn on backlight for a bit
214 app.toggle_visibility();
218 // Short press: toggle power menu
222 private void on_power_long_press()
225 // Long press: unlock
226 set_screen_lock(false);
228 // Long press: lock screen
229 set_screen_lock(true);
233 public class BatteryIcon : Gtk.StatusIcon
235 public dynamic DBus.Object battery;
236 protected string last_status;
237 protected int last_capacity;
241 battery = zavai.registry.sbus.get_object(
242 "org.freesmartphone.odeviced",
243 "/org/freesmartphone/Device/PowerSupply/battery",
244 "org.freesmartphone.Device.PowerSupply");
246 // activate += on_activate;
248 battery.PowerStatus += on_power_status;
249 battery.Capacity += on_capacity;
251 last_status = battery.GetPowerStatus();
252 last_capacity = battery.GetCapacity();
257 private void on_power_status(dynamic DBus.Object bat, string status)
259 zavai.log.info("New battery status: " + status);
260 last_status = status;
264 private void on_capacity(dynamic DBus.Object bat, int val)
266 stderr.printf("NEW CAPACITY: %d\n", val);
272 private void on_activate()
277 protected void update_icon()
279 string name = zavai.config.icondir + "/battery/";
281 if (last_status == "charging")
282 name += "%02d0_charging_500.png".printf(last_capacity/10);
284 name += "%02d0.png".printf(last_capacity/10);
286 stderr.printf("Loading icon from %s\n", name);
292 public class ScreenLockButton : Gtk.Button
294 public ScreenLockButton()
296 label = "Lock screen";
297 clicked += on_clicked;
298 set_size_request(0, zavai.config.min_button_height);
301 public void on_clicked()
303 zavai.log.info("Locking screen");
304 power.set_screen_lock(true);
305 power_menu.hide_menu();
309 public class SuspendButton : Gtk.Button
311 public SuspendButton()
314 clicked += on_clicked;
315 set_size_request(0, zavai.config.min_button_height);
318 public void on_clicked()
320 zavai.log.info("Suspending the phone via FSO");
322 power_menu.hide_menu();
326 public class ShutdownButton : Gtk.Button
328 public ShutdownButton()
331 clicked += on_clicked;
332 set_size_request(0, zavai.config.min_button_height);
335 public void on_clicked()
337 zavai.log.info("Shutting down the phone via FSO");
339 power_menu.hide_menu();
343 public class RebootButton : Gtk.Button
345 public RebootButton()
348 clicked += on_clicked;
349 set_size_request(0, zavai.config.min_button_height);
352 public void on_clicked()
354 zavai.log.info("Rebooting the phone via FSO");
356 power_menu.hide_menu();
360 // For a list of dbus services, look in /etc/dbus-1/system.d/
361 public class Backlight: zavai.Service
363 public dynamic DBus.Object usage;
364 public dynamic DBus.Object display;
370 usage = zavai.registry.sbus.get_object(
371 "org.freesmartphone.ousaged",
372 "/org/freesmartphone/Usage",
373 "org.freesmartphone.Usage");
375 display = zavai.registry.sbus.get_object(
376 "org.freesmartphone.odeviced",
377 "/org/freesmartphone/Device/Display/0",
378 "org.freesmartphone.Device.Display");
381 // Turn the backlight and then let it fade off
384 // There must be a better method
386 display.SetBacklightPower(true);
387 //usage.SetResourcePolicy("Display", "auto");
388 usage.RequestResource("Display");
389 usage.ReleaseResource("Display");
391 zavai.log.error("Requesting/releasing resource Display: " + e.message);
395 public void lock_screen()
400 display.SetBacklightPower(false);
401 zavai.app.run_script(zavai.config.xset_dpms_short_wait);
403 string policy = usage.GetResourcePolicy("Display");
404 if (policy == "auto")
406 usage.SetResourcePolicy("Display", "disabled");
409 } catch (GLib.Error e) {
410 zavai.log.error(e.message);
415 public void unlock_screen()
418 display.SetBacklightPower(true);
419 zavai.app.run_script(zavai.config.xset_dpms_long_wait);
420 //usage.SetResourcePolicy("Display", "auto");
421 } catch (GLib.Error e) {
422 zavai.log.error(e.message);
427 /// Request GPS resource
428 public override void start()
432 usage.RequestResource("Display");
433 zavai.app.run_script(zavai.config.xset_dpms_always_on);
434 zavai.log.info("Acquired display");
436 } catch (GLib.Error e) {
437 zavai.log.error(e.message);
442 // Release usage of GPS
443 public override void stop()
445 if (!started) return;
447 usage.ReleaseResource("Display");
448 zavai.app.run_script(zavai.config.xset_dpms_long_wait);
449 zavai.log.info("Released display");
451 } catch (GLib.Error e) {
452 zavai.log.error(e.message);
458 public class PowerMenu : zavai.Resource, Gtk.Window
460 protected Gtk.VBox vbox;
461 protected ScreenLockButton act_screen_lock;
462 protected SuspendButton act_suspend;
463 protected ShutdownButton act_shutdown;
464 protected RebootButton act_reboot;
465 protected ServiceRequestLink act_backlight_on;
466 protected bool shown;
470 type = Gtk.WindowType.TOPLEVEL;
471 title = "Power Menu";
473 destroy_with_parent = true;
474 set_transient_for(zavai.app);
476 set_position(Gtk.WindowPosition.CENTER_ON_PARENT);
477 set_size_request(300, 500);
479 vbox = new Gtk.VBox(false, 0);
482 //destroy += Gtk.main_quit;
483 //set_events(get_events() | Gdk.EventMask.VISIBILITY_NOTIFY_MASK);
484 //visibility_notify_event += on_visibility;
485 set_skip_pager_hint(true);
486 set_skip_taskbar_hint(true);
487 set_type_hint(Gdk.WindowTypeHint.POPUP_MENU);
489 act_screen_lock = new ScreenLockButton();
490 vbox.pack_start(act_screen_lock, false, false, 0);
492 act_suspend = new SuspendButton();
493 vbox.pack_start(act_suspend, false, false, 0);
495 act_shutdown = new ShutdownButton();
496 vbox.pack_start(act_shutdown, false, false, 0);
498 act_reboot = new RebootButton();
499 vbox.pack_start(act_reboot, false, false, 0);
501 act_backlight_on = new ServiceRequestLink("backlight", "Keep backlight on", "Let backlight fade");
502 act_backlight_on.toggled += (src) => { this.hide_menu(); };
503 vbox.pack_start(act_backlight_on, false, false, 0);
518 // TODO: do more in case it is visible but has no visibility (is covered by others)
525 public void hide_menu()
530 public void shutdown() {}
534 public class TogglePowerMenu : Gtk.Button
536 public TogglePowerMenu()
538 label = "Toggle power menu";
539 clicked += on_clicked;
540 set_size_request(0, zavai.config.min_button_height);
543 public void on_clicked()
545 zavai.log.info("Toggling power menu");
552 PowerMenu power_menu;
553 BatteryIcon battery_icon;
555 //TogglePowerMenu tpm;
560 backlight = new Backlight();
561 zavai.registry.register_service(backlight);
563 battery_icon = new BatteryIcon();
564 battery_icon.set_visible(true);
566 power_menu = new PowerMenu();
567 zavai.registry.register_resource("powermenu", power_menu);
569 //zavai.registry.getmenu("menu.main").add_applet("menu.power");
570 //tpm = new TogglePowerMenu();
571 //zavai.registry.getmenu("menu.main").add_widget(tpm);
574 raise_icon = new RaiseIcon();
575 raise_icon.set_visible(true);
577 close_or_back = new CloseOrBack();
578 close_or_back.set_visible(true);
580 window_list = new WindowList("Current apps");
581 zavai.registry.register_applet("wm.list", window_list);
582 zavai.registry.getmenu("menu.main").add_applet("wm.list");
585 launcher = new Launcher("Run program");
587 zavai.log.error("Not running launcher: " + e.message);
591 if (launcher != null)
593 zavai.registry.register_applet("wm.launcher", launcher);
594 zavai.registry.getmenu("menu.main").add_applet("wm.launcher");