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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
use std::collections::HashMap;

use gitql_ast::expression::Expression;
use gitql_ast::expression::SymbolExpression;
use gitql_ast::object::GQLObject;
use gitql_ast::value::Value;

use crate::engine_evaluator::evaluate_expression;

pub fn select_gql_objects(
    repo: &git2::Repository,
    table: String,
    fields_names: &Vec<String>,
    fields_values: &Vec<Box<dyn Expression>>,
    alias_table: &HashMap<String, String>,
) -> Vec<GQLObject> {
    return match table.as_str() {
        "refs" => select_references(repo, fields_names, fields_values, alias_table),
        "commits" => select_commits(repo, fields_names, fields_values, alias_table),
        "branches" => select_branches(repo, fields_names, fields_values, alias_table),
        "diffs" => select_diffs(repo, fields_names, fields_values, alias_table),
        "tags" => select_tags(repo, fields_names, fields_values, alias_table),
        _ => select_values(repo, fields_names, fields_values, alias_table),
    };
}

fn select_references(
    repo: &git2::Repository,
    fields_names: &Vec<String>,
    fields_values: &Vec<Box<dyn Expression>>,
    alias_table: &HashMap<String, String>,
) -> Vec<GQLObject> {
    let repo_path = repo.path().to_str().unwrap().to_string();
    let mut gql_references: Vec<GQLObject> = Vec::new();
    let git_references = repo.references();
    if git_references.is_err() {
        return gql_references;
    }

    let references = git_references.ok().unwrap();
    let names_len = fields_names.len() as i64;
    let values_len = fields_values.len() as i64;
    let padding = names_len - values_len;

    for reference_result in references {
        if reference_result.is_err() {
            break;
        }

        let reference = reference_result.ok().unwrap();
        let mut attributes: HashMap<String, Value> = HashMap::new();

        for index in 0..names_len {
            let field_name = &fields_names[index as usize];

            if (index - padding) >= 0 {
                let value = &fields_values[(index - padding) as usize];
                if !value.as_any().downcast_ref::<SymbolExpression>().is_some() {
                    let evaulated = evaluate_expression(value, &attributes);
                    let column_name = get_column_name(&alias_table, field_name);
                    if evaulated.is_err() {
                        println!("Error {}", evaulated.err().unwrap());
                        continue;
                    }
                    attributes.insert(column_name, evaulated.ok().unwrap());
                    continue;
                }
            }

            if field_name == "name" {
                let name = reference.shorthand().unwrap_or("").to_string();
                let column_name = get_column_name(&alias_table, &"name".to_string());
                attributes.insert(column_name, Value::Text(name));
                continue;
            }

            if field_name == "full_name" {
                let full_name = reference.name().unwrap_or("").to_string();
                let column_name = get_column_name(&alias_table, &"full_name".to_string());
                attributes.insert(column_name, Value::Text(full_name));
                continue;
            }

            if field_name == "type" {
                let column_name = get_column_name(&alias_table, &"type".to_string());
                if reference.is_branch() {
                    attributes.insert(column_name, Value::Text("branch".to_owned()));
                } else if reference.is_remote() {
                    attributes.insert(column_name, Value::Text("remote".to_owned()));
                } else if reference.is_tag() {
                    attributes.insert(column_name, Value::Text("tag".to_owned()));
                } else if reference.is_note() {
                    attributes.insert(column_name, Value::Text("note".to_owned()));
                } else {
                    attributes.insert(column_name, Value::Text("other".to_owned()));
                }
                continue;
            }

            if field_name == "repo" {
                let column_name = get_column_name(&alias_table, &"repo".to_string());
                attributes.insert(column_name, Value::Text(repo_path.to_string()));
                continue;
            }
        }

        let gql_reference = GQLObject { attributes };
        gql_references.push(gql_reference);
    }

    return gql_references;
}

