@statsig/client-core 3.30.2-beta.1 → 3.31.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,21 +3,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports._getFullUserHash = exports._normalizeUser = void 0;
4
4
  const Hashing_1 = require("./Hashing");
5
5
  const Log_1 = require("./Log");
6
+ const SafeJs_1 = require("./SafeJs");
6
7
  function _normalizeUser(original, options, fallbackEnvironment) {
7
- try {
8
- const copy = JSON.parse(JSON.stringify(original));
9
- if (options != null && options.environment != null) {
10
- copy.statsigEnvironment = options.environment;
11
- }
12
- else if (fallbackEnvironment != null) {
13
- copy.statsigEnvironment = { tier: fallbackEnvironment };
14
- }
15
- return copy;
16
- }
17
- catch (error) {
18
- Log_1.Log.error('Failed to JSON.stringify user');
8
+ const copy = (0, SafeJs_1._cloneObject)('StatsigUser', original);
9
+ if (copy == null) {
10
+ Log_1.Log.error('Failed to clone user');
19
11
  return { statsigEnvironment: undefined };
20
12
  }
13
+ if (options != null && options.environment != null) {
14
+ copy.statsigEnvironment = options.environment;
15
+ }
16
+ else if (fallbackEnvironment != null) {
17
+ copy.statsigEnvironment = { tier: fallbackEnvironment };
18
+ }
19
+ return copy;
21
20
  }
22
21
  exports._normalizeUser = _normalizeUser;
23
22
  function _getFullUserHash(user) {
@@ -1,14 +0,0 @@
1
- import { EventBatch } from './EventBatch';
2
- import { StatsigEventInternal } from './StatsigEvent';
3
- export declare class BatchQueue {
4
- private _batches;
5
- private _batchSize;
6
- constructor(batchSize?: number);
7
- batchSize(): number;
8
- requeueBatch(batch: EventBatch): number;
9
- hasFullBatch(): boolean;
10
- takeNextBatch(): EventBatch | null;
11
- takeAllBatches(): EventBatch[];
12
- createBatches(events: StatsigEventInternal[]): number;
13
- private _enqueueBatch;
14
- }
@@ -1,51 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BatchQueue = void 0;
4
- const EventBatch_1 = require("./EventBatch");
5
- const EventRetryConstants_1 = require("./EventRetryConstants");
6
- class BatchQueue {
7
- constructor(batchSize = EventRetryConstants_1.EventRetryConstants.DEFAULT_BATCH_SIZE) {
8
- this._batches = [];
9
- this._batchSize = batchSize;
10
- }
11
- batchSize() {
12
- return this._batchSize;
13
- }
14
- requeueBatch(batch) {
15
- return this._enqueueBatch(batch);
16
- }
17
- hasFullBatch() {
18
- return this._batches.some((batch) => batch.events.length >= this._batchSize);
19
- }
20
- takeNextBatch() {
21
- var _a;
22
- return (_a = this._batches.shift()) !== null && _a !== void 0 ? _a : null;
23
- }
24
- takeAllBatches() {
25
- const batches = this._batches;
26
- this._batches = [];
27
- return batches;
28
- }
29
- createBatches(events) {
30
- let i = 0;
31
- let droppedCount = 0;
32
- while (i < events.length) {
33
- const chunk = events.slice(i, i + this._batchSize);
34
- droppedCount += this._enqueueBatch(new EventBatch_1.EventBatch(chunk));
35
- i += this._batchSize;
36
- }
37
- return droppedCount;
38
- }
39
- _enqueueBatch(batch) {
40
- this._batches.push(batch);
41
- let droppedEventCount = 0;
42
- while (this._batches.length > EventRetryConstants_1.EventRetryConstants.MAX_PENDING_BATCHES) {
43
- const dropped = this._batches.shift();
44
- if (dropped) {
45
- droppedEventCount += dropped.events.length;
46
- }
47
- }
48
- return droppedEventCount;
49
- }
50
- }
51
- exports.BatchQueue = BatchQueue;
@@ -1,23 +0,0 @@
1
- import { EventBatch } from './EventBatch';
2
- import { NetworkCore } from './NetworkCore';
3
- import { StatsigClientEmitEventFunc } from './StatsigClientBase';
4
- import { LogEventCompressionMode, LoggingEnabledOption, NetworkConfigCommon, StatsigOptionsCommon } from './StatsigOptionsCommon';
5
- import { UrlConfiguration } from './UrlConfiguration';
6
- export declare class EventSender {
7
- private _network;
8
- private _sdkKey;
9
- private _options;
10
- private _logEventUrlConfig;
11
- private _emitter;
12
- private _loggingEnabled;
13
- constructor(sdkKey: string, network: NetworkCore, emitter: StatsigClientEmitEventFunc, logEventUrlConfig: UrlConfiguration, options: StatsigOptionsCommon<NetworkConfigCommon> | null, loggingEnabled: LoggingEnabledOption);
14
- setLogEventCompressionMode(mode: LogEventCompressionMode): void;
15
- setLoggingEnabled(enabled: LoggingEnabledOption): void;
16
- sendBatch(batch: EventBatch): Promise<{
17
- success: boolean;
18
- statusCode: number;
19
- }>;
20
- private _sendEventsViaPost;
21
- private _sendEventsViaBeacon;
22
- private _getRequestData;
23
- }
@@ -1,96 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.EventSender = void 0;
13
- const Log_1 = require("./Log");
14
- const NetworkConfig_1 = require("./NetworkConfig");
15
- const VisibilityObserving_1 = require("./VisibilityObserving");
16
- class EventSender {
17
- constructor(sdkKey, network, emitter, logEventUrlConfig, options, loggingEnabled) {
18
- this._sdkKey = sdkKey;
19
- this._network = network;
20
- this._emitter = emitter;
21
- this._options = options;
22
- this._logEventUrlConfig = logEventUrlConfig;
23
- this._loggingEnabled = loggingEnabled;
24
- }
25
- setLogEventCompressionMode(mode) {
26
- this._network.setLogEventCompressionMode(mode);
27
- }
28
- setLoggingEnabled(enabled) {
29
- this._loggingEnabled = enabled;
30
- }
31
- sendBatch(batch) {
32
- return __awaiter(this, void 0, void 0, function* () {
33
- var _a, _b;
34
- try {
35
- const isClosing = (0, VisibilityObserving_1._isUnloading)();
36
- const shouldUseBeacon = isClosing &&
37
- this._network.isBeaconSupported() &&
38
- ((_b = (_a = this._options) === null || _a === void 0 ? void 0 : _a.networkConfig) === null || _b === void 0 ? void 0 : _b.networkOverrideFunc) == null;
39
- this._emitter({
40
- name: 'pre_logs_flushed',
41
- events: batch.events,
42
- });
43
- const response = shouldUseBeacon
44
- ? this._sendEventsViaBeacon(batch)
45
- : yield this._sendEventsViaPost(batch);
46
- if (response.success) {
47
- this._emitter({
48
- name: 'logs_flushed',
49
- events: batch.events,
50
- });
51
- return response;
52
- }
53
- return { success: false, statusCode: -1 };
54
- }
55
- catch (error) {
56
- Log_1.Log.warn('Failed to send batch:', error);
57
- return { success: false, statusCode: -1 };
58
- }
59
- });
60
- }
61
- _sendEventsViaPost(batch) {
62
- return __awaiter(this, void 0, void 0, function* () {
63
- var _a;
64
- const result = yield this._network.post(this._getRequestData(batch));
65
- const code = (_a = result === null || result === void 0 ? void 0 : result.code) !== null && _a !== void 0 ? _a : -1;
66
- return { success: code >= 200 && code < 300, statusCode: code };
67
- });
68
- }
69
- _sendEventsViaBeacon(batch) {
70
- const success = this._network.beacon(this._getRequestData(batch));
71
- return {
72
- success,
73
- statusCode: success ? 200 : -1,
74
- };
75
- }
76
- _getRequestData(batch) {
77
- return {
78
- sdkKey: this._sdkKey,
79
- data: {
80
- events: batch.events,
81
- },
82
- urlConfig: this._logEventUrlConfig,
83
- retries: 3,
84
- isCompressable: true,
85
- params: {
86
- [NetworkConfig_1.NetworkParam.EventCount]: String(batch.events.length),
87
- },
88
- headers: {
89
- 'statsig-event-count': String(batch.events.length),
90
- 'statsig-retry-count': String(batch.attempts),
91
- },
92
- credentials: 'same-origin',
93
- };
94
- }
95
- }
96
- exports.EventSender = EventSender;
@@ -1,50 +0,0 @@
1
- import { BatchQueue } from './BatchedEventsQueue';
2
- import { ErrorBoundary } from './ErrorBoundary';
3
- import { NetworkCore } from './NetworkCore';
4
- import { PendingEvents } from './PendingEvents';
5
- import { StatsigClientEmitEventFunc } from './StatsigClientBase';
6
- import { StatsigEventInternal } from './StatsigEvent';
7
- import { LogEventCompressionMode, LoggingEnabledOption, NetworkConfigCommon, StatsigOptionsCommon } from './StatsigOptionsCommon';
8
- import { UrlConfiguration } from './UrlConfiguration';
9
- type PrepareFlushCallBack = () => void;
10
- export declare class FlushCoordinator {
11
- private _flushInterval;
12
- private _batchQueue;
13
- private _pendingEvents;
14
- private _eventSender;
15
- private _onPrepareFlush;
16
- private _errorBoundary;
17
- private _cooldownTimer;
18
- private _maxIntervalTimer;
19
- private _hasRunQuickFlush;
20
- private _currentFlushPromise;
21
- private _creationTime;
22
- private _sdkKey;
23
- private _storageKey;
24
- constructor(batchQueue: BatchQueue, pendingEvents: PendingEvents, onPrepareFlush: PrepareFlushCallBack, sdkKey: string, network: NetworkCore, emitter: StatsigClientEmitEventFunc, logEventUrlConfig: UrlConfiguration, options: StatsigOptionsCommon<NetworkConfigCommon> | null, loggingEnabled: LoggingEnabledOption, errorBoundary: ErrorBoundary);
25
- setLoggingEnabled(loggingEnabled: LoggingEnabledOption): void;
26
- setLogEventCompressionMode(mode: LogEventCompressionMode): void;
27
- startScheduledFlushCycle(): void;
28
- stopScheduledFlushCycle(): void;
29
- addEvent(event: StatsigEventInternal): void;
30
- processManualFlush(): Promise<void>;
31
- processShutdown(): Promise<void>;
32
- private _executeFlush;
33
- checkQuickFlush(): void;
34
- private _attemptScheduledFlush;
35
- processLimitFlush(): void;
36
- private _processLimitFlushInternal;
37
- private _scheduleNextFlush;
38
- private _clearAllTimers;
39
- private _processNextBatch;
40
- private _processOneBatch;
41
- private _prepareQueueForFlush;
42
- containsAtLeastOneFullBatch(): boolean;
43
- convertPendingEventsToBatches(): number;
44
- private _handleFailure;
45
- loadAndRetryShutdownFailedEvents(): Promise<void>;
46
- private _getStorageKey;
47
- private _saveShutdownFailedEventsToStorage;
48
- private _getShutdownFailedEventsFromStorage;
49
- }
50
- export {};
@@ -1,332 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.FlushCoordinator = void 0;
13
- const EventRetryConstants_1 = require("./EventRetryConstants");
14
- const EventSender_1 = require("./EventSender");
15
- const FlushInterval_1 = require("./FlushInterval");
16
- const FlushTypes_1 = require("./FlushTypes");
17
- const Hashing_1 = require("./Hashing");
18
- const Log_1 = require("./Log");
19
- const NetworkCore_1 = require("./NetworkCore");
20
- const StorageProvider_1 = require("./StorageProvider");
21
- class FlushCoordinator {
22
- constructor(batchQueue, pendingEvents, onPrepareFlush,
23
- // For Event Sender
24
- sdkKey, network, emitter, logEventUrlConfig, options, loggingEnabled, errorBoundary) {
25
- this._cooldownTimer = null;
26
- this._maxIntervalTimer = null;
27
- this._hasRunQuickFlush = false;
28
- this._currentFlushPromise = null;
29
- this._creationTime = Date.now();
30
- this._storageKey = null;
31
- this._flushInterval = new FlushInterval_1.FlushInterval();
32
- this._batchQueue = batchQueue;
33
- this._pendingEvents = pendingEvents;
34
- this._onPrepareFlush = onPrepareFlush;
35
- this._errorBoundary = errorBoundary;
36
- this._sdkKey = sdkKey;
37
- this._eventSender = new EventSender_1.EventSender(sdkKey, network, emitter, logEventUrlConfig, options, loggingEnabled);
38
- }
39
- setLoggingEnabled(loggingEnabled) {
40
- this._eventSender.setLoggingEnabled(loggingEnabled);
41
- }
42
- setLogEventCompressionMode(mode) {
43
- this._eventSender.setLogEventCompressionMode(mode);
44
- }
45
- startScheduledFlushCycle() {
46
- this._scheduleNextFlush();
47
- }
48
- stopScheduledFlushCycle() {
49
- this._clearAllTimers();
50
- }
51
- addEvent(event) {
52
- this._pendingEvents.addToPendingEventsQueue(event);
53
- if (this._pendingEvents.hasEventsForFullBatch()) {
54
- this.processLimitFlush();
55
- }
56
- }
57
- processManualFlush() {
58
- return __awaiter(this, void 0, void 0, function* () {
59
- if (this._currentFlushPromise) {
60
- yield this._currentFlushPromise;
61
- }
62
- this._currentFlushPromise = this._executeFlush(FlushTypes_1.FlushType.Manual).finally(() => {
63
- this._currentFlushPromise = null;
64
- this._scheduleNextFlush();
65
- });
66
- return this._currentFlushPromise;
67
- });
68
- }
69
- processShutdown() {
70
- return __awaiter(this, void 0, void 0, function* () {
71
- if (this._currentFlushPromise) {
72
- yield this._currentFlushPromise;
73
- }
74
- this._currentFlushPromise = this._executeFlush(FlushTypes_1.FlushType.Shutdown)
75
- .catch((error) => {
76
- Log_1.Log.error(`Error during shutdown flush: ${error}`);
77
- })
78
- .finally(() => {
79
- this._currentFlushPromise = null;
80
- });
81
- return this._currentFlushPromise;
82
- });
83
- }
84
- _executeFlush(flushType) {
85
- return __awaiter(this, void 0, void 0, function* () {
86
- this._clearAllTimers();
87
- try {
88
- this._prepareQueueForFlush(flushType);
89
- const batches = this._batchQueue.takeAllBatches();
90
- if (batches.length === 0) {
91
- return;
92
- }
93
- yield Promise.all(batches.map((batch) => this._processOneBatch(batch, flushType)));
94
- }
95
- finally {
96
- this._scheduleNextFlush();
97
- }
98
- });
99
- }
100
- checkQuickFlush() {
101
- if (this._hasRunQuickFlush) {
102
- return;
103
- }
104
- if (Date.now() - this._creationTime >
105
- EventRetryConstants_1.EventRetryConstants.QUICK_FLUSH_WINDOW_MS) {
106
- return;
107
- }
108
- this._hasRunQuickFlush = true;
109
- setTimeout(() => {
110
- this.processManualFlush().catch((error) => {
111
- Log_1.Log.warn('Quick flush failed:', error);
112
- });
113
- }, EventRetryConstants_1.EventRetryConstants.QUICK_FLUSH_WINDOW_MS);
114
- }
115
- _attemptScheduledFlush() {
116
- if (this._currentFlushPromise) {
117
- this._scheduleNextFlush();
118
- return;
119
- }
120
- const shouldFlushBySize = this.containsAtLeastOneFullBatch();
121
- const shouldFlushByTime = this._flushInterval.hasReachedMaxInterval();
122
- if (!shouldFlushBySize && !shouldFlushByTime) {
123
- this._scheduleNextFlush();
124
- return;
125
- }
126
- this._flushInterval.markFlushAttempt();
127
- let flushType;
128
- if (shouldFlushBySize) {
129
- flushType = FlushTypes_1.FlushType.ScheduledFullBatch;
130
- }
131
- else {
132
- flushType = FlushTypes_1.FlushType.ScheduledMaxTime;
133
- }
134
- this._currentFlushPromise = this._processNextBatch(flushType)
135
- .then(() => {
136
- //This discards boolean result. Main goal here is to track completion
137
- })
138
- .catch((error) => {
139
- Log_1.Log.error('Error during scheduled flush:', error);
140
- })
141
- .finally(() => {
142
- this._currentFlushPromise = null;
143
- this._scheduleNextFlush();
144
- });
145
- }
146
- processLimitFlush() {
147
- if (!this._flushInterval.hasCompletelyRecoveredFromBackoff()) {
148
- return;
149
- }
150
- if (this._currentFlushPromise) {
151
- return;
152
- }
153
- this._currentFlushPromise = this._processLimitFlushInternal()
154
- .catch((error) => {
155
- Log_1.Log.error(`Error during limit flush`, error);
156
- })
157
- .finally(() => {
158
- this._currentFlushPromise = null;
159
- this._scheduleNextFlush();
160
- });
161
- }
162
- _processLimitFlushInternal() {
163
- return __awaiter(this, void 0, void 0, function* () {
164
- const success = yield this._processNextBatch(FlushTypes_1.FlushType.Limit);
165
- if (!success) {
166
- return;
167
- }
168
- while (this._flushInterval.hasCompletelyRecoveredFromBackoff() &&
169
- this.containsAtLeastOneFullBatch()) {
170
- const success = yield this._processNextBatch(FlushTypes_1.FlushType.Limit);
171
- if (!success) {
172
- break;
173
- }
174
- }
175
- });
176
- }
177
- _scheduleNextFlush() {
178
- this._clearAllTimers();
179
- const cooldownDelay = Math.max(0, this._flushInterval.getTimeUntilNextFlush());
180
- this._cooldownTimer = setTimeout(() => {
181
- this._cooldownTimer = null;
182
- this._attemptScheduledFlush();
183
- }, cooldownDelay);
184
- const maxIntervalDelay = Math.max(0, this._flushInterval.getTimeTillMaxInterval());
185
- this._maxIntervalTimer = setTimeout(() => {
186
- this._maxIntervalTimer = null;
187
- this._attemptScheduledFlush();
188
- }, maxIntervalDelay);
189
- }
190
- _clearAllTimers() {
191
- if (this._cooldownTimer !== null) {
192
- clearTimeout(this._cooldownTimer);
193
- this._cooldownTimer = null;
194
- }
195
- if (this._maxIntervalTimer !== null) {
196
- clearTimeout(this._maxIntervalTimer);
197
- this._maxIntervalTimer = null;
198
- }
199
- }
200
- _processNextBatch(flushType) {
201
- return __awaiter(this, void 0, void 0, function* () {
202
- this._prepareQueueForFlush(flushType);
203
- const batch = this._batchQueue.takeNextBatch();
204
- if (!batch) {
205
- return false;
206
- }
207
- return this._processOneBatch(batch, flushType);
208
- });
209
- }
210
- _processOneBatch(batch, flushType) {
211
- return __awaiter(this, void 0, void 0, function* () {
212
- const result = yield this._eventSender.sendBatch(batch);
213
- if (result.success) {
214
- this._flushInterval.adjustForSuccess();
215
- return true;
216
- }
217
- this._flushInterval.adjustForFailure();
218
- this._handleFailure(batch, flushType, result.statusCode);
219
- return false;
220
- });
221
- }
222
- _prepareQueueForFlush(flushType) {
223
- this._onPrepareFlush();
224
- const droppedCount = this.convertPendingEventsToBatches();
225
- if (droppedCount > 0) {
226
- Log_1.Log.warn(`Dropped ${droppedCount} events`);
227
- this._errorBoundary.logDroppedEvents(droppedCount, `Batch queue limit reached`, {
228
- loggingInterval: this._flushInterval.getCurrentIntervalMs(),
229
- batchSize: this._batchQueue.batchSize(),
230
- maxPendingBatches: EventRetryConstants_1.EventRetryConstants.MAX_PENDING_BATCHES,
231
- flushType: flushType,
232
- });
233
- }
234
- }
235
- containsAtLeastOneFullBatch() {
236
- return (this._pendingEvents.hasEventsForFullBatch() ||
237
- this._batchQueue.hasFullBatch());
238
- }
239
- convertPendingEventsToBatches() {
240
- if (this._pendingEvents.isEmpty()) {
241
- return 0;
242
- }
243
- const allEvents = this._pendingEvents.takeAll();
244
- return this._batchQueue.createBatches(allEvents);
245
- }
246
- _handleFailure(batch, flushType, statusCode) {
247
- if (flushType === FlushTypes_1.FlushType.Shutdown) {
248
- Log_1.Log.warn(`${flushType} flush failed during shutdown. ` +
249
- `${batch.events.length} event(s) will be saved to storage for retry in next session.`);
250
- this._saveShutdownFailedEventsToStorage(batch.events);
251
- this._errorBoundary.logEventRequestFailure(batch.events.length, `flush failed during shutdown - saved to storage`, flushType, statusCode);
252
- return;
253
- }
254
- if (!NetworkCore_1.RETRYABLE_CODES.has(statusCode)) {
255
- Log_1.Log.warn(`${flushType} flush failed after ${batch.attempts} attempt(s). ` +
256
- `${batch.events.length} event(s) will be dropped. Non-retryable error: ${statusCode}`);
257
- this._errorBoundary.logEventRequestFailure(batch.events.length, `non-retryable error`, flushType, statusCode);
258
- return;
259
- }
260
- if (batch.attempts >= EventRetryConstants_1.EventRetryConstants.MAX_RETRY_ATTEMPTS) {
261
- Log_1.Log.warn(`${flushType} flush failed after ${batch.attempts} attempt(s). ` +
262
- `${batch.events.length} event(s) will be dropped.`);
263
- this._errorBoundary.logEventRequestFailure(batch.events.length, `max retry attempts exceeded`, flushType, statusCode);
264
- return;
265
- }
266
- batch.incrementAttempts();
267
- const droppedCount = this._batchQueue.requeueBatch(batch);
268
- if (droppedCount > 0) {
269
- Log_1.Log.warn(`Failed to requeue batch : dropped ${droppedCount} events due to full queue`);
270
- this._errorBoundary.logDroppedEvents(droppedCount, `Batch queue limit reached`, {
271
- loggingInterval: this._flushInterval.getCurrentIntervalMs(),
272
- batchSize: this._batchQueue.batchSize(),
273
- maxPendingBatches: EventRetryConstants_1.EventRetryConstants.MAX_PENDING_BATCHES,
274
- flushType: flushType,
275
- });
276
- }
277
- }
278
- loadAndRetryShutdownFailedEvents() {
279
- return __awaiter(this, void 0, void 0, function* () {
280
- const storageKey = this._getStorageKey();
281
- try {
282
- const events = this._getShutdownFailedEventsFromStorage(storageKey);
283
- if (events.length === 0) {
284
- return;
285
- }
286
- Log_1.Log.debug(`Loading ${events.length} failed shutdown event(s) from storage for retry`);
287
- StorageProvider_1.Storage.removeItem(storageKey);
288
- events.forEach((event) => {
289
- this.addEvent(event);
290
- });
291
- yield this.processManualFlush();
292
- }
293
- catch (error) {
294
- Log_1.Log.warn('Failed to load and retry failed shutdown events:', error);
295
- }
296
- });
297
- }
298
- _getStorageKey() {
299
- if (!this._storageKey) {
300
- this._storageKey = `statsig.failed_shutdown_events.${(0, Hashing_1._DJB2)(this._sdkKey)}`;
301
- }
302
- return this._storageKey;
303
- }
304
- _saveShutdownFailedEventsToStorage(events) {
305
- const storageKey = this._getStorageKey();
306
- try {
307
- const existingEvents = this._getShutdownFailedEventsFromStorage(storageKey);
308
- let allEvents = [...existingEvents, ...events];
309
- if (allEvents.length > EventRetryConstants_1.EventRetryConstants.MAX_LOCAL_STORAGE) {
310
- allEvents = allEvents.slice(-EventRetryConstants_1.EventRetryConstants.MAX_LOCAL_STORAGE);
311
- }
312
- (0, StorageProvider_1._setObjectInStorage)(storageKey, allEvents);
313
- Log_1.Log.debug(`Saved ${events.length} failed shutdown event(s) to storage (total stored: ${allEvents.length})`);
314
- }
315
- catch (error) {
316
- Log_1.Log.warn('Unable to save failed shutdown events to storage:', error);
317
- }
318
- }
319
- _getShutdownFailedEventsFromStorage(storageKey) {
320
- try {
321
- const events = (0, StorageProvider_1._getObjectFromStorage)(storageKey);
322
- if (Array.isArray(events)) {
323
- return events;
324
- }
325
- return [];
326
- }
327
- catch (_a) {
328
- return [];
329
- }
330
- }
331
- }
332
- exports.FlushCoordinator = FlushCoordinator;
@@ -1,13 +0,0 @@
1
- export declare class FlushInterval {
2
- private _currentIntervalMs;
3
- private _lastFlushAttemptTime;
4
- getCurrentIntervalMs(): number;
5
- markFlushAttempt(): void;
6
- getTimeSinceLastAttempt(): number;
7
- hasReachedMaxInterval(): boolean;
8
- getTimeTillMaxInterval(): number;
9
- hasCompletelyRecoveredFromBackoff(): boolean;
10
- adjustForSuccess(): void;
11
- adjustForFailure(): void;
12
- getTimeUntilNextFlush(): number;
13
- }
@@ -1,44 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FlushInterval = void 0;
4
- const MIN_FLUSH_INTERVAL_MS = 1000;
5
- const MAX_FLUSH_INTERVAL_MS = 60000;
6
- class FlushInterval {
7
- constructor() {
8
- this._currentIntervalMs = MIN_FLUSH_INTERVAL_MS;
9
- this._lastFlushAttemptTime = Date.now();
10
- }
11
- getCurrentIntervalMs() {
12
- return this._currentIntervalMs;
13
- }
14
- markFlushAttempt() {
15
- this._lastFlushAttemptTime = Date.now();
16
- }
17
- getTimeSinceLastAttempt() {
18
- return Date.now() - this._lastFlushAttemptTime;
19
- }
20
- hasReachedMaxInterval() {
21
- return this.getTimeSinceLastAttempt() >= MAX_FLUSH_INTERVAL_MS;
22
- }
23
- getTimeTillMaxInterval() {
24
- return MAX_FLUSH_INTERVAL_MS - this.getTimeSinceLastAttempt();
25
- }
26
- hasCompletelyRecoveredFromBackoff() {
27
- return this._currentIntervalMs <= MIN_FLUSH_INTERVAL_MS;
28
- }
29
- adjustForSuccess() {
30
- const current = this._currentIntervalMs;
31
- if (current === MIN_FLUSH_INTERVAL_MS) {
32
- return;
33
- }
34
- this._currentIntervalMs = Math.max(MIN_FLUSH_INTERVAL_MS, Math.floor(current / 2));
35
- }
36
- adjustForFailure() {
37
- const current = this._currentIntervalMs;
38
- this._currentIntervalMs = Math.min(MAX_FLUSH_INTERVAL_MS, current * 2);
39
- }
40
- getTimeUntilNextFlush() {
41
- return this.getCurrentIntervalMs() - this.getTimeSinceLastAttempt();
42
- }
43
- }
44
- exports.FlushInterval = FlushInterval;
@@ -1,7 +0,0 @@
1
- export declare enum FlushType {
2
- ScheduledMaxTime = "scheduled:max_time",
3
- ScheduledFullBatch = "scheduled:full_batch",
4
- Limit = "limit",
5
- Manual = "manual",
6
- Shutdown = "shutdown"
7
- }
package/src/FlushTypes.js DELETED
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FlushType = void 0;
4
- /* eslint-disable no-restricted-syntax */
5
- var FlushType;
6
- (function (FlushType) {
7
- FlushType["ScheduledMaxTime"] = "scheduled:max_time";
8
- FlushType["ScheduledFullBatch"] = "scheduled:full_batch";
9
- FlushType["Limit"] = "limit";
10
- FlushType["Manual"] = "manual";
11
- FlushType["Shutdown"] = "shutdown";
12
- })(FlushType || (exports.FlushType = FlushType = {}));