blob: c940534216a31ae02154b2d1d000db4fe32c2bc3 [file] [log] [blame]
Andreas Wundsam40e14f72013-05-06 14:49:08 -07001//:: # 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//:: import itertools
Andreas Wundsam2be7da52013-08-22 07:34:25 -070029//:: import re
Sovietacedd1196ab2014-12-02 06:45:42 -050030//:: import os
Andreas Wundsam40e14f72013-05-06 14:49:08 -070031//:: include('_copyright.java')
32
33//:: include('_autogen.java')
34
Andreas Wundsam27303462013-07-16 12:52:35 -070035package ${msg.package};
Andreas Wundsam40e14f72013-05-06 14:49:08 -070036
Andreas Wundsam27303462013-07-16 12:52:35 -070037//:: include("_imports.java", msg=msg)
Andreas Wundsam40e14f72013-05-06 14:49:08 -070038
Andreas Wundsama705c6b2013-09-04 11:21:09 -070039public interface ${msg.name}${ "<%s>" % msg.type_annotation if msg.type_annotation else ""} extends ${", ".join(msg.all_parent_interfaces)} {
Andreas Wundsam482f6d92013-07-24 16:10:21 -070040//:: for prop in msg.members:
Andreas Wundsam2be7da52013-08-22 07:34:25 -070041 ${prop.java_type.public_type} ${prop.getter_name}()${ "" if prop.is_universal else " throws UnsupportedOperationException"};
Andreas Wundsam40e14f72013-05-06 14:49:08 -070042//:: #endfor
Sovietacedd1196ab2014-12-02 06:45:42 -050043//:: if os.path.exists("%s/custom/interface/%s.java" % (template_dir, msg.name)):
44//:: include("custom/interface/%s.java" % msg.name, msg=msg)
45//:: #endif
Andreas Wundsam40e14f72013-05-06 14:49:08 -070046
Murat Parlakisikf95672c2016-12-05 00:53:17 -080047 void writeTo(ByteBuf channelBuffer);
Andreas Wundsam40e14f72013-05-06 14:49:08 -070048
Andreas Wundsam2be7da52013-08-22 07:34:25 -070049 Builder${msg.type_variable} createBuilder();
50 //:: simple_type, annotation = re.match(r'(\w+)(<.*>)?', msg.parent_interface).groups() if msg.parent_interface else ("", "")
51 public interface Builder${ "<%s>" % msg.type_annotation if msg.type_annotation else ""} ${"extends %s.Builder" % simple_type if msg.parent_interface else ""}${annotation if annotation else ""} {
52 ${msg.name}${msg.type_variable} build();
Andreas Wundsam27303462013-07-16 12:52:35 -070053//:: for prop in msg.members:
Andreas Wundsam2be7da52013-08-22 07:34:25 -070054 ${prop.java_type.public_type} ${prop.getter_name}()${ "" if prop.is_universal else " throws UnsupportedOperationException"};
Murat Parlakisikf95672c2016-12-05 00:53:17 -080055//:: if prop.needs_setter:
Andreas Wundsamcb17b232013-09-28 19:05:36 -070056 Builder${msg.type_variable} ${prop.setter_name}(${prop.java_type.public_type} ${prop.name})${ "" if prop.is_universal else " throws UnsupportedOperationException"};
Andreas Wundsam27303462013-07-16 12:52:35 -070057//:: #endif
Andreas Wundsam40e14f72013-05-06 14:49:08 -070058//:: #endfor
Andreas Wundsam40e14f72013-05-06 14:49:08 -070059 }
60}