2007-06-24 14:45:05 +02:00
|
|
|
# Copyright (C) 2006-2007 Red Hat, Inc.
|
2006-11-08 16:42:50 +01:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
2007-01-22 01:47:58 +01:00
|
|
|
import logging
|
|
|
|
|
2006-11-08 16:42:50 +01:00
|
|
|
import dbus
|
2007-06-13 16:22:49 +02:00
|
|
|
import gst
|
|
|
|
import gst.interfaces
|
2006-11-08 16:42:50 +01:00
|
|
|
|
2007-02-25 02:00:40 +01:00
|
|
|
from hardware.nmclient import NMClient
|
2007-09-24 18:00:36 +02:00
|
|
|
from sugar.profile import get_profile
|
|
|
|
from sugar import env
|
2006-11-08 16:42:50 +01:00
|
|
|
|
2007-02-25 01:07:05 +01:00
|
|
|
_HARDWARE_MANAGER_INTERFACE = 'org.laptop.HardwareManager'
|
|
|
|
_HARDWARE_MANAGER_SERVICE = 'org.laptop.HardwareManager'
|
|
|
|
_HARDWARE_MANAGER_OBJECT_PATH = '/org/laptop/HardwareManager'
|
|
|
|
|
|
|
|
COLOR_MODE = 0
|
|
|
|
B_AND_W_MODE = 1
|
2006-11-08 16:42:50 +01:00
|
|
|
|
2007-02-25 01:07:05 +01:00
|
|
|
class HardwareManager(object):
|
2006-12-04 20:12:24 +01:00
|
|
|
def __init__(self):
|
2007-06-13 16:22:49 +02:00
|
|
|
try:
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
proxy = bus.get_object(_HARDWARE_MANAGER_SERVICE,
|
|
|
|
_HARDWARE_MANAGER_OBJECT_PATH)
|
|
|
|
self._service = dbus.Interface(proxy, _HARDWARE_MANAGER_INTERFACE)
|
|
|
|
except dbus.DBusException, e:
|
|
|
|
self._service = None
|
|
|
|
logging.info('Hardware manager service not found.')
|
|
|
|
|
|
|
|
self._mixer = gst.element_factory_make('alsamixer')
|
|
|
|
self._mixer.set_state(gst.STATE_PAUSED)
|
|
|
|
|
2007-10-18 22:05:27 +02:00
|
|
|
self._master = None
|
2007-06-13 16:22:49 +02:00
|
|
|
for track in self._mixer.list_tracks():
|
|
|
|
if track.flags & gst.interfaces.MIXER_TRACK_MASTER:
|
2007-06-13 16:32:26 +02:00
|
|
|
self._master = track
|
2007-06-13 16:22:49 +02:00
|
|
|
|
2007-07-17 19:03:52 +02:00
|
|
|
def get_volume(self):
|
|
|
|
if not self._mixer or not self._master:
|
|
|
|
logging.error('Cannot get the volume')
|
|
|
|
return self._convert_volume(0)
|
|
|
|
|
|
|
|
max_volume = self._master.max_volume
|
|
|
|
min_volume = self._master.min_volume
|
|
|
|
volume = self._mixer.get_volume(self._master)[0]
|
|
|
|
|
|
|
|
return volume * 100.0 / (max_volume - min_volume) + min_volume
|
|
|
|
|
2007-06-13 16:22:49 +02:00
|
|
|
def set_volume(self, volume):
|
2007-06-13 16:32:26 +02:00
|
|
|
if not self._mixer or not self._master:
|
|
|
|
logging.error('Cannot set the volume')
|
|
|
|
|
2007-06-13 16:22:49 +02:00
|
|
|
if volume < 0 or volume > 100:
|
|
|
|
logging.error('Trying to set an invalid volume value.')
|
|
|
|
return
|
|
|
|
|
2007-06-13 16:32:26 +02:00
|
|
|
max_volume = self._master.max_volume
|
|
|
|
min_volume = self._master.min_volume
|
2007-06-13 16:22:49 +02:00
|
|
|
|
2007-07-17 19:03:52 +02:00
|
|
|
volume = volume * (max_volume - min_volume) / 100.0 + min_volume
|
2007-06-13 16:32:26 +02:00
|
|
|
volume_list = [ volume ] * self._master.num_channels
|
|
|
|
|
|
|
|
self._mixer.set_volume(self._master, tuple(volume_list))
|
2007-06-13 16:22:49 +02:00
|
|
|
|
2007-06-13 16:32:26 +02:00
|
|
|
def set_mute(self, mute):
|
|
|
|
if not self._mixer or not self._master:
|
|
|
|
logging.error('Cannot mute the audio channel')
|
|
|
|
self._mixer.set_mute(self._master, mute)
|
2006-11-08 16:42:50 +01:00
|
|
|
|
2007-09-24 18:00:36 +02:00
|
|
|
def startup(self):
|
|
|
|
if env.is_emulator() is False:
|
|
|
|
profile = get_profile()
|
|
|
|
self.set_volume(profile.sound_volume)
|
|
|
|
|
|
|
|
def shutdown(self):
|
|
|
|
if env.is_emulator() is False:
|
|
|
|
profile = get_profile()
|
|
|
|
profile.sound_volume = self.get_volume()
|
|
|
|
profile.save()
|
|
|
|
|
2007-06-14 14:49:30 +02:00
|
|
|
def set_dcon_freeze(self, frozen):
|
|
|
|
if not self._service:
|
|
|
|
return
|
|
|
|
|
|
|
|
self._service.set_dcon_freeze(frozen)
|
|
|
|
|
2007-01-08 13:09:13 +01:00
|
|
|
def set_display_mode(self, mode):
|
2007-06-13 16:22:49 +02:00
|
|
|
if not self._service:
|
|
|
|
return
|
|
|
|
|
2007-03-04 00:54:50 +01:00
|
|
|
self._service.set_display_mode(mode)
|
2006-11-08 16:42:50 +01:00
|
|
|
|
2007-01-08 13:09:13 +01:00
|
|
|
def set_display_brightness(self, level):
|
2007-06-13 16:22:49 +02:00
|
|
|
if not self._service:
|
2007-07-17 19:03:52 +02:00
|
|
|
logging.error('Cannot set display brightness')
|
2007-06-13 16:22:49 +02:00
|
|
|
return
|
|
|
|
|
2007-01-08 13:09:13 +01:00
|
|
|
self._service.set_display_brightness(level)
|
|
|
|
|
2007-07-17 19:03:52 +02:00
|
|
|
def get_display_brightness(self):
|
|
|
|
if not self._service:
|
|
|
|
logging.error('Cannot get display brightness')
|
|
|
|
return
|
|
|
|
|
|
|
|
return self._service.get_display_brightness()
|
|
|
|
|
2007-01-08 13:09:13 +01:00
|
|
|
def toggle_keyboard_brightness(self):
|
2007-06-13 16:22:49 +02:00
|
|
|
if not self._service:
|
|
|
|
return
|
|
|
|
|
2007-01-08 13:09:13 +01:00
|
|
|
if self._service.get_keyboard_brightness():
|
|
|
|
self._service.set_keyboard_brightness(False)
|
|
|
|
else:
|
|
|
|
self._service.set_keyboard_brightness(True)
|
2007-02-25 01:07:05 +01:00
|
|
|
|
2007-06-14 10:25:58 +02:00
|
|
|
def get_manager():
|
|
|
|
return _manager
|
2007-02-25 01:07:05 +01:00
|
|
|
|
2007-02-25 02:00:40 +01:00
|
|
|
def get_network_manager():
|
|
|
|
return _network_manager
|
|
|
|
|
2007-06-14 10:25:58 +02:00
|
|
|
_manager = HardwareManager()
|
2007-02-26 14:42:39 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
_network_manager = NMClient()
|
|
|
|
except dbus.DBusException, e:
|
|
|
|
_network_manager = None
|
|
|
|
logging.info('Network manager service not found.')
|