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
//! define complex queries
//!
//! ```rust
//! use vinyl_core::query::field;
//! use vinyl_core::proto::example;
//! use vinyl_core::proto::example::Flower;
//!
//!let query = field("price").less_than(50) &
//!    field("flower").matches(
//!        field("type").equals("ROSE")
//!    );
//!```

use crate::proto::transport;
use crate::to_value::ToValue;
use protobuf::RepeatedField;

use std::ops;

/// Query is the basic component of all queries. Every query expression outputs a Query.
/// Query is not used directly except for in the case of `Query::not`
#[derive(Debug, PartialEq)]
pub struct Query {
    /// the underlyingproto QueryComponent
    pub qc: transport::QueryComponent,
}
impl Query {
    fn add_field_value<T: ToValue>(mut self, value: T) -> Self {
        let mut field = self.qc.take_field();
        field.set_value(value.to_value());
        self.qc.set_field(field);
        self
    }
    fn merge(self, other: Self, merge_type: transport::QueryComponent_ComponentType) -> Self {
        let mut qc = transport::QueryComponent::new();
        qc.component_type = merge_type;
        qc.children = RepeatedField::new();
        qc.children.push(self.qc);
        qc.children.push(other.qc);
        Self { qc }
    }
    /// Check that a set of components all evaluate to true for a given record.
    /// ```rust
    /// use vinyl_core::query::field;
    ///
    /// field("price")
    ///     .equals(4.3)
    ///     .and(field("type").equals("rose"));
    /// ```
    pub fn and(self, other: Self) -> Self {
        self.merge(other, transport::QueryComponent_ComponentType::AND)
    }
    /// Check that any of a set of components evaluate to true for a given record
    pub fn or(self, other: Self) -> Self {
        self.merge(other, transport::QueryComponent_ComponentType::OR)
    }
    /// Negate a component test
    /// ```rust
    /// use vinyl_core::query::{field, Query};
    ///
    /// let query = Query::not(
    ///     field("price").equals(4.3),
    /// );
    ///```
    pub fn not(other: Self) -> Self {
        let mut qc = transport::QueryComponent::new();
        qc.component_type = transport::QueryComponent_ComponentType::NOT;
        qc.set_child(other.qc);
        Self { qc }
    }
}

impl ops::BitAnd<Query> for Query {
    type Output = Self;

    fn bitand(self, other: Self) -> Self {
        self.and(other)
    }
}

/// Context for asserting about a field value
pub struct Field {
    name: String,
}

impl Field {
    fn field_to_query(&self, component_type: transport::Field_ComponentType) -> Query {
        let mut qc = transport::QueryComponent::new();
        qc.component_type = transport::QueryComponent_ComponentType::FIELD;
        let mut field = transport::Field::new();
        field.set_name(self.name.clone());
        field.set_component_type(component_type);
        qc.set_field(field);
        Query { qc }
    }
    /// Checks if the field has a value less than the given comparand
    pub fn less_than<T: ToValue>(&self, value: T) -> Query {
        self.field_to_query(transport::Field_ComponentType::LESS_THAN)
            .add_field_value(value)
    }
    /// Check if the field has a value greater than the given comparand
    pub fn greater_than<T: ToValue>(&self, value: T) -> Query {
        self.field_to_query(transport::Field_ComponentType::GREATER_THAN)
            .add_field_value(value)
    }
    /// Check if the field is equal to the given value
    pub fn equals<T: ToValue>(&self, value: T) -> Query {
        self.field_to_query(transport::Field_ComponentType::EQUALS)
            .add_field_value(value)
    }
    /// Matches allows comparison of nested field values
    pub fn matches(&self, query: Query) -> Query {
        let mut q = self.field_to_query(transport::Field_ComponentType::MATCHES);
        let field = q.qc.mut_field();
        field.set_matches(query.qc);
        q
    }
}

/// start the construction of a field value
pub fn field(name: &str) -> Field {
    Field {
        name: name.to_string(),
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use transport::{Field_ComponentType, QueryComponent_ComponentType};

    #[test]
    fn complex() {
        let query = Query::not(
            field("price")
                .equals(4.3)
                .and(field("price").equals(70).or(field("price").equals(20))),
        );
        let _ = query;
    }

    #[test]
    fn basic_and_and_matches() {
        let fifty: usize = 50;
        let query =
            field("price").less_than(fifty) & field("flower").matches(field("type").equals("ROSE"));
        let qc = query.qc;
        assert_eq!(QueryComponent_ComponentType::AND, qc.component_type);
        assert_eq!("price", qc.get_children()[0].get_field().name);
        assert_eq!(
            Field_ComponentType::LESS_THAN,
            qc.get_children()[0].get_field().component_type,
        );
        assert_eq!(50, qc.get_children()[0].get_field().get_value().int64);
        assert_eq!("flower", qc.get_children()[1].get_field().get_name());
        assert_eq!(
            Field_ComponentType::MATCHES,
            qc.get_children()[1].get_field().component_type
        );
        assert_eq!(
            "type",
            qc.get_children()[1]
                .get_field()
                .get_matches()
                .get_field()
                .name
        );
        assert_eq!(
            Field_ComponentType::EQUALS,
            qc.get_children()[1]
                .get_field()
                .get_matches()
                .get_field()
                .component_type
        );
        assert_eq!(
            "ROSE",
            qc.get_children()[1]
                .get_field()
                .get_matches()
                .get_field()
                .get_value()
                .string
        );
    }

    #[test]
    fn basic_field() {
        let fifty: usize = 50;
        let query = field("price").less_than(fifty);
        assert_eq!(query.qc.get_field().name, "price");
        assert_eq!(query.qc.get_field().get_value().int64, 50);
    }
}