fn select_commits(
    repo: &git2::Repository,
    fields_names: &Vec<String>,
    fields_values: &Vec<Box<dyn Expression>>,
    alias_table: &HashMap<String, String>,
) -> Vec<GQLObject> {
    let repo_path = repo.path().to_str().unwrap().to_string();

    let mut commits: Vec<GQLObject> = Vec::new();
    let mut revwalk = repo.revwalk().unwrap();
    revwalk.push_head().unwrap();

    let names_len = fields_names.len() as i64;
    let values_len = fields_values.len() as i64;
    let padding = names_len - values_len;

    for commit_id in revwalk {
        let commit = repo.find_commit(commit_id.unwrap()).unwrap();

        let mut attributes: HashMap<String, Value> = HashMap::new();

        for index in 0..names_len {
            let field_name = &fields_names[index as usize];

            if (index - padding) >= 0 {
                let value = &fields_values[(index - padding) as usize];
                if !value.as_any().downcast_ref::<SymbolExpression>().is_some() {
                    let evaulated = evaluate_expression(value, &attributes);
                    let column_name = get_column_name(&alias_table, field_name);
                    if evaulated.is_err() {
                        println!("Error {}", evaulated.err().unwrap());
                        continue;
                    }
                    attributes.insert(column_name, evaulated.ok().unwrap());
                    continue;
                }
            }

            if field_name == "commit_id" {
                let commit_id = Value::Text(commit.id().to_string());
                let column_name = get_column_name(&alias_table, &"commit_id".to_string());
                attributes.insert(column_name, commit_id);
                continue;
            }

            if field_name == "name" {
                let name = commit.author().name().unwrap_or("").to_string();
                let column_name = get_column_name(&alias_table, &"name".to_string());
                attributes.insert(column_name, Value::Text(name));
                continue;
            }

            if field_name == "email" {
                let email = commit.author().email().unwrap_or("").to_string();
                let column_name = get_column_name(&alias_table, &"email".to_string());
                attributes.insert(column_name, Value::Text(email));
                continue;
            }

            if field_name == "title" {
                let summary = Value::Text(commit.summary().unwrap().to_string());
                let column_name = get_column_name(&alias_table, &"title".to_string());
                attributes.insert(column_name, summary);
                continue;
            }

            if field_name == "message" {
                let message = Value::Text(commit.message().unwrap_or("").to_string());
                let column_name = get_column_name(&alias_table, &"message".to_string());
                attributes.insert(column_name, message);
                continue;
            }

            if field_name == "time" {
                let column_name = get_column_name(&alias_table, &"time".to_string());
                attributes.insert(column_name, Value::Date(commit.time().seconds()));
                continue;
            }

            if field_name == "repo" {
                let column_name = get_column_name(&alias_table, &"repo".to_string());
                attributes.insert(column_name, Value::Text(repo_path.to_string()));
                continue;
            }
        }

        let gql_commit = GQLObject { attributes };
        commits.push(gql_commit);
    }

    return commits;
}

