-
Notifications
You must be signed in to change notification settings - Fork 147
/
find_compatible_dts.py
executable file
·65 lines (54 loc) · 2.23 KB
/
find_compatible_dts.py
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
62
63
64
#!/usr/bin/env python3
# This file is part of Elixir, a source code cross-referencer.
#
# Copyright (C) 2017--2020 Maxime Chretien <[email protected]>
# and contributors
#
# Elixir is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Elixir 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Elixir. If not, see <http://www.gnu.org/licenses/>.
import re
from urllib import parse
from elixir.lib import decode
class FindCompatibleDTS:
def __init__(self):
# Compile regexes
self.regex_c = re.compile("\s*{*\s*\.compatible\s*=\s*\"(.+?)\"")
self.regex_dts1 = re.compile("\s*compatible")
self.regex_dts2 = re.compile("\"(.+?)\"")
self.regex_bindings = re.compile("([\w-]+,?[\w-]+)")
def parse_c(self, content):
return self.regex_c.findall(content)
def parse_dts(self, content):
ret = []
if self.regex_dts1.match(content) != None:
ret = self.regex_dts2.findall(content)
return ret
def parse_bindings(self, content):
# There are a lot of wrong results
# but we don't apply that to a lot of files
# so it should be fine
return self.regex_bindings.findall(content)
def run(self, file_lines, family):
ident_list = []
# Iterate though lines and search for idents
for num, line in enumerate(file_lines, 1):
line = decode(line)
if family == 'C':
ret = self.parse_c(line)
elif family == 'D':
ret = self.parse_dts(line)
elif family == 'B':
ret = self.parse_bindings(line)
for i in range(len(ret)):
ident_list.append(str(parse.quote(ret[i])) + ' ' + str(num))
return ident_list