1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// https://github.com/libsql/sqld/blob/main/docs/HTTP_V2_SPEC.md

use super::*;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Debug)]
pub struct ClientMsg {
    pub baton: Option<String>,
    pub requests: Vec<StreamRequest>,
}

#[derive(Deserialize, Debug)]
pub struct ServerMsg {
    pub baton: Option<String>,
    pub base_url: Option<String>,
    pub results: Vec<Response>,
}

#[derive(Serialize, Debug)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum StreamRequest {
    Close,
    Execute(StreamExecuteReq),
    Batch(StreamBatchReq),
    // TODO: implement
    //    Sequence(Sequence),
    //    Describe(Describe),
    //    StoreSql(StoreSql),
    //    CloseSql(CloseSql),
}

#[derive(Serialize, Debug)]
pub struct StreamExecuteReq {
    pub stmt: Stmt,
}

#[derive(Serialize, Debug)]
pub struct StreamBatchReq {
    pub batch: Batch,
}

#[derive(Deserialize, Debug)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum Response {
    Ok(StreamResponseOk),
    Error(StreamResponseError),
}

#[derive(Deserialize, Debug)]
pub struct StreamResponseOk {
    pub response: StreamResponse,
}

#[derive(Deserialize, Debug)]
pub struct StreamResponseError {
    pub error: Error,
}

#[derive(Deserialize, Debug)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum StreamResponse {
    Close,
    Execute(StreamExecuteResult),
    Batch(StreamBatchResult),
    // TODO: implement
    //    Sequence(SequenceResult),
    //    Describe(DescribeResult),
    //    StoreSql(StoreSqlResult),
    //    CloseSql(CloseSqlResult),
}

#[derive(Deserialize, Debug)]
pub struct StreamExecuteResult {
    pub result: StmtResult,
}

#[derive(Deserialize, Debug)]
pub struct StreamBatchResult {
    pub result: BatchResult,
}