blob: 5263226617ec9dc30cf3bc674d09551883a42265 [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
29//:: import of_g
Yotam Harchola86e4252013-09-06 15:36:28 -070030//:: import re
Andreas Wundsam5204de22013-07-30 11:34:45 -070031//:: include('_copyright.java')
32
33//:: include('_autogen.java')
34
35package ${factory.package};
36
Yotam Harchola86e4252013-09-06 15:36:28 -070037import org.projectfloodlight.openflow.protocol.OFOxmList;
38
Andreas Wundsam5204de22013-07-30 11:34:45 -070039//:: include("_imports.java")
40
41public class ${factory.name} implements ${factory.interface.name} {
Andreas Wundsame0d52be2013-08-22 07:52:13 -070042 public final static ${factory.name} INSTANCE = new ${factory.name}();
Andreas Wundsamcb17b232013-09-28 19:05:36 -070043
44 //:: if factory.interface.xid_generator:
45 private final XidGenerator xidGenerator = XidGenerators.global();
46 //:: #endif
Andreas Wundsame0d52be2013-08-22 07:52:13 -070047
48 //:: for name, clazz in factory.interface.sub_factories.items():
49 public ${clazz} ${name}() {
50 return ${clazz}Ver${factory.version.of_version}.INSTANCE;
51 }
52 //:: #endfor
53
Yotam Harchola86e4252013-09-06 15:36:28 -070054//:: general_get_match_func_written = False
Andreas Wundsam5204de22013-07-30 11:34:45 -070055//:: for i in factory.interface.members:
56 //:: if i.is_virtual:
57 //:: continue
58 //:: #endif
Yotam Harchola86e4252013-09-06 15:36:28 -070059 //:: is_match_object = re.match('OFMatch.*', i.name) # i.has_version(factory.version) and model.generate_class(i.versioned_class(factory.version)) and i.versioned_class(factory.version).interface.parent_interface == 'Match'
60 //:: unsupported_match_object = is_match_object and not i.has_version(factory.version)
Andreas Wundsam5204de22013-07-30 11:34:45 -070061
Andreas Wundsame0d52be2013-08-22 07:52:13 -070062 //:: if len(i.writeable_members) > 0:
63 public ${i.name}.Builder ${factory.interface.method_name(i, builder=True)}() {
64 //:: if i.has_version(factory.version) and model.generate_class(i.versioned_class(factory.version)):
Andreas Wundsamcb17b232013-09-28 19:05:36 -070065 return new ${i.versioned_class(factory.version).name}.Builder()${".setXid(nextXid())" if i.member_by_name("xid") else ""};
Andreas Wundsame0d52be2013-08-22 07:52:13 -070066 //:: else:
Andreas Wundsam5204de22013-07-30 11:34:45 -070067 throw new UnsupportedOperationException("${i.name} not supported in version ${factory.version}");
Andreas Wundsame0d52be2013-08-22 07:52:13 -070068 //:: #endif
Andreas Wundsam5204de22013-07-30 11:34:45 -070069 }
Andreas Wundsame0d52be2013-08-22 07:52:13 -070070 //:: #endif
Yotam Harchola86e4252013-09-06 15:36:28 -070071 //:: if not general_get_match_func_written and is_match_object and not unsupported_match_object:
72 public Match.Builder buildMatch() {
73 return new ${i.versioned_class(factory.version).name}.Builder();
74 }
75 //:: general_get_match_func_written = True
76 //:: #endif
Andreas Wundsame0d52be2013-08-22 07:52:13 -070077 //:: if len(i.writeable_members) <= 2:
Andreas Wundsamcb17b232013-09-28 19:05:36 -070078 public ${i.name} ${factory.interface.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 -070079 //:: if i.has_version(factory.version) and model.generate_class(i.versioned_class(factory.version)):
80 //:: if len(i.writeable_members) > 0:
81 return new ${i.versioned_class(factory.version).name}(
82 ${",\n ".join(
Andreas Wundsamcb17b232013-09-28 19:05:36 -070083 [ prop.name if prop.name != "xid" else "nextXid()" for prop in i.versioned_class(factory.version).data_members])}
Andreas Wundsame0d52be2013-08-22 07:52:13 -070084 );
85 //:: else:
86 return ${i.versioned_class(factory.version).name}.INSTANCE;
87 //:: #endif
88 //:: else:
89 throw new UnsupportedOperationException("${i.name} not supported in version ${factory.version}");
90 //:: #endif
91 }
92 //:: #endif
Andreas Wundsam5204de22013-07-30 11:34:45 -070093//:: #endfor
94
Andreas Wundsame0d52be2013-08-22 07:52:13 -070095 public OFMessageReader<${factory.base_class}> getReader() {
96//:: if factory.versioned_base_class:
97 return ${factory.versioned_base_class.name}.READER;
98//:: else:
99 throw new UnsupportedOperationException("Reader<${factory.base_class}> not supported in version ${factory.version}");
100//:: #endif
Andreas Wundsam3ad98162013-08-15 11:08:56 -0700101 }
102
Yotam Harchol98af7752013-08-22 14:59:38 -0700103//:: if factory.interface.name == 'OFOxms':
104 @SuppressWarnings("unchecked")
105 public <F extends OFValueType<F>> OFOxm<F> fromValue(F value, MatchField<F> field) {
106 switch (field.id) {
107 //:: for oxm_name in model.oxm_map:
108 //:: type_name, value, masked = model.oxm_map[oxm_name]
109 //:: if masked:
110 //:: continue
111 //:: #endif
112 //:: method_name = oxm_name.replace('OFOxm', '')
113 //:: method_name = method_name[0].lower() + method_name[1:]
114 case ${value}:
Yotam Harcholbd1d7282013-08-22 20:10:31 -0700115 //:: # The cast to Object is done to avoid some javac bug that in some versions cannot handle cast from generic type to other types but Object
116 return (OFOxm<F>)((Object)${method_name}((${type_name})((Object)value)));
Yotam Harchol98af7752013-08-22 14:59:38 -0700117 //:: #endfor
118 default:
119 return null;
120 }
121 }
122
123 @SuppressWarnings("unchecked")
124 public <F extends OFValueType<F>> OFOxm<F> fromValueAndMask(F value, F mask, MatchField<F> field) {
125 switch (field.id) {
126 //:: for oxm_name in model.oxm_map:
127 //:: type_name, value, masked = model.oxm_map[oxm_name]
128 //:: if not masked:
129 //:: continue
130 //:: #endif
131 //:: method_name = oxm_name.replace('OFOxm', '')
132 //:: method_name = method_name[0].lower() + method_name[1:]
133 case ${value}:
Yotam Harcholbd1d7282013-08-22 20:10:31 -0700134 //:: # The cast to Object is done to avoid some javac bug that in some versions cannot handle cast from generic type to other types but Object
135 return (OFOxm<F>)((Object)${method_name}((${type_name})((Object)value), (${type_name})((Object)mask)));
Yotam Harchol98af7752013-08-22 14:59:38 -0700136 //:: #endfor
137 default:
138 return null;
139 }
140 }
141
142 @SuppressWarnings("unchecked")
143 public <F extends OFValueType<F>> OFOxm<F> fromMasked(Masked<F> masked, MatchField<F> field) {
144 switch (field.id) {
145 //:: for oxm_name in model.oxm_map:
146 //:: type_name, value, masked = model.oxm_map[oxm_name]
147 //:: if not masked:
148 //:: continue
149 //:: #endif
150 //:: method_name = oxm_name.replace('OFOxm', '')
151 //:: method_name = method_name[0].lower() + method_name[1:]
152 case ${value}:
Yotam Harcholbd1d7282013-08-22 20:10:31 -0700153 //:: # The cast to Object is done to avoid some javac bug that in some versions cannot handle cast from generic type to other types but Object
154 return (OFOxm<F>)((Object)${method_name}((${type_name})((Object)(masked.getValue())), (${type_name})((Object)(masked.getMask()))));
Yotam Harchol98af7752013-08-22 14:59:38 -0700155 //:: #endfor
156 default:
157 return null;
158 }
159 }
160//:: #endif
Andreas Wundsamcb17b232013-09-28 19:05:36 -0700161//:: if factory.interface.xid_generator:
162 public long nextXid() {
163 return xidGenerator.nextXid();
164 }
165//:: #endif
Yotam Harchol98af7752013-08-22 14:59:38 -0700166
Andreas Wundsam5204de22013-07-30 11:34:45 -0700167}