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
pub mod search;

mod field;
mod operation;
mod option;
mod row_fragment;
mod serial;
mod sort;

pub use field::Field;
use futures::FutureExt;
pub use idx_binary::{self, AvltrieeIter, FileMmap, IdxBinary, IdxFile};
pub use operation::*;
pub use option::DataOption;
pub use row_fragment::RowFragment;
pub use search::{Condition, Search};
pub use sort::{CustomSort, Order, OrderKey};
pub use uuid::Uuid;

use std::{
    collections::BTreeSet,
    fs,
    num::NonZeroU32,
    path::{Path, PathBuf},
    time::{SystemTime, UNIX_EPOCH},
};

use hashbrown::HashMap;
use serial::SerialNumber;

pub type RowSet = BTreeSet<NonZeroU32>;

pub fn create_uuid() -> u128 {
    Uuid::new_v4().as_u128()
}
pub fn uuid_string(uuid: u128) -> String {
    Uuid::from_u128(uuid).to_string()
}

pub struct Data {
    fields_dir: PathBuf,
    option: DataOption,
    serial: SerialNumber,
    uuid: Option<IdxFile<u128>>,
    activity: Option<IdxFile<u8>>,
    term_begin: Option<IdxFile<u64>>,
    term_end: Option<IdxFile<u64>>,
    last_updated: Option<IdxFile<u64>>,
    fields_cache: HashMap<String, Field>,
}

impl Data {
    pub fn new<P: AsRef<Path>>(dir: P, option: DataOption) -> Self {
        let dir = dir.as_ref();
        if !dir.exists() {
            fs::create_dir_all(dir).unwrap();
        }

        let mut fields_cache = HashMap::new();
        let mut fields_dir = dir.to_path_buf();
        fields_dir.push("fields");
        if fields_dir.exists() {
            for d in fields_dir.read_dir().unwrap() {
                let d = d.unwrap();
                if d.file_type().unwrap().is_dir() {
                    if let Some(fname) = d.file_name().to_str() {
                        let field = Field::new(d.path(), option.allocation_lot);
                        fields_cache.entry(String::from(fname)).or_insert(field);
                    }
                }
            }
        }

        let serial = SerialNumber::new(
            {
                let mut path = dir.to_path_buf();
                path.push("serial");
                path
            },
            option.allocation_lot,
        );
        let uuid = option.uuid.then_some(IdxFile::new(
            {
                let mut path = dir.to_path_buf();
                path.push("uuid.i");
                path
            },
            option.allocation_lot,
        ));
        let activity = option.activity.then_some(IdxFile::new(
            {
                let mut path = dir.to_path_buf();
                path.push("activity.i");
                path
            },
            option.allocation_lot,
        ));
        let term_begin = option.term.then_some(IdxFile::new(
            {
                let mut path = dir.to_path_buf();
                path.push("term_begin.i");
                path
            },
            option.allocation_lot,
        ));
        let term_end = option.term.then_some(IdxFile::new(
            {
                let mut path = dir.to_path_buf();
                path.push("term_end.i");
                path
            },
            option.allocation_lot,
        ));
        let last_updated = option.last_updated.then_some(IdxFile::new(
            {
                let mut path = dir.to_path_buf();
                path.push("last_updated.i");
                path
            },
            option.allocation_lot,
        ));

        Self {
            fields_dir,
            option,
            serial,
            uuid,
            activity,
            term_begin,
            term_end,
            last_updated,
            fields_cache,
        }
    }

    #[inline(always)]
    pub fn serial(&self, row: NonZeroU32) -> u32 {
        self.serial.value(row).copied().unwrap()
    }

    #[inline(always)]
    pub fn uuid(&self, row: NonZeroU32) -> Option<u128> {
        self.uuid.as_ref().and_then(|uuid| uuid.value(row).copied())
    }

    #[inline(always)]
    pub fn uuid_string(&self, row: NonZeroU32) -> Option<String> {
        self.uuid.as_ref().and_then(|uuid| {
            uuid.value(row)
                .map(|v| uuid::Uuid::from_u128(*v).to_string())
        })
    }

    #[inline(always)]
    pub fn activity(&self, row: NonZeroU32) -> Option<Activity> {
        self.activity.as_ref().and_then(|a| {
            a.value(row).map(|v| {
                if *v != 0 {
                    Activity::Active
                } else {
                    Activity::Inactive
                }
            })
        })
    }

    #[inline(always)]
    pub fn term_begin(&self, row: NonZeroU32) -> Option<u64> {
        self.term_begin.as_ref().and_then(|f| f.value(row).copied())
    }

    #[inline(always)]
    pub fn term_end(&self, row: NonZeroU32) -> Option<u64> {
        self.term_end.as_ref().and_then(|f| f.value(row).copied())
    }

    #[inline(always)]
    pub fn last_updated(&self, row: NonZeroU32) -> Option<u64> {
        if let Some(last_update) = &self.last_updated {
            last_update.value(row).copied()
        } else {
            None
        }
    }

