]> git.meshlink.io Git - catta/blob - avahi-utils/avahi-dump-all.in
* remove pygtk checks and put it back like rev 217
[catta] / avahi-utils / avahi-dump-all.in
1 #!@PYTHON@
2 # -*-python-*-
3 # $Id$ 
4
5 # This file is part of avahi.
6 #
7 # avahi is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU Lesser General Public License as
9 # published by the Free Software Foundation; either version 2 of the
10 # License, or (at your option) any later version.
11 #
12 # avahi is distributed in the hope that it will be useful, but WITHOUT
13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 # License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with avahi; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 # USA.
21
22 import avahi, dbus, gobject, sys
23
24 try:
25     import dbus.glib
26 except ImportError, e:
27     pass
28
29 service_type_browsers = {}
30 service_browsers = {}
31
32 def service_resolved(interface, protocol, name, type, domain, host, aprotocol, address, port, txt):
33     print "Service data for service '%s' of type '%s' in domain '%s' on %i.%i:" % (name, type, domain, interface, protocol)
34     print "\tHost %s (%s), port %i, TXT data: %s" % (host, address, port, str(txt))
35
36 def print_error(err):
37     print "Error:", str(err)
38
39 def new_service(interface, protocol, name, type, domain):
40     global server
41     
42     print "Found service '%s' of type '%s' in domain '%s' on %i.%i." % (name, type, domain, interface, protocol)
43
44     # Asynchronous resolving
45     server.ResolveService(interface, protocol, name, type, domain, avahi.PROTO_UNSPEC, reply_handler=service_resolved, error_handler=print_error)
46
47 def remove_service(interface, protocol, name, type, domain):
48     print "Service '%s' of type '%s' in domain '%s' on %i.%i disappeared." % (name, type, domain, interface, protocol)
49  
50 def new_service_type(interface, protocol, type, domain):
51     global server, service_browsers
52
53     # Are we already browsing this domain for this type? 
54     if service_browsers.has_key((interface, protocol, type, domain)):
55         return
56
57     print "Browsing for services of type '%s' in domain '%s' on %i.%i ..." % (type, domain, interface, protocol)
58     
59     b = dbus.Interface(bus.get_object(avahi.DBUS_NAME, server.ServiceBrowserNew(interface, protocol, type, domain)), avahi.DBUS_INTERFACE_SERVICE_BROWSER)
60     b.connect_to_signal('ItemNew', new_service)
61     b.connect_to_signal('ItemRemove', remove_service)
62
63     service_browsers[(interface, protocol, type, domain)] = b
64
65 def browse_domain(interface, protocol, domain):
66     global server, service_type_browsers
67
68     # Are we already browsing this domain?
69     if service_type_browsers.has_key((interface, protocol, domain)):
70         return
71
72     print "Browsing domain '%s' on %i.%i ..." % (domain, interface, protocol)
73     
74     b = dbus.Interface(bus.get_object(avahi.DBUS_NAME, server.ServiceTypeBrowserNew(interface, protocol, domain)), avahi.DBUS_INTERFACE_SERVICE_TYPE_BROWSER)
75     b.connect_to_signal('ItemNew', new_service_type)
76
77     service_type_browsers[(interface, protocol, domain)] = b
78
79 def new_domain(interface, protocol, domain):
80
81     # We browse for .local anyway...
82     if domain != "local":
83         browse_domain(interface, protocol, domain)
84
85
86 domain = None
87
88 if len(sys.argv) > 1:
89     domain = sys.argv[1]
90         
91 bus = dbus.SystemBus()
92 server = dbus.Interface(bus.get_object(avahi.DBUS_NAME, avahi.DBUS_PATH_SERVER), avahi.DBUS_INTERFACE_SERVER)
93
94 if domain is None:
95     # Explicitly browse .local
96     browse_domain(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, "local")
97
98     # Browse for other browsable domains
99     db = dbus.Interface(bus.get_object(avahi.DBUS_NAME, server.DomainBrowserNew(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, "", avahi.DOMAIN_BROWSER_BROWSE)), avahi.DBUS_INTERFACE_DOMAIN_BROWSER)
100     db.connect_to_signal('ItemNew', new_domain)
101
102 else:
103     # Just browse the domain the user wants us to browse
104     browse_domain(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, domain)
105
106 try:
107     gobject.MainLoop().run()
108 except KeyboardInterrupt, k:
109     pass