|
| 1 | +import { Storage, storage } from 'webextension-polyfill'; |
| 2 | +import StorageArea = Storage.StorageArea; |
| 3 | + |
| 4 | +type MetadataItem = { |
| 5 | + accessTime: number; |
| 6 | +}; |
| 7 | + |
| 8 | +type Metadata = Record<string, MetadataItem>; |
| 9 | + |
| 10 | +const sizeOfChunkToBePurged = 0.1; |
| 11 | + |
| 12 | +const isGetBytesInUsePresent = ( |
| 13 | + storageLocal: StorageArea |
| 14 | +): storageLocal is StorageArea & { getBytesInUse: (keys?: string | string[]) => Promise<number> } => |
| 15 | + 'getBytesInUse' in storageLocal; |
| 16 | + |
| 17 | +export const createPersistentCacheStorage = <T>({ |
| 18 | + fallbackMaxCollectionItemsGuard, |
| 19 | + resourceName, |
| 20 | + quotaInBytes |
| 21 | +}: { |
| 22 | + fallbackMaxCollectionItemsGuard: number; |
| 23 | + resourceName: string; |
| 24 | + quotaInBytes: number; |
| 25 | +}) => { |
| 26 | + const loaded = new Map<string, T>(); |
| 27 | + const metadataKey = `${resourceName}-metadata`; |
| 28 | + const getItemKey = (key: string) => `${resourceName}-item-${key}`; |
| 29 | + |
| 30 | + const getMetadata = async () => { |
| 31 | + const result = await storage.local.get(metadataKey); |
| 32 | + return result[metadataKey] as Metadata; |
| 33 | + }; |
| 34 | + |
| 35 | + const updateAccessTime = async (key: string) => { |
| 36 | + const metadata = await getMetadata(); |
| 37 | + const nextMetadata: Metadata = { |
| 38 | + ...metadata, |
| 39 | + [key]: { |
| 40 | + accessTime: Date.now() |
| 41 | + } |
| 42 | + }; |
| 43 | + await storage.local.set({ [metadataKey]: nextMetadata }); |
| 44 | + }; |
| 45 | + |
| 46 | + const isQuotaExceeded = async () => { |
| 47 | + const metadata = await getMetadata(); |
| 48 | + const allCollectionKeys = [metadataKey, ...Object.keys(metadata)]; |
| 49 | + |
| 50 | + // Polyfill we use does not list the getBytesInUse method but that method exists in chrome API |
| 51 | + if (isGetBytesInUsePresent(storage.local)) { |
| 52 | + const bytesInUse = await storage.local.getBytesInUse(allCollectionKeys); |
| 53 | + return bytesInUse > quotaInBytes; |
| 54 | + } |
| 55 | + |
| 56 | + return allCollectionKeys.length > fallbackMaxCollectionItemsGuard; |
| 57 | + }; |
| 58 | + |
| 59 | + const evict = async () => { |
| 60 | + let metadata = await getMetadata(); |
| 61 | + const mostDatedKeysToPurge = Object.entries(metadata) |
| 62 | + .map(([key, { accessTime }]) => ({ accessTime, key })) |
| 63 | + .sort((a, b) => a.accessTime - b.accessTime) |
| 64 | + .filter((_, index, self) => { |
| 65 | + const numberOfItemsToPurge = Math.abs(self.length * sizeOfChunkToBePurged); |
| 66 | + return index < numberOfItemsToPurge; |
| 67 | + }) |
| 68 | + .map((i) => i.key); |
| 69 | + |
| 70 | + await storage.local.remove(mostDatedKeysToPurge); |
| 71 | + metadata = await getMetadata(); |
| 72 | + for (const key of mostDatedKeysToPurge) { |
| 73 | + delete metadata[key]; |
| 74 | + } |
| 75 | + await storage.local.set({ [metadataKey]: metadata }); |
| 76 | + }; |
| 77 | + |
| 78 | + return { |
| 79 | + async get(key: string) { |
| 80 | + const itemKey = getItemKey(key); |
| 81 | + |
| 82 | + let value = loaded.get(key); |
| 83 | + if (!value) { |
| 84 | + const result = await storage.local.get(itemKey); |
| 85 | + value = result[itemKey]; |
| 86 | + } |
| 87 | + |
| 88 | + if (value) { |
| 89 | + void updateAccessTime(itemKey); |
| 90 | + } |
| 91 | + |
| 92 | + return value; |
| 93 | + }, |
| 94 | + async set(key: string, value: T) { |
| 95 | + const itemKey = getItemKey(key); |
| 96 | + loaded.set(itemKey, value); |
| 97 | + await storage.local.set({ [itemKey]: value }); |
| 98 | + |
| 99 | + void (async () => { |
| 100 | + await updateAccessTime(itemKey); |
| 101 | + if (await isQuotaExceeded()) await evict(); |
| 102 | + })(); |
| 103 | + } |
| 104 | + }; |
| 105 | +}; |
| 106 | + |
| 107 | +export type CreatePersistentCacheStorage = typeof createPersistentCacheStorage; |
0 commit comments