Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 1 | #!/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 | """ |
| 18 | Generate wrapper classes for OpenFlow messages |
| 19 | |
| 20 | (C) Copyright Stanford University |
| 21 | Date February 2010 |
| 22 | Created by dtalayco |
| 23 | |
| 24 | Attempting to follow http://www.python.org/dev/peps/pep-0008/ |
| 25 | The main exception is that our class names do not use CamelCase |
| 26 | so as to more closely match the original C code names. |
| 27 | |
| 28 | This file is meant to generate a file of_wrapper.py which imports |
| 29 | the base classes generated form automatic processing of openflow.h |
| 30 | and produces wrapper classes for each OpenFlow message type. |
| 31 | |
| 32 | This file will normally be included in of_message.py which provides |
| 33 | additional hand-generated work. |
| 34 | |
| 35 | There are two types of structures/classes here: base components and |
| 36 | message classes. |
| 37 | |
| 38 | Base components are the base data classes which are fixed |
| 39 | length structures including: |
| 40 | ofp_header |
| 41 | Each ofp_action structure |
| 42 | ofp_phy_port |
| 43 | The array elements of all the stats reply messages |
| 44 | The base components are to be imported from a file of_header.py. |
| 45 | |
| 46 | Message classes define a complete message on the wire. These are |
| 47 | comprised of possibly variable length lists of possibly variably |
| 48 | typed objects from the base component list above. |
| 49 | |
| 50 | Each OpenFlow message has a header and zero or more fixed length |
| 51 | members (the "core members" of the class) followed by zero or more |
| 52 | variable length lists. |
| 53 | |
| 54 | The wrapper classes should live in their own name space, probably |
| 55 | of_message. Automatically generated base component and skeletons for |
| 56 | the message classes are assumed generated and the wrapper classes |
| 57 | will inherit from those. |
| 58 | |
| 59 | Every message class must implement pack and unpack functions to |
| 60 | convert between the class and a string representing what goes on the |
| 61 | wire. |
| 62 | |
| 63 | For unpacking, the low level (base-component) classes must implement |
| 64 | their own unpack functions. A single top level unpack function |
| 65 | will do the parsing and call the lower layer unpack functions as |
| 66 | appropriate. |
| 67 | |
| 68 | Every base and message class should implement a show function to |
| 69 | (recursively) display the contents of the object. |
| 70 | |
| 71 | Certain OpenFlow message types are further subclassed. These include |
| 72 | stats_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 | |
| 80 | import re |
| 81 | import string |
| 82 | import sys |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 83 | sys.path.append("../../src/python/oftest") |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 84 | from cstruct import * |
| 85 | from class_maps import class_to_members_map |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 86 | |
| 87 | message_top_matter = """ |
| 88 | # Python OpenFlow message wrapper classes |
| 89 | |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 90 | from cstruct import * |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 91 | from action_list import action_list |
Dan Talayco | 411489d | 2010-02-12 23:03:46 -0800 | [diff] [blame] | 92 | from error import * |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 93 | |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 94 | # Define templates for documentation |
| 95 | class ofp_template_msg: |
| 96 | \""" |
| 97 | Sample base class for template_msg; normally auto generated |
| 98 | This class should live in the of_header name space and provides the |
| 99 | base class for this type of message. It will be wrapped for the |
| 100 | high level API. |
| 101 | |
| 102 | \""" |
| 103 | def __init__(self): |
| 104 | \""" |
| 105 | Constructor for base class |
| 106 | |
| 107 | \""" |
| 108 | self.header = ofp_header() |
| 109 | # Additional base data members declared here |
Dan Talayco | ac1cb81 | 2010-02-06 20:34:18 -0800 | [diff] [blame] | 110 | |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 111 | # Normally will define pack, unpack, __len__ functions |
| 112 | |
| 113 | class template_msg(ofp_template_msg): |
| 114 | \""" |
| 115 | Sample class wrapper for template_msg |
| 116 | This class should live in the of_message name space and provides the |
| 117 | high level API for an OpenFlow message object. These objects must |
| 118 | implement the functions indicated in this template. |
| 119 | |
| 120 | \""" |
| 121 | def __init__(self): |
| 122 | \""" |
| 123 | Constructor |
| 124 | Must set the header type value appropriately for the message |
| 125 | |
| 126 | \""" |
Dan Talayco | ac1cb81 | 2010-02-06 20:34:18 -0800 | [diff] [blame] | 127 | |
| 128 | ##@var header |
| 129 | # OpenFlow message header: length, version, xid, type |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 130 | ofp_template_msg.__init__(self) |
Dan Talayco | ac1cb81 | 2010-02-06 20:34:18 -0800 | [diff] [blame] | 131 | self.header = ofp_header() |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 132 | # For a real message, will be set to an integer |
| 133 | self.header.type = "TEMPLATE_MSG_VALUE" |
| 134 | def pack(self): |
| 135 | \""" |
| 136 | Pack object into string |
| 137 | |
| 138 | @return The packed string which can go on the wire |
| 139 | |
| 140 | \""" |
| 141 | pass |
| 142 | def unpack(self, binary_string): |
| 143 | \""" |
| 144 | Unpack object from a binary string |
| 145 | |
| 146 | @param binary_string The wire protocol byte string holding the object |
| 147 | represented as an array of bytes. |
| 148 | |
| 149 | @return Typically returns the remainder of binary_string that |
| 150 | was not parsed. May give a warning if that string is non-empty |
| 151 | |
| 152 | \""" |
| 153 | pass |
| 154 | def __len__(self): |
| 155 | \""" |
| 156 | Return the length of this object once packed into a string |
| 157 | |
| 158 | @return An integer representing the number bytes in the packed |
| 159 | string. |
| 160 | |
| 161 | \""" |
| 162 | pass |
| 163 | def show(self, prefix=''): |
| 164 | \""" |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 165 | Generate a string (with multiple lines) describing the contents |
| 166 | of the object in a readable manner |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 167 | |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 168 | @param prefix Pre-pended at the beginning of each line. |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 169 | |
| 170 | \""" |
| 171 | pass |
| 172 | def __eq__(self, other): |
| 173 | \""" |
| 174 | Return True if self and other hold the same data |
| 175 | |
| 176 | @param other Other object in comparison |
| 177 | |
| 178 | \""" |
| 179 | pass |
| 180 | def __ne__(self, other): |
| 181 | \""" |
| 182 | Return True if self and other do not hold the same data |
| 183 | |
| 184 | @param other Other object in comparison |
| 185 | |
| 186 | \""" |
| 187 | pass |
| 188 | """ |
| 189 | |
| 190 | # Dictionary mapping wrapped classes to the auto-generated structure |
| 191 | # underlieing the class (body only, not header or var-length data) |
| 192 | message_class_map = { |
| 193 | "hello" : "ofp_header", |
| 194 | "error" : "ofp_error_msg", |
| 195 | "echo_request" : "ofp_header", |
| 196 | "echo_reply" : "ofp_header", |
| 197 | "vendor" : "ofp_vendor_header", |
| 198 | "features_request" : "ofp_header", |
| 199 | "features_reply" : "ofp_switch_features", |
| 200 | "get_config_request" : "ofp_header", |
| 201 | "get_config_reply" : "ofp_switch_config", |
| 202 | "set_config" : "ofp_switch_config", |
| 203 | "packet_in" : "ofp_packet_in", |
| 204 | "flow_removed" : "ofp_flow_removed", |
| 205 | "port_status" : "ofp_port_status", |
| 206 | "packet_out" : "ofp_packet_out", |
| 207 | "flow_mod" : "ofp_flow_mod", |
| 208 | "port_mod" : "ofp_port_mod", |
| 209 | "stats_request" : "ofp_stats_request", |
| 210 | "stats_reply" : "ofp_stats_reply", |
| 211 | "barrier_request" : "ofp_header", |
| 212 | "barrier_reply" : "ofp_header", |
| 213 | "queue_get_config_request" : "ofp_queue_get_config_request", |
| 214 | "queue_get_config_reply" : "ofp_queue_get_config_reply" |
| 215 | } |
| 216 | |
| 217 | # These messages have a string member at the end of the data |
| 218 | string_members = [ |
| 219 | "hello", |
| 220 | "error", |
| 221 | "echo_request", |
| 222 | "echo_reply", |
| 223 | "vendor", |
| 224 | "packet_in", |
| 225 | "packet_out" |
| 226 | ] |
| 227 | |
| 228 | # These messages have a list (with the given name) in the data, |
| 229 | # after the core members; the type is given for validation |
| 230 | list_members = { |
| 231 | "features_reply" : ('ports', None), |
| 232 | "packet_out" : ('actions', 'action_list'), |
| 233 | "flow_mod" : ('actions', 'action_list'), |
| 234 | "queue_get_config_reply" : ('queues', None) |
| 235 | } |
| 236 | |
| 237 | _ind = " " |
| 238 | |
| 239 | def _p1(s): print _ind + s |
| 240 | def _p2(s): print _ind * 2 + s |
| 241 | def _p3(s): print _ind * 3 + s |
| 242 | def _p4(s): print _ind * 4 + s |
| 243 | |
| 244 | # Okay, this gets kind of ugly: |
| 245 | # There are three variables: |
| 246 | # has_core_members: If parent class is not ofp_header, has inheritance |
| 247 | # has_list: Whether class has trailing array or class |
| 248 | # has_string: Whether class has trailing string |
| 249 | |
| 250 | def gen_message_wrapper(msg): |
| 251 | """ |
| 252 | Generate a wrapper for the given message based on above info |
| 253 | @param msg String identifying the message name for the class |
| 254 | """ |
| 255 | |
| 256 | msg_name = "OFPT_" + msg.upper() |
| 257 | parent = message_class_map[msg] |
| 258 | |
| 259 | has_list = False # Has trailing list |
| 260 | has_core_members = False |
| 261 | has_string = False # Has trailing string |
| 262 | if parent != 'ofp_header': |
| 263 | has_core_members = True |
| 264 | if msg in list_members.keys(): |
| 265 | (list_var, list_type) = list_members[msg] |
| 266 | has_list = True |
| 267 | if msg in string_members: |
| 268 | has_string = True |
| 269 | |
| 270 | if has_core_members: |
| 271 | print "class " + msg + "(" + parent + "):" |
| 272 | else: |
| 273 | print "class " + msg + ":" |
| 274 | _p1('"""') |
| 275 | _p1("Wrapper class for " + msg) |
| 276 | print |
Dan Talayco | ac1cb81 | 2010-02-06 20:34:18 -0800 | [diff] [blame] | 277 | _p1("OpenFlow message header: length, version, xid, type") |
| 278 | _p1("@arg length: The total length of the message") |
| 279 | _p1("@arg version: The OpenFlow version (" + str(OFP_VERSION) + ")") |
| 280 | _p1("@arg xid: The transaction ID") |
| 281 | _p1("@arg type: The message type (" + msg_name + "=" + |
| 282 | str(eval(msg_name)) + ")") |
| 283 | print |
| 284 | if has_core_members and parent in class_to_members_map.keys(): |
| 285 | _p1("Data members inherited from " + parent + ":") |
| 286 | for var in class_to_members_map[parent]: |
| 287 | _p1("@arg " + var) |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 288 | if has_list: |
| 289 | if list_type == None: |
Dan Talayco | ac1cb81 | 2010-02-06 20:34:18 -0800 | [diff] [blame] | 290 | _p1("@arg " + list_var + ": Variable length array of TBD") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 291 | else: |
Dan Talayco | ac1cb81 | 2010-02-06 20:34:18 -0800 | [diff] [blame] | 292 | _p1("@arg " + list_var + ": Object of type " + list_type); |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 293 | if has_string: |
Dan Talayco | ac1cb81 | 2010-02-06 20:34:18 -0800 | [diff] [blame] | 294 | _p1("@arg data: Binary string following message members") |
| 295 | print |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 296 | _p1('"""') |
| 297 | |
| 298 | print |
| 299 | _p1("def __init__(self):") |
| 300 | if has_core_members: |
| 301 | _p2(parent + ".__init__(self)") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 302 | _p2("self.header = ofp_header()") |
| 303 | _p2("self.header.type = " + msg_name) |
| 304 | if has_list: |
| 305 | if list_type == None: |
| 306 | _p2('self.' + list_var + ' = []') |
| 307 | else: |
| 308 | _p2('self.' + list_var + ' = ' + list_type + '()') |
| 309 | if has_string: |
| 310 | _p2('self.data = ""') |
| 311 | |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 312 | print """ |
| 313 | |
| 314 | def pack(self): |
| 315 | \""" |
| 316 | Pack object into string |
| 317 | |
| 318 | @return The packed string which can go on the wire |
| 319 | |
| 320 | \""" |
| 321 | self.header.length = len(self) |
| 322 | packed = self.header.pack() |
| 323 | """ |
| 324 | |
Dan Talayco | 36f2f1f | 2010-02-10 22:40:26 -0800 | [diff] [blame] | 325 | # Have to special case the action length calculation for pkt out |
| 326 | if msg == 'packet_out': |
| 327 | _p2('self.actions_len = len(self.actions)') |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 328 | if has_core_members: |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 329 | _p2("packed += " + parent + ".pack(self)") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 330 | if has_list: |
| 331 | if list_type == None: |
| 332 | _p2('for obj in self.' + list_var + ':') |
| 333 | _p3('packed += obj.pack()') |
| 334 | else: |
| 335 | _p2('packed += self.' + list_var + '.pack()') |
| 336 | if has_string: |
| 337 | _p2('packed += self.data') |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 338 | _p2("return packed") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 339 | |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 340 | print """ |
| 341 | def unpack(self, binary_string): |
| 342 | \""" |
| 343 | Unpack object from a binary string |
| 344 | |
| 345 | @param binary_string The wire protocol byte string holding the object |
| 346 | represented as an array of bytes. |
Dan Talayco | 411489d | 2010-02-12 23:03:46 -0800 | [diff] [blame] | 347 | @return The remainder of binary_string that was not parsed. |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 348 | |
| 349 | \""" |
| 350 | binary_string = self.header.unpack(binary_string) |
| 351 | """ |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 352 | if has_core_members: |
| 353 | _p2("binary_string = " + parent + ".unpack(self, binary_string)") |
| 354 | if has_list: |
Dan Talayco | ff60649 | 2010-05-13 14:22:37 -0700 | [diff] [blame] | 355 | if msg == "features_reply": # Special case port parsing |
| 356 | # For now, cheat and assume the rest of the message is port list |
| 357 | _p2("while len(binary_string) >= OFP_PHY_PORT_BYTES:") |
| 358 | _p3("new_port = ofp_phy_port()") |
| 359 | _p3("binary_string = new_port.unpack(binary_string)") |
| 360 | _p3("self.ports.append(new_port)") |
| 361 | elif list_type == None: |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 362 | _p2("for obj in self." + list_var + ":") |
| 363 | _p3("binary_string = obj.unpack(binary_string)") |
| 364 | elif msg == "packet_out": # Special case this |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 365 | _p2('binary_string = self.actions.unpack(' + |
| 366 | 'binary_string, bytes=self.actions_len)') |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 367 | elif msg == "flow_mod": # Special case this |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 368 | _p2("ai_len = self.header.length - (OFP_FLOW_MOD_BYTES + " + |
| 369 | "OFP_HEADER_BYTES)") |
| 370 | _p2("binary_string = self.actions.unpack(binary_string, " + |
| 371 | "bytes=ai_len)") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 372 | else: |
| 373 | _p2("binary_string = self." + list_var + ".unpack(binary_string)") |
| 374 | if has_string: |
| 375 | _p2("self.data = binary_string") |
| 376 | _p2("binary_string = ''") |
| 377 | else: |
| 378 | _p2("# Fixme: If no self.data, add check for data remaining") |
| 379 | _p2("return binary_string") |
| 380 | |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 381 | print """ |
| 382 | def __len__(self): |
| 383 | \""" |
| 384 | Return the length of this object once packed into a string |
| 385 | |
| 386 | @return An integer representing the number bytes in the packed |
| 387 | string. |
| 388 | |
| 389 | \""" |
| 390 | length = OFP_HEADER_BYTES |
| 391 | """ |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 392 | if has_core_members: |
| 393 | _p2("length += " + parent + ".__len__(self)") |
| 394 | if has_list: |
| 395 | if list_type == None: |
| 396 | _p2("for obj in self." + list_var + ":") |
| 397 | _p3("length += len(obj)") |
| 398 | else: |
| 399 | _p2("length += len(self." + list_var + ")") |
| 400 | if has_string: |
| 401 | _p2("length += len(self.data)") |
| 402 | _p2("return length") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 403 | |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 404 | print """ |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 405 | def show(self, prefix=''): |
| 406 | \""" |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 407 | Generate a string (with multiple lines) describing the contents |
| 408 | of the object in a readable manner |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 409 | |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 410 | @param prefix Pre-pended at the beginning of each line. |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 411 | |
| 412 | \""" |
| 413 | """ |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 414 | _p2("outstr = prefix + '" + msg + " (" + msg_name + ")\\n'") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 415 | _p2("prefix += ' '") |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 416 | _p2("outstr += prefix + 'ofp header\\n'") |
| 417 | _p2("outstr += self.header.show(prefix + ' ')") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 418 | if has_core_members: |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 419 | _p2("outstr += " + parent + ".show(self, prefix)") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 420 | if has_list: |
| 421 | if list_type == None: |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 422 | _p2('outstr += prefix + "Array ' + list_var + '\\n"') |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 423 | _p2('for obj in self.' + list_var +':') |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 424 | _p3("outstr += obj.show(prefix + ' ')") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 425 | else: |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 426 | _p2('outstr += prefix + "List ' + list_var + '\\n"') |
| 427 | _p2('outstr += self.' + list_var + ".show(prefix + ' ')") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 428 | if has_string: |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 429 | _p2("outstr += prefix + 'data is of length ' + str(len(self.data)) + '\\n'") |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 430 | _p2("##@todo Fix this circular reference") |
| 431 | _p2("# if len(self.data) > 0:") |
| 432 | _p3("# obj = of_message_parse(self.data)") |
| 433 | _p3("# if obj != None:") |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 434 | _p4("# outstr += obj.show(prefix)") |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 435 | _p3("# else:") |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 436 | _p4('# outstr += prefix + "Unable to parse data\\n"') |
| 437 | _p2('return outstr') |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 438 | |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 439 | print """ |
| 440 | def __eq__(self, other): |
| 441 | \""" |
| 442 | Return True if self and other hold the same data |
| 443 | |
| 444 | @param other Other object in comparison |
| 445 | |
| 446 | \""" |
| 447 | if type(self) != type(other): return False |
| 448 | if not self.header.__eq__(other.header): return False |
| 449 | """ |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 450 | if has_core_members: |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 451 | _p2("if not " + parent + ".__eq__(self, other): return False") |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 452 | if has_string: |
| 453 | _p2("if self.data != other.data: return False") |
| 454 | if has_list: |
| 455 | _p2("if self." + list_var + " != other." + list_var + ": return False") |
| 456 | _p2("return True") |
| 457 | |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 458 | print """ |
| 459 | def __ne__(self, other): |
| 460 | \""" |
| 461 | Return True if self and other do not hold the same data |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 462 | |
Dan Talayco | b9cb548 | 2010-02-09 15:23:12 -0800 | [diff] [blame] | 463 | @param other Other object in comparison |
| 464 | |
| 465 | \""" |
| 466 | return not self.__eq__(other) |
| 467 | """ |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 468 | |
| 469 | |
| 470 | ################################################################ |
| 471 | # |
| 472 | # Stats request subclasses |
| 473 | # description_request, flow, aggregate, table, port, vendor |
| 474 | # |
| 475 | ################################################################ |
| 476 | |
| 477 | # table and desc stats requests are special with empty body |
| 478 | extra_ofp_stats_req_defs = """ |
| 479 | # Stats request bodies for desc and table stats are not defined in the |
| 480 | # OpenFlow header; We define them here. They are empty classes, really |
| 481 | |
| 482 | class ofp_desc_stats_request: |
| 483 | \""" |
| 484 | Forced definition of ofp_desc_stats_request (empty class) |
| 485 | \""" |
| 486 | def __init__(self): |
| 487 | pass |
| 488 | def pack(self, assertstruct=True): |
| 489 | return "" |
| 490 | def unpack(self, binary_string): |
| 491 | return binary_string |
| 492 | def __len__(self): |
| 493 | return 0 |
| 494 | def show(self, prefix=''): |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 495 | return prefix + "ofp_desc_stats_request (empty)\\n" |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 496 | def __eq__(self, other): |
| 497 | return type(self) == type(other) |
| 498 | def __ne__(self, other): |
| 499 | return type(self) != type(other) |
| 500 | |
| 501 | OFP_DESC_STATS_REQUEST_BYTES = 0 |
| 502 | |
| 503 | class ofp_table_stats_request: |
| 504 | \""" |
| 505 | Forced definition of ofp_table_stats_request (empty class) |
| 506 | \""" |
| 507 | def __init__(self): |
| 508 | pass |
| 509 | def pack(self, assertstruct=True): |
| 510 | return "" |
| 511 | def unpack(self, binary_string): |
| 512 | return binary_string |
| 513 | def __len__(self): |
| 514 | return 0 |
| 515 | def show(self, prefix=''): |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 516 | return prefix + "ofp_table_stats_request (empty)\\n" |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 517 | def __eq__(self, other): |
| 518 | return type(self) == type(other) |
| 519 | def __ne__(self, other): |
| 520 | return type(self) != type(other) |
| 521 | |
| 522 | OFP_TABLE_STATS_REQUEST_BYTES = 0 |
| 523 | |
| 524 | """ |
| 525 | |
| 526 | stats_request_template = """ |
| 527 | class --TYPE--_stats_request(ofp_stats_request, ofp_--TYPE--_stats_request): |
| 528 | \""" |
| 529 | Wrapper class for --TYPE-- stats request message |
| 530 | \""" |
| 531 | def __init__(self): |
| 532 | self.header = ofp_header() |
| 533 | ofp_stats_request.__init__(self) |
| 534 | ofp_--TYPE--_stats_request.__init__(self) |
| 535 | self.header.type = OFPT_STATS_REQUEST |
| 536 | self.type = --STATS_NAME-- |
| 537 | |
| 538 | def pack(self, assertstruct=True): |
Dan Talayco | 2f820be | 2010-03-07 11:36:29 -0800 | [diff] [blame] | 539 | self.header.length = len(self) |
Dan Talayco | 36f2f1f | 2010-02-10 22:40:26 -0800 | [diff] [blame] | 540 | packed = self.header.pack() |
| 541 | packed += ofp_stats_request.pack(self) |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 542 | packed += ofp_--TYPE--_stats_request.pack(self) |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 543 | return packed |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 544 | |
| 545 | def unpack(self, binary_string): |
Dan Talayco | 36f2f1f | 2010-02-10 22:40:26 -0800 | [diff] [blame] | 546 | binary_string = self.header.unpack(binary_string) |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 547 | binary_string = ofp_stats_request.unpack(self, binary_string) |
| 548 | binary_string = ofp_--TYPE--_stats_request.unpack(self, binary_string) |
| 549 | if len(binary_string) != 0: |
Dan Talayco | 36f2f1f | 2010-02-10 22:40:26 -0800 | [diff] [blame] | 550 | print "ERROR unpacking --TYPE--: extra data" |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 551 | return binary_string |
| 552 | |
| 553 | def __len__(self): |
| 554 | return len(self.header) + OFP_STATS_REQUEST_BYTES + \\ |
| 555 | OFP_--TYPE_UPPER--_STATS_REQUEST_BYTES |
| 556 | |
| 557 | def show(self, prefix=''): |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 558 | outstr = prefix + "--TYPE--_stats_request\\n" |
| 559 | outstr += prefix + "ofp header:\\n" |
| 560 | outstr += self.header.show(prefix + ' ') |
| 561 | outstr += ofp_stats_request.show(self) |
| 562 | outstr += ofp_--TYPE--_stats_request.show(self) |
| 563 | return outstr |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 564 | |
| 565 | def __eq__(self, other): |
Dan Talayco | 36f2f1f | 2010-02-10 22:40:26 -0800 | [diff] [blame] | 566 | if type(self) != type(other): return False |
| 567 | return (self.header == other.header and |
| 568 | ofp_stats_request.__eq__(self, other) and |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 569 | ofp_--TYPE--_stats_request.__eq__(self, other)) |
| 570 | |
| 571 | def __ne__(self, other): return not self.__eq__(other) |
| 572 | """ |
| 573 | |
| 574 | ################################################################ |
| 575 | # |
| 576 | # Stats replies always have an array at the end. |
| 577 | # For aggregate and desc, these arrays are always of length 1 |
| 578 | # This array is always called stats |
| 579 | # |
| 580 | ################################################################ |
| 581 | |
| 582 | |
| 583 | # Template for objects stats reply messages |
| 584 | stats_reply_template = """ |
| 585 | class --TYPE--_stats_reply(ofp_stats_reply): |
| 586 | \""" |
| 587 | Wrapper class for --TYPE-- stats reply |
| 588 | \""" |
| 589 | def __init__(self): |
| 590 | self.header = ofp_header() |
| 591 | ofp_stats_reply.__init__(self) |
| 592 | self.header.type = OFPT_STATS_REPLY |
| 593 | self.type = --STATS_NAME-- |
| 594 | # stats: Array of type --TYPE--_stats_entry |
| 595 | self.stats = [] |
| 596 | |
| 597 | def pack(self, assertstruct=True): |
Dan Talayco | 2f820be | 2010-03-07 11:36:29 -0800 | [diff] [blame] | 598 | self.header.length = len(self) |
Dan Talayco | 36f2f1f | 2010-02-10 22:40:26 -0800 | [diff] [blame] | 599 | packed = self.header.pack() |
| 600 | packed += ofp_stats_reply.pack(self) |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 601 | for obj in self.stats: |
| 602 | packed += obj.pack() |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 603 | return packed |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 604 | |
| 605 | def unpack(self, binary_string): |
Dan Talayco | 36f2f1f | 2010-02-10 22:40:26 -0800 | [diff] [blame] | 606 | binary_string = self.header.unpack(binary_string) |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 607 | binary_string = ofp_stats_reply.unpack(self, binary_string) |
| 608 | dummy = --TYPE--_stats_entry() |
| 609 | while len(binary_string) >= len(dummy): |
| 610 | obj = --TYPE--_stats_entry() |
| 611 | binary_string = obj.unpack(binary_string) |
| 612 | self.stats.append(obj) |
| 613 | if len(binary_string) != 0: |
| 614 | print "ERROR unpacking --TYPE-- stats string: extra bytes" |
| 615 | return binary_string |
| 616 | |
| 617 | def __len__(self): |
| 618 | length = len(self.header) + OFP_STATS_REPLY_BYTES |
| 619 | for obj in self.stats: |
| 620 | length += len(obj) |
| 621 | return length |
| 622 | |
| 623 | def show(self, prefix=''): |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 624 | outstr = prefix + "--TYPE--_stats_reply\\n" |
| 625 | outstr += prefix + "ofp header:\\n" |
| 626 | outstr += self.header.show(prefix + ' ') |
| 627 | outstr += ofp_stats_reply.show(self) |
| 628 | outstr += prefix + "Stats array of length " + str(len(self.stats)) + '\\n' |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 629 | for obj in self.stats: |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 630 | outstr += obj.show() |
| 631 | return outstr |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 632 | |
| 633 | def __eq__(self, other): |
Dan Talayco | 36f2f1f | 2010-02-10 22:40:26 -0800 | [diff] [blame] | 634 | if type(self) != type(other): return False |
| 635 | return (self.header == other.header and |
| 636 | ofp_stats_reply.__eq__(self, other) and |
| 637 | self.stats == other.stats) |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 638 | |
| 639 | def __ne__(self, other): return not self.__eq__(other) |
| 640 | """ |
| 641 | |
| 642 | # |
| 643 | # To address variations in stats reply bodies, the following |
| 644 | # "_entry" classes are defined for each element in the reply |
| 645 | # |
| 646 | |
| 647 | extra_stats_entry_defs = """ |
| 648 | # Stats entries define the content of one element in a stats |
| 649 | # reply for the indicated type; define _entry for consistency |
| 650 | |
| 651 | aggregate_stats_entry = ofp_aggregate_stats_reply |
| 652 | desc_stats_entry = ofp_desc_stats |
| 653 | port_stats_entry = ofp_port_stats |
| 654 | queue_stats_entry = ofp_queue_stats |
| 655 | table_stats_entry = ofp_table_stats |
| 656 | """ |
| 657 | |
| 658 | # Special case flow_stats to handle actions_list |
| 659 | |
| 660 | flow_stats_entry_def = """ |
| 661 | # |
| 662 | # Flow stats entry contains an action list of variable length, so |
| 663 | # it is done by hand |
| 664 | # |
| 665 | |
| 666 | class flow_stats_entry(ofp_flow_stats): |
| 667 | \""" |
| 668 | Special case flow stats entry to handle action list object |
| 669 | \""" |
| 670 | def __init__(self): |
| 671 | ofp_flow_stats.__init__(self) |
| 672 | self.actions = action_list() |
| 673 | |
| 674 | def pack(self, assertstruct=True): |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 675 | self.length = len(self) |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 676 | packed = ofp_flow_stats.pack(self, assertstruct) |
| 677 | packed += self.actions.pack() |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 678 | if len(packed) != self.length: |
| 679 | print("ERROR: flow_stats_entry pack length not equal", |
| 680 | self.length, len(packed)) |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 681 | return packed |
| 682 | |
| 683 | def unpack(self, binary_string): |
| 684 | binary_string = ofp_flow_stats.unpack(self, binary_string) |
| 685 | ai_len = self.length - OFP_FLOW_STATS_BYTES |
Dan Talayco | 6d2470b | 2010-02-07 22:59:49 -0800 | [diff] [blame] | 686 | if ai_len < 0: |
| 687 | print("ERROR: flow_stats_entry unpack length too small", |
| 688 | self.length) |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 689 | binary_string = self.actions.unpack(binary_string, bytes=ai_len) |
| 690 | return binary_string |
| 691 | |
| 692 | def __len__(self): |
| 693 | return OFP_FLOW_STATS_BYTES + len(self.actions) |
| 694 | |
| 695 | def show(self, prefix=''): |
Dan Talayco | 46755fa | 2010-03-09 21:44:29 -0800 | [diff] [blame] | 696 | outstr = prefix + "flow_stats_entry\\n" |
| 697 | outstr += ofp_flow_stats.show(self, prefix + ' ') |
| 698 | outstr += self.actions.show(prefix + ' ') |
| 699 | return outstr |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 700 | |
| 701 | def __eq__(self, other): |
Dan Talayco | 36f2f1f | 2010-02-10 22:40:26 -0800 | [diff] [blame] | 702 | if type(self) != type(other): return False |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 703 | return (ofp_flow_stats.__eq__(self, other) and |
| 704 | self.actions == other.actions) |
| 705 | |
| 706 | def __ne__(self, other): return not self.__eq__(other) |
| 707 | """ |
| 708 | |
| 709 | stats_types = [ |
| 710 | 'aggregate', |
| 711 | 'desc', |
| 712 | 'flow', |
| 713 | 'port', |
| 714 | 'queue', |
| 715 | 'table'] |
| 716 | |
| 717 | if __name__ == '__main__': |
| 718 | |
| 719 | print message_top_matter |
| 720 | |
| 721 | print """ |
| 722 | ################################################################ |
| 723 | # |
| 724 | # OpenFlow Message Definitions |
| 725 | # |
| 726 | ################################################################ |
| 727 | """ |
| 728 | |
| 729 | msg_types = message_class_map.keys() |
| 730 | msg_types.sort() |
| 731 | |
| 732 | for t in msg_types: |
| 733 | gen_message_wrapper(t) |
| 734 | print |
| 735 | |
| 736 | print """ |
| 737 | ################################################################ |
| 738 | # |
| 739 | # Stats request and reply subclass definitions |
| 740 | # |
| 741 | ################################################################ |
| 742 | """ |
| 743 | |
| 744 | print extra_ofp_stats_req_defs |
| 745 | print extra_stats_entry_defs |
| 746 | print flow_stats_entry_def |
| 747 | |
| 748 | # Generate stats request and reply subclasses |
| 749 | for t in stats_types: |
| 750 | stats_name = "OFPST_" + t.upper() |
| 751 | to_print = re.sub('--TYPE--', t, stats_request_template) |
| 752 | to_print = re.sub('--TYPE_UPPER--', t.upper(), to_print) |
| 753 | to_print = re.sub('--STATS_NAME--', stats_name, to_print) |
| 754 | print to_print |
| 755 | to_print = re.sub('--TYPE--', t, stats_reply_template) |
| 756 | to_print = re.sub('--STATS_NAME--', stats_name, to_print) |
| 757 | print to_print |
| 758 | |
Dan Talayco | 411489d | 2010-02-12 23:03:46 -0800 | [diff] [blame] | 759 | # Lastly, generate a tuple containing all the message classes |
| 760 | print """ |
| 761 | message_type_list = ( |
| 762 | aggregate_stats_reply, |
| 763 | aggregate_stats_request, |
| 764 | bad_action_error_msg, |
| 765 | bad_request_error_msg, |
| 766 | barrier_reply, |
| 767 | barrier_request, |
| 768 | desc_stats_reply, |
| 769 | desc_stats_request, |
| 770 | echo_reply, |
| 771 | echo_request, |
| 772 | features_reply, |
| 773 | features_request, |
| 774 | flow_mod, |
| 775 | flow_mod_failed_error_msg, |
| 776 | flow_removed, |
| 777 | flow_stats_reply, |
| 778 | flow_stats_request, |
| 779 | get_config_reply, |
| 780 | get_config_request, |
| 781 | hello, |
| 782 | hello_failed_error_msg, |
| 783 | packet_in, |
| 784 | packet_out, |
| 785 | port_mod, |
| 786 | port_mod_failed_error_msg, |
| 787 | port_stats_reply, |
| 788 | port_stats_request, |
| 789 | port_status, |
| 790 | queue_get_config_reply, |
| 791 | queue_get_config_request, |
| 792 | queue_op_failed_error_msg, |
| 793 | queue_stats_reply, |
| 794 | queue_stats_request, |
| 795 | set_config, |
| 796 | table_stats_reply, |
| 797 | table_stats_request, |
| 798 | vendor |
| 799 | ) |
| 800 | """ |
Dan Talayco | f75360a | 2010-02-05 22:22:54 -0800 | [diff] [blame] | 801 | |
| 802 | # |
| 803 | # OFP match variants |
| 804 | # ICMP 0x801 (?) ==> icmp_type/code replace tp_src/dst |
| 805 | # |
| 806 | |
| 807 | |