mirror of
https://github.com/openharmony/js_util_module.git
synced 2026-08-27 03:12:15 -04:00
71f194f508
Description
1. Modify incorrect export in cpp file
2. Delete invalid parameters
3. Add TS constraint type to the variable
4. Add braces to some if judgments
5. Package the same part of the code
#I52Q2E:Modify some non-standard problems on TS side
Signed-off-by: wangyong1995626wywz <wangyong237@huawei.com>
133 lines
3.8 KiB
TypeScript
133 lines
3.8 KiB
TypeScript
/*
|
|
* Copyright (c) 2022 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
declare function requireNapi(s: string): any;
|
|
interface ArkPrivate {
|
|
HashSet: number;
|
|
Load(key: number): Object;
|
|
}
|
|
let flag: boolean = false;
|
|
let fastHashSet: Object = undefined;
|
|
let arkPritvate: ArkPrivate = globalThis['ArkPrivate'] || undefined;
|
|
if (arkPritvate !== undefined) {
|
|
fastHashSet = arkPritvate.Load(arkPritvate.HashSet);
|
|
} else {
|
|
flag = true;
|
|
}
|
|
if (flag || fastHashSet === undefined) {
|
|
let HashSetAbility: any = requireNapi('util.struct');
|
|
interface IterableIterator<T> {
|
|
next: () => {
|
|
value: T | undefined;
|
|
done: boolean;
|
|
};
|
|
}
|
|
class HandlerHashSet<T> {
|
|
set(target: HashSet<T>, p: any, value: any): boolean {
|
|
if (p in target) {
|
|
target[p] = value;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
defineProperty(): boolean {
|
|
throw new Error(`Can't define Property on HashSet Object`);
|
|
}
|
|
deleteProperty(): boolean {
|
|
throw new Error(`Can't delete Property on HashSet Object`);
|
|
}
|
|
setPrototypeOf(): boolean {
|
|
throw new Error(`Can't set Prototype on HashSet Object`);
|
|
}
|
|
}
|
|
class HashSet<T> extends HashSetAbility.DictionaryClass<T, T> {
|
|
constructor() {
|
|
super();
|
|
return new Proxy(this, new HandlerHashSet());
|
|
}
|
|
get length(): number {
|
|
return this.memberNumber;
|
|
}
|
|
isEmpty(): boolean {
|
|
return this.memberNumber === 0;
|
|
}
|
|
has(value: T): boolean {
|
|
return this.hasKey(value);
|
|
}
|
|
add(value: T): boolean {
|
|
if (this.has(value)) {
|
|
return false;
|
|
}
|
|
return this.put(value);
|
|
}
|
|
remove(value: T): boolean {
|
|
if (this.removeMember(value) !== undefined) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
clear(): void {
|
|
super.clear();
|
|
}
|
|
forEach(callbackfn: (value?: T, key?: T, set?: HashSet<T>) => void,
|
|
thisArg?: Object): void {
|
|
let tagetArray: Array<any> = [];
|
|
tagetArray = this.keyValueArray;
|
|
for (let i: number = 0; i < tagetArray.length; i++) {
|
|
callbackfn.call(thisArg, tagetArray[i].key, tagetArray[i].key, this);
|
|
}
|
|
}
|
|
values(): IterableIterator<T> {
|
|
let data: HashSet<T> = this;
|
|
let count: number = 0;
|
|
return {
|
|
next: function () {
|
|
let done: boolean = false;
|
|
let value: T = undefined;
|
|
done = count >= data.memberNumber;
|
|
value = done ? undefined : data.keyValueArray[count].key;
|
|
count++;
|
|
return {
|
|
done: done,
|
|
value: value,
|
|
};
|
|
},
|
|
};
|
|
}
|
|
entries(): IterableIterator<[T, T]> {
|
|
let data: HashSet<T> = this;
|
|
let count: number = 0;
|
|
return {
|
|
next: function () {
|
|
let done: boolean = false;
|
|
let value: [T, T] = undefined;
|
|
done = count >= data.memberNumber;
|
|
value = done ? undefined : data.keyValueArray[count].entry();
|
|
count++;
|
|
return {
|
|
done: done,
|
|
value: value,
|
|
};
|
|
},
|
|
};
|
|
}
|
|
[Symbol.iterator](): IterableIterator<T> {
|
|
return this.values();
|
|
}
|
|
}
|
|
Object.freeze(HashSet);
|
|
fastHashSet = HashSet;
|
|
}
|
|
export default fastHashSet; |