aboutsummaryrefslogtreecommitdiffstats
path: root/build/plugins/code_generator.py
diff options
context:
space:
mode:
authordenisk <denisk@yandex-team.ru>2022-02-10 16:48:13 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:13 +0300
commita02ea31d51f94b7edb98c6ab1322bf26ca04beb5 (patch)
treeb222e5ac2e2e98872661c51ccceee5da0d291e13 /build/plugins/code_generator.py
parenta3e40d22cc86312046f69a10ea401b78e9efb746 (diff)
downloadydb-a02ea31d51f94b7edb98c6ab1322bf26ca04beb5.tar.gz
Restoring authorship annotation for <denisk@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'build/plugins/code_generator.py')
-rw-r--r--build/plugins/code_generator.py84
1 files changed, 42 insertions, 42 deletions
diff --git a/build/plugins/code_generator.py b/build/plugins/code_generator.py
index 0e876c21f7..ca8bb18c15 100644
--- a/build/plugins/code_generator.py
+++ b/build/plugins/code_generator.py
@@ -1,45 +1,45 @@
-import re
-import os
-
-import _import_wrapper as iw
-
+import re
+import os
+
+import _import_wrapper as iw
+
pattern = re.compile(r"#include\s*[<\"](?P<INDUCED>[^>\"]+)[>\"]|(?:@|{@)\s*(?:import|include|from)\s*[\"'](?P<INCLUDE>[^\"']+)[\"']")
-
-
-class CodeGeneratorTemplateParser(object):
- def __init__(self, path, unit):
- self._path = path
+
+
+class CodeGeneratorTemplateParser(object):
+ def __init__(self, path, unit):
+ self._path = path
retargeted = os.path.join(unit.path(), os.path.relpath(path, unit.resolve(unit.path())))
- with open(path, 'rb') as f:
- includes, induced = CodeGeneratorTemplateParser.parse_includes(f.readlines())
- self._includes = unit.resolve_include([retargeted] + includes) if includes else []
- self._induced = unit.resolve_include([retargeted] + induced) if induced else []
-
- @staticmethod
- def parse_includes(lines):
- includes = []
- induced = []
-
- for line in lines:
- for match in pattern.finditer(line):
- type = match.lastgroup
- if type == 'INCLUDE':
- includes.append(match.group(type))
- elif type == 'INDUCED':
- induced.append(match.group(type))
- else:
- raise Exception("Unexpected match! Perhaps it is a result of an error in pattern.")
- return (includes, induced)
-
- def includes(self):
- return self._includes
-
- def induced_deps(self):
- return {
- 'h+cpp': self._induced
- }
-
-
-def init():
+ with open(path, 'rb') as f:
+ includes, induced = CodeGeneratorTemplateParser.parse_includes(f.readlines())
+ self._includes = unit.resolve_include([retargeted] + includes) if includes else []
+ self._induced = unit.resolve_include([retargeted] + induced) if induced else []
+
+ @staticmethod
+ def parse_includes(lines):
+ includes = []
+ induced = []
+
+ for line in lines:
+ for match in pattern.finditer(line):
+ type = match.lastgroup
+ if type == 'INCLUDE':
+ includes.append(match.group(type))
+ elif type == 'INDUCED':
+ induced.append(match.group(type))
+ else:
+ raise Exception("Unexpected match! Perhaps it is a result of an error in pattern.")
+ return (includes, induced)
+
+ def includes(self):
+ return self._includes
+
+ def induced_deps(self):
+ return {
+ 'h+cpp': self._induced
+ }
+
+
+def init():
iw.addparser('markettemplate', CodeGeneratorTemplateParser)
- iw.addparser('macro', CodeGeneratorTemplateParser)
+ iw.addparser('macro', CodeGeneratorTemplateParser)