forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProtectableMapView.ts
More file actions
61 lines (51 loc) · 1.67 KB
/
ProtectableMapView.ts
File metadata and controls
61 lines (51 loc) · 1.67 KB
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
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import { ProtectableMap, IProtectableMapParameters } from './ProtectableMap';
/**
* The internal wrapper used by ProtectableMap. It extends the real `Map<K, V>` base class,
* but hooks the destructive operations (clear/delete/set) to give the owner a chance
* to block them.
*
* NOTE: This is not a public API.
*/
export class ProtectableMapView<K, V> extends Map<K, V> {
private readonly _owner: ProtectableMap<K, V>;
private readonly _parameters: IProtectableMapParameters<K, V>;
constructor(owner: ProtectableMap<K, V>, parameters: IProtectableMapParameters<K, V>) {
super();
this._owner = owner;
this._parameters = parameters;
}
public clear(): void { // override
if (this._parameters.onClear) {
this._parameters.onClear(this._owner);
}
super.clear();
}
public delete(key: K): boolean { // override
if (this._parameters.onDelete) {
this._parameters.onDelete(this._owner, key);
}
return super.delete(key);
}
public set(key: K, value: V): this { // override
let modifiedValue: V = value;
if (this._parameters.onSet) {
modifiedValue = this._parameters.onSet(this._owner, key, modifiedValue);
}
super.set(key, modifiedValue);
return this;
}
// INTERNAL USAGE ONLY
public _clearUnprotected(): void {
super.clear();
}
// INTERNAL USAGE ONLY
public _deleteUnprotected(key: K): boolean {
return super.delete(key);
}
// INTERNAL USAGE ONLY
public _setUnprotected(key: K, value: V): void {
super.set(key, value);
}
}