]> git.meshlink.io Git - catta/blob - avahi-python/avahi/__init__.py
81e2754ece6edbc355ec9073cf1a74bb6107c705
[catta] / avahi-python / avahi / __init__.py
1 # $Id$
2
3 # This file is part of avahi.
4 #
5 # avahi is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as
7 # published by the Free Software Foundation; either version 2 of the
8 # License, or (at your option) any later version.
9 #
10 # avahi is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
13 # License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with avahi; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 # USA.
19
20 # Some definitions matching those in avahi-common/defs.h
21
22 import dbus
23
24 SERVER_INVALID, SERVER_REGISTERING, SERVER_RUNNING, SERVER_COLLISION, SERVER_FAILURE = range(0, 5)
25
26 ENTRY_GROUP_UNCOMMITED, ENTRY_GROUP_REGISTERING, ENTRY_GROUP_ESTABLISHED, ENTRY_GROUP_COLLISION, ENTRY_GROUP_FAILURE = range(0, 5)
27
28 DOMAIN_BROWSER_BROWSE, DOMAIN_BROWSER_BROWSE_DEFAULT, DOMAIN_BROWSER_REGISTER, DOMAIN_BROWSER_REGISTER_DEFAULT, DOMAIN_BROWSER_BROWSE_LEGACY = range(0, 5)
29
30 PROTO_UNSPEC, PROTO_INET, PROTO_INET6  = -1, 0, 1
31
32 IF_UNSPEC = -1
33
34 PUBLISH_UNIQUE = 1
35 PUBLISH_NO_PROBE = 2
36 PUBLISH_NO_ANNOUNCE = 4
37 PUBLISH_ALLOW_MULTIPLE = 8
38 PUBLISH_NO_REVERSE = 16
39 PUBLISH_NO_COOKIE = 32
40 PUBLISH_UPDATE = 64
41 PUBLISH_USE_WIDE_AREA = 128
42 PUBLISH_USE_MULTICAST = 256
43
44 LOOKUP_USE_WIDE_AREA = 1
45 LOOKUP_USE_MULTICAST = 2
46 LOOKUP_NO_TXT = 4
47 LOOKUP_NO_ADDRESS = 8
48
49 LOOKUP_RESULT_CACHED = 1
50 LOOKUP_RESULT_WIDE_AREA = 2
51 LOOKUP_RESULT_MULTICAST = 4
52 LOOKUP_RESULT_LOCAL = 8
53 LOOKUP_RESULT_OUR_OWN = 16
54 LOOKUP_RESULT_STATIC = 32
55
56 SERVICE_COOKIE = "org.freedesktop.Avahi.cookie"
57 SERVICE_COOKIE_INVALID = 0
58
59 DBUS_NAME = "org.freedesktop.Avahi"
60 DBUS_INTERFACE_SERVER = DBUS_NAME + ".Server"
61 DBUS_PATH_SERVER = "/"
62 DBUS_INTERFACE_ENTRY_GROUP = DBUS_NAME + ".EntryGroup"
63 DBUS_INTERFACE_DOMAIN_BROWSER = DBUS_NAME + ".DomainBrowser"
64 DBUS_INTERFACE_SERVICE_TYPE_BROWSER = DBUS_NAME + ".ServiceTypeBrowser"
65 DBUS_INTERFACE_SERVICE_BROWSER = DBUS_NAME + ".ServiceBrowser"
66 DBUS_INTERFACE_ADDRESS_RESOLVER = DBUS_NAME + ".AddressResolver"
67 DBUS_INTERFACE_HOST_NAME_RESOLVER = DBUS_NAME + ".HostNameResolver"
68 DBUS_INTERFACE_SERVICE_RESOLVER = DBUS_NAME + ".ServiceResolver"
69 DBUS_INTERFACE_RECORD_BROWSER = DBUS_NAME + ".RecordBrowser"
70
71 def byte_array_to_string(s):
72     r = ""
73     
74     for c in s:
75         
76         if c >= 32 and c < 127:
77             r += "%c" % c
78         else:
79             r += "."
80
81     return r
82
83 def txt_array_to_string_array(t):
84     l = []
85
86     for s in t:
87         l.append(byte_array_to_string(s))
88
89     return l
90
91
92 def string_to_byte_array(s):
93     r = []
94
95     for c in s:
96         r.append(dbus.Byte(ord(c)))
97
98     return r
99
100 def string_array_to_txt_array(t):
101     l = []
102
103     for s in t:
104         l.append(string_to_byte_array(s))
105
106     return l
107
108 def dict_to_txt_array(txt_dict):
109     l = []
110
111     for k,v in txt_dict.items():
112         l.append(string_to_byte_array("%s=%s" % (k,v)))
113
114     return l