| # -*- Mode: python; py-indent-offset: 4; tab-width: 8; indent-tabs-mode: t; -*- |
| from flask import Flask, json, Response, render_template, make_response, request |
| # TODO: remove this! We don't use JSON argument here! |
| # curl http://127.0.0.1:8080/wm/flow/clear/{"value":"0xf"}/json' |
| pp = pprint.PrettyPrinter(indent=4) |
| # @app.route("/wm/flow/clear/<flow-id>/json") |
| def clear_flow_path(flow_id): |
| command = "curl -s \"http://%s:%s/wm/flow/clear/%s/json\"" % (ControllerIP, ControllerPort, flow_id) |
| debug("clear_flow_path %s" % command) |
| result = os.popen(command).read() |
| debug("result %s" % result) |
| # parsedResult = json.loads(result) |
| # debug("parsed %s" % parsedResult) |
| if __name__ == "__main__": |
| usage_msg = "Clear flow state from the ONOS Network Map\n" |
| usage_msg = usage_msg + "Usage: %s <flow_id>\n" % (sys.argv[0]) |
| if len(sys.argv) > 1 and (sys.argv[1] == "-h" or sys.argv[1] == "--help"): |
| flow_id_arg = int(sys.argv[1], 0) |
| clear_flow_path(flow_id_arg); |