|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- from flask import Flask, request, render_template, jsonify
- from werkzeug.contrib.cache import SimpleCache
- import json
- import abp
-
- #TODO: only send deltas
-
- #graphstate = abp.GraphState()
- cache=SimpleCache()
- cache.set("state", abp.GraphState())
- app = Flask(__name__)
-
- @app.route("/")
- def index():
- return render_template("index.html")
-
- @app.route("/state", methods = ["GET", "POST"])
- def state():
- if request.method == "GET":
- return jsonify(cache.get("state").to_json())
- elif request.method == "POST":
- graphstate = abp.GraphState()
- graphstate.from_json(json.loads(request.data))
- cache.set("state", graphstate)
- return jsonify({"update": "ok"})
-
- @app.route("/add_node/<int:node>")
- def add_node(node):
- """ Add a node to the graph """
- graphstate = cache.get("state")
- graphstate.add_node(node)
- cache.set("state", graphstate)
- return jsonify({"add_node": "okay"})
-
- @app.route("/act_local_rotation/<int:node>/<int:operation>")
- def act_local_rotation(node):
- """ Add a node to the graph """
- # TODO: try to lookup the operation first
- graphstate.act_local_rotation(node, operation)
- return jsonify({"act_local_rotation": "okay"})
-
- @app.route("/act_cz/<int:a>/<int:b>")
- def act_cz(a, b):
- """ Add a node to the graph """
- graphstate.act_cz(a, b)
- return jsonify({"act_cz": "okay"})
-
- @app.route("/clear")
- def clear():
- """ Clear the current state """
- graphstate = abp.GraphState()
- cache.set("state", graphstate)
- return jsonify({"clear": "okay"})
-
-
- if __name__ == "__main__":
- app.debug = False
- app.run(host="0.0.0.0")
-
-
|