/usr/share/pyshared/ibus/bus.py is in python-ibus 1.4.1-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | # vim:set et sts=4 sw=4:
#
# ibus - The Input Bus
#
# Copyright (c) 2007-2010 Peng Huang <shawn.p.huang@gmail.com>
# Copyright (c) 2007-2010 Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
# Boston, MA 02111-1307 USA
__all__ = (
"Bus",
)
import dbus
import dbus.lowlevel
import dbus.connection
import dbus.mainloop.glib
import gobject
import common
import object
import serializable
import config
dbus.mainloop.glib.DBusGMainLoop(set_as_default = True)
class Bus(object.Object):
__gtype_name__ = "PYIBusBus"
__gsignals__ = {
"disconnected" : (
gobject.SIGNAL_RUN_LAST,
gobject.TYPE_NONE,
()
),
"config-reloaded" : (
gobject.SIGNAL_RUN_LAST,
gobject.TYPE_NONE,
()
),
"registry-changed" : (
gobject.SIGNAL_RUN_LAST,
gobject.TYPE_NONE,
()
),
}
def __init__(self):
super(Bus, self).__init__()
self.__dbusconn = dbus.connection.Connection(common.get_address())
_dbus = self.__dbusconn.get_object(dbus.BUS_DAEMON_NAME,
dbus.BUS_DAEMON_PATH)
self.__dbus = dbus.Interface (_dbus, dbus_interface="org.freedesktop.DBus")
self.__unique_name = self.hello()
_ibus = self.__dbusconn.get_object(common.IBUS_SERVICE_IBUS,
common.IBUS_PATH_IBUS)
self.__ibus = dbus.Interface (_ibus, dbus_interface='org.freedesktop.IBus')
self.__ibus.connect_to_signal("RegistryChanged", self.__registry_changed_cb)
self.__dbusconn.call_on_disconnection(self.__dbusconn_disconnected_cb)
# self.__dbusconn.add_message_filter(self.__filter_cb)
def __filter_cb(self, conn, message):
if message.get_type() == 4:
print "Signal %s" % message.get_member()
print " sender = %s" % message.get_sender()
print " path = %s" % message.get_path()
return dbus.lowlevel.HANDLER_RESULT_NOT_YET_HANDLED
def __dbusconn_disconnected_cb(self, dbusconn):
assert self.__dbusconn == dbusconn
self.__dbusconn = None
self.emit("disconnected")
def __registry_changed_cb(self):
self.emit("registry-changed")
def get_name(self):
return self.__unique_name
def get_is_connected(self):
if self.__dbusconn == None:
return False
return self.__dbusconn.get_is_connected()
# define dbus methods
def get_dbus(self):
return self.__dbus
def hello(self):
return self.__dbus.Hello()
def request_name(self, name, flags):
return self.__dbus.RequestName(name, dbus.UInt32 (flags))
def release_name(self, name):
return self.__dbus.ReleaseName(name)
def start_service_by_name(self, name, flags):
return self.__dbus.StartServiceByName(name, dbus.UInt32 (flags))
def list_queued_owners(self, name):
return self.__dbus.ListQueuedOwners(name)
def get_name_owner(self, name):
return self.__dbus.GetNameOwner(name)
def add_match(self, rule):
return self.__dbus.AddMatch(rule)
def remove_match(self, rule):
return self.__dbus.RemoveMatch(rule)
def get_dbusconn(self):
return self.__dbusconn
def get_address(self):
return common.get_address()
# define ibus methods
def register_component(self, component):
component = serializable.serialize_object(component)
return self.__ibus.RegisterComponent(component)
def list_engines(self):
engines = self.__ibus.ListEngines()
return map(serializable.deserialize_object, engines)
def list_active_engines(self):
engines = self.__ibus.ListActiveEngines()
return map(serializable.deserialize_object, engines)
def set_global_engine(self, name):
return self.__ibus.SetGlobalEngine(name)
def create_input_context(self, client_name):
return self.__ibus.CreateInputContext(client_name)
def current_input_contxt(self):
return self.__ibus.CurrentInputContext()
def exit(self, restart):
return self.__ibus.Exit(restart)
def ping(self, data):
flag = isinstance(data, serializable.Serializable)
if flag:
data = serializable.serialize_object(data)
data = self.__ibus.Ping(data, dbus_interface="org.freedesktop.IBus")
if flag:
data = serializable.deserialize_object(data)
return data
def introspect_ibus(self):
return self.__ibus.Introspect()
def introspect_dbus(self):
return self.__dbus.Introspect()
def get_config(self):
try:
return self.__config
except:
self.__config = config.Config(self)
return self.__config
def test():
import glib
import factory
import text
mainloop = glib.MainLoop()
def __disconnected_cb(*args):
print "Disconnected", args
mainloop.quit()
b = Bus()
b.connect("disconnected", __disconnected_cb)
print "unique_name =", b.get_name()
for i in b.list_factories():
print i.name
mainloop.run()
print "Exit"
if __name__ == "__main__":
test()
|