lik/ts/lik.fastmap.ts

93 lines
2.1 KiB
TypeScript
Raw Normal View History

2020-05-25 22:18:41 +00:00
import * as plugins from './lik.plugins';
/**
* fast map allows for very quick lookups of objects with a unique key
*/
2020-02-06 11:11:16 +00:00
export class FastMap<T> {
private mapObject: { [key: string]: T } = {};
public isUniqueKey(keyArg: string): boolean {
return this.mapObject[keyArg] ? false : true;
}
public addToMap(
keyArg: string,
objectArg: T,
optionsArg?: {
force: boolean;
}
): boolean {
if (this.isUniqueKey(keyArg) || (optionsArg && optionsArg.force)) {
this.mapObject[keyArg] = objectArg;
return true;
} else {
return false;
}
}
public getByKey(keyArg: string) {
return this.mapObject[keyArg];
}
2021-09-12 13:39:47 +00:00
public removeFromMap(keyArg: string): T {
const removedItem = this.getByKey(keyArg);
delete this.mapObject[keyArg];
return removedItem;
}
2020-02-06 11:11:16 +00:00
public getKeys() {
const keys: string[] = [];
for (const keyArg in this.mapObject) {
if (this.mapObject[keyArg]) {
keys.push(keyArg);
}
}
return keys;
2020-02-06 11:11:16 +00:00
}
2020-02-16 23:15:50 +00:00
public clean() {
this.mapObject = {};
}
/**
2021-09-12 13:39:47 +00:00
* returns a new Fastmap that includes all values from this and all from the fastmap in the argument
*/
public concat(fastMapArg: FastMap<T>) {
const concatedFastmap = new FastMap<T>();
for (const key of this.getKeys()) {
concatedFastmap.addToMap(key, this.getByKey(key));
}
for (const key of fastMapArg.getKeys()) {
concatedFastmap.addToMap(key, fastMapArg.getByKey(key), {
2020-07-12 00:44:50 +00:00
force: true,
});
}
return concatedFastmap;
}
/**
2021-09-12 13:39:47 +00:00
* tries to merge another Fastmap
* Note: uniqueKeyCollisions will cause overwrite
2021-09-12 13:39:47 +00:00
* @param fastMapArg
*/
public addAllFromOther(fastMapArg: FastMap<T>) {
for (const key of fastMapArg.getKeys()) {
this.addToMap(key, fastMapArg.getByKey(key), {
2020-07-12 00:44:50 +00:00
force: true,
});
}
}
2021-09-12 13:39:47 +00:00
2021-09-12 14:08:20 +00:00
public async find(findFunctionArg: (mapItemArg: T) => Promise<boolean>) {
2021-09-12 13:39:47 +00:00
for (const key of this.getKeys()) {
2021-09-12 14:08:20 +00:00
const item = this.getByKey(key);
const findFunctionResult = await findFunctionArg(item);
if (findFunctionResult) {
return item;
}
2021-09-12 13:39:47 +00:00
}
}
2020-02-06 11:11:16 +00:00
}