-
Notifications
You must be signed in to change notification settings - Fork 37
Use a task queue to ensure code blocks are executed sequentially #510
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
DavisVaughan
merged 10 commits into
quarto-dev:main
from
DavisVaughan:fix/execute-blocks
Sep 9, 2024
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
8a11f88
Only `await` on the last code block
DavisVaughan 5ecff24
Introduce a task queue for running `blocks`
DavisVaughan 407cb66
Abstract out a `callback`
DavisVaughan 826cb1d
Move the queue to its own file
DavisVaughan 285bcfa
Simplify API and add ability to have multiple queues
DavisVaughan 4f62422
`await` calls to `run()`
DavisVaughan 8decce4
Switch to more official PQueue
DavisVaughan a18dd6d
Rename to `ExecuteQueue`
DavisVaughan b3124ef
Tweak docs
DavisVaughan 037e957
Delete `queue.ts`
DavisVaughan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* execute-queue.ts | ||
* | ||
* Copyright (C) 2024 by Posit Software, PBC | ||
* | ||
* Unless you have received this program directly from Posit Software pursuant | ||
* to the terms of a commercial license agreement with Posit Software, then | ||
* this program is licensed to you under the terms of version 3 of the | ||
* GNU Affero General Public License. This program is distributed WITHOUT | ||
* ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT, | ||
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the | ||
* AGPL (http://www.gnu.org/licenses/agpl-3.0.txt) for more details. | ||
* | ||
*/ | ||
|
||
import PQueue from 'p-queue'; | ||
|
||
/** | ||
* Language specific execution queue | ||
* | ||
* A singleton class that constructs and manages multiple execution queues, identified by | ||
* their `key` (typically the language name). | ||
*/ | ||
export class ExecuteQueue { | ||
/// Singleton instance | ||
private static _instance: ExecuteQueue; | ||
|
||
/// Maps a `key` to its `queue` | ||
private _queues = new Map<string, PQueue>(); | ||
|
||
/** | ||
* Constructor | ||
* | ||
* Private since we only want one of these. Access using `instance()` instead. | ||
*/ | ||
private constructor() { } | ||
|
||
/** | ||
* Accessor for the singleton instance | ||
* | ||
* Creates it if it doesn't exist. | ||
*/ | ||
static get instance(): ExecuteQueue { | ||
if (!ExecuteQueue._instance) { | ||
// Initialize if we've never accessed it | ||
ExecuteQueue._instance = new ExecuteQueue(); | ||
} | ||
|
||
return ExecuteQueue._instance; | ||
} | ||
|
||
/** | ||
* Add a `callback` for execution on `key`'s task queue | ||
* | ||
* Returns a promise that resolves when the task finishes | ||
*/ | ||
async add(key: string, callback: () => Promise<void>): Promise<void> { | ||
let queue = this._queues.get(key); | ||
|
||
if (queue === undefined) { | ||
// If we've never initialized this key's queue, do so now. | ||
// Limit `concurrency` to 1, because we don't want tasks run out of order. | ||
queue = new PQueue({ concurrency: 1 }); | ||
this._queues.set(key, queue); | ||
} | ||
|
||
return queue.add(callback); | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.