Skip to content

Commit 1da19af

Browse files
Importing Cached From Map Hotfix (#1098)
2 parents 0991fd5 + aa95dcd commit 1da19af

File tree

4 files changed

+60
-278
lines changed

4 files changed

+60
-278
lines changed

fission/src/Synthesis.tsx

-7
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ import ImportMirabufPanel from "@/ui/panels/mirabuf/ImportMirabufPanel.tsx"
4545
import Skybox from "./ui/components/Skybox.tsx"
4646
import ChooseInputSchemePanel from "./ui/panels/configuring/ChooseInputSchemePanel.tsx"
4747
import ProgressNotifications from "./ui/components/ProgressNotification.tsx"
48-
import ConfigureRobotBrainPanel from "./ui/panels/configuring/ConfigureRobotBrainPanel.tsx"
4948
import SceneOverlay from "./ui/components/SceneOverlay.tsx"
5049

5150
import WPILibWSWorker from "@/systems/simulation/wpilib_brain/WPILibWSWorker.ts?worker"
@@ -225,12 +224,6 @@ const initialPanels: ReactElement[] = [
225224
<ScoreboardPanel key="scoreboard" panelId="scoreboard" openLocation="top" sidePadding={8} />,
226225
<ImportMirabufPanel key="import-mirabuf" panelId="import-mirabuf" />,
227226
<PokerPanel key="poker" panelId="poker" />,
228-
<ConfigureRobotBrainPanel
229-
key="config-robot-brain"
230-
panelId="config-robot-brain"
231-
openLocation="right"
232-
sidePadding={8}
233-
/>,
234227
<ChooseInputSchemePanel key="choose-scheme" panelId="choose-scheme" />,
235228
<WSViewPanel key="ws-view" panelId="ws-view" />,
236229
<DebugPanel key="debug" panelId="debug" />,

fission/src/mirabuf/MirabufLoader.ts

+49-22
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ export type MirabufCacheID = string
1010

1111
export interface MirabufCacheInfo {
1212
id: MirabufCacheID
13-
cacheKey: string
1413
miraType: MiraType
14+
cacheKey: string
15+
buffer?: ArrayBuffer
1516
name?: string
1617
thumbnailStorageID?: string
1718
}
@@ -29,10 +30,10 @@ const root = await navigator.storage.getDirectory()
2930
const robotFolderHandle = await root.getDirectoryHandle(robotsDirName, { create: true })
3031
const fieldFolderHandle = await root.getDirectoryHandle(fieldsDirName, { create: true })
3132

32-
export const backUpRobots: Map<MirabufCacheID, ArrayBuffer> = new Map<MirabufCacheID, ArrayBuffer>()
33-
export const backUpFields: Map<MirabufCacheID, ArrayBuffer> = new Map<MirabufCacheID, ArrayBuffer>()
33+
export let backUpRobots: MapCache = {}
34+
export let backUpFields: MapCache = {}
3435

35-
const canOPFS = await (async () => {
36+
export const canOPFS = await (async () => {
3637
try {
3738
if (robotFolderHandle.name == robotsDirName) {
3839
robotFolderHandle.entries
@@ -52,6 +53,21 @@ const canOPFS = await (async () => {
5253
}
5354
} catch (e) {
5455
console.log(`No access to OPFS`)
56+
57+
// Copy-pasted from RemoveAll()
58+
for await (const key of robotFolderHandle.keys()) {
59+
robotFolderHandle.removeEntry(key)
60+
}
61+
for await (const key of fieldFolderHandle.keys()) {
62+
fieldFolderHandle.removeEntry(key)
63+
}
64+
65+
window.localStorage.setItem(robotsDirName, "{}")
66+
window.localStorage.setItem(fieldsDirName, "{}")
67+
68+
backUpRobots = {}
69+
backUpFields = {}
70+
5571
return false
5672
}
5773
})()
@@ -75,11 +91,10 @@ class MirabufCachingService {
7591
*/
7692
public static GetCacheMap(miraType: MiraType): MapCache {
7793
if (
78-
(window.localStorage.getItem(MIRABUF_LOCALSTORAGE_GENERATION_KEY) ?? "") == MIRABUF_LOCALSTORAGE_GENERATION
94+
(window.localStorage.getItem(MIRABUF_LOCALSTORAGE_GENERATION_KEY) ?? "") != MIRABUF_LOCALSTORAGE_GENERATION
7995
) {
8096
window.localStorage.setItem(MIRABUF_LOCALSTORAGE_GENERATION_KEY, MIRABUF_LOCALSTORAGE_GENERATION)
81-
window.localStorage.setItem(robotsDirName, "{}")
82-
window.localStorage.setItem(fieldsDirName, "{}")
97+
this.RemoveAll()
8398
return {}
8499
}
85100

@@ -188,16 +203,19 @@ class MirabufCachingService {
188203
try {
189204
const map: MapCache = this.GetCacheMap(miraType)
190205
const id = map[key].id
206+
const _buffer = miraType == MiraType.ROBOT ? backUpRobots[id].buffer : backUpFields[id].buffer
191207
const _name = map[key].name
192208
const _thumbnailStorageID = map[key].thumbnailStorageID
193209
const info: MirabufCacheInfo = {
194210
id: id,
195211
cacheKey: key,
196212
miraType: miraType,
213+
buffer: _buffer,
197214
name: name ?? _name,
198215
thumbnailStorageID: thumbnailStorageID ?? _thumbnailStorageID,
199216
}
200217
map[key] = info
218+
miraType == MiraType.ROBOT ? (backUpRobots[id] = info) : (backUpFields[id] = info)
201219
window.localStorage.setItem(miraType == MiraType.ROBOT ? robotsDirName : fieldsDirName, JSON.stringify(map))
202220
return true
203221
} catch (e) {
@@ -243,7 +261,7 @@ class MirabufCachingService {
243261
// Get buffer from hashMap. If not in hashMap, check OPFS. Otherwise, buff is undefined
244262
const cache = miraType == MiraType.ROBOT ? backUpRobots : backUpFields
245263
const buff =
246-
cache.get(id) ??
264+
cache[id]?.buffer ??
247265
(await (async () => {
248266
const fileHandle = canOPFS
249267
? await (miraType == MiraType.ROBOT ? robotFolderHandle : fieldFolderHandle).getFileHandle(id, {
@@ -299,7 +317,7 @@ class MirabufCachingService {
299317

300318
const backUpCache = miraType == MiraType.ROBOT ? backUpRobots : backUpFields
301319
if (backUpCache) {
302-
backUpCache.delete(id)
320+
delete backUpCache[id]
303321
}
304322

305323
World.AnalyticsSystem?.Event("Cache Remove", {
@@ -318,18 +336,20 @@ class MirabufCachingService {
318336
* Removes all Mirabuf files from the caching services. Mostly for debugging purposes.
319337
*/
320338
public static async RemoveAll() {
321-
for await (const key of robotFolderHandle.keys()) {
322-
robotFolderHandle.removeEntry(key)
323-
}
324-
for await (const key of fieldFolderHandle.keys()) {
325-
fieldFolderHandle.removeEntry(key)
339+
if (canOPFS) {
340+
for await (const key of robotFolderHandle.keys()) {
341+
robotFolderHandle.removeEntry(key)
342+
}
343+
for await (const key of fieldFolderHandle.keys()) {
344+
fieldFolderHandle.removeEntry(key)
345+
}
326346
}
327347

328-
window.localStorage.removeItem(robotsDirName)
329-
window.localStorage.removeItem(fieldsDirName)
348+
window.localStorage.setItem(robotsDirName, "{}")
349+
window.localStorage.setItem(fieldsDirName, "{}")
330350

331-
backUpRobots.clear()
332-
backUpFields.clear()
351+
backUpRobots = {}
352+
backUpFields = {}
333353
}
334354

335355
// Optional name for when assembly is being decoded anyway like in CacheAndGetLocal()
@@ -339,19 +359,19 @@ class MirabufCachingService {
339359
miraType?: MiraType,
340360
name?: string
341361
): Promise<MirabufCacheInfo | undefined> {
342-
const backupID = Date.now().toString()
343362
try {
363+
const backupID = Date.now().toString()
344364
if (!miraType) {
345-
console.log("Double loading")
365+
console.debug("Double loading")
346366
miraType = this.AssemblyFromBuffer(miraBuff).dynamic ? MiraType.ROBOT : MiraType.FIELD
347367
}
348368

349369
// Local cache map
350370
const map: MapCache = this.GetCacheMap(miraType)
351371
const info: MirabufCacheInfo = {
352372
id: backupID,
353-
cacheKey: key,
354373
miraType: miraType,
374+
cacheKey: key,
355375
name: name,
356376
}
357377
map[key] = info
@@ -377,7 +397,14 @@ class MirabufCachingService {
377397

378398
// Store in hash
379399
const cache = miraType == MiraType.ROBOT ? backUpRobots : backUpFields
380-
cache.set(backupID, miraBuff)
400+
const mapInfo: MirabufCacheInfo = {
401+
id: backupID,
402+
miraType: miraType,
403+
cacheKey: key,
404+
buffer: miraBuff,
405+
name: name,
406+
}
407+
cache[backupID] = mapInfo
381408

382409
return info
383410
} catch (e) {

0 commit comments

Comments
 (0)