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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
use indexmap::IndexMap;
use query_core::{
    schema::{QuerySchemaRef, QueryTag},
    BatchDocument, BatchDocumentTransaction, Operation, QueryDocument,
};
use serde::{Deserialize, Serialize};
use tracing::info_span;

use super::protocol_adapter::JsonProtocolAdapter;

#[derive(Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase", untagged)]
pub enum JsonBody {
    Single(JsonSingleQuery),
    Batch(JsonBatchQuery),
}

impl JsonBody {
    /// Convert a `JsonBody` into a `QueryDocument`.
    pub fn into_doc(self, query_schema: &QuerySchemaRef) -> crate::Result<QueryDocument> {
        let _span = info_span!("prisma:engine:into_doc").entered();
        match self {
            JsonBody::Single(query) => {
                let operation = JsonProtocolAdapter::new(query_schema).convert_single(query)?;

                Ok(QueryDocument::Single(operation))
            }
            JsonBody::Batch(query) => {
                let mut protocol_adapter = JsonProtocolAdapter::new(query_schema);
                let operations: crate::Result<Vec<Operation>> = query
                    .batch
                    .into_iter()
                    .map(|single_query| protocol_adapter.convert_single(single_query))
                    .collect();

                let transaction = if let Some(opts) = query.transaction {
                    Some(BatchDocumentTransaction::new(opts.isolation_level))
                } else {
                    None
                };

                Ok(QueryDocument::Multi(BatchDocument::new(operations?, transaction)))
            }
        }
    }
}

#[derive(Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct JsonSingleQuery {
    pub model_name: Option<String>,
    pub action: Action,
    pub query: FieldQuery,
}

impl JsonSingleQuery {
    pub fn action(&self) -> &Action {
        &self.action
    }

    pub fn model(&self) -> Option<&String> {
        self.model_name.as_ref()
    }
}

#[derive(Debug, Deserialize, Serialize)]
pub struct JsonBatchQuery {
    pub batch: Vec<JsonSingleQuery>,
    pub transaction: Option<BatchTransactionOption>,
}

#[derive(Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct BatchTransactionOption {
    pub isolation_level: Option<String>,
}

#[derive(Debug, Deserialize, Serialize)]
pub struct FieldQuery {
    pub arguments: Option<IndexMap<String, serde_json::Value>>,
    pub selection: SelectionSet,
}

#[derive(Debug)]
pub struct Action(QueryTag);

impl Action {
    pub fn new(query_tag: QueryTag) -> Self {
        Self(query_tag)
    }

    pub fn value(&self) -> QueryTag {
        self.0
    }
}

impl std::fmt::Display for Action {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

const ALL_SCALARS: &str = "$scalars";
const ALL_COMPOSITES: &str = "$composites";

#[derive(Debug, Deserialize)]
pub struct SelectionSet(IndexMap<String, SelectionSetValue>);

impl SelectionSet {
    pub fn new(selection_set: IndexMap<String, SelectionSetValue>) -> Self {
        Self(selection_set)
    }

    pub fn is_all_scalars(key: &str) -> bool {
        key == ALL_SCALARS
    }

    pub fn all_scalars(&self) -> bool {
        self.0.contains_key(ALL_SCALARS)
    }

    pub fn all_composites(&self) -> bool {
        self.0.contains_key(ALL_COMPOSITES)
    }

    pub fn is_all_composites(key: &str) -> bool {
        key == ALL_COMPOSITES
    }

    pub(crate) fn into_selection(self) -> impl Iterator<Item = (String, SelectionSetValue)> {
        self.0.into_iter().filter(|(_, v)| v.is_selected())
    }
}

#[derive(Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase", untagged)]
pub enum SelectionSetValue {
    Shorthand(bool),
    Nested(FieldQuery),
}

impl SelectionSetValue {
    pub fn is_selected(&self) -> bool {
        match self {
            SelectionSetValue::Shorthand(b) => *b,
            SelectionSetValue::Nested(_) => true,
        }
    }
}

impl<'de> Deserialize<'de> for Action {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let action = String::deserialize(deserializer)?;
        let query_tag = QueryTag::from(action.as_str());

        Ok(Action(query_tag))
    }
}

impl Serialize for Action {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        self.0.to_string().serialize(serializer)
    }
}

impl Serialize for SelectionSet {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        self.0.serialize(serializer)
    }
}