fn select_diffs(
    repo: &git2::Repository,
    fields_names: &Vec<String>,
    fields_values: &Vec<Box<dyn Expression>>,
    alias_table: &HashMap<String, String>,
) -> Vec<GQLObject> {
    let mut diffs: Vec<GQLObject> = Vec::new();
    let mut revwalk = repo.revwalk().unwrap();
    revwalk.push_head().unwrap();

    let repo_path = repo.path().to_str().unwrap().to_string();

    let names_len = fields_names.len() as i64;
    let values_len = fields_values.len() as i64;
    let padding = names_len - values_len;

    for commit_id in revwalk {
        let commit = repo.find_commit(commit_id.unwrap()).unwrap();
        let mut attributes: HashMap<String, Value> = HashMap::new();

        for index in 0..names_len {
            let field_name = &fields_names[index as usize];

            if (index - padding) >= 0 {
                let value = &fields_values[(index - padding) as usize];
                if !value.as_any().downcast_ref::<SymbolExpression>().is_some() {
                    let evaulated = evaluate_expression(value, &attributes);
                    let column_name = get_column_name(&alias_table, field_name);
                    if evaulated.is_err() {
                        println!("Error {}", evaulated.err().unwrap());
                        continue;
                    }
                    attributes.insert(column_name, evaulated.ok().unwrap());
                    continue;
                }
            }

            if field_name == "commit_id" {
                let column_name = get_column_name(&alias_table, &"commit_id".to_string());
                attributes.insert(column_name, Value::Text(commit.id().to_string()));
                continue;
            }

            if field_name == "name" {
                let name = commit.author().name().unwrap_or("").to_string();
                let column_name = get_column_name(&alias_table, &"name".to_string());
                attributes.insert(column_name, Value::Text(name));
                continue;
            }

            if field_name == "email" {
                let email = commit.author().email().unwrap_or("").to_string();
                let column_name = get_column_name(&alias_table, &"email".to_string());
                attributes.insert(column_name, Value::Text(email));
                continue;
            }

            if field_name == "repo" {
                let column_name = get_column_name(&alias_table, &"repo".to_string());
                attributes.insert(column_name, Value::Text(repo_path.to_string()));
                continue;
            }

            if field_name == "insertions"
                || field_name == "deletions"
                || field_name == "files_changed"
            {
                let diff = if commit.parents().len() > 0 {
                    repo.diff_tree_to_tree(
                        Some(&commit.parent(0).unwrap().tree().unwrap()),
                        Some(&commit.tree().unwrap()),
                        None,
                    )
                } else {
                    repo.diff_tree_to_tree(None, Some(&commit.tree().unwrap()), None)
                };

                let diff_status = diff.unwrap().stats().unwrap();

                if field_name == "insertions" {
                    let insertions = Value::Number(diff_status.insertions() as i64);
                    let column_name = get_column_name(&alias_table, &"insertions".to_string());
                    attributes.insert(column_name, insertions);
                    continue;
                }

                if field_name == "deletions" {
                    let deletations = Value::Number(diff_status.deletions() as i64);
                    let column_name = get_column_name(&alias_table, &"deletions".to_string());
                    attributes.insert(column_name, deletations);
                    continue;
                }

                if field_name == "files_changed" {
                    let file_changed = Value::Number(diff_status.files_changed() as i64);
                    let column_name = get_column_name(&alias_table, &"files_changed".to_string());
                    attributes.insert(column_name, file_changed);
                    continue;
                }
            }
        }

        let gql_diff = GQLObject { attributes };
        diffs.push(gql_diff);
    }

    return diffs;
}

fn select_branches(
    repo: &git2::Repository,
    fields_names: &Vec<String>,
    fields_values: &Vec<Box<dyn Expression>>,
    alias_table: &HashMap<String, String>,
) -> Vec<GQLObject> {
    let mut branches: Vec<GQLObject> = Vec::new();
    let local_branches = repo.branches(None).unwrap();
    let repo_path = repo.path().to_str().unwrap().to_string();

    let names_len = fields_names.len() as i64;
    let values_len = fields_values.len() as i64;
    let padding = names_len - values_len;

    for branch in local_branches {
        let (branch, _) = branch.unwrap();

        let mut attributes: HashMap<String, Value> = HashMap::new();
        for index in 0..names_len {
            let field_name = &fields_names[index as usize];

            if (index - padding) >= 0 {
                let value = &fields_values[(index - padding) as usize];
                if !value.as_any().downcast_ref::<SymbolExpression>().is_some() {
                    let evaulated = evaluate_expression(value, &attributes);
                    let column_name = get_column_name(&alias_table, field_name);
                    if evaulated.is_err() {
                        println!("Error {}", evaulated.err().unwrap());
                        continue;
                    }
                    attributes.insert(column_name, evaulated.ok().unwrap());
                    continue;
                }
            }

            if field_name == "name" {
                let branch_name = branch.name().unwrap().unwrap_or("").to_string();
                let column_name = get_column_name(&alias_table, &"name".to_string());
                attributes.insert(column_name, Value::Text(branch_name));
                continue;
            }

            if field_name == "commit_count" {
                let branch_ref = branch.get().peel_to_commit().unwrap();
                let mut revwalk = repo.revwalk().unwrap();
                let _ = revwalk.push(branch_ref.id());
                let column_name = get_column_name(&alias_table, &"commit_count".to_string());
                attributes.insert(column_name, Value::Number(revwalk.count() as i64));
                continue;
            }

            if field_name == "is_head" {
                let column_name = get_column_name(&alias_table, &"is_head".to_string());
                attributes.insert(column_name, Value::Boolean(branch.is_head()));
                continue;
            }

            if field_name == "is_remote" {
                let column_name = get_column_name(&alias_table, &"is_remote".to_string());
                attributes.insert(column_name, Value::Boolean(branch.get().is_remote()));
                continue;
            }

            if field_name == "repo" {
                let column_name = get_column_name(&alias_table, &"repo".to_string());
                attributes.insert(column_name, Value::Text(repo_path.to_string()));
                continue;
            }
        }

        let gql_branch = GQLObject { attributes };
        branches.push(gql_branch);
    }

    return branches;
}

