X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-python%2Favahi%2FServiceTypeDatabase.py.in;h=25807f36c7e6e22ab5737d2e8fe6e0f626c82ed3;hb=c4ee97bf1fe6ca9caf4f17a2a5a77a620ff7d9d7;hp=9caeebd91cd74ca9cdd17743a6c306baa862c8a0;hpb=ced0d86acf70f435ffdadb794db891be63a5b82a;p=catta diff --git a/avahi-python/avahi/ServiceTypeDatabase.py.in b/avahi-python/avahi/ServiceTypeDatabase.py.in index 9caeebd..25807f3 100644 --- a/avahi-python/avahi/ServiceTypeDatabase.py.in +++ b/avahi-python/avahi/ServiceTypeDatabase.py.in @@ -21,6 +21,7 @@ import gdbm import locale +import re locale.setlocale(locale.LC_ALL, '') @@ -65,6 +66,17 @@ class ServiceTypeDatabase: raise KeyError() + def items(self): + + items = [] + key = self.db.firstkey() + while key is not None: + if re.search('_[a-zA-Z0-9-]+\._[a-zA-Z0-9-]+', key) and not re.search('_[a-zA-Z0-9-]+\._[a-zA-Z0-9-]+\[.*\]', key): + localized_service_name = self[key] + items.append((key, localized_service_name)) + key = self.db.nextkey(key) + return items + def has_key(self, key): for suffix in self.suffixes: @@ -88,6 +100,7 @@ class ServiceTypeDatabase: if __name__ == "__main__": b = ServiceTypeDatabase() + print b.items() print b["_http._tcp"] print b["_ftp._tcp"]