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
use crate::{
    NativeSecondaryKey, Payer, Print, TableCursor, TableIndex, TableIterator,
};
use core::{
    borrow::Borrow, iter::IntoIterator, marker::PhantomData, ptr::null_mut,
};
use eosio::{
    AccountName, NumBytes, PrimaryTableIndex, Read, ReadError, ScopeName,
    SecondaryKey, SecondaryTableName, Table, Write, WriteError,
};
use eosio_cdt_sys::*;

/// Cursor for a primary table index
#[allow(clippy::missing_inline_in_public_items)]
#[derive(Copy, Clone, Debug)]
pub struct PrimaryTableCursor<T>
where
    T: Table,
{
    value: i32,
    code: AccountName,
    scope: ScopeName,
    data: PhantomData<T>,
}

impl<T> PartialEq for PrimaryTableCursor<T>
where
    T: Table,
{
    #[must_use]
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        self.value == other.value
            && self.code == other.code
            && self.scope == other.scope
    }
}

impl<T> Print for PrimaryTableCursor<T>
where
    T: Table,
{
    #[inline]
    fn print(&self) {
        "PrimaryTableCursor(".print();
        self.value.print();
        ")".print();
    }
}

impl<T> TableCursor<T> for PrimaryTableCursor<T>
where
    T: Table,
{
    #[inline]
    fn get(&self) -> Result<T::Row, ReadError> {
        let nullptr: *mut c_void = null_mut() as *mut _ as *mut c_void;
        let size = unsafe { db_get_i64(self.value, nullptr, 0) };
        #[allow(clippy::cast_possible_truncation, clippy::cast_sign_loss)]
        let mut bytes = vec![0_u8; size as usize];
        let ptr: *mut c_void = &mut bytes[..] as *mut _ as *mut c_void;
        #[allow(clippy::cast_possible_truncation, clippy::cast_sign_loss)]
        unsafe {
            db_get_i64(self.value, ptr, size as u32);
        }
        let mut pos = 0;
        T::Row::read(&bytes, &mut pos)
    }

    #[inline]
    fn erase(&self) -> Result<T::Row, ReadError> {
        let item = self.get()?;
        let pk = T::primary_key(&item);
        unsafe {
            db_remove_i64(self.value);
        }

        for (i, k) in T::secondary_keys(&item).iter().enumerate() {
            if let Some(k) = k {
                let table = SecondaryTableName::new(T::NAME, i);
                match k {
                    SecondaryKey::U64(v) => {
                        let end = u64::db_idx_end(self.code, self.scope, table);
                        let itr = v.clone().db_idx_find_primary(
                            self.code, self.scope, table, pk,
                        );
                        if itr != end {
                            u64::db_idx_remove(itr);
                        }
                    }
                    SecondaryKey::F64(v) => {
                        let end = f64::db_idx_end(self.code, self.scope, table);
                        let itr = v.clone().db_idx_find_primary(
                            self.code, self.scope, table, pk,
                        );
                        if itr != end {
                            f64::db_idx_remove(itr);
                        }
                    }
                    SecondaryKey::U128(v) => {
                        let end =
                            u128::db_idx_end(self.code, self.scope, table);
                        let itr = v.clone().db_idx_find_primary(
                            self.code, self.scope, table, pk,
                        );
                        if itr != end {
                            u128::db_idx_remove(itr);
                        }
                    }
                    SecondaryKey::H256(v) => {
                        let end = <[u8; 32]>::db_idx_end(
                            self.code, self.scope, table,
                        );
                        let itr = v.clone().db_idx_find_primary(
                            self.code, self.scope, table, pk,
                        );
                        if itr != end {
                            <[u8; 32]>::db_idx_remove(itr);
                        }
                    }
                }
            }
        }
        Ok(item)
    }

    #[inline]
    fn modify<I: Borrow<T::Row>>(
        &self,
        payer: Payer,
        item: I,
    ) -> Result<usize, WriteError> {
        let item = item.borrow();
        let size = item.num_bytes();
        let mut bytes = vec![0_u8; size];
        let mut pos = 0;
        item.write(&mut bytes, &mut pos)?;
        let bytes_ptr: *const c_void = &bytes[..] as *const _ as *const c_void;
        let payer = if let Payer::New(payer) = payer {
            payer
        } else {
            AccountName::new(0)
        };
        #[allow(clippy::cast_possible_truncation)]
        unsafe {
            db_update_i64(self.value, payer.as_u64(), bytes_ptr, pos as u32)
        }

        let pk = T::primary_key(item);

        for (i, k) in T::secondary_keys(item).iter_mut().enumerate() {
            if let Some(k) = k {
                let table = SecondaryTableName::new(T::NAME, i);
                match k {
                    SecondaryKey::U64(v) => {
                        v.db_idx_upsert(self.code, self.scope, table, payer, pk)
                    }
                    SecondaryKey::F64(v) => {
                        v.db_idx_upsert(self.code, self.scope, table, payer, pk)
                    }
                    SecondaryKey::U128(v) => {
                        v.db_idx_upsert(self.code, self.scope, table, payer, pk)
                    }
                    SecondaryKey::H256(v) => {
                        v.db_idx_upsert(self.code, self.scope, table, payer, pk)
                    }
                };
            }
        }

        Ok(pos)
    }
}

