Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1 | # Copyright 2013, Big Switch Networks, Inc. |
| 2 | # |
| 3 | # LoxiGen is licensed under the Eclipse Public License, version 1.0 (EPL), with |
| 4 | # the following special exception: |
| 5 | # |
| 6 | # LOXI Exception |
| 7 | # |
| 8 | # As a special exception to the terms of the EPL, you may distribute libraries |
| 9 | # generated by LoxiGen (LoxiGen Libraries) under the terms of your choice, provided |
| 10 | # that copyright and licensing notices generated by LoxiGen are not altered or removed |
| 11 | # from the LoxiGen Libraries and the notice provided below is (i) included in |
| 12 | # the LoxiGen Libraries, if distributed in source code form and (ii) included in any |
| 13 | # documentation for the LoxiGen Libraries, if distributed in binary form. |
| 14 | # |
| 15 | # Notice: "Copyright 2013, Big Switch Networks, Inc. This library was generated by the LoxiGen Compiler." |
| 16 | # |
| 17 | # You may not use this file except in compliance with the EPL or LOXI Exception. You may obtain |
| 18 | # a copy of the EPL at: |
| 19 | # |
| 20 | # http://www.eclipse.org/legal/epl-v10.html |
| 21 | # |
| 22 | # Unless required by applicable law or agreed to in writing, software |
| 23 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 24 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 25 | # EPL for the specific language governing permissions and limitations |
| 26 | # under the EPL. |
| 27 | |
| 28 | """ |
| 29 | Python backend for LOXI |
| 30 | |
| 31 | This language specific file defines a dictionary 'targets' that |
| 32 | defines the generated files and the functions used to generate them. |
| 33 | |
| 34 | For each generated file there is a generate_* function in py_gen.codegen |
| 35 | and a Tenjin template under py_gen/templates. |
| 36 | |
| 37 | Target directory structure: |
| 38 | pyloxi: |
| 39 | loxi: |
| 40 | __init__.py |
| 41 | of10: |
| 42 | __init__.py |
| 43 | action.py # Action classes |
| 44 | common.py # Structs shared by multiple messages |
| 45 | const.py # OpenFlow constants |
| 46 | message.py # Message classes |
| 47 | util.py # Utility functions |
Rich Lane | a22233e | 2013-04-25 13:18:41 -0700 | [diff] [blame] | 48 | of11: ... # (code generation incomplete) |
Rich Lane | e02314c | 2013-05-02 16:42:04 -0700 | [diff] [blame] | 49 | instruction.py # Instruction classes |
Rich Lane | a22233e | 2013-04-25 13:18:41 -0700 | [diff] [blame] | 50 | of12: ... # (code generation incomplete) |
Rich Lane | ea69375 | 2013-03-18 11:05:45 -0700 | [diff] [blame] | 51 | oxm.py # OXM classes |
Rich Lane | a22233e | 2013-04-25 13:18:41 -0700 | [diff] [blame] | 52 | of13: ... # (code generation incomplete) |
Rich Lane | 2c9938e | 2013-12-09 17:20:12 -0800 | [diff] [blame] | 53 | action_id.py # Action ID classes |
| 54 | instruction_id.py # Instruction ID classes |
Rich Lane | d82c0a6 | 2013-05-02 15:40:35 -0700 | [diff] [blame] | 55 | meter_band.py # Meter band classes |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 56 | |
| 57 | The user will add the pyloxi directory to PYTHONPATH. Then they can |
| 58 | "import loxi" or "import loxi.of10". The idiomatic import is |
| 59 | "import loxi.of10 as ofp". The protocol modules (e.g. of10) import |
| 60 | all of their submodules, so the user can access "ofp.message" without |
| 61 | further imports. The protocol modules also import the constants from |
| 62 | the const module directly into their namespace so the user can access |
| 63 | "ofp.OFPP_NONE". |
| 64 | """ |
| 65 | |
Rich Lane | da5446f | 2013-11-10 17:21:48 -0800 | [diff] [blame] | 66 | import os |
Andreas Wundsam | 5630c42 | 2013-11-15 13:43:11 -0800 | [diff] [blame] | 67 | from loxi_globals import OFVersions |
| 68 | import loxi_globals |
Rich Lane | da5446f | 2013-11-10 17:21:48 -0800 | [diff] [blame] | 69 | import loxi_utils.loxi_utils as loxi_utils |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 70 | import py_gen |
| 71 | import py_gen.util |
| 72 | import py_gen.codegen |
Andreas Wundsam | 5420b95 | 2013-11-15 13:41:01 -0800 | [diff] [blame] | 73 | import template_utils |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 74 | |
| 75 | versions = { |
| 76 | 1: "of10", |
Jonathan Stout | 3edbac9 | 2013-04-05 11:30:49 -0400 | [diff] [blame] | 77 | 2: "of11", |
| 78 | 3: "of12", |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 79 | 4: "of13", |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | prefix = 'pyloxi/loxi' |
| 83 | |
Rich Lane | ea69375 | 2013-03-18 11:05:45 -0700 | [diff] [blame] | 84 | modules = { |
| 85 | 1: ["action", "common", "const", "message", "util"], |
Rich Lane | e02314c | 2013-05-02 16:42:04 -0700 | [diff] [blame] | 86 | 2: ["action", "common", "const", "instruction", "message", "util"], |
| 87 | 3: ["action", "common", "const", "instruction", "message", "oxm", "util"], |
Rich Lane | e632199 | 2013-12-03 13:04:52 -0800 | [diff] [blame] | 88 | 4: ["action", "action_id", "common", "const", "instruction", "instruction_id", "message", "meter_band", "oxm", "bsn_tlv", "util"], |
Rich Lane | ea69375 | 2013-03-18 11:05:45 -0700 | [diff] [blame] | 89 | } |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 90 | |
| 91 | def make_gen(name, version): |
| 92 | fn = getattr(py_gen.codegen, "generate_" + name) |
| 93 | return lambda out, name: fn(out, name, version) |
| 94 | |
| 95 | def static(template_name): |
| 96 | return lambda out, name: py_gen.util.render_template(out, template_name) |
| 97 | |
| 98 | targets = { |
| 99 | prefix+'/__init__.py': static('toplevel_init.py'), |
| 100 | prefix+'/pp.py': static('pp.py'), |
Rich Lane | 15cbe84 | 2013-04-26 16:04:11 -0700 | [diff] [blame] | 101 | prefix+'/generic_util.py': static('generic_util.py'), |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | for version, subdir in versions.items(): |
| 105 | targets['%s/%s/__init__.py' % (prefix, subdir)] = make_gen('init', version) |
Rich Lane | ea69375 | 2013-03-18 11:05:45 -0700 | [diff] [blame] | 106 | for module in modules[version]: |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 107 | filename = '%s/%s/%s.py' % (prefix, subdir, module) |
Andreas Wundsam | 5630c42 | 2013-11-15 13:43:11 -0800 | [diff] [blame] | 108 | targets[filename] = make_gen(module, OFVersions.from_wire(version)) |
Rich Lane | da5446f | 2013-11-10 17:21:48 -0800 | [diff] [blame] | 109 | |
Andreas Wundsam | 5420b95 | 2013-11-15 13:41:01 -0800 | [diff] [blame] | 110 | def generate(install_dir): |
Rich Lane | fa93127 | 2013-11-10 17:43:50 -0800 | [diff] [blame] | 111 | py_gen.codegen.init() |
Rich Lane | da5446f | 2013-11-10 17:21:48 -0800 | [diff] [blame] | 112 | for (name, fn) in targets.items(): |
Andreas Wundsam | 5420b95 | 2013-11-15 13:41:01 -0800 | [diff] [blame] | 113 | with template_utils.open_output(install_dir, name) as outfile: |
Rich Lane | da5446f | 2013-11-10 17:21:48 -0800 | [diff] [blame] | 114 | fn(outfile, os.path.basename(name)) |