    pub async fn update(&mut self, operation: &Operation) -> u32 {
        match operation {
            Operation::New(record) => self.create_row(record).await.get(),
            Operation::Update { row, record } => {
                self.update_field(NonZeroU32::new(*row).unwrap(), record, false)
                    .await;
                *row
            }
            Operation::Delete { row } => {
                self.delete(NonZeroU32::new(*row).unwrap()).await;
                0
            }
        }
    }

    pub async fn create_row(&mut self, record: &Record) -> NonZeroU32 {
        let row = self.serial.next_row().await;
        self.update_field(row, record, true).await;
        row
    }

    pub async fn update_row(&mut self, row: NonZeroU32, record: &Record) {
        self.update_field(row, record, false).await;
    }

    #[inline(always)]
    fn field(&self, name: &str) -> Option<&Field> {
        self.fields_cache.get(name)
    }
    fn load_fields(&mut self) {
        if self.fields_dir.exists() {
            for p in self.fields_dir.read_dir().unwrap() {
                let p = p.unwrap();
                let path = p.path();
                if path.is_dir() {
                    if let Some(str_fname) = p.file_name().to_str() {
                        if !self.fields_cache.contains_key(str_fname) {
                            let field = Field::new(path, self.option.allocation_lot);
                            self.fields_cache
                                .entry(String::from(str_fname))
                                .or_insert(field);
                        }
                    }
                }
            }
        }
    }

    #[inline(always)]
    fn now() -> u64 {
        SystemTime::now()
            .duration_since(UNIX_EPOCH)
            .unwrap()
            .as_secs()
    }

    async fn update_field(&mut self, row: NonZeroU32, record: &Record, with_uuid: bool) {
        let mut field_map = HashMap::new();
        for kv in &record.fields {
            if !self.fields_cache.contains_key(&kv.key) {
                self.create_field(&kv.key);
            }
            field_map.insert(&kv.key, &kv.value);
        }

        let mut futs = vec![];

        futs.push(
            async {
                let mut futs = vec![];
                for (key, field) in self.fields_cache.iter_mut() {
                    if let Some(v) = field_map.get(key) {
                        futs.push(field.update(row, v).boxed());
                    }
                }
                futures::future::join_all(futs).await;
            }
            .boxed(),
        );

        futs.push(
            async {
                if with_uuid {
                    if let Some(ref mut uuid) = self.uuid {
                        uuid.update_with_allocate(row, create_uuid()).await;
                    }
                }
            }
            .boxed(),
        );

        futs.push(
            async {
                if let Some(ref mut f) = self.last_updated {
                    f.update_with_allocate(row, Self::now()).await;
                }
            }
            .boxed(),
        );

        futs.push(
            async {
                if let Some(ref mut f) = self.activity {
                    f.update_with_allocate(row, record.activity as u8).await;
                }
            }
            .boxed(),
        );
        futs.push(
            async {
                if let Some(ref mut f) = self.term_begin {
                    f.update_with_allocate(
                        row,
                        if let Term::Overwrite(term) = record.term_begin {
                            term
                        } else {
                            Self::now()
                        },
                    )
                    .await;
                }
            }
            .boxed(),
        );
        futs.push(
            async {
                if let Some(ref mut f) = self.term_end {
                    f.update_with_allocate(
                        row,
                        if let Term::Overwrite(term) = record.term_end {
                            term
                        } else {
                            0
                        },
                    )
                    .await;
                }
            }
            .boxed(),
        );

        futures::future::join_all(futs).await;
    }

    async fn delete(&mut self, row: NonZeroU32) {
        self.load_fields();

        let mut futs = vec![];

        futs.push(async { self.serial.delete(row) }.boxed());

        futs.push(
            async {
                let mut futs = vec![];
                for (_, v) in self.fields_cache.iter_mut() {
                    futs.push(
                        async {
                            v.delete(row);
                        }
                        .boxed(),
                    );
                }
                futures::future::join_all(futs).await;
            }
            .boxed(),
        );

        if let Some(ref mut f) = self.uuid {
            futs.push(
                async {
                    f.delete(row);
                }
                .boxed(),
            );
        }
        if let Some(ref mut f) = self.activity {
            futs.push(
                async {
                    f.delete(row);
                }
                .boxed(),
            );
        }
        if let Some(ref mut f) = self.term_begin {
            futs.push(
                async {
                    f.delete(row);
                }
                .boxed(),
            );
        }
        if let Some(ref mut f) = self.term_end {
            futs.push(
                async {
                    f.delete(row);
                }
                .boxed(),
            );
        }
        if let Some(ref mut f) = self.last_updated {
            futs.push(
                async {
                    f.delete(row);
                }
                .boxed(),
            );
        }
        futures::future::join_all(futs).await;
    }

    #[inline(always)]
    pub fn all(&self) -> RowSet {
        self.serial.iter().collect()
    }
}