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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
//! Macros for collection values: strings, lists, maps and tables.
//!
//! Tests for this module are written in Dust and can be found at tests/collections.ds.

use crate::{Error, Result, Table, Tool, ToolInfo, Value, ValueType, VariableMap};

pub struct Sort;

impl Tool for Sort {
    fn info(&self) -> ToolInfo<'static> {
        ToolInfo {
            identifier: "sort",
            description: "Apply default ordering to a list or table.",
            group: "collections",
            inputs: vec![ValueType::List, ValueType::Table],
        }
    }

    fn run(&self, argument: &Value) -> Result<Value> {
        if let Ok(mut list) = argument.as_list().cloned() {
            list.sort();

            Ok(Value::List(list))
        } else if let Ok(mut table) = argument.as_table().cloned() {
            table.sort();

            Ok(Value::Table(table))
        } else {
            Err(crate::Error::ExpectedList {
                actual: argument.clone(),
            })
        }
    }
}

pub struct Transform;

impl Tool for Transform {
    fn info(&self) -> ToolInfo<'static> {
        ToolInfo {
            identifier: "transform",
            description: "Alter a list by calling a function on each value.",
            group: "collections",
            inputs: vec![ValueType::ListExact(vec![
                ValueType::List,
                ValueType::Function,
            ])],
        }
    }

    fn run(&self, argument: &Value) -> Result<Value> {
        let argument = self.check_type(argument)?.as_list()?;
        let list = argument[0].as_list()?;
        let function = argument[1].as_function()?;
        let mut mapped_list = Vec::with_capacity(list.len());

        for value in list {
            let mut context = VariableMap::new();

            context.set_value("input", value.clone())?;

            let mapped_value = function.run_with_context(&mut context)?;

            mapped_list.push(mapped_value);
        }

        Ok(Value::List(mapped_list))
    }
}

pub struct String;

impl Tool for String {
    fn info(&self) -> ToolInfo<'static> {
        ToolInfo {
            identifier: "string",
            description: "Stringify a value.",
            group: "collections",
            inputs: vec![
                ValueType::String,
                ValueType::Function,
                ValueType::Float,
                ValueType::Integer,
                ValueType::Boolean,
            ],
        }
    }

    fn run(&self, argument: &Value) -> Result<Value> {
        let argument = self.check_type(argument)?;

        let string = match argument {
            Value::String(string) => string.clone(),
            Value::Function(function) => function.to_string(),
            Value::Float(float) => float.to_string(),
            Value::Integer(integer) => integer.to_string(),
            Value::Boolean(boolean) => boolean.to_string(),
            _ => return self.fail(argument),
        };

        Ok(Value::String(string))
    }
}

pub struct Replace;

impl Tool for Replace {
    fn info(&self) -> ToolInfo<'static> {
        ToolInfo {
            identifier: "replace",
            description: "Replace all occurences of a substring in a string.",
            group: "collections",
            inputs: vec![ValueType::ListExact(vec![
                ValueType::String,
                ValueType::String,
                ValueType::String,
            ])],
        }
    }

    fn run(&self, argument: &Value) -> Result<Value> {
        let argument = self.check_type(argument)?.as_list()?;
        let target = argument[0].as_string()?;
        let to_remove = argument[1].as_string()?;
        let replacement = argument[2].as_string()?;
        let result = target.replace(to_remove, replacement);

        Ok(Value::String(result))
    }
}

pub struct Count;

impl Tool for Count {
    fn info(&self) -> ToolInfo<'static> {
        ToolInfo {
            identifier: "count",
            description: "Return the number of items in a collection.",
            group: "collections",
            inputs: vec![
                ValueType::String,
                ValueType::List,
                ValueType::Map,
                ValueType::Table,
            ],
        }
    }

    fn run(&self, argument: &Value) -> Result<Value> {
        let argument = self.check_type(argument)?;

        let len = match argument {
            Value::String(string) => string.chars().count(),
            Value::List(list) => list.len(),
            Value::Map(map) => map.len(),
            Value::Table(table) => table.len(),
            Value::Function(_)
            | Value::Float(_)
            | Value::Integer(_)
            | Value::Boolean(_)
            | Value::Time(_)
            | Value::Empty => return self.fail(argument),
        };

        Ok(Value::Integer(len as i64))
    }
}

pub struct CreateTable;

impl Tool for CreateTable {
    fn info(&self) -> ToolInfo<'static> {
        ToolInfo {
            identifier: "create_table",
            description: "Define a new table with a list of column names and list of rows.",
            group: "collections",
            inputs: vec![ValueType::ListExact(vec![
                ValueType::ListOf(Box::new(ValueType::String)),
                ValueType::ListOf(Box::new(ValueType::List)),
            ])],
        }
    }

    fn run(&self, argument: &Value) -> Result<Value> {
        let argument = self.check_type(argument)?.as_list()?;

        let column_name_inputs = argument[0].as_list()?;
        let mut column_names = Vec::with_capacity(column_name_inputs.len());

        for name in column_name_inputs {
            column_names.push(name.as_string()?.clone());
        }

        let column_count = column_names.len();
        let rows = argument[1].as_list()?;
        let mut table = Table::new(column_names);

        for row in rows {
            let row = row.as_fixed_len_list(column_count)?;

            table.insert(row.clone()).unwrap();
        }

        Ok(Value::Table(table))
    }
}

