@fluidframework/driver-web-cache 0.58.2000-58133

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.
Files changed (62) hide show
  1. package/.eslintrc.js +19 -0
  2. package/LICENSE +21 -0
  3. package/README.md +56 -0
  4. package/api-extractor.json +4 -0
  5. package/dist/FluidCache.d.ts +39 -0
  6. package/dist/FluidCache.d.ts.map +1 -0
  7. package/dist/FluidCache.js +159 -0
  8. package/dist/FluidCache.js.map +1 -0
  9. package/dist/FluidCacheIndexedDb.d.ts +65 -0
  10. package/dist/FluidCacheIndexedDb.d.ts.map +1 -0
  11. package/dist/FluidCacheIndexedDb.js +65 -0
  12. package/dist/FluidCacheIndexedDb.js.map +1 -0
  13. package/dist/fluidCacheTelemetry.d.ts +19 -0
  14. package/dist/fluidCacheTelemetry.d.ts.map +1 -0
  15. package/dist/fluidCacheTelemetry.js +7 -0
  16. package/dist/fluidCacheTelemetry.js.map +1 -0
  17. package/dist/index.d.ts +7 -0
  18. package/dist/index.d.ts.map +1 -0
  19. package/dist/index.js +21 -0
  20. package/dist/index.js.map +1 -0
  21. package/dist/packageVersion.d.ts +9 -0
  22. package/dist/packageVersion.d.ts.map +1 -0
  23. package/dist/packageVersion.js +12 -0
  24. package/dist/packageVersion.js.map +1 -0
  25. package/dist/scheduleIdleTask.d.ts +22 -0
  26. package/dist/scheduleIdleTask.d.ts.map +1 -0
  27. package/dist/scheduleIdleTask.js +80 -0
  28. package/dist/scheduleIdleTask.js.map +1 -0
  29. package/jest.config.js +12 -0
  30. package/lib/FluidCache.d.ts +39 -0
  31. package/lib/FluidCache.d.ts.map +1 -0
  32. package/lib/FluidCache.js +155 -0
  33. package/lib/FluidCache.js.map +1 -0
  34. package/lib/FluidCacheIndexedDb.d.ts +65 -0
  35. package/lib/FluidCacheIndexedDb.d.ts.map +1 -0
  36. package/lib/FluidCacheIndexedDb.js +59 -0
  37. package/lib/FluidCacheIndexedDb.js.map +1 -0
  38. package/lib/fluidCacheTelemetry.d.ts +19 -0
  39. package/lib/fluidCacheTelemetry.d.ts.map +1 -0
  40. package/lib/fluidCacheTelemetry.js +6 -0
  41. package/lib/fluidCacheTelemetry.js.map +1 -0
  42. package/lib/index.d.ts +7 -0
  43. package/lib/index.d.ts.map +1 -0
  44. package/lib/index.js +7 -0
  45. package/lib/index.js.map +1 -0
  46. package/lib/packageVersion.d.ts +9 -0
  47. package/lib/packageVersion.d.ts.map +1 -0
  48. package/lib/packageVersion.js +9 -0
  49. package/lib/packageVersion.js.map +1 -0
  50. package/lib/scheduleIdleTask.d.ts +22 -0
  51. package/lib/scheduleIdleTask.d.ts.map +1 -0
  52. package/lib/scheduleIdleTask.js +76 -0
  53. package/lib/scheduleIdleTask.js.map +1 -0
  54. package/package.json +67 -0
  55. package/src/FluidCache.ts +276 -0
  56. package/src/FluidCacheIndexedDb.ts +155 -0
  57. package/src/fluidCacheTelemetry.ts +21 -0
  58. package/src/index.ts +7 -0
  59. package/src/packageVersion.ts +9 -0
  60. package/src/scheduleIdleTask.ts +119 -0
  61. package/tsconfig.esnext.json +7 -0
  62. package/tsconfig.json +15 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scheduleIdleTask.d.ts","sourceRoot":"","sources":["../src/scheduleIdleTask.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QACZ,mBAAmB,EACjB,CAAC,CACC,QAAQ,EAAE,CAAC,QAAQ,EAAE;YACjB,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC;YAC7B,aAAa,EAAE,MAAM,MAAM,CAAC;SAC/B,KAAK,IAAI,EACV,IAAI,CAAC,EAAE;YACH,OAAO,EAAE,MAAM,CAAC;SACnB,KACA,MAAM,CAAC,GACV,SAAS,CAAC;QACZ,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC;KAC9D;CACJ;AAaD;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,IAAI,QAMhD"}
