blob: d3009a5bd0a498c65493c40620c2570ca08283b8 (
plain)
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
  | 
/*jshint esversion: 6 */
"use strict";
const assert  = require('assert');
const lobject = require('./lobject.js');
const lua     = require('./lua.js');
const CT      = lua.constant_types;
const nil     = require('./ldo.js').nil;
const Table   = lobject.Table;
const TValue  = lobject.TValue;
const ordered_intindexes = function(table) {
    return [...table.value.keys()]
        .filter(e => typeof e === 'number' && e % 1 === 0 && e > 0)  // Only integer indexes
        .sort(function (a, b) {
            return a > b ? 1 : -1;
        });
};
const ordered_indexes = function(table) {
    return [...table.value.keys()]
        .sort(function(a, b) {
            if (typeof a !== "number" || a <= 0) return 1;
            if (typeof b !== "number" || b <= 0) return -1;
            return a > b ? 1 : -1;
        });
};
/*
** Try to find a boundary in table 't'. A 'boundary' is an integer index
** such that t[i] is non-nil and t[i+1] is nil (and 0 if t[1] is nil).
*/
const luaH_getn = function(table) {
    let indexes = ordered_intindexes(table);
    let len = indexes.length;
    // If first index != 1, length is 0
    if (indexes[0] !== 1) return 0;
    for (let i = 0; i < len; i++) {
        let key = indexes[i];
        if (!table.__index(table, key).ttisnil() // t[key] is non-nil
            && (indexes[i + 1] - key > 1 || table.__index(table, indexes[i + 1]).ttisnil())) { // gap with next key or next value is nil
            return indexes[i];
        }
    }
    return 0;
};
const luaH_next = function(L, table, keyI) {
    let keyO = L.stack[keyI];
    let key = Table.keyValue(keyO);
    let indexes = ordered_indexes(table);
    if (indexes.length === 0) return 0;
    let i = indexes.indexOf(key);
    if ((i >= 0 || key === null) && i < indexes.length - 1) {
        if (key === null) i = -1;
        let nidx = indexes[i+1];
        let tnidx = typeof nidx;
        if (tnidx === 'number' && nidx % 1 === 0)
            L.stack[keyI] = new TValue(CT.LUA_TNUMINT, indexes[i + 1]);
        else if (tnidx === 'string')
            L.stack[keyI] = new TValue(CT.LUA_TLNGSTR, indexes[i + 1].split('|').map(e => Number.parseInt(e)).slice(0, -1));
        else
            L.stack[keyI] = indexes[i + 1];
        L.stack[keyI + 1] = table.value.get(indexes[i + 1]);
        return 1;
    }
    return 0;
};
module.exports.luaH_next = luaH_next;
module.exports.luaH_getn = luaH_getn;
  |