forked from EdamAme-x/TakoKV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.ts
171 lines (139 loc) · 4.35 KB
/
mod.ts
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
// deno-lint-ignore-file
import lodash from "lodash";
import { DB, KValue, Table } from "./mod.d.ts";
export class TakoKV {
constructor(
public KV: any & {
set: Function;
get: Function;
}, // Temp Type
) {
const init: KValue = this.KV.get(["_takokv_init"]);
if (!init.value) {
this.KV.set(["_takokv_init"], true);
this.KV.set(["_takokv_db"], {}); // tables
this.KV.set(["_takokv_last"], Date.now()); // last update
}
}
async setup(): Promise<void> {
const tables = await this.KV.list({ prefix: ["_takokv_db"] });
this.before = {};
for await (const table of tables) {
this.before[table.key[1]] = table.value;
// { {TableName: string}: {TableValue: any} }
}
this.current = Object.create(this.before);
}
before: DB = {}; // before database
current: DB = {}; // current databse
/** @Methods **/
existTable(tableName: string): boolean {
if (this.current[tableName]) {
return true;
}
return false;
}
createTable(tableName: string, columns?: string[]): boolean {
if (this.current[tableName]) {
return false;
} // if table exist
this.current[tableName] = {}; // create empty table
if (columns) {
for (let i = 0; i < columns.length; i++ ) {
this.current[tableName][columns[i]] = []; // create empty column
}
}
return true;
}
createColumn(tableName: string, columnName: string): boolean {
if (this.current[tableName][columnName]) {
return false;
} // Aleardy exist
this.current[tableName][columnName] = []; // create column [row, row, row ...]
return true;
}
insertRow(tableName: string, rowId: number, row: {
[key: string]: any
}): boolean {
for (const key of Object.keys(row)) {
if (!this.current[tableName][key]) {
this.current[tableName][key] = Array(rowId).fill(undefined); // 追加
}
this.current[tableName][key].splice(rowId, 0, row[key]); // 追加
}
this._IDgen(tableName, this.current[tableName][Object.keys(row)[0]].length);
return true;
}
getRows(tableName: string): number {
return this.current[tableName].id.length;
}
getColumns(tableName: string): number {
return Object.entries(this.current[tableName]).length; // id, ...col
}
getTable(tableName: string): any {
return this.current[tableName];
}
getCol<T = any>(tableName: string, columnName: string): T[] {
return this.getTable(tableName)[columnName]
}
getSearchRow(tableName: string, columnName: string, searchValue: any): any[] | null {
const searchResult: any[] | undefined = this.getTable(tableName)[columnName].find((row: any) => row === searchValue);
if (searchResult === undefined) {
return null;
}
return searchResult;
} // 👹
deleteColumn(tableName: string, columnName: string): any {
delete this.current[tableName][columnName];
}
deleteRow(tableName: string, rowId: number) {
for (const key of Object.keys(this.current[tableName])) {
this.current[tableName][key] = this._removeAndShift(this.current[tableName][key], rowId);
}
}
deleteTable(tableName: string) {
delete this.current[tableName]
}
// @SysMethod
_IDgen(tableName: string, length: number): void {
this.current[tableName].id = [];
for (let i = 0; i < length; i++) {
this.current[tableName].id.push(i);
}
}
_shiftArray(array: any[], index: number): any[] {
for (let i = index; i < array.length - 1; i++) {
array[i] = array[i + 1];
}
array[array.length - 1] = undefined; // empty (will insert)
return array;
} // subset
_removeAndShift(arr: any[], index: number): any[] {
arr.splice(index, 1);
for (let i = index; i < arr.length; i++) {
arr[i] = arr[i + 1];
}
arr.length--;
return arr;
}
//typescript error 修正するまで封印
/*async update(): Promise<boolean> {
if (lodash.isEqual(this.before, this.current)) {
return false;
} // Non Update
for (const tableName of Object.keys(this.current)) {
await this.KV.set(["_takokv_db", tableName], this.current[tableName]);
}
await this.KV.set(["_takokv_last"], Date.now()); // last update time
this.before = Object.create(this.current); // Executed
return true;
}*/
}
/**
{
...tableName: {
id: number[0, 1, 2, 3, 4...],
name: {string : (any)}[]
}
}
*/