fn select_tags(
    repo: &git2::Repository,
    fields_names: &Vec<String>,
    fields_values: &Vec<Box<dyn Expression>>,
    alias_table: &HashMap<String, String>,
) -> Vec<GQLObject> {
    let mut tags: Vec<GQLObject> = Vec::new();
    let tag_names = repo.tag_names(None).unwrap();
    let repo_path = repo.path().to_str().unwrap().to_string();

    let names_len = fields_names.len() as i64;
    let values_len = fields_values.len() as i64;
    let padding = names_len - values_len;

    for tag_name in tag_names.iter() {
        match tag_name {
            Some(name) => {
                let mut attributes: HashMap<String, Value> = HashMap::new();

                for index in 0..names_len {
                    let field_name = &fields_names[index as usize];
                    if (index - padding) >= 0 {
                        let value = &fields_values[(index - padding) as usize];

                        if !value.as_any().downcast_ref::<SymbolExpression>().is_some() {
                            let evaulated = evaluate_expression(value, &attributes);
                            let column_name = get_column_name(&alias_table, field_name);
                            if evaulated.is_err() {
                                println!("Error {}", evaulated.err().unwrap());
                                continue;
                            }
                            attributes.insert(column_name, evaulated.ok().unwrap());
                            continue;
                        }
                    }

                    if field_name == "name" {
                        let column_name = get_column_name(&alias_table, &"name".to_string());
                        attributes.insert(column_name, Value::Text(name.to_string()));
                        continue;
                    }

                    if field_name == "repo" {
                        let column_name = get_column_name(&alias_table, &"repo".to_string());
                        attributes.insert(column_name, Value::Text(repo_path.to_string()));
                        continue;
                    }
                }

                let gql_tag = GQLObject { attributes };
                tags.push(gql_tag);
            }
            None => {}
        }
    }
    return tags;
}

fn select_values(
    _repo: &git2::Repository,
    fields_names: &Vec<String>,
    fields_values: &Vec<Box<dyn Expression>>,
    alias_table: &HashMap<String, String>,
) -> Vec<GQLObject> {
    let mut values: Vec<GQLObject> = Vec::new();
    let mut attributes: HashMap<String, Value> = HashMap::new();
    let len = fields_values.len();

    for index in 0..len {
        let field_name = &fields_names[index];
        let value = &fields_values[index];
        let evaulated = evaluate_expression(value, &attributes);
        let column_name = get_column_name(&alias_table, field_name);
        attributes.insert(column_name, evaulated.ok().unwrap());
    }

    let gql_object = GQLObject { attributes };
    values.push(gql_object);
    return values;
}

#[inline(always)]
pub fn get_column_name(alias_table: &HashMap<String, String>, name: &String) -> String {
    return alias_table
        .get(name)
        .unwrap_or(&name.to_string())
        .to_string();
}