impl<'a, T> IntoIterator for PrimaryTableCursor<T>
where
    T: Table,
{
    type IntoIter = PrimaryTableIterator<T>;
    type Item = Self;

    #[must_use]
    #[inline]
    fn into_iter(self) -> Self::IntoIter {
        let end = unsafe {
            db_end_i64(
                self.code.as_u64(),
                self.scope.as_u64(),
                T::NAME.as_u64(),
            )
        };
        PrimaryTableIterator {
            value: self.value,
            end,
            code: self.code,
            scope: self.scope,
            data: PhantomData,
        }
    }
}

/// Iterator for a `PrimaryTableIndex`
#[allow(clippy::missing_inline_in_public_items)]
#[derive(Copy, Clone, Debug)]
pub struct PrimaryTableIterator<T>
where
    T: Table,
{
    value: i32,
    end: i32,
    code: AccountName,
    scope: ScopeName,
    data: PhantomData<T>,
}

impl<T> Iterator for PrimaryTableIterator<T>
where
    T: Table,
{
    type Item = PrimaryTableCursor<T>;

    #[inline]
    fn next(&mut self) -> Option<Self::Item> {
        if self.value == self.end {
            return None;
        }

        let cursor = PrimaryTableCursor {
            value: self.value,
            code: self.code,
            scope: self.scope,
            data: PhantomData,
        };

        let mut pk = 0_u64;
        let ptr: *mut u64 = &mut pk;
        self.value = unsafe { db_next_i64(self.value, ptr) };

        Some(cursor)
    }
}

impl<T> DoubleEndedIterator for PrimaryTableIterator<T>
where
    T: Table,
{
    #[inline]
    fn next_back(&mut self) -> Option<Self::Item> {
        if self.value == -1 {
            return None;
        }

        let cursor = PrimaryTableCursor {
            value: self.value,
            code: self.code,
            scope: self.scope,
            data: PhantomData,
        };

        let mut pk = 0_u64;
        let ptr: *mut u64 = &mut pk;
        self.value = unsafe { db_previous_i64(self.value, ptr) };

        Some(cursor)
    }
}

impl<T> TableIterator for PrimaryTableIterator<T> where T: Table {}

