From: Luc Yriarte Date: Wed, 25 Jul 2012 13:36:05 +0000 (+0200) Subject: dbus-tools: dbus-send skeleton X-Git-Tag: upstream/0.6.1~183 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a143675315db55ebd846696192accc01ac031d74;p=contrib%2Fcloudeebus.git dbus-tools: dbus-send skeleton --- diff --git a/dbus-tools/dbus-send.py b/dbus-tools/dbus-send.py new file mode 100644 index 0000000..ca67007 --- /dev/null +++ b/dbus-tools/dbus-send.py @@ -0,0 +1,45 @@ +############################################################################### +# Copyright 2012 Intel Corporation. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +############################################################################### + + +import sys, dbus + +from twisted.internet import glib2reactor +# Configure the twisted mainloop to be run inside the glib mainloop. +# This must be done before importing the other twisted modules +glib2reactor.install() +from twisted.internet import reactor, defer + +from autobahn.websocket import listenWS +from autobahn.wamp import exportRpc, WampServerFactory, WampServerProtocol + +from dbus.mainloop.glib import DBusGMainLoop + +import gobject +gobject.threads_init() + +from dbus import glib +glib.init_threads() + + +############################################################################### +if __name__ == '__main__': + port = "9000" + if len(sys.argv) == 2: + port = sys.argv[1] + + uri = "ws://localhost:" + port + print uri