blob: 3694530b2b9afa2ed5cfeaccbc4051b4994d652d [file] [log] [blame]
Andreas Wundsam5204de22013-07-30 11:34:45 -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
Yotam Harchola86e4252013-09-06 15:36:28 -070029//:: import re
Andreas Wundsam5204de22013-07-30 11:34:45 -070030//:: include('_copyright.java')
31
32//:: include('_autogen.java')
33
Andreas Wundsame0d52be2013-08-22 07:52:13 -070034package ${factory.package};
Andreas Wundsam5204de22013-07-30 11:34:45 -070035
36//:: include("_imports.java")
37
Andreas Wundsamcb17b232013-09-28 19:05:36 -070038public interface ${factory.name}${" extends XidGenerator" if factory.xid_generator else ""} {
Andreas Wundsame0d52be2013-08-22 07:52:13 -070039 // Subfactories
40//:: for name, clazz in factory.sub_factories.items():
41 ${clazz} ${name}();
42//:: #endfor
43
Andreas Wundsam5204de22013-07-30 11:34:45 -070044//:: for i in factory.members:
45 //:: if i.is_virtual:
46 //:: continue
47 //:: #endif
Andreas Wundsame0d52be2013-08-22 07:52:13 -070048 //:: if len(i.writeable_members) > 0:
49 ${i.name}.Builder ${factory.method_name(i, builder=True)}()${ "" if i.is_universal else " throws UnsupportedOperationException"};
50 //:: #endif
51 //:: if len(i.writeable_members) <= 2:
Andreas Wundsamcb17b232013-09-28 19:05:36 -070052 ${i.name} ${factory.method_name(i, builder=False )}(${", ".join("%s %s" % (p.java_type.public_type, p.name) for p in i.writeable_members if p.name != "xid" )});
Andreas Wundsame0d52be2013-08-22 07:52:13 -070053 //:: #endif
Andreas Wundsam5204de22013-07-30 11:34:45 -070054//:: #endfor
Yotam Harchola86e4252013-09-06 15:36:28 -070055//:: if factory.name == 'OFFactory':
56 Match.Builder buildMatch();
Andreas Wundsame962d372013-10-02 18:15:58 -070057 Match matchWildcardAll();
Yotam Harchola86e4252013-09-06 15:36:28 -070058//:: #endif
Andreas Wundsam3ad98162013-08-15 11:08:56 -070059
Andreas Wundsame0d52be2013-08-22 07:52:13 -070060 OFMessageReader<${factory.base_class}> getReader();
Andreas Wundsam47e077c2013-10-04 15:56:51 -070061 OFVersion getVersion();
Yotam Harchol98af7752013-08-22 14:59:38 -070062//:: if factory.name == 'OFOxms':
Rob Vaterlausfeee3712013-09-30 11:24:19 -070063
Yotam Harchol98af7752013-08-22 14:59:38 -070064 public <F extends OFValueType<F>> OFOxm<F> fromValue(F value, MatchField<F> field);
65 public <F extends OFValueType<F>> OFOxm<F> fromValueAndMask(F value, F mask, MatchField<F> field);
66 public <F extends OFValueType<F>> OFOxm<F> fromMasked(Masked<F> masked, MatchField<F> field);
67//:: #endif
Andreas Wundsam5204de22013-07-30 11:34:45 -070068}