2006-05-26 16:43:51 +02:00
|
|
|
import os
|
|
|
|
import sys
|
2006-05-26 21:18:13 +02:00
|
|
|
import getpass
|
2006-05-30 01:03:20 +02:00
|
|
|
import socket
|
2006-05-26 12:56:21 +02:00
|
|
|
|
|
|
|
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-31 01:13:36 +02:00
|
|
|
def __init__(self, new_serviceCB, remove_serviceCB):
|
2006-05-26 12:56:21 +02:00
|
|
|
self.domain = None # specific domain to browse
|
2006-05-26 21:18:13 +02:00
|
|
|
self.stype = '_presence._tcp'
|
2006-05-31 01:13:36 +02:00
|
|
|
self.port = 5298 # listening port that gets announced
|
2006-06-13 23:19:39 +02:00
|
|
|
self.username = getpass.getuser()
|
|
|
|
self.host = socket.gethostname()
|
|
|
|
self.name = self.username+'@'+ self.host # service name
|
2006-05-26 21:18:13 +02:00
|
|
|
self.txt = {} # service data
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-31 01:13:36 +02:00
|
|
|
self.new_serviceCB = new_serviceCB
|
|
|
|
self.remove_serviceCB = remove_serviceCB
|
|
|
|
|
2006-05-26 16:43:51 +02:00
|
|
|
self.service_browsers = {}
|
2006-05-26 12:56:21 +02:00
|
|
|
self.contacts = {} # all current local contacts with data
|
2006-05-31 01:13:36 +02:00
|
|
|
self.entrygroup = None
|
2006-05-26 12:56:21 +02:00
|
|
|
|
|
|
|
## 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):
|
2006-06-13 23:19:39 +02:00
|
|
|
if name != self.name:
|
|
|
|
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, \
|
2006-05-29 21:57:39 +02:00
|
|
|
domain, avahi.PROTO_UNSPEC, dbus.UInt32(0), \
|
|
|
|
reply_handler=self.service_resolved_callback, error_handler=self.print_error_callback)
|
2006-05-26 12:56:21 +02:00
|
|
|
|
|
|
|
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)
|
2006-05-30 01:03:20 +02:00
|
|
|
del self.contacts[name]
|
2006-05-31 01:13:36 +02:00
|
|
|
self.remove_serviceCB(name)
|
2006-05-26 12:56:21 +02:00
|
|
|
|
|
|
|
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)):
|
2006-05-26 12:56:21 +02:00
|
|
|
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
|
2006-05-26 12:56:21 +02:00
|
|
|
|
|
|
|
def new_domain_callback(self,interface, protocol, domain, flags):
|
|
|
|
if domain != "local":
|
|
|
|
self.browse_domain(interface, protocol, domain)
|
|
|
|
|
2006-05-29 21:57:39 +02:00
|
|
|
def txt_array_to_dict(self,t):
|
2006-05-30 01:03:20 +02:00
|
|
|
l = {}
|
2006-05-30 00:17:13 +02:00
|
|
|
|
2006-05-30 01:03:20 +02:00
|
|
|
for s in t:
|
2006-05-29 21:57:39 +02:00
|
|
|
str = avahi.byte_array_to_string(s)
|
|
|
|
poseq = str.find('=')
|
|
|
|
l[str[:poseq]] = str[poseq+1:]
|
2006-05-30 01:03:20 +02:00
|
|
|
return l
|
2006-05-29 21:57:39 +02:00
|
|
|
|
2006-06-02 20:46:52 +02:00
|
|
|
def service_resolved_callback(self, interface, protocol, name, stype, domain, host, aprotocol, address, port, txt, flags):
|
|
|
|
self.contacts[name] = (name, domain, interface, protocol, host, address, port, txt)
|
|
|
|
self.new_serviceCB(name)
|
|
|
|
|
|
|
|
# different handler when resolving all contacts
|
|
|
|
def service_resolved_all_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)))
|
2006-05-29 21:57:39 +02:00
|
|
|
|
2006-06-02 20:46:52 +02:00
|
|
|
self.contacts[name] = (name, domain, interface, protocol, host, address, port, txt)
|
2006-05-26 12:56:21 +02:00
|
|
|
|
|
|
|
def service_added_callback(self):
|
2006-05-26 21:18:13 +02:00
|
|
|
print 'Service successfully added'
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-26 12:56:21 +02:00
|
|
|
def service_committed_callback(self):
|
2006-05-26 21:18:13 +02:00
|
|
|
print 'Service successfully committed'
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-26 12:56:21 +02:00
|
|
|
def service_updated_callback(self):
|
2006-05-26 21:18:13 +02:00
|
|
|
print 'Service successfully updated'
|
2006-05-26 12:56:21 +02:00
|
|
|
|
|
|
|
def service_add_fail_callback(self, err):
|
2006-05-26 21:18:13 +02:00
|
|
|
print 'Error while adding service:', str(err)
|
2006-05-26 12:56:21 +02:00
|
|
|
self.name = self.server.GetAlternativeServiceName(self.name)
|
|
|
|
self.create_service()
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-26 12:56:21 +02:00
|
|
|
def server_state_changed_callback(self, state, error):
|
2006-05-26 21:18:13 +02:00
|
|
|
print 'server.state %s' % state
|
2006-05-26 12:56:21 +02:00
|
|
|
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...?)
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-26 12:56:21 +02:00
|
|
|
def entrygroup_state_changed_callback(self, state, error):
|
2006-05-26 21:18:13 +02:00
|
|
|
# the name is already present, so recreate
|
2006-05-26 12:56:21 +02:00
|
|
|
if state == avahi.ENTRY_GROUP_COLLISION:
|
2006-05-26 21:18:13 +02:00
|
|
|
self.service_add_fail_callback('Local name collision, recreating.')
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-26 12:56:21 +02:00
|
|
|
# elif state == avahi.ENTRY_GROUP_FAILURE:
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-29 17:36:18 +02:00
|
|
|
# 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
|
2006-05-26 12:56:21 +02:00
|
|
|
|
|
|
|
def create_service(self):
|
2006-05-31 01:13:36 +02:00
|
|
|
if not self.entrygroup:
|
2006-05-26 12:56:21 +02:00
|
|
|
# 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)
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-29 17:36:18 +02:00
|
|
|
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'])
|
2006-05-26 12:56:21 +02:00
|
|
|
|
|
|
|
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-30 01:03:20 +02:00
|
|
|
|
2006-05-26 21:18:13 +02:00
|
|
|
def announce(self):
|
2006-06-02 20:46:52 +02:00
|
|
|
#for testing
|
|
|
|
#self.contacts['stefan@munin'] = ('stefan@munin', 'local', '8', '0', 'munin', '192.168.1.29', '5121',avahi.string_array_to_txt_array(['status','avail']))
|
|
|
|
#self.new_serviceCB('stefan@munin')
|
2006-05-26 12:56:21 +02:00
|
|
|
state = self.server.GetState()
|
|
|
|
|
|
|
|
if state == avahi.SERVER_RUNNING:
|
|
|
|
self.create_service()
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-26 12:56:21 +02:00
|
|
|
def remove_announce(self):
|
|
|
|
self.entrygroup.Reset()
|
|
|
|
self.entrygroup.Free()
|
2006-05-31 01:13:36 +02:00
|
|
|
self.entrygroup = None
|
2006-05-26 12:56:21 +02:00
|
|
|
|
|
|
|
def browse_domain(self, interface, protocol, domain):
|
|
|
|
self.new_service_type(interface, protocol, self.stype, domain, '')
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-26 12:56:21 +02:00
|
|
|
# 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)
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-26 12:56:21 +02:00
|
|
|
# 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()
|
2006-05-26 12:56:21 +02:00
|
|
|
|
|
|
|
# refresh data manually - really ok or too much traffic?
|
|
|
|
def resolve_all(self):
|
2006-05-30 00:17:13 +02:00
|
|
|
for val in self.contacts.values():
|
2006-06-02 20:46:52 +02:00
|
|
|
#val:(name, domain, interface, protocol, host, address, port, txt)
|
2006-06-13 23:19:39 +02:00
|
|
|
self.server.ResolveService(int(val[2]), int(val[3]), val[0], \
|
2006-06-02 20:46:52 +02:00
|
|
|
self.stype, val[1], avahi.PROTO_UNSPEC, dbus.UInt32(0),\
|
|
|
|
reply_handler=self.service_resolved_all_callback, error_handler=self.print_error_callback)
|
2006-06-13 23:19:39 +02:00
|
|
|
print "zeroconf.py: resolve_all"
|
|
|
|
|
2006-05-26 12:56:21 +02:00
|
|
|
def get_contacts(self):
|
|
|
|
return self.contacts
|
|
|
|
|
2006-05-31 01:13:36 +02:00
|
|
|
def get_contact(self, jid):
|
2006-06-13 23:19:39 +02:00
|
|
|
if self.contacts.has_key(jid):
|
|
|
|
return self.contacts[jid]
|
2006-05-31 01:13:36 +02:00
|
|
|
|
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]
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-29 17:36:18 +02:00
|
|
|
if txt.has_key('status'):
|
|
|
|
self.txt['status'] = self.replace_show(txt['status'])
|
2006-05-30 01:03:20 +02:00
|
|
|
|
2006-05-26 12:56:21 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
'''
|
2006-05-29 21:57:39 +02:00
|
|
|
# how to use...
|
|
|
|
|
2006-05-26 21:18:13 +02:00
|
|
|
zeroconf = Zeroconf()
|
|
|
|
zeroconf.connect()
|
2006-05-30 01:03:20 +02:00
|
|
|
zeroconf.txt['1st'] = 'foo'
|
|
|
|
zeroconf.txt['last'] = 'bar'
|
|
|
|
zeroconfptxt['email'] = foo@bar.org
|
2006-05-26 21:18:13 +02:00
|
|
|
zeroconf.announce()
|
|
|
|
|
|
|
|
# updating after announcing
|
|
|
|
txt = {}
|
2006-05-29 21:57:39 +02:00
|
|
|
txt['status'] = 'avail'
|
2006-05-26 21:18:13 +02:00
|
|
|
txt['msg'] = 'Here I am'
|
|
|
|
zeroconf.update_txt(txt)
|
2006-05-26 16:43:51 +02:00
|
|
|
'''
|