]> git.meshlink.io Git - catta/blob - avahi-utils/avahi-publish-service.in
dfb21ab121de323698cabde9a79fa63b957f805c
[catta] / avahi-utils / avahi-publish-service.in
1 #!/usr/bin/env @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, getopt
23
24 try:
25     import dbus.glib
26 except ImportError, e:
27     pass
28
29 def usage(retval = 0):
30     print "%s [options] <name> <type> <port> [<txt> ...]\n" % sys.argv[0]
31     print "   -h --help      Show this help"
32     print "   -d --domain    Domain where to register this service"
33     print "   -H --host      Host where this service resides"
34     sys.exit(retval)
35
36 try:
37     opts, args = getopt.getopt(sys.argv[1:], "d:H:", ["help", "domain=", "host="])
38 except getopt.GetoptError:
39     usage(2)
40
41 domain = ""
42 host = ""
43     
44 for o, a in opts:
45     if o in ("-h", "--help"):
46         usage()
47
48     if o in ("-d", "--domain"):
49         domain = a
50
51     if o in ("-H", "--host"):
52         host = a
53
54 if len(args) < 3:
55     sys.stderr.write("Invalid number of arguments\n")
56     sys.exit(1)
57
58 name = args[0]
59 stype = args[1]
60 port = int(args[2])
61 txt = args[3:]
62
63 # python-dbus doesn't allow transmission of empty arrays, therefore we "fix" it with a bogus entry
64 if len(txt) == 0:
65     txt.append("python-dbus=brain-damage")
66
67 group = None
68 n_rename = 0
69
70 def remove_service():
71     global group
72
73     if not (group is None):
74         group.Free()
75         group = None
76
77 def add_service():
78     global server, group, name, stype, domain, host, port, txt
79     assert group is None
80
81     print "Adding service '%s' of type '%s' ..." % (name, stype)
82     group = dbus.Interface(bus.get_object(avahi.DBUS_NAME, server.EntryGroupNew()), avahi.DBUS_INTERFACE_ENTRY_GROUP)
83     group.connect_to_signal('StateChanged', entry_group_state_changed)
84     group.AddService(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, name, stype, domain, host, dbus.UInt16(port), txt)
85     group.Commit()
86
87 def entry_group_state_changed(state):
88     global name, server, n_rename
89     
90     if state == avahi.ENTRY_GROUP_ESTABLISHED:
91         print "Service established."
92     elif state == avahi.ENTRY_GROUP_COLLISION:
93
94         n_rename = n_rename + 1
95         if n_rename >= 12:
96             print "ERROR: No suitable service name found after %i retries, exiting." % n_rename
97             main_loop.quit()
98         else:
99             name = server.GetAlternativeServiceName(name)
100             print "WARNING: Service name collision, changing name to '%s' ..." % name
101             remove_service()
102             add_service()
103
104 def server_state_changed(state):
105     if state == avahi.SERVER_COLLISION:
106         print "WARNING: Server name collision"
107         remove_service()
108     elif state == avahi.SERVER_RUNNING:
109         add_service()
110
111 main_loop = gobject.MainLoop()
112
113 bus = dbus.SystemBus()
114 server = dbus.Interface(bus.get_object(avahi.DBUS_NAME, avahi.DBUS_PATH_SERVER), avahi.DBUS_INTERFACE_SERVER)
115 server.connect_to_signal("StateChanged", server_state_changed)
116 server_state_changed(server.GetState())
117
118 try:
119     main_loop.run()
120 except KeyboardInterrupt, k:
121     pass
122
123 remove_service()