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
mod expression;
mod into_bson;
mod into_expression;
mod into_operation;
mod operation;

use super::*;
use crate::*;

use connector_interface::{FieldPath, WriteOperation};
use into_expression::IntoUpdateExpressions;
use into_operation::IntoUpdateOperation;
use mongodb::bson::Document;

pub(crate) trait IntoUpdateDocumentExtension {
    fn into_update_docs(self, field: &Field, path: FieldPath) -> crate::Result<Vec<Document>>;
}

impl IntoUpdateDocumentExtension for WriteOperation {
    fn into_update_docs(self, field: &Field, path: FieldPath) -> crate::Result<Vec<Document>> {
        let operations = self.into_update_operations(field, path)?;
        let mut expressions = vec![];

        for op in operations {
            expressions.extend(op.into_update_expressions()?);
        }

        let mut documents = vec![];

        for expr in expressions {
            documents.push(expr.into_bson()?.into_document()?)
        }

        Ok(documents)
    }
}