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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
use super::{into_expression::IntoUpdateExpression, operation};

use connector_interface::FieldPath;
use indexmap::IndexMap;
use mongodb::bson::{doc, Bson, Document};

/// `UpdateExpression` is an intermediary AST that's used to represent MongoDB expressions.
/// It is meant to be transformed into `BSON`.
/// Only add new variants _if_ the expression needs to retain semantic information when transformed into `BSON` or another `UpdateExpression`.
/// Otherwise, use `Generic`.
#[derive(Debug, Clone)]
pub(crate) enum UpdateExpression {
    /// A `$set` expression
    Set(Set),
    /// A `$cond` expression
    IfThenElse(IfThenElse),
    /// A `$mergeObjects` expression
    MergeObjects(MergeObjects),
    /// A document `{ ... }` expression
    /// (used to retain semantic information on the values (as opposed to a generic Bson::Document))
    MergeDocument(MergeDocument),
    /// Anything else
    Generic(Bson),
}

impl UpdateExpression {
    pub fn set(field_path: FieldPath, expression: impl Into<UpdateExpression>) -> Self {
        Self::Set(Set {
            field_path,
            expression: Box::new(expression.into()),
        })
    }

    pub fn if_then_else(
        cond: impl Into<UpdateExpression>,
        then: impl Into<UpdateExpression>,
        els: impl Into<UpdateExpression>,
    ) -> Self {
        Self::IfThenElse(IfThenElse {
            cond: Box::new(cond.into()),
            then: Box::new(then.into()),
            els: Box::new(els.into()),
        })
    }

    pub(crate) fn try_into_set(self) -> Option<Set> {
        if let Self::Set(v) = self {
            Some(v)
        } else {
            None
        }
    }

    pub(crate) fn as_merge_objects_mut(&mut self) -> Option<&mut MergeObjects> {
        if let Self::MergeObjects(ref mut v) = self {
            Some(v)
        } else {
            None
        }
    }
}

#[derive(Debug, Clone)]
pub(crate) struct Set {
    /// The field path to which this $set expression should be applied
    pub field_path: FieldPath,
    /// The inner expression that should be set
    pub expression: Box<UpdateExpression>,
}

impl Set {
    /// Get a reference to the set's field path.
    pub(crate) fn field_path(&self) -> &FieldPath {
        &self.field_path
    }

    /// Transforms a `Set` expression into a conditional one. eg:
    /// ```text
    /// from: { $set: { {set.field_path}: {set.expression} } }
    /// to:   { $set: { $cond: { if: {cond}, then: {set.expression}, else: "${set.field_path}"  } } }
    /// ```
    pub(crate) fn into_conditional_set(self, cond: impl Into<UpdateExpression>) -> Self {
        let dollar_path = self.field_path().dollar_path(true);

        Self {
            field_path: self.field_path,
            expression: Box::new(UpdateExpression::IfThenElse(IfThenElse {
                cond: Box::new(cond.into()),
                then: self.expression,
                els: Box::new(UpdateExpression::Generic(Bson::String(dollar_path))),
            })),
        }
    }
}

#[derive(Debug, Clone)]
pub(crate) struct IfThenElse {
    /// The condition of the if expression
    pub cond: Box<UpdateExpression>,
    /// The then branch
    pub then: Box<UpdateExpression>,
    /// The else branch
    pub els: Box<UpdateExpression>,
}

#[derive(Debug, Clone, Default)]
pub(crate) struct MergeDocument {
    pub inner: IndexMap<String, UpdateExpression>,
}

impl IntoIterator for MergeDocument {
    type Item = (String, UpdateExpression);
    type IntoIter = indexmap::map::IntoIter<String, UpdateExpression>;

    fn into_iter(self) -> Self::IntoIter {
        self.inner.into_iter()
    }
}

impl MergeDocument {
    /// Get a mutable reference to the merge document's inner.
    pub(crate) fn inner_mut(&mut self) -> &mut IndexMap<String, UpdateExpression> {
        &mut self.inner
    }
}

#[derive(Debug, Clone)]
pub(crate) struct MergeObjects {
    /// The field path to which this $mergeObjects expression should be applied
    /// { $mergeObjects: [<field_path>, ...] }
    pub(crate) field_path: FieldPath,
    /// Document against which it should be merged
    /// { $mergeObjects: [..., <document>] }
    pub(crate) document: MergeDocument,
    /// Hack: keys of the document located in `field_path` to unset
    pub(crate) keys_to_unset: Vec<String>,
}

impl MergeObjects {
    pub(crate) fn new(field_path: FieldPath) -> Self {
        Self {
            field_path,
            document: MergeDocument::default(),
            keys_to_unset: vec![],
        }
    }

