| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| 11 # with the distribution. | 11 # with the distribution. |
| 12 # * Neither the name of Google Inc. nor the names of its | 12 # * Neither the name of Google Inc. nor the names of its |
| 13 # contributors may be used to endorse or promote products derived | 13 # contributors may be used to endorse or promote products derived |
| 14 # from this software without specific prior written permission. | 14 # from this software without specific prior written permission. |
| 15 # | 15 # |
| 16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 from dfa import Dfa | 28 from dfa import Dfa |
| 29 import jinja2 | 29 import jinja2 |
| 30 import os |
| 31 import sys |
| 30 | 32 |
| 31 class CodeGenerator: | 33 class CodeGenerator: |
| 32 | 34 |
| 33 def __init__(self, rule_processor, use_mdfa, debug_print = False): | 35 def __init__(self, rule_processor, use_mdfa, debug_print = False): |
| 34 if use_mdfa: | 36 if use_mdfa: |
| 35 dfa = rule_processor.default_automata().minimal_dfa() | 37 dfa = rule_processor.default_automata().minimal_dfa() |
| 36 else: | 38 else: |
| 37 dfa = rule_processor.default_automata().dfa() | 39 dfa = rule_processor.default_automata().dfa() |
| 38 self.__dfa = dfa | 40 self.__dfa = dfa |
| 39 self.__default_action = rule_processor.default_action | 41 self.__default_action = rule_processor.default_action |
| 40 self.__debug_print = debug_print | 42 self.__debug_print = debug_print |
| 41 | 43 |
| 42 def process(self): | 44 def process(self): |
| 43 | 45 |
| 44 start_node_number = self.__dfa.start_state().node_number() | 46 start_node_number = self.__dfa.start_state().node_number() |
| 45 | 47 |
| 46 dfa_states = [] | 48 dfa_states = [] |
| 47 self.__dfa.visit_all_states(lambda state, acc: dfa_states.append(state)) | 49 self.__dfa.visit_all_states(lambda state, acc: dfa_states.append(state)) |
| 48 | 50 |
| 49 default_action = self.__default_action | 51 default_action = self.__default_action |
| 50 assert(default_action and default_action.match_action()) | 52 assert(default_action and default_action.match_action()) |
| 51 default_action = default_action.match_action() | 53 default_action = default_action.match_action() |
| 52 | 54 |
| 55 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) |
| 53 template_env = jinja2.Environment( | 56 template_env = jinja2.Environment( |
| 54 loader = jinja2.PackageLoader('lexer_generator', '.'), | 57 loader = jinja2.PackageLoader('lexer_generator', '.'), |
| 55 undefined = jinja2.StrictUndefined) | 58 undefined = jinja2.StrictUndefined) |
| 56 template = template_env.get_template('code_generator.jinja') | 59 template = template_env.get_template('code_generator.jinja') |
| 57 | 60 |
| 58 return template.render( | 61 return template.render( |
| 59 start_node_number = start_node_number, | 62 start_node_number = start_node_number, |
| 60 debug_print = self.__debug_print, | 63 debug_print = self.__debug_print, |
| 61 default_action = default_action, | 64 default_action = default_action, |
| 62 dfa_states = dfa_states) | 65 dfa_states = dfa_states) |
| OLD | NEW |