impl<'a, T> TableIndex<'a, u64, T> for PrimaryTableIndex<T>
where
    T: Table + 'a,
{
    type Cursor = PrimaryTableCursor<T>;

    #[must_use]
    #[inline]
    fn code(&self) -> AccountName {
        self.code
    }

    #[must_use]
    #[inline]
    fn scope(&self) -> ScopeName {
        self.scope
    }

    #[inline]
    fn lower_bound<N: Into<u64>>(&'a self, key: N) -> Option<Self::Cursor> {
        let itr = unsafe {
            db_lowerbound_i64(
                self.code.as_u64(),
                self.scope.as_u64(),
                T::NAME.as_u64(),
                key.into(),
            )
        };
        let end = self.end();
        if itr == end {
            None
        } else {
            Some(PrimaryTableCursor {
                value: itr,
                code: self.code,
                scope: self.scope,
                data: PhantomData,
            })
        }
    }

    #[inline]
    fn upper_bound<N: Into<u64>>(&'a self, key: N) -> Option<Self::Cursor> {
        let itr = unsafe {
            db_upperbound_i64(
                self.code.as_u64(),
                self.scope.as_u64(),
                T::NAME.as_u64(),
                key.into(),
            )
        };
        let end = self.end();
        if itr == end {
            None
        } else {
            Some(PrimaryTableCursor {
                value: itr,
                code: self.code,
                scope: self.scope,
                data: PhantomData,
            })
        }
    }

    #[inline]
    fn emplace<I: Borrow<T::Row>>(
        &self,
        payer: AccountName,
        item: I,
    ) -> Result<(), WriteError> {
        let item = item.borrow();
        let id = T::primary_key(item);
        let size = item.num_bytes();
        let mut bytes = vec![0_u8; size];
        let mut pos = 0;
        item.write(&mut bytes, &mut pos)?;
        let ptr: *const c_void = &bytes[..] as *const _ as *const c_void;
        #[allow(clippy::cast_possible_truncation)]
        unsafe {
            db_store_i64(
                self.scope.as_u64(),
                T::NAME.as_u64(),
                payer.as_u64(),
                id,
                ptr,
                pos as u32,
            )
        };

        // store secondary indexes
        for (i, k) in T::secondary_keys(item).iter().enumerate() {
            if let Some(k) = k {
                let table = SecondaryTableName::new(T::NAME, i);
                match k {
                    SecondaryKey::U64(v) => {
                        v.db_idx_store(self.scope, table, payer, id)
                    }
                    SecondaryKey::F64(v) => {
                        v.db_idx_store(self.scope, table, payer, id)
                    }
                    SecondaryKey::U128(v) => {
                        v.db_idx_store(self.scope, table, payer, id)
                    }
                    SecondaryKey::H256(v) => {
                        v.db_idx_store(self.scope, table, payer, id)
                    }
                };
            }
        }

        Ok(())
    }

    /// Returns a cursor pointing to a row with the specified primary key, if it
    /// exists
    #[inline]
    fn find<Id>(&'a self, id: Id) -> Option<PrimaryTableCursor<T>>
    where
        Id: Into<u64>,
    {
        let code = self.code();
        let scope = self.scope();
        let itr = unsafe {
            db_find_i64(
                code.as_u64(),
                scope.as_u64(),
                T::NAME.as_u64(),
                id.into(),
            )
        };
        let end = self.end();
        if itr == end {
            None
        } else {
            Some(PrimaryTableCursor {
                value: itr,
                code,
                scope,
                data: PhantomData,
            })
        }
    }
}

/// Trait for functions of a `PrimaryTableIndex` that only apply within a smart
/// contract
pub trait PrimaryTableIndexExt<'a, T>:
    TableIndex<'a, u64, T, Cursor = PrimaryTableCursor<T>>
where
    T: Table + 'a,
{
    /// Returns the first row in the table
    #[inline]
    fn begin(&'a self) -> Option<Self::Cursor> {
        self.lower_bound(u64::min_value())
    }

    /// Iterate over rows in the table
    #[inline]
    fn iter(&'a self) -> PrimaryTableIterator<T> {
        self.begin().map_or_else(
            || PrimaryTableIterator {
                value: 0,
                end: 0,
                code: self.code(),
                scope: self.scope(),
                data: PhantomData,
            },
            IntoIterator::into_iter,
        )
    }

    /// Total number of rows in the table
    #[inline]
    fn count(&'a self) -> usize {
        self.iter().count()
    }

    /// Returns the last row in the table
    #[inline]
    fn end(&'a self) -> i32 {
        unsafe {
            db_end_i64(
                self.code().as_u64(),
                self.scope().as_u64(),
                T::NAME.as_u64(),
            )
        }
    }

    /// Gets the next available primary key
    #[inline]
    fn available_primary_key(&'a self) -> Option<u64> {
        if self.begin().is_none() {
            return Some(0);
        }

        let end = self.end();
        let mut pk = 0_u64;
        let ptr: *mut u64 = &mut pk;
        unsafe { db_previous_i64(end, ptr) };
        pk.checked_add(1)
    }
}

impl<'a, T> PrimaryTableIndexExt<'a, T> for PrimaryTableIndex<T> where
    T: Table + 'a
{
}