Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a main function that consists of this code:

    client_manager = Manager("client_manager")
    app_manager = Manager("app_manager")
    print("hi1")
    app_manager.start(messanger_list=[client_manager])
    client_manager.start(messanger_list=[app_manager])
    print("hi2")
    t2 = Thread(target=gobject.MainLoop().run)
    t2.start()

    print("hi3")
    app_manager.send_message("Hey client manager, it's app manager, how's it going?")
    print("hi4")

The overall outline of the code is that I am starting two classes that can both send and receive dbus signals, (the messanger_list is an argument that will later be used to ensure that a manager doesn't listen to its own signals). Then I start the main loop and ask the app_manager to send out a signal.

Here is the code that is called when you call client_manager.start().

def start_manager(manager, messanger_list=[]):
    # set up loop
    loop = DBusGMainLoop(set_as_default=True)

    # set up service
    bus_name = dbus.service.BusName('com.sookbox.messenger',
        bus=dbus.SessionBus())
    object_name = _get_object_name(manager)
    dbus.service.Object.__init__(manager, bus_name, object_name)

    # open bus and set up manager to receive signals
    bus = dbus.SessionBus()
    if len(messanger_list) == 0:
        bus.add_signal_receiver(getattr(manager, "receive_message"))  
    for m in messanger_list:
        print("Adding object receiver: ", _get_object_name(m))
        bus.add_signal_receiver(getattr(manager, "receive_message"), path=_get_object_name(m))

def _get_object_name(manager):
    return '/' + string.replace('com.sookbox.messenger', '.', '/') + "/" + manager.name

The problem is that the code works when the line

bus.add_signal_receiver(getattr(manager, "receive_message"))

has no extra arguments to the add_signal_receiver method. But then the managers receive ALL signals including random system signals, the signal it itself just sent out, and other stuff that I would like to filter out.

I looked at the documentation and there are several ways to narrow down the list of signals to listen to, namely signal_name, dbus_interface, bus_name, and path. However, when I add any of these to the add_signal_receiver, I get really weird behavior. The code only reaches the second print statement and just hangs there:

hi1
('Adding object receiver: ', '/com/sookbox/messenger/client_manager')
('Adding object receiver: ', '/com/sookbox/messenger/app_manager')
hi2

I really don't understand what's going on, because all the messaging code is in a separate thread, how is it blocking the main thread from reaching the third print statement?

Any thoughts?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.