@@ -0,0 +1,80 @@
1
+ "use strict";
2
+ /*!
3
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
4
+ * Licensed under the MIT License.
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.scheduleIdleTask = void 0;
8
+ // A set of tasks that still have to be run
9
+ let taskQueue = [];
10
+ // Set to true when we have a pending idle task scheduled
11
+ let idleTaskScheduled = false;
12
+ /**
13
+ * A function that schedules a non critical task to be run when the browser has cycles available
14
+ * @param task - The task to be executed
15
+ * @param options - Optional configuration for the task execution
16
+ */
17
+ function scheduleIdleTask(task) {
18
+ taskQueue.push({
19
+ task,
20
+ });
21
+ ensureIdleCallback();
22
+ }
23
+ exports.scheduleIdleTask = scheduleIdleTask;
24
+ /**
25
+ * Ensures an idle callback has been scheduled for the remaining tasks
26
+ */
27
+ function ensureIdleCallback() {
28
+ if (!idleTaskScheduled) {
29
+ // Exception added when eslint rule was added, this should be revisited when modifying this code
30
+ if (window.requestIdleCallback) {
31
+ window.requestIdleCallback(idleTaskCallback);
32
+ }
33
+ else {
34
+ const deadline = Date.now() + 50;
35
+ window.setTimeout(() => idleTaskCallback({
36
+ timeRemaining: () => Math.max(deadline - Date.now(), 0),
37
+ didTimeout: false,
38
+ }), 0);
39
+ }
40
+ idleTaskScheduled = true;
41
+ }
42
+ }
43
+ /**
44
+ * Runs tasks from the task queue
45
+ * @param filter - An optional function that will be called for each task to see if it should run.
46
+ * Returns false for tasks that should not run. If omitted all tasks run.
47
+ * @param shouldContinueRunning - An optional function that will be called to determine if
48
+ * we have enough time to continue running tasks. If omitted, we don't stop running tasks.
49
+ */
50
+ function runTasks(filter, shouldContinueRunning) {
51
+ // The next value for the task queue
52
+ const newTaskQueue = [];
53
+ for (let index = 0; index < taskQueue.length; index += 1) {
54
+ if (shouldContinueRunning && !shouldContinueRunning()) {
55
+ // Add the tasks we didn't get to to the end of the new task queue
56
+ newTaskQueue.push(...taskQueue.slice(index));
57
+ break;
58
+ }
59
+ const taskQueueItem = taskQueue[index];
60
+ if (filter && !filter(taskQueueItem)) {
61
+ newTaskQueue.push(taskQueueItem);
62
+ }
63
+ else {
64
+ taskQueueItem.task();
65
+ }
66
+ }
67
+ taskQueue = newTaskQueue;
68
+ }
69
+ // Runs all the tasks in the task queue
70
+ function idleTaskCallback(deadline) {
71
+ // Minimum time that must be available on deadline to run any more tasks
72
+ const minTaskTime = 10;
73
+ runTasks(undefined, () => deadline.timeRemaining() > minTaskTime);
74
+ idleTaskScheduled = false;
75
+ // If we didn't run through the entire queue, schedule another idle callback
76
+ if (taskQueue.length > 0) {
77
+ ensureIdleCallback();
78
+ }
79
+ }
80
+ //# sourceMappingURL=scheduleIdleTask.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scheduleIdleTask.js","sourceRoot":"","sources":["../src/scheduleIdleTask.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AA0BH,2CAA2C;AAC3C,IAAI,SAAS,GAAoB,EAAE,CAAC;AAEpC,yDAAyD;AACzD,IAAI,iBAAiB,GAAG,KAAK,CAAC;AAE9B;;;;GAIG;AACH,SAAgB,gBAAgB,CAAC,IAAgB;IAC7C,SAAS,CAAC,IAAI,CAAC;QACX,IAAI;KACP,CAAC,CAAC;IAEH,kBAAkB,EAAE,CAAC;AACzB,CAAC;AAND,4CAMC;AAED;;GAEG;AACH,SAAS,kBAAkB;IACvB,IAAI,CAAC,iBAAiB,EAAE;QACpB,gGAAgG;QAChG,IAAI,MAAM,CAAC,mBAAmB,EAAE;YAC5B,MAAM,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,CAAC;SAChD;aAAM;YACH,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;YACjC,MAAM,CAAC,UAAU,CACb,GAAG,EAAE,CACD,gBAAgB,CAAC;gBACb,aAAa,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC;gBACvD,UAAU,EAAE,KAAK;aACpB,CAAC,EACN,CAAC,CACJ,CAAC;SACL;QACD,iBAAiB,GAAG,IAAI,CAAC;KAC5B;AACL,CAAC;AAED;;;;;;GAMG;AACH,SAAS,QAAQ,CACb,MAAkD,EAClD,qBAAqC;IAErC,oCAAoC;IACpC,MAAM,YAAY,GAAoB,EAAE,CAAC;IAEzC,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC,MAAM,EAAE,KAAK,IAAI,CAAC,EAAE;QACtD,IAAI,qBAAqB,IAAI,CAAC,qBAAqB,EAAE,EAAE;YACnD,kEAAkE;YAClE,YAAY,CAAC,IAAI,CAAC,GAAG,SAAS,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC;YAC7C,MAAM;SACT;QAED,MAAM,aAAa,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC;QAEvC,IAAI,MAAM,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;YAClC,YAAY,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;SACpC;aAAM;YACH,aAAa,CAAC,IAAI,EAAE,CAAC;SACxB;KACJ;IAED,SAAS,GAAG,YAAY,CAAC;AAC7B,CAAC;AAED,uCAAuC;AACvC,SAAS,gBAAgB,CAAC,QAGzB;IACG,wEAAwE;IACxE,MAAM,WAAW,GAAG,EAAE,CAAC;IACvB,QAAQ,CAAC,SAAS,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,aAAa,EAAE,GAAG,WAAW,CAAC,CAAC;IAClE,iBAAiB,GAAG,KAAK,CAAC;IAE1B,4EAA4E;IAC5E,IAAI,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE;QACtB,kBAAkB,EAAE,CAAC;KACxB;AACL,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n// Older versions of Typescript considered this API experimental and not in Typescript included types.\n// This can be removed when FF updates to Typescript 4.4 or later\ndeclare global {\n interface Window {\n requestIdleCallback:\n | ((\n callback: (deadline: {\n readonly didTimeout: boolean;\n timeRemaining: () => number;\n }) => void,\n opts?: {\n timeout: number;\n }\n ) => number)\n | undefined;\n cancelIdleCallback: ((handle: number) => void) | undefined;\n }\n}\n\ninterface TaskQueueItem {\n /** The task to run */\n task: () => void;\n}\n\n// A set of tasks that still have to be run\nlet taskQueue: TaskQueueItem[] = [];\n\n// Set to true when we have a pending idle task scheduled\nlet idleTaskScheduled = false;\n\n/**\n * A function that schedules a non critical task to be run when the browser has cycles available\n * @param task - The task to be executed\n * @param options - Optional configuration for the task execution\n */\nexport function scheduleIdleTask(task: () => void) {\n taskQueue.push({\n task,\n });\n\n ensureIdleCallback();\n}\n\n/**\n * Ensures an idle callback has been scheduled for the remaining tasks\n */\nfunction ensureIdleCallback() {\n if (!idleTaskScheduled) {\n // Exception added when eslint rule was added, this should be revisited when modifying this code\n if (window.requestIdleCallback) {\n window.requestIdleCallback(idleTaskCallback);\n } else {\n const deadline = Date.now() + 50;\n window.setTimeout(\n () =>\n idleTaskCallback({\n timeRemaining: () => Math.max(deadline - Date.now(), 0),\n didTimeout: false,\n }),\n 0,\n );\n }\n idleTaskScheduled = true;\n }\n}\n\n/**\n * Runs tasks from the task queue\n * @param filter - An optional function that will be called for each task to see if it should run.\n * Returns false for tasks that should not run. If omitted all tasks run.\n * @param shouldContinueRunning - An optional function that will be called to determine if\n * we have enough time to continue running tasks. If omitted, we don't stop running tasks.\n */\nfunction runTasks(\n filter?: (taskQueueItem: TaskQueueItem) => boolean,\n shouldContinueRunning?: () => boolean,\n) {\n // The next value for the task queue\n const newTaskQueue: TaskQueueItem[] = [];\n\n for (let index = 0; index < taskQueue.length; index += 1) {\n if (shouldContinueRunning && !shouldContinueRunning()) {\n // Add the tasks we didn't get to to the end of the new task queue\n newTaskQueue.push(...taskQueue.slice(index));\n break;\n }\n\n const taskQueueItem = taskQueue[index];\n\n if (filter && !filter(taskQueueItem)) {\n newTaskQueue.push(taskQueueItem);\n } else {\n taskQueueItem.task();\n }\n }\n\n taskQueue = newTaskQueue;\n}\n\n// Runs all the tasks in the task queue\nfunction idleTaskCallback(deadline: {\n timeRemaining: () => number;\n readonly didTimeout: boolean;\n}) {\n // Minimum time that must be available on deadline to run any more tasks\n const minTaskTime = 10;\n runTasks(undefined, () => deadline.timeRemaining() > minTaskTime);\n idleTaskScheduled = false;\n\n // If we didn't run through the entire queue, schedule another idle callback\n if (taskQueue.length > 0) {\n ensureIdleCallback();\n }\n}\n"]}
package/jest.config.js ADDED
@@ -0,0 +1,12 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+
6
+ module.exports = {
7
+ roots: ["<rootDir>/dist"],
8
+ testEnvironment: "jsdom",
9
+ testMatch: ["**/?(*.)+(spec|test).[j]s"],
10
+ testPathIgnorePatterns: ["/node_modules/"],
11
+ verbose: true,
12
+ };
@@ -0,0 +1,39 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ import { IPersistedCache, ICacheEntry, IFileEntry } from "@fluidframework/odsp-driver-definitions";
6
+ import { ITelemetryBaseLogger } from "@fluidframework/common-definitions";
7
+ export interface FluidCacheConfig {
8
+ /**
9
+ * A string to specify what partition of the cache you wish to use (e.g. a user id).
10
+ * Null can be used to explicity indicate no partitioning, and has been chosen
11
+ * vs undefined so that it is clear this is an intentional choice by the caller.
12
+ * A null value should only be used when the host can ensure that the cache is not able
13
+ * to be shared with multiple users.
14
+ */
15
+ partitionKey: string | null;
16
+ /**
17
+ * A logger that can be used to get insight into cache performance and errors
18
+ */
19
+ logger?: ITelemetryBaseLogger;
20
+ /**
21
+ * A value in milliseconds that determines the maximum age of a cache entry to return.
22
+ * If an entry exists in the cache, but is older than this value, the cached value will not be returned.
23
+ */
24
+ maxCacheItemAge: number;
25
+ }
26
+ /**
27
+ * A cache that can be used by the Fluid ODSP driver to cache data for faster performance
28
+ */
29
+ export declare class FluidCache implements IPersistedCache {
30
+ private readonly logger;
31
+ private readonly partitionKey;
32
+ private readonly maxCacheItemAge;
33
+ constructor(config: FluidCacheConfig);
34
+ removeEntries(file: IFileEntry): Promise<void>;
35
+ get(cacheEntry: ICacheEntry): Promise<any>;
36
+ private getItemFromCache;
37
+ put(entry: ICacheEntry, value: any): Promise<void>;
38
+ }
39
+ //# sourceMappingURL=FluidCache.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FluidCache.d.ts","sourceRoot":"","sources":["../src/FluidCache.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACH,eAAe,EACf,WAAW,EACX,UAAU,EACb,MAAM,yCAAyC,CAAC;AACjD,OAAO,EACH,oBAAoB,EAEvB,MAAM,oCAAoC,CAAC;AAoB5C,MAAM,WAAW,gBAAgB;IAC7B;;;;;;OAMG;IAEH,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;OAEG;IACH,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAE9B;;;OAGG;IACH,eAAe,EAAE,MAAM,CAAC;CAC3B;AAED;;GAEG;AACH,qBAAa,UAAW,YAAW,eAAe;IAC9C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAmB;IAE1C,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAgB;IAE7C,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAS;gBAE7B,MAAM,EAAE,gBAAgB;IAiEvB,aAAa,CAAC,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;IA2B9C,GAAG,CAAC,UAAU,EAAE,WAAW,GAAG,OAAO,CAAC,GAAG,CAAC;YAiBzC,gBAAgB;IAsEjB,GAAG,CAAC,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC;CA8BlE"}
@@ -0,0 +1,155 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ import { ChildLogger } from "@fluidframework/telemetry-utils";
6
+ import { scheduleIdleTask } from "./scheduleIdleTask";
7
+ import { getFluidCacheIndexedDbInstance, FluidDriverObjectStoreName, getKeyForCacheEntry, } from "./FluidCacheIndexedDb";
8
+ /**
9
+ * A cache that can be used by the Fluid ODSP driver to cache data for faster performance
10
+ */
11
+ export class FluidCache {
12
+ constructor(config) {
13
+ this.logger = ChildLogger.create(config.logger);
14
+ this.partitionKey = config.partitionKey;
15
+ this.maxCacheItemAge = config.maxCacheItemAge;
16
+ scheduleIdleTask(async () => {
17
+ // Log how much storage space is currently being used by indexed db.
18
+ // NOTE: This API is not supported in all browsers and it doesn't let you see the size of a specific DB.
19
+ // Exception added when eslint rule was added, this should be revisited when modifying this code
20
+ if (navigator.storage && navigator.storage.estimate) {
21
+ const estimate = await navigator.storage.estimate();
22
+ // Some browsers have a usageDetails property that will tell you
23
+ // more detailed information on how the storage is being used
24
+ let indexedDBSize;
25
+ if ("usageDetails" in estimate) {
26
+ indexedDBSize = estimate
27
+ .usageDetails.indexedDB;
28
+ }
29
+ this.logger.sendTelemetryEvent({
30
+ eventName: "FluidCacheStorageInfo" /* FluidCacheStorageInfo */,
31
+ subCategory: "FluidCache" /* FluidCache */,
32
+ quota: estimate.quota,
33
+ usage: estimate.usage,
34
+ indexedDBSize,
35
+ });
36
+ }
37
+ });
38
+ scheduleIdleTask(async () => {
39
+ // Delete entries that have not been accessed recently to clean up space
40
+ try {
41
+ const db = await getFluidCacheIndexedDbInstance(this.logger);
42
+ const transaction = db.transaction(FluidDriverObjectStoreName, "readwrite");
43
+ const index = transaction.store.index("lastAccessTimeMs");
44
+ // Get items that have not been accessed in 4 weeks
45
+ const keysToDelete = await index.getAllKeys(IDBKeyRange.upperBound(new Date().getTime() - 4 * 7 * 24 * 60 * 60 * 1000));
46
+ await Promise.all(keysToDelete.map((key) => transaction.store.delete(key)));
47
+ await transaction.done;
48
+ }
49
+ catch (error) {
50
+ this.logger.sendErrorEvent({
51
+ eventName: "FluidCacheDeleteOldEntriesError" /* FluidCacheDeleteOldEntriesError */,
52
+ }, error);
53
+ }
54
+ });
55
+ }
56
+ async removeEntries(file) {
57
+ try {
58
+ const db = await getFluidCacheIndexedDbInstance(this.logger);
59
+ const transaction = db.transaction(FluidDriverObjectStoreName, "readwrite");
60
+ const index = transaction.store.index("fileId");
61
+ const keysToDelete = await index.getAllKeys(file.docId);
62
+ await Promise.all(keysToDelete.map((key) => transaction.store.delete(key)));
63
+ await transaction.done;
64
+ }
65
+ catch (error) {
66
+ this.logger.sendErrorEvent({
67
+ eventName: "FluidCacheDeleteOldEntriesError" /* FluidCacheDeleteOldEntriesError */,
68
+ }, error);
69
+ }
70
+ }
71
+ async get(cacheEntry) {
72
+ const startTime = performance.now();
73
+ const cachedItem = await this.getItemFromCache(cacheEntry);
74
+ this.logger.sendPerformanceEvent({
75
+ eventName: "FluidCacheAccess",
76
+ cacheHit: cachedItem !== undefined,
77
+ type: cacheEntry.type,
78
+ duration: performance.now() - startTime,
79
+ });
80
+ // Value will contain metadata like the expiry time, we just want to return the object we were asked to cache
81
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-return
82
+ return cachedItem === null || cachedItem === void 0 ? void 0 : cachedItem.cachedObject;
83
+ }
84
+ async getItemFromCache(cacheEntry) {
85
+ try {
86
+ const key = getKeyForCacheEntry(cacheEntry);
87
+ const db = await getFluidCacheIndexedDbInstance(this.logger);
88
+ const value = await db.get(FluidDriverObjectStoreName, key);
89
+ if (!value) {
90
+ return undefined;
91
+ }
92
+ // If the data does not come from the same partition, don't return it
93
+ if (value.partitionKey !== this.partitionKey) {
94
+ this.logger.sendTelemetryEvent({
95
+ eventName: "FluidCachePartitionKeyMismatch" /* FluidCachePartitionKeyMismatch */,
96
+ subCategory: "FluidCache" /* FluidCache */,
97
+ });
98
+ return undefined;
99
+ }
100
+ const currentTime = new Date().getTime();
101
+ // If too much time has passed since this cache entry was used, we will also return undefined
102
+ if (currentTime - value.createdTimeMs > this.maxCacheItemAge) {
103
+ return undefined;
104
+ }
105
+ const transaction = db.transaction(FluidDriverObjectStoreName, "readwrite");
106
+ // We don't want to block the get return of this function on updating the last accessed time
107
+ // We catch this promise because there is no user bad if this is rejected.
108
+ transaction.store
109
+ .get(key)
110
+ .then(async (valueToUpdate) => {
111
+ // This value in the database could have been updated concurrently by other tabs/iframes
112
+ // since we first read it. Only update the last accessed time if the current value in the
113
+ // DB was the same one we returned.
114
+ if (valueToUpdate !== undefined &&
115
+ valueToUpdate.createdTimeMs === value.createdTimeMs &&
116
+ (valueToUpdate.lastAccessTimeMs === undefined ||
117
+ valueToUpdate.lastAccessTimeMs < currentTime)) {
118
+ await transaction.store.put(Object.assign(Object.assign({}, valueToUpdate), { lastAccessTimeMs: currentTime }), key);
119
+ }
120
+ await transaction.done;
121
+ db.close();
122
+ })
123
+ .catch(() => { });
124
+ return value;
125
+ }
126
+ catch (error) {
127
+ // We can fail to open the db for a variety of reasons,
128
+ // such as the database version having upgraded underneath us. Return undefined in this case
129
+ this.logger.sendErrorEvent({ eventName: "FluidCacheGetError" /* FluidCacheGetError */ }, error);
130
+ return undefined;
131
+ }
132
+ }
133
+ async put(entry, value) {
134
+ try {
135
+ const db = await getFluidCacheIndexedDbInstance(this.logger);
136
+ const currentTime = new Date().getTime();
137
+ await db.put(FluidDriverObjectStoreName, {
138
+ cachedObject: value,
139
+ fileId: entry.file.docId,
140
+ type: entry.type,
141
+ cacheItemId: entry.key,
142
+ partitionKey: this.partitionKey,
143
+ createdTimeMs: currentTime,
144
+ lastAccessTimeMs: currentTime,
145
+ }, getKeyForCacheEntry(entry));
146
+ db.close();
147
+ }
148
+ catch (error) {
149
+ // We can fail to open the db for a variety of reasons,
150
+ // such as the database version having upgraded underneath us
151
+ this.logger.sendErrorEvent({ eventName: "FluidCachePutError" /* FluidCachePutError */ }, error);
152
+ }
153
+ }
154
+ }
155
+ //# sourceMappingURL=FluidCache.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FluidCache.js","sourceRoot":"","sources":["../src/FluidCache.ts"],"names":[],"mappings":"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","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport {\n IPersistedCache,\n ICacheEntry,\n IFileEntry,\n} from \"@fluidframework/odsp-driver-definitions\";\nimport {\n ITelemetryBaseLogger,\n ITelemetryLogger,\n} from \"@fluidframework/common-definitions\";\nimport { ChildLogger } from \"@fluidframework/telemetry-utils\";\nimport { scheduleIdleTask } from \"./scheduleIdleTask\";\nimport {\n getFluidCacheIndexedDbInstance,\n FluidDriverObjectStoreName,\n getKeyForCacheEntry,\n} from \"./FluidCacheIndexedDb\";\nimport {\n FluidCacheErrorEvent,\n FluidCacheEventSubCategories,\n FluidCacheGenericEvent,\n} from \"./fluidCacheTelemetry\";\n\n// Some browsers have a usageDetails property that will tell you more detailed information\n// on how the storage is being used\ninterface StorageQuotaUsageDetails {\n indexedDB: number | undefined;\n}\n\nexport interface FluidCacheConfig {\n /**\n * A string to specify what partition of the cache you wish to use (e.g. a user id).\n * Null can be used to explicity indicate no partitioning, and has been chosen\n * vs undefined so that it is clear this is an intentional choice by the caller.\n * A null value should only be used when the host can ensure that the cache is not able\n * to be shared with multiple users.\n */\n // eslint-disable-next-line @rushstack/no-new-null\n partitionKey: string | null;\n\n /**\n * A logger that can be used to get insight into cache performance and errors\n */\n logger?: ITelemetryBaseLogger;\n\n /**\n * A value in milliseconds that determines the maximum age of a cache entry to return.\n * If an entry exists in the cache, but is older than this value, the cached value will not be returned.\n */\n maxCacheItemAge: number;\n}\n\n/**\n * A cache that can be used by the Fluid ODSP driver to cache data for faster performance\n */\nexport class FluidCache implements IPersistedCache {\n private readonly logger: ITelemetryLogger;\n\n private readonly partitionKey: string | null;\n\n private readonly maxCacheItemAge: number;\n\n constructor(config: FluidCacheConfig) {\n this.logger = ChildLogger.create(config.logger);\n this.partitionKey = config.partitionKey;\n this.maxCacheItemAge = config.maxCacheItemAge;\n\n scheduleIdleTask(async () => {\n // Log how much storage space is currently being used by indexed db.\n // NOTE: This API is not supported in all browsers and it doesn't let you see the size of a specific DB.\n // Exception added when eslint rule was added, this should be revisited when modifying this code\n if (navigator.storage && navigator.storage.estimate) {\n const estimate = await navigator.storage.estimate();\n\n // Some browsers have a usageDetails property that will tell you\n // more detailed information on how the storage is being used\n let indexedDBSize: number | undefined;\n if (\"usageDetails\" in estimate) {\n indexedDBSize = (\n (estimate as any)\n .usageDetails as StorageQuotaUsageDetails\n ).indexedDB;\n }\n\n this.logger.sendTelemetryEvent({\n eventName: FluidCacheGenericEvent.FluidCacheStorageInfo,\n subCategory: FluidCacheEventSubCategories.FluidCache,\n quota: estimate.quota,\n usage: estimate.usage,\n indexedDBSize,\n });\n }\n });\n\n scheduleIdleTask(async () => {\n // Delete entries that have not been accessed recently to clean up space\n try {\n const db = await getFluidCacheIndexedDbInstance(this.logger);\n\n const transaction = db.transaction(\n FluidDriverObjectStoreName,\n \"readwrite\",\n );\n const index = transaction.store.index(\"lastAccessTimeMs\");\n // Get items that have not been accessed in 4 weeks\n const keysToDelete = await index.getAllKeys(\n IDBKeyRange.upperBound(\n new Date().getTime() - 4 * 7 * 24 * 60 * 60 * 1000,\n ),\n );\n\n await Promise.all(\n keysToDelete.map((key) => transaction.store.delete(key)),\n );\n await transaction.done;\n } catch (error: any) {\n this.logger.sendErrorEvent(\n {\n eventName:\n FluidCacheErrorEvent.FluidCacheDeleteOldEntriesError,\n },\n error,\n );\n }\n });\n }\n\n public async removeEntries(file: IFileEntry): Promise<void> {\n try {\n const db = await getFluidCacheIndexedDbInstance(this.logger);\n\n const transaction = db.transaction(\n FluidDriverObjectStoreName,\n \"readwrite\",\n );\n const index = transaction.store.index(\"fileId\");\n\n const keysToDelete = await index.getAllKeys(file.docId);\n\n await Promise.all(\n keysToDelete.map((key) => transaction.store.delete(key)),\n );\n await transaction.done;\n } catch (error: any) {\n this.logger.sendErrorEvent(\n {\n eventName:\n FluidCacheErrorEvent.FluidCacheDeleteOldEntriesError,\n },\n error,\n );\n }\n }\n\n public async get(cacheEntry: ICacheEntry): Promise<any> {\n const startTime = performance.now();\n\n const cachedItem = await this.getItemFromCache(cacheEntry);\n\n this.logger.sendPerformanceEvent({\n eventName: \"FluidCacheAccess\",\n cacheHit: cachedItem !== undefined,\n type: cacheEntry.type,\n duration: performance.now() - startTime,\n });\n\n // Value will contain metadata like the expiry time, we just want to return the object we were asked to cache\n // eslint-disable-next-line @typescript-eslint/no-unsafe-return\n return cachedItem?.cachedObject;\n }\n\n private async getItemFromCache(cacheEntry: ICacheEntry) {\n try {\n const key = getKeyForCacheEntry(cacheEntry);\n\n const db = await getFluidCacheIndexedDbInstance(this.logger);\n\n const value = await db.get(FluidDriverObjectStoreName, key);\n\n if (!value) {\n return undefined;\n }\n\n // If the data does not come from the same partition, don't return it\n if (value.partitionKey !== this.partitionKey) {\n this.logger.sendTelemetryEvent({\n eventName:\n FluidCacheGenericEvent.FluidCachePartitionKeyMismatch,\n subCategory: FluidCacheEventSubCategories.FluidCache,\n });\n\n return undefined;\n }\n\n const currentTime = new Date().getTime();\n\n // If too much time has passed since this cache entry was used, we will also return undefined\n if (currentTime - value.createdTimeMs > this.maxCacheItemAge) {\n return undefined;\n }\n\n const transaction = db.transaction(\n FluidDriverObjectStoreName,\n \"readwrite\",\n );\n // We don't want to block the get return of this function on updating the last accessed time\n // We catch this promise because there is no user bad if this is rejected.\n transaction.store\n .get(key)\n .then(async (valueToUpdate) => {\n // This value in the database could have been updated concurrently by other tabs/iframes\n // since we first read it. Only update the last accessed time if the current value in the\n // DB was the same one we returned.\n if (\n valueToUpdate !== undefined &&\n valueToUpdate.createdTimeMs === value.createdTimeMs &&\n (valueToUpdate.lastAccessTimeMs === undefined ||\n valueToUpdate.lastAccessTimeMs < currentTime)\n ) {\n await transaction.store.put(\n { ...valueToUpdate, lastAccessTimeMs: currentTime },\n key,\n );\n }\n await transaction.done;\n\n db.close();\n })\n .catch(() => { });\n return value;\n } catch (error: any) {\n // We can fail to open the db for a variety of reasons,\n // such as the database version having upgraded underneath us. Return undefined in this case\n this.logger.sendErrorEvent(\n { eventName: FluidCacheErrorEvent.FluidCacheGetError },\n error,\n );\n return undefined;\n }\n }\n\n public async put(entry: ICacheEntry, value: any): Promise<void> {\n try {\n const db = await getFluidCacheIndexedDbInstance(this.logger);\n\n const currentTime = new Date().getTime();\n\n await db.put(\n FluidDriverObjectStoreName,\n {\n cachedObject: value,\n fileId: entry.file.docId,\n type: entry.type,\n cacheItemId: entry.key,\n partitionKey: this.partitionKey,\n createdTimeMs: currentTime,\n lastAccessTimeMs: currentTime,\n },\n getKeyForCacheEntry(entry),\n );\n\n db.close();\n } catch (error: any) {\n // We can fail to open the db for a variety of reasons,\n // such as the database version having upgraded underneath us\n this.logger.sendErrorEvent(\n { eventName: FluidCacheErrorEvent.FluidCachePutError },\n error,\n );\n }\n }\n}\n"]}
@@ -0,0 +1,65 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ import { DBSchema, IDBPDatabase } from "idb";
6
+ import { ICacheEntry } from "@fluidframework/odsp-driver-definitions";
7
+ import { ITelemetryBaseLogger } from "@fluidframework/common-definitions";
8
+ export declare const FluidDriverCacheDBName = "fluidDriverCache";
9
+ export declare const FluidDriverObjectStoreName = "driverStorage.V3";
10
+ export declare const CurrentCacheVersion = 3;
11
+ export declare const oldVersionNameMapping: Partial<{
12
+ [key: number]: string;
13
+ }>;
14
+ export declare function getKeyForCacheEntry(entry: ICacheEntry): string;
15
+ export declare function getFluidCacheIndexedDbInstance(logger?: ITelemetryBaseLogger): Promise<IDBPDatabase<FluidCacheDBSchema>>;
16
+ export declare function deleteFluidCacheIndexDbInstance(): Promise<void>;
17
+ /**
18
+ * Schema for the object store used to cache driver information
19
+ */
20
+ export interface FluidCacheDBSchema extends DBSchema {
21
+ [FluidDriverObjectStoreName]: {
22
+ /**
23
+ * A unique identifier for an item in the cache. It is a combination of file, type, and cacheItemId
24
+ */
25
+ key: string;
26
+ value: {
27
+ /**
28
+ * The identifier of the file associated with the cache entry
29
+ */
30
+ fileId: string;
31
+ /**
32
+ * Describes the type of content being cached, such as snapshot
33
+ */
34
+ type: string;
35
+ /**
36
+ * Files may have multiple cached items associated with them,
37
+ * this property uniquely identifies a specific cache entry for a file.
38
+ * This is not globally unique, but rather a unique id for this file
39
+ */
40
+ cacheItemId: string;
41
+ cachedObject: any;
42
+ /**
43
+ * A string to specify what partition of the cache you wish to use (e.g. a user id).
44
+ * Null can be used to explicity indicate no partitioning.
45
+ */
46
+ partitionKey: string | null;
47
+ /**
48
+ * The time when the cache entry was put into the cache
49
+ */
50
+ createdTimeMs: number;
51
+ /**
52
+ * The last time the cache entry was used.
53
+ * This is initially set to the time the cache entry was created Measured as ms since unix epoch.
54
+ */
55
+ lastAccessTimeMs: number;
56
+ };
57
+ indexes: {
58
+ createdTimeMs: number;
59
+ partitionKey: string;
60
+ lastAccessTimeMs: number;
61
+ fileId: string;
62
+ };
63
+ };
64
+ }
65
+ //# sourceMappingURL=FluidCacheIndexedDb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FluidCacheIndexedDb.d.ts","sourceRoot":"","sources":["../src/FluidCacheIndexedDb.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAU,QAAQ,EAAE,YAAY,EAAY,MAAM,KAAK,CAAC;AAC/D,OAAO,EAAE,WAAW,EAAE,MAAM,yCAAyC,CAAC;AACtE,OAAO,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAK1E,eAAO,MAAM,sBAAsB,qBAAqB,CAAC;AAGzD,eAAO,MAAM,0BAA0B,qBAAqB,CAAC;AAE7D,eAAO,MAAM,mBAAmB,IAAI,CAAC;AAGrC,eAAO,MAAM,qBAAqB,EAAE,OAAO,CAAC;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,CAGpE,CAAC;AAEF,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,WAAW,UAErD;AAED,wBAAgB,8BAA8B,CAC1C,MAAM,CAAC,EAAE,oBAAoB,GAC9B,OAAO,CAAC,YAAY,CAAC,kBAAkB,CAAC,CAAC,CAwD3C;AAID,wBAAgB,+BAA+B,IAAI,OAAO,CAAC,IAAI,CAAC,CAE/D;AAED;;GAEG;AACH,MAAM,WAAW,kBAAmB,SAAQ,QAAQ;IAChD,CAAC,0BAA0B,CAAC,EAAE;QAC1B;;WAEG;QACH,GAAG,EAAE,MAAM,CAAC;QAEZ,KAAK,EAAE;YACH;;eAEG;YACH,MAAM,EAAE,MAAM,CAAC;YAEf;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;YAEb;;;;eAIG;YACH,WAAW,EAAE,MAAM,CAAC;YAKpB,YAAY,EAAE,GAAG,CAAC;YAElB;;;eAGG;YAEH,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;YAE5B;;eAEG;YACH,aAAa,EAAE,MAAM,CAAC;YAEtB;;;eAGG;YACH,gBAAgB,EAAE,MAAM,CAAC;SAC5B,CAAC;QAEF,OAAO,EAAE;YACL,aAAa,EAAE,MAAM,CAAC;YACtB,YAAY,EAAE,MAAM,CAAC;YACrB,gBAAgB,EAAE,MAAM,CAAC;YACzB,MAAM,EAAE,MAAM,CAAC;SAClB,CAAC;KACL,CAAC;CACL"}
@@ -0,0 +1,59 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ import { openDB, deleteDB } from "idb";
6
+ import { ChildLogger } from "@fluidframework/telemetry-utils";
7
+ // The name of the database that we use for caching Fluid info.
8
+ export const FluidDriverCacheDBName = "fluidDriverCache";
9
+ // The name of the object store within the indexed db instance that the driver will use to cache Fluid content.
10
+ export const FluidDriverObjectStoreName = "driverStorage.V3";
11
+ export const CurrentCacheVersion = 3;
12
+ // Note that V1 and V2 were misspelled as "diver", and we need to keep using the misspelling here.
13
+ export const oldVersionNameMapping = {
14
+ 1: "diverStorage",
15
+ 2: "diverStorage.V2",
16
+ };
17
+ export function getKeyForCacheEntry(entry) {
18
+ return `${entry.file.docId}_${entry.type}_${entry.key}`;
19
+ }
20
+ export function getFluidCacheIndexedDbInstance(logger) {
21
+ return new Promise((resolve, reject) => {
22
+ openDB(FluidDriverCacheDBName, CurrentCacheVersion, {
23
+ upgrade: (db, oldVersion) => {
24
+ try {
25
+ // We changed the format of the object store, so we must
26
+ // delete the old stores to create a new one in V3
27
+ const cacheToDelete = oldVersionNameMapping[oldVersion];
28
+ if (cacheToDelete) {
29
+ // We don't include the old object stores in the schema, so we need to
30
+ // use a typecast here to prevent IDB from complaining
31
+ db.deleteObjectStore(cacheToDelete);
32
+ }
33
+ }
34
+ catch (error) {
35
+ // Catch any error done when attempting to delete the older version.
36
+ // If the object does not exist db will throw.
37
+ // We can now assume that the old version is no longer there regardless.
38
+ ChildLogger.create(logger).sendErrorEvent({
39
+ eventName: "FluidCacheDeleteOldDbError" /* FluidCacheDeleteOldDbError */,
40
+ }, error);
41
+ }
42
+ const cacheObjectStore = db.createObjectStore(FluidDriverObjectStoreName);
43
+ cacheObjectStore.createIndex("createdTimeMs", "createdTimeMs");
44
+ cacheObjectStore.createIndex("lastAccessTimeMs", "lastAccessTimeMs");
45
+ cacheObjectStore.createIndex("partitionKey", "partitionKey");
46
+ cacheObjectStore.createIndex("fileId", "fileId");
47
+ },
48
+ blocked: () => {
49
+ reject(new Error("Could not open DB since it is blocked by an older client that has the DB open"));
50
+ },
51
+ }).then(resolve, reject);
52
+ });
53
+ }
54
+ // Deletes the indexed DB instance.
55
+ // Warning this can throw an error in Firefox incognito, where accessing storage is prohibited.
56
+ export function deleteFluidCacheIndexDbInstance() {
57
+ return deleteDB(FluidDriverCacheDBName);
58
+ }
59
+ //# sourceMappingURL=FluidCacheIndexedDb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FluidCacheIndexedDb.js","sourceRoot":"","sources":["../src/FluidCacheIndexedDb.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,MAAM,EAA0B,QAAQ,EAAE,MAAM,KAAK,CAAC;AAG/D,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAG9D,+DAA+D;AAC/D,MAAM,CAAC,MAAM,sBAAsB,GAAG,kBAAkB,CAAC;AAEzD,+GAA+G;AAC/G,MAAM,CAAC,MAAM,0BAA0B,GAAG,kBAAkB,CAAC;AAE7D,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC;AAErC,kGAAkG;AAClG,MAAM,CAAC,MAAM,qBAAqB,GAAuC;IACrE,CAAC,EAAE,cAAc;IACjB,CAAC,EAAE,iBAAiB;CACvB,CAAC;AAEF,MAAM,UAAU,mBAAmB,CAAC,KAAkB;IAClD,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,IAAI,IAAI,KAAK,CAAC,GAAG,EAAE,CAAC;AAC5D,CAAC;AAED,MAAM,UAAU,8BAA8B,CAC1C,MAA6B;IAE7B,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QACnC,MAAM,CACF,sBAAsB,EACtB,mBAAmB,EACnB;YACI,OAAO,EAAE,CAAC,EAAE,EAAE,UAAU,EAAE,EAAE;gBACxB,IAAI;oBACA,wDAAwD;oBACxD,kDAAkD;oBAClD,MAAM,aAAa,GAAG,qBAAqB,CAAC,UAAU,CAAC,CAAC;oBACxD,IAAI,aAAa,EAAE;wBACf,sEAAsE;wBACtE,sDAAsD;wBACtD,EAAE,CAAC,iBAAiB,CAAC,aAAoB,CAAC,CAAC;qBAC9C;iBACJ;gBAAC,OAAO,KAAU,EAAE;oBACjB,oEAAoE;oBACpE,8CAA8C;oBAC9C,wEAAwE;oBACxE,WAAW,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,cAAc,CACrC;wBACI,SAAS,+DAC0C;qBACtD,EACD,KAAK,CACR,CAAC;iBACL;gBAED,MAAM,gBAAgB,GAAG,EAAE,CAAC,iBAAiB,CACzC,0BAA0B,CAC7B,CAAC;gBACF,gBAAgB,CAAC,WAAW,CACxB,eAAe,EACf,eAAe,CAClB,CAAC;gBACF,gBAAgB,CAAC,WAAW,CACxB,kBAAkB,EAClB,kBAAkB,CACrB,CAAC;gBACF,gBAAgB,CAAC,WAAW,CACxB,cAAc,EACd,cAAc,CACjB,CAAC;gBACF,gBAAgB,CAAC,WAAW,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;YACrD,CAAC;YACD,OAAO,EAAE,GAAG,EAAE;gBACV,MAAM,CACF,IAAI,KAAK,CACL,+EAA+E,CAClF,CACJ,CAAC;YACN,CAAC;SACJ,CACJ,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;IAC5B,CAAC,CAAC,CAAC;AACP,CAAC;AAED,mCAAmC;AACnC,+FAA+F;AAC/F,MAAM,UAAU,+BAA+B;IAC3C,OAAO,QAAQ,CAAC,sBAAsB,CAAC,CAAC;AAC5C,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { openDB, DBSchema, IDBPDatabase, deleteDB } from \"idb\";\nimport { ICacheEntry } from \"@fluidframework/odsp-driver-definitions\";\nimport { ITelemetryBaseLogger } from \"@fluidframework/common-definitions\";\nimport { ChildLogger } from \"@fluidframework/telemetry-utils\";\nimport { FluidCacheErrorEvent } from \"./fluidCacheTelemetry\";\n\n// The name of the database that we use for caching Fluid info.\nexport const FluidDriverCacheDBName = \"fluidDriverCache\";\n\n// The name of the object store within the indexed db instance that the driver will use to cache Fluid content.\nexport const FluidDriverObjectStoreName = \"driverStorage.V3\";\n\nexport const CurrentCacheVersion = 3;\n\n// Note that V1 and V2 were misspelled as \"diver\", and we need to keep using the misspelling here.\nexport const oldVersionNameMapping: Partial<{ [key: number]: string }> = {\n 1: \"diverStorage\",\n 2: \"diverStorage.V2\",\n};\n\nexport function getKeyForCacheEntry(entry: ICacheEntry) {\n return `${entry.file.docId}_${entry.type}_${entry.key}`;\n}\n\nexport function getFluidCacheIndexedDbInstance(\n logger?: ITelemetryBaseLogger,\n): Promise<IDBPDatabase<FluidCacheDBSchema>> {\n return new Promise((resolve, reject) => {\n openDB<FluidCacheDBSchema>(\n FluidDriverCacheDBName,\n CurrentCacheVersion,\n {\n upgrade: (db, oldVersion) => {\n try {\n // We changed the format of the object store, so we must\n // delete the old stores to create a new one in V3\n const cacheToDelete = oldVersionNameMapping[oldVersion];\n if (cacheToDelete) {\n // We don't include the old object stores in the schema, so we need to\n // use a typecast here to prevent IDB from complaining\n db.deleteObjectStore(cacheToDelete as any);\n }\n } catch (error: any) {\n // Catch any error done when attempting to delete the older version.\n // If the object does not exist db will throw.\n // We can now assume that the old version is no longer there regardless.\n ChildLogger.create(logger).sendErrorEvent(\n {\n eventName:\n FluidCacheErrorEvent.FluidCacheDeleteOldDbError,\n },\n error,\n );\n }\n\n const cacheObjectStore = db.createObjectStore(\n FluidDriverObjectStoreName,\n );\n cacheObjectStore.createIndex(\n \"createdTimeMs\",\n \"createdTimeMs\",\n );\n cacheObjectStore.createIndex(\n \"lastAccessTimeMs\",\n \"lastAccessTimeMs\",\n );\n cacheObjectStore.createIndex(\n \"partitionKey\",\n \"partitionKey\",\n );\n cacheObjectStore.createIndex(\"fileId\", \"fileId\");\n },\n blocked: () => {\n reject(\n new Error(\n \"Could not open DB since it is blocked by an older client that has the DB open\",\n ),\n );\n },\n },\n ).then(resolve, reject);\n });\n}\n\n// Deletes the indexed DB instance.\n// Warning this can throw an error in Firefox incognito, where accessing storage is prohibited.\nexport function deleteFluidCacheIndexDbInstance(): Promise<void> {\n return deleteDB(FluidDriverCacheDBName);\n}\n\n/**\n * Schema for the object store used to cache driver information\n */\nexport interface FluidCacheDBSchema extends DBSchema {\n [FluidDriverObjectStoreName]: {\n /**\n * A unique identifier for an item in the cache. It is a combination of file, type, and cacheItemId\n */\n key: string;\n\n value: {\n /**\n * The identifier of the file associated with the cache entry\n */\n fileId: string;\n\n /**\n * Describes the type of content being cached, such as snapshot\n */\n type: string;\n\n /**\n * Files may have multiple cached items associated with them,\n * this property uniquely identifies a specific cache entry for a file.\n * This is not globally unique, but rather a unique id for this file\n */\n cacheItemId: string;\n\n /*\n * Opaque object that the driver asks us to store in a cache for performance reasons\n */\n cachedObject: any;\n\n /**\n * A string to specify what partition of the cache you wish to use (e.g. a user id).\n * Null can be used to explicity indicate no partitioning.\n */\n // eslint-disable-next-line @rushstack/no-new-null\n partitionKey: string | null;\n\n /**\n * The time when the cache entry was put into the cache\n */\n createdTimeMs: number;\n\n /**\n * The last time the cache entry was used.\n * This is initially set to the time the cache entry was created Measured as ms since unix epoch.\n */\n lastAccessTimeMs: number;\n };\n\n indexes: {\n createdTimeMs: number;\n partitionKey: string;\n lastAccessTimeMs: number;\n fileId: string;\n };\n };\n}\n"]}
@@ -0,0 +1,19 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ export declare const enum FluidCacheGenericEvent {
6
+ "FluidCacheStorageInfo" = "FluidCacheStorageInfo",
7
+ "FluidCachePartitionKeyMismatch" = "FluidCachePartitionKeyMismatch"
8
+ }
9
+ export declare const enum FluidCacheErrorEvent {
10
+ "FluidCacheDeleteOldEntriesError" = "FluidCacheDeleteOldEntriesError",
11
+ "FluidCacheGetError" = "FluidCacheGetError",
12
+ "FluidCachePutError" = "FluidCachePutError",
13
+ "FluidCacheUpdateUsageError" = "FluidCacheUpdateUsageError",
14
+ "FluidCacheDeleteOldDbError" = "FluidCacheDeleteOldDbError"
15
+ }
16
+ export declare const enum FluidCacheEventSubCategories {
17
+ "FluidCache" = "FluidCache"
18
+ }
19
+ //# sourceMappingURL=fluidCacheTelemetry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fluidCacheTelemetry.d.ts","sourceRoot":"","sources":["../src/fluidCacheTelemetry.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,0BAAkB,sBAAsB;IACpC,uBAAuB,0BAA0B;IACjD,gCAAgC,mCAAmC;CACtE;AAED,0BAAkB,oBAAoB;IAClC,iCAAiC,oCAAoC;IACrE,oBAAoB,uBAAuB;IAC3C,oBAAoB,uBAAuB;IAC3C,4BAA4B,+BAA+B;IAC3D,4BAA4B,+BAA+B;CAC9D;AAED,0BAAkB,4BAA4B;IAC1C,YAAY,eAAe;CAC9B"}
@@ -0,0 +1,6 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ export {};
6
+ //# sourceMappingURL=fluidCacheTelemetry.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fluidCacheTelemetry.js","sourceRoot":"","sources":["../src/fluidCacheTelemetry.ts"],"names":[],"mappings":"AAAA;;;GAGG","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport const enum FluidCacheGenericEvent {\n \"FluidCacheStorageInfo\" = \"FluidCacheStorageInfo\",\n \"FluidCachePartitionKeyMismatch\" = \"FluidCachePartitionKeyMismatch\",\n}\n\nexport const enum FluidCacheErrorEvent {\n \"FluidCacheDeleteOldEntriesError\" = \"FluidCacheDeleteOldEntriesError\",\n \"FluidCacheGetError\" = \"FluidCacheGetError\",\n \"FluidCachePutError\" = \"FluidCachePutError\",\n \"FluidCacheUpdateUsageError\" = \"FluidCacheUpdateUsageError\",\n \"FluidCacheDeleteOldDbError\" = \"FluidCacheDeleteOldDbError\",\n}\n\nexport const enum FluidCacheEventSubCategories {\n \"FluidCache\" = \"FluidCache\",\n}\n"]}
package/lib/index.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ export * from "./FluidCache";
6
+ export { deleteFluidCacheIndexDbInstance } from "./FluidCacheIndexedDb";
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,+BAA+B,EAAE,MAAM,uBAAuB,CAAC"}
package/lib/index.js ADDED
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ export * from "./FluidCache";
6
+ export { deleteFluidCacheIndexDbInstance } from "./FluidCacheIndexedDb";
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,+BAA+B,EAAE,MAAM,uBAAuB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"./FluidCache\";\nexport { deleteFluidCacheIndexDbInstance } from \"./FluidCacheIndexedDb\";\n"]}
@@ -0,0 +1,9 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
6
+ */
7
+ export declare const pkgName = "@fluidframework/driver-web-cache";
8
+ export declare const pkgVersion = "0.58.2000-58133";
9
+ //# sourceMappingURL=packageVersion.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"packageVersion.d.ts","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,eAAO,MAAM,OAAO,qCAAqC,CAAC;AAC1D,eAAO,MAAM,UAAU,oBAAoB,CAAC"}
@@ -0,0 +1,9 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
6
+ */
7
+ export const pkgName = "@fluidframework/driver-web-cache";
8
+ export const pkgVersion = "0.58.2000-58133";
9
+ //# sourceMappingURL=packageVersion.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,kCAAkC,CAAC;AAC1D,MAAM,CAAC,MAAM,UAAU,GAAG,iBAAiB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/driver-web-cache\";\nexport const pkgVersion = \"0.58.2000-58133\";\n"]}
@@ -0,0 +1,22 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ declare global {
6
+ interface Window {
7
+ requestIdleCallback: ((callback: (deadline: {
8
+ readonly didTimeout: boolean;
9
+ timeRemaining: () => number;
10
+ }) => void, opts?: {
11
+ timeout: number;
12
+ }) => number) | undefined;
13
+ cancelIdleCallback: ((handle: number) => void) | undefined;
14
+ }
15
+ }
16
+ /**
17
+ * A function that schedules a non critical task to be run when the browser has cycles available
18
+ * @param task - The task to be executed
19
+ * @param options - Optional configuration for the task execution
20
+ */
21
+ export declare function scheduleIdleTask(task: () => void): void;
22
+ //# sourceMappingURL=scheduleIdleTask.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scheduleIdleTask.d.ts","sourceRoot":"","sources":["../src/scheduleIdleTask.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QACZ,mBAAmB,EACjB,CAAC,CACC,QAAQ,EAAE,CAAC,QAAQ,EAAE;YACjB,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC;YAC7B,aAAa,EAAE,MAAM,MAAM,CAAC;SAC/B,KAAK,IAAI,EACV,IAAI,CAAC,EAAE;YACH,OAAO,EAAE,MAAM,CAAC;SACnB,KACA,MAAM,CAAC,GACV,SAAS,CAAC;QACZ,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC;KAC9D;CACJ;AAaD;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,IAAI,QAMhD"}