2020-04-08 14:22:31 +02:00
|
|
|
module main
|
|
|
|
|
2020-04-26 13:49:31 +02:00
|
|
|
import net.websocket
|
|
|
|
import eventbus
|
|
|
|
import time
|
|
|
|
import readline
|
|
|
|
import term
|
|
|
|
import benchmark
|
2020-04-08 14:22:31 +02:00
|
|
|
|
|
|
|
const (
|
|
|
|
eb = eventbus.new()
|
|
|
|
)
|
2020-04-08 21:21:58 +02:00
|
|
|
|
2020-04-08 14:22:31 +02:00
|
|
|
#flag -I $PWD
|
|
|
|
#include "utf8.h"
|
|
|
|
fn C.utf8_validate_str() bool
|
2020-04-08 21:21:58 +02:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// println(sss)
|
|
|
|
/*
|
|
|
|
for sss in 0..10 {
|
2020-04-08 14:22:31 +02:00
|
|
|
mut bm := benchmark.new_benchmark()
|
|
|
|
for i in 0..10000 {
|
|
|
|
for a, t in tests {
|
|
|
|
ss := ws.utf8_validate(t.str, t.len)
|
|
|
|
if !ss {
|
|
|
|
panic("failed")
|
|
|
|
}
|
|
|
|
//println("${a}:${ss}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bm.stop()
|
2020-04-08 21:21:58 +02:00
|
|
|
println( bm.total_message('remarks about the benchmark') )
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
mut ws := websocket.new('ws://localhost:9001/getCaseCount')
|
|
|
|
// defer { }
|
|
|
|
ws.subscriber.subscribe('on_open', on_open)
|
|
|
|
ws.subscriber.subscribe('on_message', on_message)
|
|
|
|
ws.subscriber.subscribe('on_error', on_error)
|
|
|
|
ws.subscriber.subscribe('on_close', on_close)
|
|
|
|
// go
|
2020-04-08 19:44:30 +02:00
|
|
|
ws.connect()
|
|
|
|
ws.read()
|
2020-04-08 21:21:58 +02:00
|
|
|
// time.usleep(2000000)
|
|
|
|
// go ws.listen()
|
|
|
|
// term.erase_clear()
|
|
|
|
/*
|
|
|
|
text := read_line("[client]:")
|
|
|
|
if text == "close" {
|
2020-04-08 14:22:31 +02:00
|
|
|
ws.close(1005, "done")
|
|
|
|
time.usleep(1000000)
|
|
|
|
exit(0)
|
|
|
|
}
|
2020-04-08 21:21:58 +02:00
|
|
|
ws.write(text, .text_frame)
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
time.usleep(1000000)
|
|
|
|
ws.read()
|
|
|
|
*/
|
|
|
|
// ws.close(1005, "done") //
|
|
|
|
// ws.close(1005, "done")
|
|
|
|
// read_line("wait")
|
2020-04-08 14:22:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn read_line(text string) string {
|
|
|
|
mut r := readline.Readline{}
|
2020-04-08 21:21:58 +02:00
|
|
|
mut output := r.read_line(text + ' ') or {
|
2020-04-08 14:22:31 +02:00
|
|
|
panic(err)
|
|
|
|
}
|
2020-04-08 21:21:58 +02:00
|
|
|
output = output.replace('\n', '')
|
2020-04-08 14:22:31 +02:00
|
|
|
if output.len <= 0 {
|
2020-04-08 21:21:58 +02:00
|
|
|
return ''
|
2020-04-08 14:22:31 +02:00
|
|
|
}
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:21:58 +02:00
|
|
|
fn on_open(params eventbus.Params) {
|
|
|
|
println('websocket opened.')
|
2020-04-08 14:22:31 +02:00
|
|
|
}
|
|
|
|
|
2020-04-08 21:21:58 +02:00
|
|
|
fn on_message(params eventbus.Params) {
|
|
|
|
println('Message recieved. Sending it back.')
|
|
|
|
typ := params.get_string('type')
|
|
|
|
len := params.get_int('len')
|
|
|
|
mut ws := params.get_caller(websocket.Client{})
|
|
|
|
if typ == 'string' {
|
|
|
|
message := params.get_string('payload')
|
|
|
|
if ws.uri.ends_with('getCaseCount') {
|
2020-04-08 14:22:31 +02:00
|
|
|
num := message.int()
|
2020-04-08 21:21:58 +02:00
|
|
|
ws.close(1005, 'done')
|
2020-04-08 14:22:31 +02:00
|
|
|
start_tests(mut ws, num)
|
|
|
|
return
|
|
|
|
}
|
2020-04-08 21:21:58 +02:00
|
|
|
// println("Message: " + message)
|
2020-04-08 14:22:31 +02:00
|
|
|
ws.write(message.str, len, .text_frame)
|
|
|
|
} else {
|
2020-04-08 21:21:58 +02:00
|
|
|
println('Binary message.')
|
|
|
|
message := params.get_raw('payload')
|
2020-04-08 14:22:31 +02:00
|
|
|
ws.write(message, len, .binary_frame)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:21:58 +02:00
|
|
|
fn start_tests(ws mut websocket.Client, num int) {
|
2020-04-08 14:22:31 +02:00
|
|
|
for i := 1; i < num; i++ {
|
2020-04-08 21:21:58 +02:00
|
|
|
println('Running test: ' + i.str())
|
|
|
|
ws.uri = 'ws://localhost:9001/runCase?case=${i.str()}&agent=vws/1.0a'
|
2020-04-08 19:44:30 +02:00
|
|
|
if ws.connect() >= 0 {
|
|
|
|
ws.listen()
|
2020-04-08 14:22:31 +02:00
|
|
|
}
|
|
|
|
}
|
2020-04-08 21:21:58 +02:00
|
|
|
println('Done!')
|
|
|
|
ws.uri = 'ws://localhost:9001/updateReports?agent=vws/1.0a'
|
2020-04-08 19:44:30 +02:00
|
|
|
if ws.connect() >= 0 {
|
|
|
|
ws.read()
|
2020-04-08 21:21:58 +02:00
|
|
|
ws.close(1000, 'disconnecting...')
|
2020-04-08 14:22:31 +02:00
|
|
|
}
|
|
|
|
exit(0)
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:21:58 +02:00
|
|
|
fn on_close(params eventbus.Params) {
|
|
|
|
println('websocket closed.')
|
2020-04-08 14:22:31 +02:00
|
|
|
}
|
|
|
|
|
2020-04-08 21:21:58 +02:00
|
|
|
fn on_error(params eventbus.Params) {
|
|
|
|
println('we have an error.')
|
|
|
|
}
|