pub struct Rows;

impl Tool for Rows {
    fn info(&self) -> ToolInfo<'static> {
        ToolInfo {
            identifier: "rows",
            description: "Extract a table's rows as a list.",
            group: "collections",
            inputs: vec![ValueType::Table],
        }
    }

    fn run(&self, argument: &Value) -> Result<Value> {
        let argument = self.check_type(argument)?;

        if let Value::Table(table) = argument {
            let rows = table
                .rows()
                .iter()
                .map(|row| Value::List(row.clone()))
                .collect();

            Ok(Value::List(rows))
        } else {
            self.fail(argument)
        }
    }
}

pub struct Insert;

impl Tool for Insert {
    fn info(&self) -> ToolInfo<'static> {
        ToolInfo {
            identifier: "insert",
            description: "Add new rows to a table.",
            group: "collections",
            inputs: vec![ValueType::ListExact(vec![
                ValueType::Table,
                ValueType::ListOf(Box::new(ValueType::List)),
            ])],
        }
    }

    fn run(&self, argument: &Value) -> Result<Value> {
        let argument = argument.as_list()?;
        let new_rows = argument[1].as_list()?;
        let mut table = argument[0].as_table()?.clone();

        table.reserve(new_rows.len());

        for row in new_rows {
            let row = row.as_list()?.clone();

            table.insert(row)?;
        }

        Ok(Value::Table(table))
    }
}

pub struct Select;

impl Tool for Select {
    fn info(&self) -> ToolInfo<'static> {
        ToolInfo {
            identifier: "select",
            description: "Extract one or more values based on their key.",
            group: "collections",
            inputs: vec![
                ValueType::ListExact(vec![ValueType::Table, ValueType::String]),
                ValueType::ListExact(vec![
                    ValueType::Table,
                    ValueType::ListOf(Box::new(ValueType::String)),
                ]),
            ],
        }
    }

    fn run(&self, argument: &Value) -> Result<Value> {
        let arguments = argument.as_fixed_len_list(2)?;
        let collection = &arguments[0];

        if let Value::List(list) = collection {
            let mut selected = Vec::new();

            let index = arguments[1].as_int()?;
            let value = list.get(index as usize);

            if let Some(value) = value {
                selected.push(value.clone());
                return Ok(Value::List(selected));
            } else {
                return Ok(Value::List(selected));
            }
        }

        let mut column_names = Vec::new();

        if let Value::List(columns) = &arguments[1] {
            for column in columns {
                let name = column.as_string()?;

                column_names.push(name.clone());
            }
        } else if let Value::String(column) = &arguments[1] {
            column_names.push(column.clone());
        } else {
            todo!()
        };

        if let Value::Map(map) = collection {
            let mut selected = VariableMap::new();

            for (key, value) in map.inner() {
                if column_names.contains(key) {
                    selected.set_value(key, value.clone())?;
                }
            }

            return Ok(Value::Map(selected));
        }

        if let Value::Table(table) = collection {
            let selected = table.select(&column_names);

            return Ok(Value::Table(selected));
        }

        todo!()
    }
}

pub struct ForEach;

impl Tool for ForEach {
    fn info(&self) -> ToolInfo<'static> {
        ToolInfo {
            identifier: "for_each",
            description: "Run an operation on every item in a collection.",
            group: "collections",
            inputs: vec![],
        }
    }

    fn run(&self, argument: &Value) -> Result<Value> {
        let argument = argument.as_list()?;

        Error::expected_minimum_function_argument_amount(
            self.info().identifier,
            2,
            argument.len(),
        )?;

        let table = argument[0].as_table()?;
        let columns = argument[1].as_list()?;
        let mut column_names = Vec::new();

        for column in columns {
            let name = column.as_string()?;

            column_names.push(name.clone());
        }

        let selected = table.select(&column_names);

        Ok(Value::Table(selected))
    }
}

pub struct Where;

impl Tool for Where {
    fn info(&self) -> ToolInfo<'static> {
        ToolInfo {
            identifier: "where",
            description: "Keep rows matching a predicate.",
            group: "collections",
            inputs: vec![ValueType::ListExact(vec![
                ValueType::Table,
                ValueType::Function,
            ])],
        }
    }

    fn run(&self, argument: &Value) -> Result<Value> {
        let argument = self.check_type(argument)?.as_list()?;
        let table = &argument[0].as_table()?;
        let function = argument[1].as_function()?;

        let mut context = VariableMap::new();
        let mut new_table = Table::new(table.column_names().clone());

        for row in table.rows() {
            for (column_index, cell) in row.iter().enumerate() {
                let column_name = table.column_names().get(column_index).unwrap();

                context.set_value(column_name, cell.clone())?;
            }
            let keep_row = function.run_with_context(&mut context)?.as_boolean()?;

            if keep_row {
                new_table.insert(row.clone())?;
            }
        }

        Ok(Value::Table(new_table))
    }
}