Merge pull request #402 from myl7/improve-traverse

This commit is contained in:
Spencer Woo
2022-02-11 15:15:52 +08:00
committed by GitHub
+86 -57
View File
@@ -159,72 +159,101 @@ export async function downloadTreelikeMultipleFiles({
downloadBlob({ blob: b, name: folder ? folder + '.zip' : 'download.zip' }) downloadBlob({ blob: b, name: folder ? folder + '.zip' : 'download.zip' })
} }
interface TraverseItem {
path: string
meta: any
isFolder: boolean
error?: { status: number; message: string }
}
/** /**
* One-shot concurrent BFS file traversing for the folder. * One-shot concurrent top-down file traversing for the folder.
* Due to react hook limit, we cannot reuse SWR utils for recursive actions. * Due to react hook limit, we cannot reuse SWR utils for recursive actions.
* We will directly fetch API and arrange responses instead. * We will directly fetch API and arrange responses instead.
* In folder tree, we visit folders with same level concurrently. * In folder tree, we visit folders top-down as concurrently as possible.
* Every time we visit a folder, we fetch and return meta of all its children. * Every time we visit a folder, we fetch and return meta of all its children.
* @param path Folder to be traversed * If folders have pagination, partically retrieved items are not returned immediately,
* @returns Array of items representing folders and files of traversed folder in BFS order and excluding root folder. * but after all children of the folder have been successfully retrieved.
* Due to BFS, folder items are ALWAYS in front of its children items. * If an error occurred in paginated fetching, all children will be dropped.
* @param path Folder to be traversed. The path should be cleaned in advance.
* @returns Array of items representing folders and files of traversed folder top-down and excluding root folder.
* Due to top-down, Folder items are ALWAYS in front of its children items.
* Error key in the item will contain the error when there is a handleable error. * Error key in the item will contain the error when there is a handleable error.
*/ */
export async function* traverseFolder(path: string): AsyncGenerator< export async function* traverseFolder(path: string): AsyncGenerator<TraverseItem, void, undefined> {
{
path: string
meta: any
isFolder: boolean
error?: { status: number; message: string }
},
void,
undefined
> {
const hashedToken = getStoredToken(path) const hashedToken = getStoredToken(path)
let folderPaths = [path]
while (folderPaths.length > 0) { // Generate the task passed to Promise.race to request a folder
const itemLists = await Promise.all( const genTask = async (i: number, path: string, next?: string) => {
folderPaths.map(fp => return {
(async fp => { i,
let data: any path,
try { data: await fetcher(
data = await fetcher(`/api?path=${fp}`, hashedToken ?? undefined) next ? `/api?path=${path}&next=${next}` : `/api?path=${path}`,
} catch (error: any) { hashedToken ?? undefined
// 4xx errors are identified as handleable errors ).catch(error => ({ i, path, error })),
if (Math.floor(error.status / 100) === 4) { }
return { }
path: fp,
isFolder: true,
error: { status: error.status, message: error.message.error },
}
} else {
throw error
}
}
if (data && data.folder) { // Pool containing Promises of folder requests
return data.folder.value.map((c: any) => { let pool = [genTask(0, path)]
const p = `${fp === '/' ? '' : fp}/${encodeURIComponent(c.name)}`
return { path: p, meta: c, isFolder: Boolean(c.folder) }
})
} else {
throw new Error('Path is not folder')
}
})(fp)
)
)
const items = itemLists.flat() as { // Map as item buffer for folders with pagination
path: string const buf: { [k: string]: TraverseItem[] } = {}
meta: any
isFolder: boolean // filter(() => true) removes gaps in the array
error?: { status: number; message: string } while (pool.filter(() => true).length > 0) {
}[] let info: { i: number; path: string; data: any }
yield* items try {
folderPaths = items info = await Promise.race(pool.filter(() => true))
.filter(({ error }) => !error) } catch (error: any) {
.filter(i => i.isFolder) const { i, path, error: innerError } = error
.map(i => i.path) // 4xx errors are identified as handleable errors
if (Math.floor(innerError.status / 100) === 4) {
delete pool[i]
yield {
path,
meta: {},
isFolder: true,
error: { status: innerError.status, message: innerError.message.error },
}
continue
} else {
throw error
}
}
const { i, path, data } = info
if (!data || !data.folder) {
throw new Error('Path is not folder')
}
delete pool[i]
const items = data.folder.value.map((c: any) => {
const p = `${path === '/' ? '' : path}/${encodeURIComponent(c.name)}`
return { path: p, meta: c, isFolder: Boolean(c.folder) }
}) as TraverseItem[]
if (data.next) {
buf[path] = (buf[path] ?? []).concat(items)
// Append next page task to the pool at the end
const i = pool.length
pool[i] = genTask(i, path, data.next)
} else {
const allItems = (buf[path] ?? []).concat(items)
if (buf[path]) {
delete buf[path]
}
allItems
.filter(item => item.isFolder)
.forEach(item => {
// Append new folder tasks to the pool at the end
const i = pool.length
pool[i] = genTask(i, item.path)
})
yield* allItems
}
} }
} }