Skip to content
websocket-server.py 3.23 KiB
Newer Older
vertighel's avatar
vertighel committed
#!/usr/bin/env python

import time
from astropy.time import Time
from flask import Flask, render_template, Response
from flask_cors import CORS
from flask_socketio import SocketIO
import numpy as np
import json
import base64

CORS()

import requests
vertighel's avatar
vertighel committed
socketio = SocketIO(app, async_mode='threading') # async_mode=None
vertighel's avatar
vertighel committed
def create_circle_mask(width, height, radius):
    x = np.arange(width)
    y = np.arange(height)
    xx, yy = np.meshgrid(x, y, indexing='xy')
    circle = (xx - width/2)**2 + (yy - height/2)**2 <= radius**2
    return circle.astype(int)

@app.route('/')
def index():
    return render_template('index.html')

vertighel's avatar
vertighel committed
@app.route('/dm')
def dm():
    return render_template('dm.html')

vertighel's avatar
vertighel committed
@app.route('/tri')
def tri():
    return render_template('tri.html')

@app.route('/smooth')
def smooth():
    return render_template('smooth.html')

@app.route('/smooth2')
def smooth2():
    return render_template('smooth2.html')

@app.route('/smooth3')
def smooth3():
    return render_template('smooth3.html')

@socketio.on('connect')
def handle_connect():
    print('Client connected')

@socketio.on('disconnect')
def handle_disconnect():
    print('Client disconnected')
        
        
def send_timestamp():
    while True:        
        now = Time.now()
        socketio.emit('timestamp', now.unix)                
        time.sleep(1)
        
vertighel's avatar
vertighel committed
def send_mask():
    while True:        
        now = Time.now()
        dtype = "uint16"

        width = 500
        height = 400
        radius = 100        
        matrix = create_circle_mask(width, height, radius)
        binary_data = matrix.tobytes()
        data_bundle = {
            "shape": matrix.shape,
            "dtype": dtype,
            "data": binary_data,
            "timestamp": now.unix,
        }
        socketio.emit('mask', data_bundle)
        print((Time.now()-now).sec, "emitted")
        print("-------")
        print(f"mask {len(binary_data)}")
vertighel's avatar
vertighel committed
        time.sleep(1)        
def send_dm():
    while True:        
        now = Time.now()
                
        #es = requests.get("http://sharknirws.shark-nir.lbto.org:5001/api/rtc/plots/")
        es = {"dm":"ciccio"}
        
        if "dm" in es.json():
            # shape = np.array(es.json()["dm"]["shape"])
            # flat = np.array(es.json()["dm"]["flat"])
            # matrix = shape-flat
            # print(matrix)
            # print((Time.now()-now).sec, "fetched")        
        
            dtype = "float32"
            shape = (97)
            matrix = np.random.uniform(-1,1, shape)
            binary_data = matrix.astype(dtype).tobytes()#.tobytes()
            data_bundle = {
                "shape": matrix.shape,
                "dtype": dtype,
                "data": binary_data,
                "timestamp": now.unix,
            }
            
            print(matrix)        
            socketio.emit('dm_bundle', data_bundle)
            
        print((Time.now()-now).sec, "emitted")        
        time.sleep(2)

if __name__ == '__main__':
    socketio.start_background_task(send_timestamp)
    #    socketio.start_background_task(send_mask)
    socketio.start_background_task(send_dm)
vertighel's avatar
vertighel committed
    socketio.run(app, host='0.0.0.0', port=5000, debug=False)
vertighel's avatar
vertighel committed
    #socketio.run(app, debug=False)