1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
"""
Copyright 2009 Free Software Foundation, Inc.
This file is part of GNU Radio
GNU Radio Companion is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
GNU Radio Companion is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
"""
from Constants import DOCS_DIR
from lxml import etree
import os
import re
DOXYGEN_TITLE_XPATH = '/doxygen/compounddef/title'
DOXYGEN_CLASS_XPATH = '/doxygen/compounddef/innerclass'
#map a group/category to a list of blocks
_category_map = dict()
#extract the group/category information
docs_dir = os.path.join(DOCS_DIR, 'xml')
if os.path.exists(docs_dir):
group_file_matcher = re.compile('^group__\w*\..*$') #xml or xml.gz
matches = filter(lambda f: group_file_matcher.match(f), os.listdir(docs_dir))
for match in matches:
try:
xml_file = os.path.join(docs_dir, match)
xml = etree.parse(xml_file)
category = xml.xpath(DOXYGEN_TITLE_XPATH)[0].text
blocks = map(lambda x: x.text, xml.xpath(DOXYGEN_CLASS_XPATH))
_category_map[category] = blocks
except: pass
def extract(key):
"""
Match the given key to a key in an existing category.
If no match can be made, return an empty string.
@param key the block key
@return the category or empty string
"""
pattern = key.replace('_', '_*').replace('x', '\w')
class_name_matcher = re.compile('^%s$'%pattern)
for category, blocks in _category_map.iteritems():
for block in blocks:
if class_name_matcher.match(block): return category
return ''
if __name__ == '__main__':
import sys
print extract(sys.argv[1])
|