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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
//! # mmap_json_file
//!
//! `mmap_json_file` is a collection of utilities to filter and count ( with and without filter )
//!
extern crate memmap;
use crossbeam;
use crossbeam::crossbeam_channel::bounded;
use crossbeam::crossbeam_channel::unbounded;
use failure;
use memmap::Mmap;
use serde;
use serde::de::DeserializeOwned;
use serde_json::Result;
use std::fs::File;
use std::io::prelude::*;
use std::{collections::HashMap, thread};

use failure::Fail;

#[derive(Fail, Debug)]
pub enum ReturnValues {
    #[fail(display = "An internal error has occurred: {}", _0)]
    Success(i32),
    #[fail(display = "An internal error has occurred: {}", _0)]
    InternalChannelError(#[fail(cause)] crossbeam::crossbeam_channel::RecvError),
    #[fail(display = "An Io error has occurred: {}", _0)]
    Io(#[fail(cause)] std::io::Error),
    #[fail(display = "An json error has occurred: {}", _0)]
    Json(#[fail(cause)] serde_json::Error),
}

/// Filter the contents of a json file with filter specified and write the output to file specified.
///
/// # Arguments
///
/// * `f` Filename and full accesislbe path of the input json file
/// * `filter` A closure that can handle an input parameter of type T.
/// * `o` Filename and full accesislbe path of the output json file.
///
/// # Input types
///
/// * `T` The type of the structure.
/// * `F` Closure template with input function type.
///
/// # Example usage
///
/// ```
///
/// use mmap_json_file;
/// use serde::{Deserialize, Serialize};
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimple {
///     a: Option<String>,
///     c: Option<String>,
/// }
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimpleNested {
///     b: Option<TestSimple>,
///     c: Option<String>,
/// }
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimpleCompound {
///     a: Option<TestSimpleNested>,
///     f: Option<String>,
/// }
///
/// let filter = |record: TestSimple| -> bool { record.a.unwrap() == "b" };
///
/// let _res = mmap_json_file::filter::<TestSimple, Box<dyn Fn(TestSimple) -> bool>>(
///     "data/test_simple.json".to_string(),
///     Box::new(filter),
///     "output.json".to_string(),
/// );
/// ```

pub fn filter<'a, T: 'static + Default, F>(f: String, filter: F, o: String) -> Result<ReturnValues>
where
    T: DeserializeOwned + std::fmt::Debug + Clone + Send + serde::Serialize,
    F: Fn(T) -> bool,
{
    let file = File::open(f).expect("failed to open the input file.");
    let mmap = unsafe { Mmap::map(&file).expect("failed to map the file") };
    let mut q = Vec::new();

    let (sender, receiver) = unbounded();
    let (sender_write_count, receiver_write_count) = bounded(1);

    let mut output = File::create(o.clone()).unwrap();
    let mut vect = Vec::new();

    output
        .write("[".as_bytes())
        .expect("Cannot write to destination");

    let writer = thread::spawn(move || -> Result<()> {
        let mut write_count = 0;

        while let record = receiver.recv() {
            match record {
                Err(_reason) => {
                    break;
                }
                _ => match serde_json::to_string(&record.unwrap()) {
                    Ok(record_json_string) => match output.write(record_json_string.as_bytes()) {
                        Err(_reason) => {
                            break;
                        }
                        _ => {
                            write_count += 1;
                        }
                    },
                    Err(_reason) => {
                        break;
                    }
                },
            }
        }

        output
            .write("]".as_bytes())
            .expect("Cannot write to destination");

        match sender_write_count.send(write_count) {
            Ok(_value) => Ok(()),
            Err(reason) => {
                /* nothing to do with this error now! */
                Ok(())
            }
        }
    });

    for letter in mmap.iter() {
        match *letter as char {
            '}' => {
                q.pop();
                vect.push(*letter as char);

                if q.len() == 0 {
                    vect.remove(0);

                    let s: String = vect.clone().into_iter().collect::<String>();

                    let deserialized: T = serde_json::from_str(&s).unwrap();

                    if filter(deserialized.clone()) {
                        sender.send(deserialized).expect("Internal error!");
                    }

                    vect.clear();
                    q.clear();
                }
            },
            '\n' => {

            },
            '\t' => {

            },
            '{' => {
                vect.push(*letter as char);
                q.push(*letter as char);
            }
            _ => {
                vect.push(*letter as char);
            }
        }
    }

    drop(sender);

    let _msg = writer.join();

    Ok(ReturnValues::Success(receiver_write_count.recv().unwrap()))
}

/// Count the contents of a json file with filter specified.
///
/// # Arguments
///
/// * `f` Filename and full accesislbe path of the input json file
/// * `filter` A closure that can handle an input parameter of type T.
///
/// # Return
///
/// * `count` No of records that match the filter.
///
/// # Input types
///
/// * `T` The type of the structure.
/// * `F` Closure template with input function type.
///
/// # Example usage
///
/// ```
/// use mmap_json_file;
/// use serde::{Deserialize, Serialize};
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimple {
///     a: Option<String>,
///     c: Option<String>,
/// }
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimpleNested {
///     b: Option<TestSimple>,
///     c: Option<String>,
/// }
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimpleCompound {
///     a: Option<TestSimpleNested>,
///     f: Option<String>,
/// }
///
/// let filter = |record: TestSimple| -> bool { record.a.unwrap() == "b" };
///
/// let _res = mmap_json_file::count_with_filter::<
///     TestSimple,
///    Box<dyn Fn(TestSimple) -> bool>,
/// >("data/test_simple.json".to_string(), Box::new(filter));
/// ```
///

pub fn count_with_filter<'a, T: 'static, F>(f: String, filter: F) -> Result<i32>
where
    T: DeserializeOwned + std::fmt::Debug + Clone + Send + serde::Serialize,
    F: Fn(T) -> bool,
{
    let file = File::open(f).expect("failed to open the file");
    let mmap = unsafe { Mmap::map(&file).expect("failed to map the file") };
    let mut vect = Vec::new();
    let mut count = 0;
    let mut q = Vec::new();

    for letter in mmap.iter() {
        match *letter as char {
            '}' => {
                q.pop();
                vect.push(*letter as char);

                if q.len() == 0 {
                    vect.remove(0);

                    let s: String = vect.clone().into_iter().collect::<String>();
                    let deserialized: T = serde_json::from_str(&s).unwrap();

                    if filter(deserialized.clone()) {
                        count += 1;
                    }

                    vect.clear();
                    q.clear();
                }
            },
            '\n' => {

            },
            '\t' => {

            },
            '{' => {
                vect.push(*letter as char);
                q.push(*letter as char);
            }
            _ => {
                vect.push(*letter as char);
            }
        }
    }

    Ok(count)
}

/// Count the contents of a json file.
///
/// # Arguments
///
/// * `f` Filename and full accesislbe path of the input json file
///
/// # Return
///
/// * `count` No of records that match the filter.
///
/// # Input types
///
/// * `T` The type of the structure.
///
/// # Example usage
///
/// ```
/// use mmap_json_file;
/// use serde::{Deserialize, Serialize};
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimple {
///     a: Option<String>,
///     c: Option<String>,
/// }
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimpleNested {
///     b: Option<TestSimple>,
///     c: Option<String>,
/// }
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimpleCompound {
///     a: Option<TestSimpleNested>,
///     f: Option<String>,
/// }
///
/// let filter = |record: TestSimple| -> bool { record.a.unwrap() == "b" };
///
/// let _res = mmap_json_file::count_with_filter::<
///     TestSimple,
///    Box<dyn Fn(TestSimple) -> bool>,
/// >("data/test_simple.json".to_string(), Box::new(filter));
/// ```
///

pub fn count<'a, T: 'static>(f: String) -> Result<i32>
where
    T: DeserializeOwned + std::fmt::Debug + Clone + Send + serde::Serialize
{
    let file = File::open(f).expect("failed to open the file");
    let mmap = unsafe { Mmap::map(&file).expect("failed to map the file") };
    let mut count = 0;

    let mut q = Vec::new();

    for letter in mmap.iter() {
        match *letter as char {
            '}' => {
                q.pop();
            },
            '{' => {
                if q.len() == 0 {
                    count += 1;
                    q.clear();
                }
                q.push(*letter as char);
            }
            _ => {}
        }
    }

    Ok(count)
}

/// Disctinct values of the contents of a json field.
///
/// * `f` Filename and full accesislbe path of the input json file
/// * `filter` A closure that can handle an input parameter of type T and provide the field with distincts.
/// * `o` Filename and full accesislbe path of the output json file.
///
/// # Input types
///
/// * `T` The type of the structure.
/// * `F` Closure template with input function type.
///
/// # Return
///
/// * `count` No of distinct records found.
///
/// # Example usage
///
/// ```
/// use mmap_json_file;
/// use serde::{Deserialize, Serialize};
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimple {
///     a: Option<String>,
///     c: Option<String>,
/// }
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimpleNested {
///     b: Option<TestSimple>,
///     c: Option<String>,
/// }
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimpleCompound {
///     a: Option<TestSimpleNested>,
///     f: Option<String>,
/// }
///
/// let filter = |record: TestSimple| -> String { record.a.unwrap() };
///
/// let _res = mmap_json_file::distinct_of_field::<
///     TestSimple,
///    Box<dyn Fn(TestSimple) -> String>,
/// >("data/test_simple.json".to_string(), Box::new(filter), "output".to_string());
/// ```
///

pub fn distinct_of_field<'a, T: 'static, F>(f: String, filter: F, o: String) -> Result<i32>
where
    T: DeserializeOwned + std::fmt::Debug + Clone + Send + serde::Serialize,
    F: Fn(T) -> String,
{
    let file = File::open(f).expect("failed to open the input file.");
    let mmap = unsafe { Mmap::map(&file).expect("failed to map the file") };
    let mut q = Vec::new();

    let (sender, receiver) = unbounded::<String>();
    let (sender_write_count, receiver_write_count) = bounded(1);

    let mut output = File::create(o.clone()).unwrap();
    let mut vect = Vec::new();
    let mut hm = HashMap::new();

    let writer = thread::spawn(move || -> Result<()> {
        while let record = receiver.recv() {
            match record {
                Err(_reason) => {
                    break;
                }
                Ok(value) => {
                    match hm.contains_key(&value) {
                        true  => {
                            // ignore the value
                        },
                        false => {
                            hm.insert(value, true);
                        }
                    }

                }
            }
        }

        serde_json::to_writer::<File, Vec<&String>>(output, &hm.keys().collect()).expect("Cannot write to destination");

        match sender_write_count.send(hm.keys().len() as i32) {
            Ok(_value) => Ok(()),
            Err(_reason) => {
                /* nothing to do with this error now! */
                Ok(())
            }
        }
    });

    for letter in mmap.iter() {
        match *letter as char {
            '}' => {
                q.pop();
                vect.push(*letter as char);

                if q.len() == 0 {
                    vect.remove(0);

                    let s: String = vect.clone().into_iter().collect::<String>();

                    let deserialized: T = serde_json::from_str(&s).unwrap();
                    let s = filter(deserialized.clone());

                    if s.len() > 0 {
                        sender.send(s).expect("Internal error!");
                    }

                    vect.clear();
                    q.clear();
                }
            },
            '\n' => {

            },
            '\t' => {

            },
            '{' => {
                vect.push(*letter as char);
                q.push(*letter as char);
            }
            _ => {
                vect.push(*letter as char);
            }
        }
    }

    drop(sender);
    let _msg = writer.join();
    Ok(receiver_write_count.recv().unwrap())
}
/// Sum values of a json field over the entire file.
///
/// * `f` Filename and full accesislbe path of the input json file
/// * `filter` A closure that can handle an input parameter of type T and provide the field with distincts.
///
/// # Input types
///
/// * `T` The type of the structure.
/// * `F` Closure template with input function type.
/// * `U` The type of the result. ( depending on the type of the field being summed over.)
///
/// # Return
///
/// * `sum` Total sum.
///
/// # Example usage
///
/// ```
/// use mmap_json_file;
/// use serde::{Deserialize, Serialize};
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimple {
///     a: Option<String>,
///     c: Option<String>,
/// }
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimpleNested {
///     b: Option<TestSimple>,
///     c: Option<String>,
/// }
///
/// #[derive(Serialize, Deserialize, Debug, Clone, Default)]
/// struct TestSimpleCompound {
///     a: Option<TestSimpleNested>,
///     f: Option<String>,
/// }
///
/// let filter = |record: TestSimple| -> f64 {
///    match record.a {
///        Some(value) => {
///            match value.parse::<f64>() {
///                Ok(num) => num as f64,
///                _ => 0f64
///            }
///        },
///        _ => 0f64
///    }
/// };
///
/// let _res = mmap_json_file::sum_over_field::<TestSimple, Box<dyn Fn(TestSimple) -> f64>, f64>(
///    "data/test_simple_sum.json".to_string(),
///    Box::new(filter)
/// );

pub fn sum_over_field<'a, T: 'static, F, U>(f: String, filter: F) -> Result<U>
where
    T: DeserializeOwned + std::fmt::Debug + Clone + Send + serde::Serialize,
    F: Fn(T) -> U,
    U: Default + std::ops::AddAssign
{
    let file = File::open(f).expect("failed to open the file");
    let mmap = unsafe { Mmap::map(&file).expect("failed to map the file") };
    let mut count:U = U::default();
    let mut vect = Vec::new();

    let mut q = Vec::new();

    for letter in mmap.iter() {
        match *letter as char {
            '}' => {
                q.pop();
                vect.push(*letter as char);

                if q.len() == 0 {
                    vect.remove(0);

                    let s: String = vect.clone().into_iter().collect::<String>();

                    let deserialized: T = serde_json::from_str(&s).unwrap();
                    count += filter(deserialized.clone());

                    vect.clear();
                    q.clear();
                }
            },
            '\n' => {

            },
            '\t' => {

            },
            '{' => {
                vect.push(*letter as char);
                q.push(*letter as char);
            }
            _ => {
                vect.push(*letter as char);
            }
        }
    }

    Ok(count)
}