dbus/python/examples example-service.py, 1.10,
1.11 example-signal-emitter.py, 1.5,
1.6 gconf-proxy-service.py, 1.4, 1.5 gconf-proxy-service2.py,
1.3, 1.4
John Palmieri
johnp at freedesktop.org
Wed Jul 13 04:16:09 EST 2005
- Previous message: dbus/python Makefile.am, 1.13, 1.14 __init__.py, 1.2, 1.3 _dbus.py,
1.5, 1.6 dbus_bindings.pxd.in, NONE, 1.1 dbus_bindings.pyx,
NONE, 1.1 dbus_bindings.pyx.in, 1.27,
NONE dbus_glib_bindings.pyx, NONE, 1.1 glib.py, NONE,
1.1 service.py, NONE, 1.1 services.py, 1.1, NONE
- Next message: dbus/tools dbus-launch.c,1.9,1.10
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvs/dbus/dbus/python/examples
In directory gabe:/tmp/cvs-serv15272/python/examples
Modified Files:
example-service.py example-signal-emitter.py
gconf-proxy-service.py gconf-proxy-service2.py
Log Message:
* python/dbus_bindings.pyx.in: removed
* python/dbus_bindings.pyx: Added.
- Fixed some memleaks (patch from
Sean Meiners <sean.meiners at linspireinc.com>)
- Broke out the #include "dbus_h_wrapper.h" and put it in its
own pxd file (Pyrex definition)
- Broke out glib dependancies into its own pyx module
* python/dbus_bindings.pdx: Added.
- Defines C class Connection for exporting to other modules
* python/dbus_glib_bindings.pyx: Added.
- New module to handle lowlevel dbus-glib mainloop integration
* python/glib.py: Added.
- Registers the glib mainloop when you import this module
* python/services.py: Removed (renamed to service.py)
* python/service.py: Added.
- (class Server): renamed Name
* python/__init__.py: Bump ro version (0,41,0)
- don't import the decorators or service module
by default. These now reside in the dbus.service namespace
* python/_dbus.py (Bus::__init__): Add code run the main loop
setup function on creation
* python/examples/example-service.py,
python/examples/example-signal-emitter.py: update examples
* python/examples/gconf-proxy-service.py,
python/examples/gconf-proxy-service2.py: TODO fix these up
* doc/TODO: Addition
- Added a Python Bindings 1.0 section
- added "Add match on args or match on details to match rules"
Index: example-service.py
===================================================================
RCS file: /cvs/dbus/dbus/python/examples/example-service.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- example-service.py 1 May 2005 19:34:58 -0000 1.10
+++ example-service.py 12 Jul 2005 18:16:07 -0000 1.11
@@ -1,29 +1,32 @@
#!/usr/bin/env python
import dbus
+import dbus.service
+
+import dbus.glib
import pygtk
import gtk
-class SomeObject(dbus.Object):
- def __init__(self, service):
- dbus.Object.__init__(self, "/SomeObject", service)
+class SomeObject(dbus.service.Object):
+ def __init__(self, name):
+ dbus.service.Object.__init__(self, "/SomeObject", name)
- @dbus.method("org.designfu.SampleInterface")
+ @dbus.service.method("org.designfu.SampleInterface")
def HelloWorld(self, hello_message):
print (str(hello_message))
return ["Hello", " from example-service.py"]
- @dbus.method("org.designfu.SampleInterface")
+ @dbus.service.method("org.designfu.SampleInterface")
def GetTuple(self):
return ("Hello Tuple", " from example-service.py")
- @dbus.method("org.designfu.SampleInterface")
+ @dbus.service.method("org.designfu.SampleInterface")
def GetDict(self):
return {"first": "Hello Dict", "second": " from example-service.py"}
session_bus = dbus.SessionBus()
-service = dbus.Service("org.designfu.SampleService", bus=session_bus)
-object = SomeObject(service)
+name = dbus.service.Name("org.designfu.SampleService", bus=session_bus)
+object = SomeObject(name)
gtk.main()
Index: example-signal-emitter.py
===================================================================
RCS file: /cvs/dbus/dbus/python/examples/example-signal-emitter.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- example-signal-emitter.py 24 May 2005 00:21:07 -0000 1.5
+++ example-signal-emitter.py 12 Jul 2005 18:16:07 -0000 1.6
@@ -1,26 +1,27 @@
#!/usr/bin/env python
import dbus
+import dbus.service
import gtk
-class TestObject(dbus.Object):
- def __init__(self, service):
- dbus.Object.__init__(self, "/org/designfu/TestService/object", service)
+class TestObject(dbus.service.Object):
+ def __init__(self, name):
+ dbus.service.Object.__init__(self, "/org/designfu/TestService/object", name)
- @dbus.signal('org.designfu.TestService')
+ @dbus.service.signal('org.designfu.TestService')
def HelloSignal(self, message):
# The signal is emitted when this method exits
# You can have code here if you wish
pass
- @dbus.method('org.designfu.TestService')
+ @dbus.service.method('org.designfu.TestService')
def emitHelloSignal(self):
#you emit signals by calling the signal's skeleton method
self.HelloSignal("Hello")
return "Signal emitted"
session_bus = dbus.SessionBus()
-service = dbus.Service("org.designfu.TestService", bus=session_bus)
-object = TestObject(service)
+name = dbus.service.Name("org.designfu.TestService", bus=session_bus)
+object = TestObject(name)
gtk.main()
Index: gconf-proxy-service.py
===================================================================
RCS file: /cvs/dbus/dbus/python/examples/gconf-proxy-service.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- gconf-proxy-service.py 1 May 2005 19:34:58 -0000 1.4
+++ gconf-proxy-service.py 12 Jul 2005 18:16:07 -0000 1.5
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-
+#FIXME: Doesn't work with the new bindings
import dbus
import gtk
Index: gconf-proxy-service2.py
===================================================================
RCS file: /cvs/dbus/dbus/python/examples/gconf-proxy-service2.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gconf-proxy-service2.py 1 May 2005 19:34:58 -0000 1.3
+++ gconf-proxy-service2.py 12 Jul 2005 18:16:07 -0000 1.4
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-
+#FIXME: doesn't work with the new bindings
import dbus
import gtk
- Previous message: dbus/python Makefile.am, 1.13, 1.14 __init__.py, 1.2, 1.3 _dbus.py,
1.5, 1.6 dbus_bindings.pxd.in, NONE, 1.1 dbus_bindings.pyx,
NONE, 1.1 dbus_bindings.pyx.in, 1.27,
NONE dbus_glib_bindings.pyx, NONE, 1.1 glib.py, NONE,
1.1 service.py, NONE, 1.1 services.py, 1.1, NONE
- Next message: dbus/tools dbus-launch.c,1.9,1.10
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dbus-commit
mailing list