This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

243 lines
8.8 KiB

  1. from .exceptions import ConfigurationError, GrammarError, assert_config
  2. from .utils import get_regexp_width, Serialize
  3. from .parsers.grammar_analysis import GrammarAnalyzer
  4. from .lexer import LexerThread, TraditionalLexer, ContextualLexer, Lexer, Token, TerminalDef
  5. from .parsers import earley, xearley, cyk
  6. from .parsers.lalr_parser import LALR_Parser
  7. from .tree import Tree
  8. from .common import LexerConf, ParserConf
  9. try:
  10. import regex
  11. except ImportError:
  12. regex = None
  13. import re
  14. ###{standalone
  15. def _wrap_lexer(lexer_class):
  16. future_interface = getattr(lexer_class, '__future_interface__', False)
  17. if future_interface:
  18. return lexer_class
  19. else:
  20. class CustomLexerWrapper(Lexer):
  21. def __init__(self, lexer_conf):
  22. self.lexer = lexer_class(lexer_conf)
  23. def lex(self, lexer_state, parser_state):
  24. return self.lexer.lex(lexer_state.text)
  25. return CustomLexerWrapper
  26. class MakeParsingFrontend:
  27. def __init__(self, parser_type, lexer_type):
  28. self.parser_type = parser_type
  29. self.lexer_type = lexer_type
  30. def __call__(self, lexer_conf, parser_conf, options):
  31. assert isinstance(lexer_conf, LexerConf)
  32. assert isinstance(parser_conf, ParserConf)
  33. parser_conf.parser_type = self.parser_type
  34. lexer_conf.lexer_type = self.lexer_type
  35. return ParsingFrontend(lexer_conf, parser_conf, options)
  36. @classmethod
  37. def deserialize_lexer_conf(cls, data, memo, options):
  38. # We need lexer_conf earley to have the terminals that we need to produce the callback list for paser_conf
  39. # So we split deserialize into two methods
  40. terminals = [item for item in memo.values() if isinstance(item, TerminalDef)]
  41. lexer_conf = LexerConf.deserialize(data['lexer_conf'], memo)
  42. lexer_conf.callbacks = _get_lexer_callbacks(options.transformer, terminals)
  43. lexer_conf.re_module = regex if options.regex else re
  44. lexer_conf.use_bytes = options.use_bytes
  45. lexer_conf.g_regex_flags = options.g_regex_flags
  46. lexer_conf.skip_validation = True
  47. lexer_conf.postlex = options.postlex
  48. return lexer_conf
  49. @classmethod
  50. def deserialize(cls, data, memo, lexer_conf, callbacks, options):
  51. parser_conf = ParserConf.deserialize(data['parser_conf'], memo)
  52. parser = LALR_Parser.deserialize(data['parser'], memo, callbacks, options.debug)
  53. parser_conf.callbacks = callbacks
  54. return ParsingFrontend(lexer_conf, parser_conf, options, parser=parser)
  55. class ParsingFrontend(Serialize):
  56. __serialize_fields__ = 'lexer_conf', 'parser_conf', 'parser', 'options'
  57. def __init__(self, lexer_conf, parser_conf, options, parser=None):
  58. self.parser_conf = parser_conf
  59. self.lexer_conf = lexer_conf
  60. self.options = options
  61. # Set-up parser
  62. if parser: # From cache
  63. self.parser = parser
  64. else:
  65. create_parser = {
  66. 'lalr': create_lalr_parser,
  67. 'earley': create_earley_parser,
  68. 'cyk': CYK_FrontEnd,
  69. }[parser_conf.parser_type]
  70. self.parser = create_parser(lexer_conf, parser_conf, options)
  71. # Set-up lexer
  72. lexer_type = lexer_conf.lexer_type
  73. self.skip_lexer = False
  74. if lexer_type in ('dynamic', 'dynamic_complete'):
  75. self.skip_lexer = True
  76. return
  77. try:
  78. create_lexer = {
  79. 'standard': create_traditional_lexer,
  80. 'contextual': create_contextual_lexer,
  81. }[lexer_type]
  82. except KeyError:
  83. assert issubclass(lexer_type, Lexer), lexer_type
  84. self.lexer = _wrap_lexer(lexer_type)(lexer_conf)
  85. else:
  86. self.lexer = create_lexer(lexer_conf, self.parser, lexer_conf.postlex)
  87. if lexer_conf.postlex:
  88. self.lexer = PostLexConnector(self.lexer, lexer_conf.postlex)
  89. def parse(self, text, start=None, on_error=None):
  90. if start is None:
  91. start = self.parser_conf.start
  92. if len(start) > 1:
  93. raise ConfigurationError("Lark initialized with more than 1 possible start rule. Must specify which start rule to parse", start)
  94. start ,= start
  95. stream = text if self.skip_lexer else LexerThread(self.lexer, text)
  96. kw = {} if on_error is None else {'on_error': on_error}
  97. return self.parser.parse(stream, start, **kw)
  98. def get_frontend(parser, lexer):
  99. assert_config(parser, ('lalr', 'earley', 'cyk'))
  100. if not isinstance(lexer, type): # not custom lexer?
  101. expected = {
  102. 'lalr': ('standard', 'contextual'),
  103. 'earley': ('standard', 'dynamic', 'dynamic_complete'),
  104. 'cyk': ('standard', ),
  105. }[parser]
  106. assert_config(lexer, expected, 'Parser %r does not support lexer %%r, expected one of %%s' % parser)
  107. return MakeParsingFrontend(parser, lexer)
  108. def _get_lexer_callbacks(transformer, terminals):
  109. result = {}
  110. for terminal in terminals:
  111. callback = getattr(transformer, terminal.name, None)
  112. if callback is not None:
  113. result[terminal.name] = callback
  114. return result
  115. class PostLexConnector:
  116. def __init__(self, lexer, postlexer):
  117. self.lexer = lexer
  118. self.postlexer = postlexer
  119. def make_lexer_state(self, text):
  120. return self.lexer.make_lexer_state(text)
  121. def lex(self, lexer_state, parser_state):
  122. i = self.lexer.lex(lexer_state, parser_state)
  123. return self.postlexer.process(i)
  124. def create_traditional_lexer(lexer_conf, parser, postlex):
  125. return TraditionalLexer(lexer_conf)
  126. def create_contextual_lexer(lexer_conf, parser, postlex):
  127. states = {idx:list(t.keys()) for idx, t in parser._parse_table.states.items()}
  128. always_accept = postlex.always_accept if postlex else ()
  129. return ContextualLexer(lexer_conf, states, always_accept=always_accept)
  130. def create_lalr_parser(lexer_conf, parser_conf, options=None):
  131. debug = options.debug if options else False
  132. return LALR_Parser(parser_conf, debug=debug)
  133. create_earley_parser = NotImplemented
  134. CYK_FrontEnd = NotImplemented
  135. ###}
  136. class EarleyRegexpMatcher:
  137. def __init__(self, lexer_conf):
  138. self.regexps = {}
  139. for t in lexer_conf.terminals:
  140. if t.priority != 1:
  141. raise GrammarError("Dynamic Earley doesn't support weights on terminals", t, t.priority)
  142. regexp = t.pattern.to_regexp()
  143. try:
  144. width = get_regexp_width(regexp)[0]
  145. except ValueError:
  146. raise GrammarError("Bad regexp in token %s: %s" % (t.name, regexp))
  147. else:
  148. if width == 0:
  149. raise GrammarError("Dynamic Earley doesn't allow zero-width regexps", t)
  150. if lexer_conf.use_bytes:
  151. regexp = regexp.encode('utf-8')
  152. self.regexps[t.name] = lexer_conf.re_module.compile(regexp, lexer_conf.g_regex_flags)
  153. def match(self, term, text, index=0):
  154. return self.regexps[term.name].match(text, index)
  155. def create_earley_parser__dynamic(lexer_conf, parser_conf, options=None, **kw):
  156. earley_matcher = EarleyRegexpMatcher(lexer_conf)
  157. return xearley.Parser(parser_conf, earley_matcher.match, ignore=lexer_conf.ignore, **kw)
  158. def _match_earley_basic(term, token):
  159. return term.name == token.type
  160. def create_earley_parser__basic(lexer_conf, parser_conf, options, **kw):
  161. return earley.Parser(parser_conf, _match_earley_basic, **kw)
  162. def create_earley_parser(lexer_conf, parser_conf, options):
  163. resolve_ambiguity = options.ambiguity == 'resolve'
  164. debug = options.debug if options else False
  165. tree_class = options.tree_class or Tree if options.ambiguity != 'forest' else None
  166. extra = {}
  167. if lexer_conf.lexer_type == 'dynamic':
  168. f = create_earley_parser__dynamic
  169. elif lexer_conf.lexer_type == 'dynamic_complete':
  170. extra['complete_lex'] =True
  171. f = create_earley_parser__dynamic
  172. else:
  173. f = create_earley_parser__basic
  174. return f(lexer_conf, parser_conf, options, resolve_ambiguity=resolve_ambiguity, debug=debug, tree_class=tree_class, **extra)
  175. class CYK_FrontEnd:
  176. def __init__(self, lexer_conf, parser_conf, options=None):
  177. self._analysis = GrammarAnalyzer(parser_conf)
  178. self.parser = cyk.Parser(parser_conf.rules)
  179. self.callbacks = parser_conf.callbacks
  180. def parse(self, lexer_thread, start):
  181. tokens = list(lexer_thread.lex(None))
  182. tree = self.parser.parse(tokens, start)
  183. return self._transform(tree)
  184. def _transform(self, tree):
  185. subtrees = list(tree.iter_subtrees())
  186. for subtree in subtrees:
  187. subtree.children = [self._apply_callback(c) if isinstance(c, Tree) else c for c in subtree.children]
  188. return self._apply_callback(tree)
  189. def _apply_callback(self, tree):
  190. return self.callbacks[tree.rule](tree.children)