gajim-plural/src/common/zeroconf.py

216 lines
7.4 KiB
Python
Raw Normal View History

2006-05-26 16:43:51 +02:00
import os
import sys
2006-05-26 21:18:13 +02:00
import getpass
try:
import avahi, gobject, dbus
except ImportError:
print "Error: python-avahi and python-dbus need to be installed. No zeroconf support."
try:
import dbus.glib
except ImportError, e:
pass
class Zeroconf:
2006-05-26 21:18:13 +02:00
def __init__(self):
self.domain = None # specific domain to browse
2006-05-26 21:18:13 +02:00
self.stype = '_presence._tcp'
self.port = 5298 # listening port that gets announced
2006-05-26 21:18:13 +02:00
self.name = getpass.getuser() # service name / username
self.txt = {} # service data
2006-05-26 16:43:51 +02:00
self.service_browsers = {}
self.contacts = {} # all current local contacts with data
self.entrygroup = ''
## handlers for dbus callbacks
# error handler - maybe replace with gui version/gajim facilities
def print_error_callback(self, err):
print "Error:", str(err)
def new_service_callback(self, interface, protocol, name, stype, domain, flags):
print "Found service '%s' in domain '%s' on %i.%i." % (name, domain, interface, protocol)
#synchronous resolving
self.server.ResolveService( int(interface), int(protocol), name, stype, domain, avahi.PROTO_UNSPEC, dbus.UInt32(0), reply_handler=self.service_resolved_callback, error_handler=self.print_error_callback)
def remove_service_callback(self, interface, protocol, name, stype, domain, flags):
print "Service '%s' in domain '%s' on %i.%i disappeared." % (name, domain, interface, protocol)
del self.contacts[(interface, name, domain)]
def new_service_type(self, interface, protocol, stype, domain, flags):
# Are we already browsing this domain for this type?
2006-05-26 16:43:51 +02:00
if self.service_browsers.has_key((interface, protocol, stype, domain)):
return
print "Browsing for services of type '%s' in domain '%s' on %i.%i ..." % (stype, domain, interface, protocol)
b = dbus.Interface(self.bus.get_object(avahi.DBUS_NAME, \
self.server.ServiceBrowserNew(interface, protocol, \
stype, domain, dbus.UInt32(0))),avahi.DBUS_INTERFACE_SERVICE_BROWSER)
b.connect_to_signal('ItemNew', self.new_service_callback)
b.connect_to_signal('ItemRemove', self.remove_service_callback)
2006-05-26 16:43:51 +02:00
self.service_browsers[(interface, protocol, stype, domain)] = b
def new_domain_callback(self,interface, protocol, domain, flags):
if domain != "local":
self.browse_domain(interface, protocol, domain)
def service_resolved_callback(self, interface, protocol, name, stype, domain, host, aprotocol, address, port, txt, flags):
print "Service data for service '%s' in domain '%s' on %i.%i:" % (name, domain, interface, protocol)
print "\tHost %s (%s), port %i, TXT data: %s" % (host, address, port, str(avahi.txt_array_to_string_array(txt)))
self.contacts[(interface, name, domain)] = (interface, name, protocol, domain, host, address, port, txt)
def service_added_callback(self):
2006-05-26 21:18:13 +02:00
print 'Service successfully added'
def service_committed_callback(self):
2006-05-26 21:18:13 +02:00
print 'Service successfully committed'
def service_updated_callback(self):
2006-05-26 21:18:13 +02:00
print 'Service successfully updated'
def service_add_fail_callback(self, err):
2006-05-26 21:18:13 +02:00
print 'Error while adding service:', str(err)
self.name = self.server.GetAlternativeServiceName(self.name)
self.create_service()
def server_state_changed_callback(self, state, error):
2006-05-26 21:18:13 +02:00
print 'server.state %s' % state
if state == avahi.SERVER_RUNNING:
self.create_service()
elif state == avahi.SERVER_COLLISION:
self.entrygroup.Reset()
# elif state == avahi.CLIENT_FAILURE: # TODO: add error handling (avahi daemon dies...?)
def entrygroup_state_changed_callback(self, state, error):
2006-05-26 21:18:13 +02:00
# the name is already present, so recreate
if state == avahi.ENTRY_GROUP_COLLISION:
2006-05-26 21:18:13 +02:00
self.service_add_fail_callback('Local name collision, recreating.')
# elif state == avahi.ENTRY_GROUP_FAILURE:
# make zeroconf-valid names
def replace_show(self, show):
if show == 'chat' or show == '':
show = 'online'
elif show == 'xa':
show = 'away'
elif show == 'online':
show = 'avail'
return show
def create_service(self):
if self.entrygroup == '':
# create an EntryGroup for publishing
self.entrygroup = dbus.Interface(self.bus.get_object(avahi.DBUS_NAME, self.server.EntryGroupNew()), avahi.DBUS_INTERFACE_ENTRY_GROUP)
self.entrygroup.connect_to_signal('StateChanged', self.entrygroup_state_changed_callback)
self.txt['port.p2pj'] = self.port
self.txt['version'] = 1
self.txt['textvers'] = 1
# replace gajim's status messages with proper ones
if self.txt.has_key('status'):
self.txt['status'] = self.replace_show(self.txt['status'])
print "Publishing service '%s' of type %s" % (self.name, self.stype)
self.entrygroup.AddService(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, dbus.UInt32(0), self.name, self.stype, '', '', self.port, avahi.dict_to_txt_array(self.txt), reply_handler=self.service_added_callback, error_handler=self.service_add_fail_callback)
self.entrygroup.Commit(reply_handler=self.service_committed_callback, error_handler=self.print_error_callback)
2006-05-26 21:18:13 +02:00
def announce(self):
state = self.server.GetState()
if state == avahi.SERVER_RUNNING:
self.create_service()
def remove_announce(self):
self.entrygroup.Reset()
self.entrygroup.Free()
self.entrygroup = ''
def browse_domain(self, interface, protocol, domain):
self.new_service_type(interface, protocol, self.stype, domain, '')
# connect to dbus
def connect(self):
self.bus = dbus.SystemBus()
self.server = dbus.Interface(self.bus.get_object(avahi.DBUS_NAME, \
avahi.DBUS_PATH_SERVER), avahi.DBUS_INTERFACE_SERVER)
self.server.connect_to_signal('StateChanged', self.server_state_changed_callback)
# start browsing
if self.domain is None:
# Explicitly browse .local
self.browse_domain(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, "local")
# Browse for other browsable domains
db = dbus.Interface(self.bus.get_object(avahi.DBUS_NAME, \
self.server.DomainBrowserNew(avahi.IF_UNSPEC, \
avahi.PROTO_UNSPEC, '', avahi.DOMAIN_BROWSER_BROWSE,\
dbus.UInt32(0))), avahi.DBUS_INTERFACE_DOMAIN_BROWSER)
db.connect_to_signal('ItemNew', self.new_domain_callback)
else:
# Just browse the domain the user wants us to browse
self.browse_domain(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, domain)
2006-05-26 21:18:13 +02:00
def disconnect(self):
self.remove_announce()
# refresh data manually - really ok or too much traffic?
def resolve_all(self):
for key in contacts.keys():
self.server.ResolveService( int(key.interface), int(key.protocol), key.name, \
self.stype, key.domain, avahi.PROTO_UNSPEC, dbus.UInt32(0),\
reply_handler=self.service_resolved_callback, error_handler=self.print_error_callback)
def get_contacts(self):
self.resolve_all
return self.contacts
2006-05-26 21:18:13 +02:00
def update_txt(self, txt):
# update only given keys
for key in txt.keys():
self.txt[key]=txt[key]
if txt.has_key('status'):
self.txt['status'] = self.replace_show(txt['status'])
txt = avahi.dict_to_txt_array(self.txt)
self.entrygroup.UpdateServiceTxt(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, dbus.UInt32(0), self.name, self.stype,'', txt, reply_handler=self.service_updated_callback, error_handler=self.print_error_callback)
# self.entrygroup.Commit() # TODO: necessary?
2006-05-26 16:43:51 +02:00
# END Zeroconf
'''
def main():
2006-05-26 21:18:13 +02:00
zeroconf = Zeroconf()
zeroconf.connect()
zeroconf.txt[('1st')] = 'foo'
zeroconf.txt[('last')] = 'bar'
zeroconf.announce()
# updating after announcing
txt = {}
txt['status'] = 'avail' # out of avail/away/dnd
txt['msg'] = 'Here I am'
zeroconf.update_txt(txt)
try:
gobject.MainLoop().run()
except KeyboardInterrupt, k:
pass
if __name__ == "__main__":
main()
2006-05-26 16:43:51 +02:00
'''