blob: 8bbada1a3b09421fe992ca90c286bb871a867d2a [file] [log] [blame]
Dan Talaycof75360a2010-02-05 22:22:54 -08001#!/usr/bin/python
2#
3# This python script generates wrapper functions for OpenFlow messages
4#
5# See the doc string below for more info
6#
7
8# To do:
9# Default type values for messages
10# Generate all message objects
11# Action list objects?
12# Autogen lengths when possible
13# Dictionaries for enum strings
14# Resolve sub struct initializers (see ofp_flow_mod)
15
16
17"""
18Generate wrapper classes for OpenFlow messages
19
20(C) Copyright Stanford University
21Date February 2010
22Created by dtalayco
23
24Attempting to follow http://www.python.org/dev/peps/pep-0008/
25The main exception is that our class names do not use CamelCase
26so as to more closely match the original C code names.
27
28This file is meant to generate a file of_wrapper.py which imports
29the base classes generated form automatic processing of openflow.h
30and produces wrapper classes for each OpenFlow message type.
31
32This file will normally be included in of_message.py which provides
33additional hand-generated work.
34
35There are two types of structures/classes here: base components and
36message classes.
37
38Base components are the base data classes which are fixed
39length structures including:
40 ofp_header
41 Each ofp_action structure
42 ofp_phy_port
43 The array elements of all the stats reply messages
44The base components are to be imported from a file of_header.py.
45
46Message classes define a complete message on the wire. These are
47comprised of possibly variable length lists of possibly variably
48typed objects from the base component list above.
49
50Each OpenFlow message has a header and zero or more fixed length
51members (the "core members" of the class) followed by zero or more
52variable length lists.
53
54The wrapper classes should live in their own name space, probably
55of_message. Automatically generated base component and skeletons for
56the message classes are assumed generated and the wrapper classes
57will inherit from those.
58
59Every message class must implement pack and unpack functions to
60convert between the class and a string representing what goes on the
61wire.
62
63For unpacking, the low level (base-component) classes must implement
64their own unpack functions. A single top level unpack function
65will do the parsing and call the lower layer unpack functions as
66appropriate.
67
68Every base and message class should implement a show function to
69(recursively) display the contents of the object.
70
71Certain OpenFlow message types are further subclassed. These include
72stats_request, stats_reply and error.
73
74"""
75
76# Don't generate header object in messages
77# Map each message to a body that doesn't include the header
78# The body has does not include variable length info at the end
79
80import re
81import string
82import sys
Dan Talaycob9cb5482010-02-09 15:23:12 -080083sys.path.append("../../src/python/oftest/protocol")
84from cstruct import *
85from class_maps import class_to_members_map
Dan Talaycof75360a2010-02-05 22:22:54 -080086
87message_top_matter = """
88# Python OpenFlow message wrapper classes
89
Dan Talaycob9cb5482010-02-09 15:23:12 -080090from cstruct import *
Dan Talaycof75360a2010-02-05 22:22:54 -080091from action_list import action_list
92
Dan Talaycof75360a2010-02-05 22:22:54 -080093# Define templates for documentation
94class ofp_template_msg:
95 \"""
96 Sample base class for template_msg; normally auto generated
97 This class should live in the of_header name space and provides the
98 base class for this type of message. It will be wrapped for the
99 high level API.
100
101 \"""
102 def __init__(self):
103 \"""
104 Constructor for base class
105
106 \"""
107 self.header = ofp_header()
108 # Additional base data members declared here
Dan Talaycoac1cb812010-02-06 20:34:18 -0800109
Dan Talaycof75360a2010-02-05 22:22:54 -0800110 # Normally will define pack, unpack, __len__ functions
111
112class template_msg(ofp_template_msg):
113 \"""
114 Sample class wrapper for template_msg
115 This class should live in the of_message name space and provides the
116 high level API for an OpenFlow message object. These objects must
117 implement the functions indicated in this template.
118
119 \"""
120 def __init__(self):
121 \"""
122 Constructor
123 Must set the header type value appropriately for the message
124
125 \"""
Dan Talaycoac1cb812010-02-06 20:34:18 -0800126
127 ##@var header
128 # OpenFlow message header: length, version, xid, type
Dan Talaycof75360a2010-02-05 22:22:54 -0800129 ofp_template_msg.__init__(self)
Dan Talaycoac1cb812010-02-06 20:34:18 -0800130 self.header = ofp_header()
Dan Talaycof75360a2010-02-05 22:22:54 -0800131 # For a real message, will be set to an integer
132 self.header.type = "TEMPLATE_MSG_VALUE"
133 def pack(self):
134 \"""
135 Pack object into string
136
137 @return The packed string which can go on the wire
138
139 \"""
140 pass
141 def unpack(self, binary_string):
142 \"""
143 Unpack object from a binary string
144
145 @param binary_string The wire protocol byte string holding the object
146 represented as an array of bytes.
147
148 @return Typically returns the remainder of binary_string that
149 was not parsed. May give a warning if that string is non-empty
150
151 \"""
152 pass
153 def __len__(self):
154 \"""
155 Return the length of this object once packed into a string
156
157 @return An integer representing the number bytes in the packed
158 string.
159
160 \"""
161 pass
162 def show(self, prefix=''):
163 \"""
164 Display the contents of the object in a readable manner
165
166 @param prefix Printed at the beginning of each line.
167
168 \"""
169 pass
170 def __eq__(self, other):
171 \"""
172 Return True if self and other hold the same data
173
174 @param other Other object in comparison
175
176 \"""
177 pass
178 def __ne__(self, other):
179 \"""
180 Return True if self and other do not hold the same data
181
182 @param other Other object in comparison
183
184 \"""
185 pass
186"""
187
188# Dictionary mapping wrapped classes to the auto-generated structure
189# underlieing the class (body only, not header or var-length data)
190message_class_map = {
191 "hello" : "ofp_header",
192 "error" : "ofp_error_msg",
193 "echo_request" : "ofp_header",
194 "echo_reply" : "ofp_header",
195 "vendor" : "ofp_vendor_header",
196 "features_request" : "ofp_header",
197 "features_reply" : "ofp_switch_features",
198 "get_config_request" : "ofp_header",
199 "get_config_reply" : "ofp_switch_config",
200 "set_config" : "ofp_switch_config",
201 "packet_in" : "ofp_packet_in",
202 "flow_removed" : "ofp_flow_removed",
203 "port_status" : "ofp_port_status",
204 "packet_out" : "ofp_packet_out",
205 "flow_mod" : "ofp_flow_mod",
206 "port_mod" : "ofp_port_mod",
207 "stats_request" : "ofp_stats_request",
208 "stats_reply" : "ofp_stats_reply",
209 "barrier_request" : "ofp_header",
210 "barrier_reply" : "ofp_header",
211 "queue_get_config_request" : "ofp_queue_get_config_request",
212 "queue_get_config_reply" : "ofp_queue_get_config_reply"
213}
214
215# These messages have a string member at the end of the data
216string_members = [
217 "hello",
218 "error",
219 "echo_request",
220 "echo_reply",
221 "vendor",
222 "packet_in",
223 "packet_out"
224]
225
226# These messages have a list (with the given name) in the data,
227# after the core members; the type is given for validation
228list_members = {
229 "features_reply" : ('ports', None),
230 "packet_out" : ('actions', 'action_list'),
231 "flow_mod" : ('actions', 'action_list'),
232 "queue_get_config_reply" : ('queues', None)
233}
234
235_ind = " "
236
237def _p1(s): print _ind + s
238def _p2(s): print _ind * 2 + s
239def _p3(s): print _ind * 3 + s
240def _p4(s): print _ind * 4 + s
241
242# Okay, this gets kind of ugly:
243# There are three variables:
244# has_core_members: If parent class is not ofp_header, has inheritance
245# has_list: Whether class has trailing array or class
246# has_string: Whether class has trailing string
247
248def gen_message_wrapper(msg):
249 """
250 Generate a wrapper for the given message based on above info
251 @param msg String identifying the message name for the class
252 """
253
254 msg_name = "OFPT_" + msg.upper()
255 parent = message_class_map[msg]
256
257 has_list = False # Has trailing list
258 has_core_members = False
259 has_string = False # Has trailing string
260 if parent != 'ofp_header':
261 has_core_members = True
262 if msg in list_members.keys():
263 (list_var, list_type) = list_members[msg]
264 has_list = True
265 if msg in string_members:
266 has_string = True
267
268 if has_core_members:
269 print "class " + msg + "(" + parent + "):"
270 else:
271 print "class " + msg + ":"
272 _p1('"""')
273 _p1("Wrapper class for " + msg)
274 print
Dan Talaycoac1cb812010-02-06 20:34:18 -0800275 _p1("OpenFlow message header: length, version, xid, type")
276 _p1("@arg length: The total length of the message")
277 _p1("@arg version: The OpenFlow version (" + str(OFP_VERSION) + ")")
278 _p1("@arg xid: The transaction ID")
279 _p1("@arg type: The message type (" + msg_name + "=" +
280 str(eval(msg_name)) + ")")
281 print
282 if has_core_members and parent in class_to_members_map.keys():
283 _p1("Data members inherited from " + parent + ":")
284 for var in class_to_members_map[parent]:
285 _p1("@arg " + var)
Dan Talaycof75360a2010-02-05 22:22:54 -0800286 if has_list:
287 if list_type == None:
Dan Talaycoac1cb812010-02-06 20:34:18 -0800288 _p1("@arg " + list_var + ": Variable length array of TBD")
Dan Talaycof75360a2010-02-05 22:22:54 -0800289 else:
Dan Talaycoac1cb812010-02-06 20:34:18 -0800290 _p1("@arg " + list_var + ": Object of type " + list_type);
Dan Talaycof75360a2010-02-05 22:22:54 -0800291 if has_string:
Dan Talaycoac1cb812010-02-06 20:34:18 -0800292 _p1("@arg data: Binary string following message members")
293 print
Dan Talaycof75360a2010-02-05 22:22:54 -0800294 _p1('"""')
295
296 print
297 _p1("def __init__(self):")
298 if has_core_members:
299 _p2(parent + ".__init__(self)")
Dan Talaycof75360a2010-02-05 22:22:54 -0800300 _p2("self.header = ofp_header()")
301 _p2("self.header.type = " + msg_name)
302 if has_list:
303 if list_type == None:
304 _p2('self.' + list_var + ' = []')
305 else:
306 _p2('self.' + list_var + ' = ' + list_type + '()')
307 if has_string:
308 _p2('self.data = ""')
309
Dan Talaycob9cb5482010-02-09 15:23:12 -0800310 print """
311
312 def pack(self):
313 \"""
314 Pack object into string
315
316 @return The packed string which can go on the wire
317
318 \"""
319 self.header.length = len(self)
320 packed = self.header.pack()
321"""
322
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800323 # Have to special case the action length calculation for pkt out
324 if msg == 'packet_out':
325 _p2('self.actions_len = len(self.actions)')
Dan Talaycof75360a2010-02-05 22:22:54 -0800326 if has_core_members:
Dan Talayco6d2470b2010-02-07 22:59:49 -0800327 _p2("packed += " + parent + ".pack(self)")
Dan Talaycof75360a2010-02-05 22:22:54 -0800328 if has_list:
329 if list_type == None:
330 _p2('for obj in self.' + list_var + ':')
331 _p3('packed += obj.pack()')
332 else:
333 _p2('packed += self.' + list_var + '.pack()')
334 if has_string:
335 _p2('packed += self.data')
Dan Talayco6d2470b2010-02-07 22:59:49 -0800336 _p2("return packed")
Dan Talaycof75360a2010-02-05 22:22:54 -0800337
Dan Talaycob9cb5482010-02-09 15:23:12 -0800338 print """
339 def unpack(self, binary_string):
340 \"""
341 Unpack object from a binary string
342
343 @param binary_string The wire protocol byte string holding the object
344 represented as an array of bytes.
345 @return Typically returns the remainder of binary_string that
346 was not parsed. May give a warning if that string is non-empty
347
348 \"""
349 binary_string = self.header.unpack(binary_string)
350"""
Dan Talaycof75360a2010-02-05 22:22:54 -0800351 if has_core_members:
352 _p2("binary_string = " + parent + ".unpack(self, binary_string)")
353 if has_list:
354 if list_type == None:
355 _p2("for obj in self." + list_var + ":")
356 _p3("binary_string = obj.unpack(binary_string)")
357 elif msg == "packet_out": # Special case this
Dan Talayco6d2470b2010-02-07 22:59:49 -0800358 _p2('binary_string = self.actions.unpack(' +
359 'binary_string, bytes=self.actions_len)')
Dan Talaycof75360a2010-02-05 22:22:54 -0800360 elif msg == "flow_mod": # Special case this
Dan Talayco6d2470b2010-02-07 22:59:49 -0800361 _p2("ai_len = self.header.length - (OFP_FLOW_MOD_BYTES + " +
362 "OFP_HEADER_BYTES)")
363 _p2("binary_string = self.actions.unpack(binary_string, " +
364 "bytes=ai_len)")
Dan Talaycof75360a2010-02-05 22:22:54 -0800365 else:
366 _p2("binary_string = self." + list_var + ".unpack(binary_string)")
367 if has_string:
368 _p2("self.data = binary_string")
369 _p2("binary_string = ''")
370 else:
371 _p2("# Fixme: If no self.data, add check for data remaining")
372 _p2("return binary_string")
373
Dan Talaycob9cb5482010-02-09 15:23:12 -0800374 print """
375 def __len__(self):
376 \"""
377 Return the length of this object once packed into a string
378
379 @return An integer representing the number bytes in the packed
380 string.
381
382 \"""
383 length = OFP_HEADER_BYTES
384"""
Dan Talayco6d2470b2010-02-07 22:59:49 -0800385 if has_core_members:
386 _p2("length += " + parent + ".__len__(self)")
387 if has_list:
388 if list_type == None:
389 _p2("for obj in self." + list_var + ":")
390 _p3("length += len(obj)")
391 else:
392 _p2("length += len(self." + list_var + ")")
393 if has_string:
394 _p2("length += len(self.data)")
395 _p2("return length")
Dan Talaycof75360a2010-02-05 22:22:54 -0800396
Dan Talaycob9cb5482010-02-09 15:23:12 -0800397 print """
398 ##@todo Convert this to __str__
399 def show(self, prefix=''):
400 \"""
401 Display the contents of the object in a readable manner
402
403 @param prefix Printed at the beginning of each line.
404
405 \"""
406"""
Dan Talaycof75360a2010-02-05 22:22:54 -0800407 _p2("print prefix + '" + msg + " (" + msg_name + ")'")
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800408 _p2("print prefix + 'ofp header'")
Dan Talaycof75360a2010-02-05 22:22:54 -0800409 _p2("prefix += ' '")
410 _p2("self.header.show(prefix)")
411 if has_core_members:
412 _p2(parent + ".show(self, prefix)")
413 if has_list:
414 if list_type == None:
415 _p2('print prefix + "Array ' + list_var + '"')
416 _p2('for obj in self.' + list_var +':')
417 _p3("obj.show(prefix + ' ')")
418 else:
419 _p2('print prefix + "List ' + list_var + '"')
420 _p2('self.' + list_var + ".show(prefix + ' ')")
421 if has_string:
422 _p2("print prefix + 'data is of length ' + str(len(self.data))")
Dan Talayco6d2470b2010-02-07 22:59:49 -0800423 _p2("##@todo Fix this circular reference")
424 _p2("# if len(self.data) > 0:")
425 _p3("# obj = of_message_parse(self.data)")
426 _p3("# if obj != None:")
427 _p4("# obj.show(prefix)")
428 _p3("# else:")
429 _p4('# print prefix + "Unable to parse data"')
Dan Talaycof75360a2010-02-05 22:22:54 -0800430
Dan Talaycob9cb5482010-02-09 15:23:12 -0800431 print """
432 def __eq__(self, other):
433 \"""
434 Return True if self and other hold the same data
435
436 @param other Other object in comparison
437
438 \"""
439 if type(self) != type(other): return False
440 if not self.header.__eq__(other.header): return False
441"""
Dan Talaycof75360a2010-02-05 22:22:54 -0800442 if has_core_members:
Dan Talayco6d2470b2010-02-07 22:59:49 -0800443 _p2("if not " + parent + ".__eq__(self, other): return False")
Dan Talaycof75360a2010-02-05 22:22:54 -0800444 if has_string:
445 _p2("if self.data != other.data: return False")
446 if has_list:
447 _p2("if self." + list_var + " != other." + list_var + ": return False")
448 _p2("return True")
449
Dan Talaycob9cb5482010-02-09 15:23:12 -0800450 print """
451 def __ne__(self, other):
452 \"""
453 Return True if self and other do not hold the same data
Dan Talaycof75360a2010-02-05 22:22:54 -0800454
Dan Talaycob9cb5482010-02-09 15:23:12 -0800455 @param other Other object in comparison
456
457 \"""
458 return not self.__eq__(other)
459 """
Dan Talaycof75360a2010-02-05 22:22:54 -0800460
461
462################################################################
463#
464# Stats request subclasses
465# description_request, flow, aggregate, table, port, vendor
466#
467################################################################
468
469# table and desc stats requests are special with empty body
470extra_ofp_stats_req_defs = """
471# Stats request bodies for desc and table stats are not defined in the
472# OpenFlow header; We define them here. They are empty classes, really
473
474class ofp_desc_stats_request:
475 \"""
476 Forced definition of ofp_desc_stats_request (empty class)
477 \"""
478 def __init__(self):
479 pass
480 def pack(self, assertstruct=True):
481 return ""
482 def unpack(self, binary_string):
483 return binary_string
484 def __len__(self):
485 return 0
486 def show(self, prefix=''):
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800487 print prefix + "ofp_desc_stats_request (empty)"
Dan Talaycof75360a2010-02-05 22:22:54 -0800488 def __eq__(self, other):
489 return type(self) == type(other)
490 def __ne__(self, other):
491 return type(self) != type(other)
492
493OFP_DESC_STATS_REQUEST_BYTES = 0
494
495class ofp_table_stats_request:
496 \"""
497 Forced definition of ofp_table_stats_request (empty class)
498 \"""
499 def __init__(self):
500 pass
501 def pack(self, assertstruct=True):
502 return ""
503 def unpack(self, binary_string):
504 return binary_string
505 def __len__(self):
506 return 0
507 def show(self, prefix=''):
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800508 print prefix + "ofp_table_stats_request (empty)"
Dan Talaycof75360a2010-02-05 22:22:54 -0800509 def __eq__(self, other):
510 return type(self) == type(other)
511 def __ne__(self, other):
512 return type(self) != type(other)
513
514OFP_TABLE_STATS_REQUEST_BYTES = 0
515
516"""
517
518stats_request_template = """
519class --TYPE--_stats_request(ofp_stats_request, ofp_--TYPE--_stats_request):
520 \"""
521 Wrapper class for --TYPE-- stats request message
522 \"""
523 def __init__(self):
524 self.header = ofp_header()
525 ofp_stats_request.__init__(self)
526 ofp_--TYPE--_stats_request.__init__(self)
527 self.header.type = OFPT_STATS_REQUEST
528 self.type = --STATS_NAME--
529
530 def pack(self, assertstruct=True):
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800531 packed = self.header.pack()
532 packed += ofp_stats_request.pack(self)
Dan Talaycof75360a2010-02-05 22:22:54 -0800533 packed += ofp_--TYPE--_stats_request.pack(self)
Dan Talayco6d2470b2010-02-07 22:59:49 -0800534 return packed
Dan Talaycof75360a2010-02-05 22:22:54 -0800535
536 def unpack(self, binary_string):
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800537 binary_string = self.header.unpack(binary_string)
Dan Talaycof75360a2010-02-05 22:22:54 -0800538 binary_string = ofp_stats_request.unpack(self, binary_string)
539 binary_string = ofp_--TYPE--_stats_request.unpack(self, binary_string)
540 if len(binary_string) != 0:
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800541 print "ERROR unpacking --TYPE--: extra data"
Dan Talaycof75360a2010-02-05 22:22:54 -0800542 return binary_string
543
544 def __len__(self):
545 return len(self.header) + OFP_STATS_REQUEST_BYTES + \\
546 OFP_--TYPE_UPPER--_STATS_REQUEST_BYTES
547
548 def show(self, prefix=''):
549 print prefix + "--TYPE--_stats_request"
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800550 print prefix + "ofp header:"
551 self.header.show(prefix + ' ')
Dan Talaycof75360a2010-02-05 22:22:54 -0800552 ofp_stats_request.show(self)
553 ofp_--TYPE--_stats_request.show(self)
554
555 def __eq__(self, other):
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800556 if type(self) != type(other): return False
557 return (self.header == other.header and
558 ofp_stats_request.__eq__(self, other) and
Dan Talaycof75360a2010-02-05 22:22:54 -0800559 ofp_--TYPE--_stats_request.__eq__(self, other))
560
561 def __ne__(self, other): return not self.__eq__(other)
562"""
563
564################################################################
565#
566# Stats replies always have an array at the end.
567# For aggregate and desc, these arrays are always of length 1
568# This array is always called stats
569#
570################################################################
571
572
573# Template for objects stats reply messages
574stats_reply_template = """
575class --TYPE--_stats_reply(ofp_stats_reply):
576 \"""
577 Wrapper class for --TYPE-- stats reply
578 \"""
579 def __init__(self):
580 self.header = ofp_header()
581 ofp_stats_reply.__init__(self)
582 self.header.type = OFPT_STATS_REPLY
583 self.type = --STATS_NAME--
584 # stats: Array of type --TYPE--_stats_entry
585 self.stats = []
586
587 def pack(self, assertstruct=True):
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800588 packed = self.header.pack()
589 packed += ofp_stats_reply.pack(self)
Dan Talaycof75360a2010-02-05 22:22:54 -0800590 for obj in self.stats:
591 packed += obj.pack()
Dan Talayco6d2470b2010-02-07 22:59:49 -0800592 return packed
Dan Talaycof75360a2010-02-05 22:22:54 -0800593
594 def unpack(self, binary_string):
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800595 binary_string = self.header.unpack(binary_string)
Dan Talaycof75360a2010-02-05 22:22:54 -0800596 binary_string = ofp_stats_reply.unpack(self, binary_string)
597 dummy = --TYPE--_stats_entry()
598 while len(binary_string) >= len(dummy):
599 obj = --TYPE--_stats_entry()
600 binary_string = obj.unpack(binary_string)
601 self.stats.append(obj)
602 if len(binary_string) != 0:
603 print "ERROR unpacking --TYPE-- stats string: extra bytes"
604 return binary_string
605
606 def __len__(self):
607 length = len(self.header) + OFP_STATS_REPLY_BYTES
608 for obj in self.stats:
609 length += len(obj)
610 return length
611
612 def show(self, prefix=''):
613 print prefix + "--TYPE--_stats_reply"
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800614 print prefix + "ofp header:"
615 self.header.show(prefix + ' ')
Dan Talaycof75360a2010-02-05 22:22:54 -0800616 ofp_stats_reply.show(self)
Dan Talayco6d2470b2010-02-07 22:59:49 -0800617 print prefix + "Stats array of length " + str(len(self.stats))
Dan Talaycof75360a2010-02-05 22:22:54 -0800618 for obj in self.stats:
619 obj.show()
620
621 def __eq__(self, other):
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800622 if type(self) != type(other): return False
623 return (self.header == other.header and
624 ofp_stats_reply.__eq__(self, other) and
625 self.stats == other.stats)
Dan Talaycof75360a2010-02-05 22:22:54 -0800626
627 def __ne__(self, other): return not self.__eq__(other)
628"""
629
630#
631# To address variations in stats reply bodies, the following
632# "_entry" classes are defined for each element in the reply
633#
634
635extra_stats_entry_defs = """
636# Stats entries define the content of one element in a stats
637# reply for the indicated type; define _entry for consistency
638
639aggregate_stats_entry = ofp_aggregate_stats_reply
640desc_stats_entry = ofp_desc_stats
641port_stats_entry = ofp_port_stats
642queue_stats_entry = ofp_queue_stats
643table_stats_entry = ofp_table_stats
644"""
645
646# Special case flow_stats to handle actions_list
647
648flow_stats_entry_def = """
649#
650# Flow stats entry contains an action list of variable length, so
651# it is done by hand
652#
653
654class flow_stats_entry(ofp_flow_stats):
655 \"""
656 Special case flow stats entry to handle action list object
657 \"""
658 def __init__(self):
659 ofp_flow_stats.__init__(self)
660 self.actions = action_list()
661
662 def pack(self, assertstruct=True):
Dan Talayco6d2470b2010-02-07 22:59:49 -0800663 self.length = len(self)
Dan Talaycof75360a2010-02-05 22:22:54 -0800664 packed = ofp_flow_stats.pack(self, assertstruct)
665 packed += self.actions.pack()
Dan Talayco6d2470b2010-02-07 22:59:49 -0800666 if len(packed) != self.length:
667 print("ERROR: flow_stats_entry pack length not equal",
668 self.length, len(packed))
Dan Talaycof75360a2010-02-05 22:22:54 -0800669 return packed
670
671 def unpack(self, binary_string):
672 binary_string = ofp_flow_stats.unpack(self, binary_string)
673 ai_len = self.length - OFP_FLOW_STATS_BYTES
Dan Talayco6d2470b2010-02-07 22:59:49 -0800674 if ai_len < 0:
675 print("ERROR: flow_stats_entry unpack length too small",
676 self.length)
Dan Talaycof75360a2010-02-05 22:22:54 -0800677 binary_string = self.actions.unpack(binary_string, bytes=ai_len)
678 return binary_string
679
680 def __len__(self):
681 return OFP_FLOW_STATS_BYTES + len(self.actions)
682
683 def show(self, prefix=''):
684 print prefix + "flow_stats_entry"
685 ofp_flow_stats.show(self, prefix + ' ')
686 self.actions.show(prefix + ' ')
687
688 def __eq__(self, other):
Dan Talayco36f2f1f2010-02-10 22:40:26 -0800689 if type(self) != type(other): return False
Dan Talaycof75360a2010-02-05 22:22:54 -0800690 return (ofp_flow_stats.__eq__(self, other) and
691 self.actions == other.actions)
692
693 def __ne__(self, other): return not self.__eq__(other)
694"""
695
696stats_types = [
697 'aggregate',
698 'desc',
699 'flow',
700 'port',
701 'queue',
702 'table']
703
704if __name__ == '__main__':
705
706 print message_top_matter
707
708 print """
709################################################################
710#
711# OpenFlow Message Definitions
712#
713################################################################
714"""
715
716 msg_types = message_class_map.keys()
717 msg_types.sort()
718
719 for t in msg_types:
720 gen_message_wrapper(t)
721 print
722
723 print """
724################################################################
725#
726# Stats request and reply subclass definitions
727#
728################################################################
729"""
730
731 print extra_ofp_stats_req_defs
732 print extra_stats_entry_defs
733 print flow_stats_entry_def
734
735 # Generate stats request and reply subclasses
736 for t in stats_types:
737 stats_name = "OFPST_" + t.upper()
738 to_print = re.sub('--TYPE--', t, stats_request_template)
739 to_print = re.sub('--TYPE_UPPER--', t.upper(), to_print)
740 to_print = re.sub('--STATS_NAME--', stats_name, to_print)
741 print to_print
742 to_print = re.sub('--TYPE--', t, stats_reply_template)
743 to_print = re.sub('--STATS_NAME--', stats_name, to_print)
744 print to_print
745
746
747#
748# OFP match variants
749# ICMP 0x801 (?) ==> icmp_type/code replace tp_src/dst
750#
751
752