From 575610565f6f60745f8562469acdaec081a26cd5 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 2 Mar 2006 18:22:46 +0000 Subject: add new method items() to ServiceTypeDatabase git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1172 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- avahi-python/avahi/ServiceTypeDatabase.py.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/avahi-python/avahi/ServiceTypeDatabase.py.in b/avahi-python/avahi/ServiceTypeDatabase.py.in index 9caeebd..66b29c8 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('_\w*\._\w*', key) and not re.search('_\w*\._\w*\[.*\]', 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: -- cgit