Andreas Wundsam | 2730346 | 2013-07-16 12:52:35 -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 | @brief Main Java Generation module |
| 30 | """ |
| 31 | |
| 32 | import pdb |
| 33 | import os |
| 34 | import shutil |
| 35 | |
| 36 | import of_g |
| 37 | from loxi_ir import * |
| 38 | import lang_java |
Andreas Wundsam | e916d6f | 2013-07-30 11:33:58 -0700 | [diff] [blame] | 39 | import test_data |
Andreas Wundsam | 2730346 | 2013-07-16 12:52:35 -0700 | [diff] [blame] | 40 | |
| 41 | import loxi_utils.loxi_utils as loxi_utils |
| 42 | |
| 43 | import java_gen.java_model as java_model |
| 44 | |
| 45 | def gen_all_java(out, name): |
Andreas Wundsam | d83883e | 2013-07-25 14:50:51 -0700 | [diff] [blame] | 46 | basedir= '%s/openflowj' % of_g.options.install_dir |
Andreas Wundsam | 2730346 | 2013-07-16 12:52:35 -0700 | [diff] [blame] | 47 | print "Outputting to %s" % basedir |
| 48 | if os.path.exists(basedir): |
| 49 | shutil.rmtree(basedir) |
| 50 | os.makedirs(basedir) |
| 51 | copy_prewrite_tree(basedir) |
| 52 | |
Andreas Wundsam | e916d6f | 2013-07-30 11:33:58 -0700 | [diff] [blame] | 53 | gen = JavaGenerator(basedir) |
Andreas Wundsam | 2730346 | 2013-07-16 12:52:35 -0700 | [diff] [blame] | 54 | gen.create_of_interfaces() |
| 55 | gen.create_of_classes() |
| 56 | gen.create_of_const_enums() |
Andreas Wundsam | 5204de2 | 2013-07-30 11:34:45 -0700 | [diff] [blame] | 57 | gen.create_of_factories() |
Andreas Wundsam | 2730346 | 2013-07-16 12:52:35 -0700 | [diff] [blame] | 58 | |
Andreas Wundsam | d83883e | 2013-07-25 14:50:51 -0700 | [diff] [blame] | 59 | with open('%s/README.java-lang' % os.path.dirname(__file__)) as readme_src: |
Andreas Wundsam | 2730346 | 2013-07-16 12:52:35 -0700 | [diff] [blame] | 60 | out.writelines(readme_src.readlines()) |
| 61 | out.close() |
| 62 | |
| 63 | |
| 64 | class JavaGenerator(object): |
| 65 | templates_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'templates') |
| 66 | |
| 67 | def __init__(self, basedir): |
| 68 | self.basedir = basedir |
| 69 | self.java_model = java_model.model |
| 70 | |
Andreas Wundsam | e916d6f | 2013-07-30 11:33:58 -0700 | [diff] [blame] | 71 | def render_class(self, clazz, template, src_dir=None, **context): |
| 72 | if not src_dir: |
| 73 | src_dir = "src/main/java/" |
| 74 | |
Andreas Wundsam | 2730346 | 2013-07-16 12:52:35 -0700 | [diff] [blame] | 75 | context['class_name'] = clazz.name |
| 76 | context['package'] = clazz.package |
| 77 | |
Andreas Wundsam | e916d6f | 2013-07-30 11:33:58 -0700 | [diff] [blame] | 78 | filename = os.path.join(self.basedir, src_dir, "%s/%s.java" % (clazz.package.replace(".", "/"), clazz.name)) |
Andreas Wundsam | 2730346 | 2013-07-16 12:52:35 -0700 | [diff] [blame] | 79 | dirname = os.path.dirname(filename) |
| 80 | if not os.path.exists(dirname): |
| 81 | os.makedirs(dirname) |
| 82 | prefix = '//::(?=[ \t]|$)' |
| 83 | print "filename: %s" % filename |
| 84 | with open(filename, "w") as f: |
| 85 | loxi_utils.render_template(f, template, [self.templates_dir], context, prefix=prefix) |
| 86 | |
| 87 | def create_of_const_enums(self): |
| 88 | for enum in self.java_model.enums: |
| 89 | if enum.name in ["OFPort"]: |
| 90 | continue |
| 91 | self.render_class(clazz=enum, |
| 92 | template='const.java', enum=enum, all_versions=self.java_model.versions) |
| 93 | |
| 94 | def create_of_interfaces(self): |
| 95 | """ Create the base interfaces for of classes""" |
| 96 | for interface in self.java_model.interfaces: |
| 97 | #if not utils.class_is_message(interface.c_name): |
| 98 | # continue |
| 99 | self.render_class(clazz=interface, |
| 100 | template="of_interface.java", msg=interface) |
| 101 | |
| 102 | def create_of_classes(self): |
| 103 | """ Create the OF classes with implementations for each of the interfaces and versions """ |
| 104 | for interface in self.java_model.interfaces: |
Andreas Wundsam | 2730346 | 2013-07-16 12:52:35 -0700 | [diff] [blame] | 105 | for java_class in interface.versioned_classes: |
Andreas Wundsam | 5204de2 | 2013-07-30 11:34:45 -0700 | [diff] [blame] | 106 | if not self.java_model.generate_class(java_class): |
| 107 | continue |
Andreas Wundsam | 2730346 | 2013-07-16 12:52:35 -0700 | [diff] [blame] | 108 | self.render_class(clazz=java_class, |
| 109 | template='of_class.java', version=java_class.version, msg=java_class, |
| 110 | impl_class=java_class.name) |
| 111 | |
Andreas Wundsam | e916d6f | 2013-07-30 11:33:58 -0700 | [diff] [blame] | 112 | self.create_unit_test(java_class.unit_test) |
| 113 | |
| 114 | def create_unit_test(self, unit_test): |
| 115 | if unit_test.has_test_data: |
| 116 | self.render_class(clazz=unit_test, |
| 117 | template='unit_test.java', src_dir="src/test/java", |
| 118 | version=unit_test.java_class.version, |
| 119 | test=unit_test, msg=unit_test.java_class, |
| 120 | test_data=unit_test.test_data) |
| 121 | |
| 122 | def create_of_factories(self): |
| 123 | factory = self.java_model.of_factory |
| 124 | self.render_class(clazz=factory, template="of_factory_interface.java", factory=factory) |
| 125 | for factory_class in factory.factory_classes: |
| 126 | self.render_class(clazz=factory_class, template="of_factory_class.java", factory=factory_class, model=self.java_model) |
| 127 | self.render_class(clazz=java_model.OFGenericClass(package="org.openflow.protocol", name="OFFactories"), template="of_factories.java", versions=self.java_model.versions) |
| 128 | |
Andreas Wundsam | 2730346 | 2013-07-16 12:52:35 -0700 | [diff] [blame] | 129 | def copy_prewrite_tree(basedir): |
| 130 | """ Recursively copy the directory structure from ./java_gen/pre-write |
| 131 | into $basedir""" |
| 132 | print "Copying pre-written files into %s" % basedir |
Andreas Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 133 | #subprocess.call("cd java_gen/pre-written && tar cpf - pom.xml | ( cd ../../%s && tar xvpf - )" % basedir, |
| 134 | # shell=True) |
Andreas Wundsam | d83883e | 2013-07-25 14:50:51 -0700 | [diff] [blame] | 135 | os.symlink(os.path.abspath("%s/pre-written/pom.xml" % os.path.dirname(__file__)), "%s/pom.xml" % basedir) |