    /// Get a reference to the merge objects's field path.
    pub(crate) fn field_path(&self) -> &FieldPath {
        &self.field_path
    }

    /// Get a mutable reference to the merge objects's doc.
    pub(crate) fn doc_mut(&mut self) -> &mut IndexMap<String, UpdateExpression> {
        self.document.inner_mut()
    }

    pub(crate) fn insert_set(&mut self, set: Set) {
        let set_expr = set.expression.clone();
        let (target, inner_merge) = self.fill_nested_merge_objects(set.field_path());

        inner_merge.doc_mut().insert(target.to_owned(), *set_expr);
    }

    pub(crate) fn insert_upsert(&mut self, upsert: operation::Upsert) -> crate::Result<()> {
        let field_path = upsert.field_path().clone();
        let mut merge_doc = MergeObjects::new(field_path.clone());
        let (target, inner_merge) = self.fill_nested_merge_objects(&field_path);

        for op in upsert.updates {
            match op {
                operation::UpdateOperation::Generic(generic) => {
                    let mut set = generic.into_update_expression()?.try_into_set().unwrap();
                    set.field_path.keep_last();

                    merge_doc.insert_set(set);
                }
                operation::UpdateOperation::UpdateMany(update_many) => {
                    let mut set = update_many.into_update_expression()?.try_into_set().unwrap();
                    set.field_path.keep_last();

                    merge_doc.insert_set(set);
                }
                operation::UpdateOperation::Upsert(mut upsert) => {
                    upsert.field_path.keep_last();

                    merge_doc.insert_upsert(upsert)?;
                }
                operation::UpdateOperation::Unset(mut unset) => {
                    unset.field_path.keep_last();

                    merge_doc.insert_unset(unset);
                }
            }
        }

        let new_if = UpdateExpression::if_then_else(
            doc! { "$eq": [operation::Upsert::render_should_set_condition(&upsert.set.field_path().clone()), true] },
            upsert.set.expression,
            merge_doc,
        );

        inner_merge.doc_mut().insert(target.to_owned(), new_if);

        Ok(())
    }

    pub(crate) fn insert_unset(&mut self, unset: operation::Unset) {
        let (target, inner_merge) = self.fill_nested_merge_objects(unset.field_path());

        inner_merge.keys_to_unset.push(target.clone());
    }

    /// Given a mut ref to a `MergeObjects` and a `FieldPath`, fills nested empty `MergeObjects` unless one is already present.
    /// Returns a mut ref to the most nested `MergeObjects` along side the key to insert a value inside its `MergeDocument`.
    ///
    /// ```text
    /// ["a", "b", "c"] ->
    /// (
    ///   "c", <- key to insert into the most nested `MergeObjects`'s MergeDocument
    ///   MergeObjects(["a"],
    ///     doc! {
    ///       "a": MergeObjects(["a", "b"],
    ///         doc! { "b": MergeObjects(["a","b","c"], <- Mutable reference to this MergeObjects
    ///           doc! {}
    ///         )
    ///     })
    ///   })
    /// )
    /// ```
    fn fill_nested_merge_objects<'a, 'b>(
        &'a mut self,
        field_path: &'b FieldPath,
    ) -> (&'b String, &'a mut MergeObjects) {
        let (target, segments) = field_path.path.split_last().unwrap();

        let inner_merge = segments.iter().enumerate().fold(self, |acc, (depth, segment)| {
            let mut merge_path = field_path.clone();
            merge_path.take(depth + 1);

            let inner_merge = acc
                .doc_mut()
                .entry(segment.to_string())
                .or_insert(MergeObjects::new(merge_path).into())
                .as_merge_objects_mut()
                .unwrap();

            inner_merge
        });

        (target, inner_merge)
    }
}

impl From<Bson> for UpdateExpression {
    fn from(bson: Bson) -> Self {
        Self::Generic(bson)
    }
}

impl From<Document> for UpdateExpression {
    fn from(doc: Document) -> Self {
        Self::Generic(doc.into())
    }
}

impl From<Set> for UpdateExpression {
    fn from(set: Set) -> Self {
        Self::Set(set)
    }
}

impl From<IfThenElse> for UpdateExpression {
    fn from(if_then_else: IfThenElse) -> Self {
        Self::IfThenElse(if_then_else)
    }
}

impl From<MergeDocument> for UpdateExpression {
    fn from(merge_doc: MergeDocument) -> Self {
        Self::MergeDocument(merge_doc)
    }
}
impl From<MergeObjects> for UpdateExpression {
    fn from(merge_objects: MergeObjects) -> Self {
        Self::MergeObjects(merge_objects)
    }
}