-
Notifications
You must be signed in to change notification settings - Fork 948
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
Backport loadFromKernel nodifications to 8.x #3388
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 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 |
---|---|---|
|
@@ -375,7 +375,7 @@ export abstract class ManagerBase implements IWidgetManager { | |
try { | ||
const initComm = await this._create_comm( | ||
CONTROL_COMM_TARGET, | ||
uuid(), | ||
utils.uuid(), | ||
{}, | ||
{ version: CONTROL_COMM_PROTOCOL_VERSION } | ||
); | ||
|
@@ -386,8 +386,8 @@ export abstract class ManagerBase implements IWidgetManager { | |
|
||
if (data.method !== 'update_states') { | ||
console.warn(` | ||
Unknown ${data.method} message on the Control channel | ||
`); | ||
Unknown ${data.method} message on the Control channel | ||
`); | ||
return; | ||
} | ||
|
||
|
@@ -417,41 +417,75 @@ export abstract class ManagerBase implements IWidgetManager { | |
initComm.close(); | ||
} catch (error) { | ||
console.warn( | ||
'Failed to fetch widgets through the "jupyter.widget.control" comm channel, fallback to slow fetching of widgets. Reason:', | ||
'Failed to fetch ipywidgets through the "jupyter.widget.control" comm channel, fallback to fetching individual model state. Reason:', | ||
error | ||
); | ||
// Fallback to the old implementation for old ipywidgets backend versions (<=7.6) | ||
return this._loadFromKernelSlow(); | ||
// Fall back to the old implementation for old ipywidgets backend versions (ipywidgets<=7.6) | ||
return this._loadFromKernelModels(); | ||
} | ||
|
||
const states: any = data.states; | ||
|
||
// Extract buffer paths | ||
const bufferPaths: any = {}; | ||
for (const bufferPath of data.buffer_paths) { | ||
if (!bufferPaths[bufferPath[0]]) { | ||
bufferPaths[bufferPath[0]] = []; | ||
const bufferGroups: any = {}; | ||
|
||
// Group buffers and buffer paths by widget id | ||
for (let i = 0; i < data.buffer_paths.length; i++) { | ||
const [widget_id, ...path] = data.buffer_paths[i]; | ||
const b = buffers[i]; | ||
if (!bufferPaths[widget_id]) { | ||
bufferPaths[widget_id] = []; | ||
bufferGroups[widget_id] = []; | ||
} | ||
bufferPaths[bufferPath[0]].push(bufferPath.slice(1)); | ||
bufferPaths[widget_id].push(path); | ||
bufferGroups[widget_id].push(b); | ||
} | ||
|
||
// Start creating all widgets | ||
await Promise.all( | ||
// Create comms for all new widgets. | ||
let widget_comms = await Promise.all( | ||
Object.keys(states).map(async (widget_id) => { | ||
let comm = undefined; | ||
let modelPromise = undefined; | ||
try { | ||
const state = states[widget_id]; | ||
const comm = await this._create_comm('jupyter.widget', widget_id); | ||
|
||
// Put binary buffers | ||
if (widget_id in bufferPaths) { | ||
const nBuffers = bufferPaths[widget_id].length; | ||
put_buffers( | ||
state, | ||
bufferPaths[widget_id], | ||
buffers.splice(0, nBuffers) | ||
); | ||
modelPromise = this.get_model(widget_id); | ||
if (modelPromise === undefined) { | ||
comm = await this._create_comm('jupyter.widget', widget_id); | ||
} else { | ||
// For JLab, the promise is rejected, so we have to await to | ||
// find out if it is actually a model. | ||
await modelPromise; | ||
} | ||
|
||
} catch (e) { | ||
// The JLab widget manager will throw an error with this specific error message. | ||
if (e.message !== 'widget model not found') { | ||
throw e; | ||
} | ||
comm = await this._create_comm('jupyter.widget', widget_id); | ||
} | ||
return { widget_id, comm } | ||
}) | ||
) | ||
|
||
await Promise.all(widget_comms.map(async ({ widget_id, comm }) => { | ||
const state = states[widget_id]; | ||
// Put binary buffers | ||
if (widget_id in bufferPaths) { | ||
put_buffers( | ||
state, | ||
bufferPaths[widget_id], | ||
bufferGroups[widget_id] | ||
); | ||
} | ||
try { | ||
|
||
if (comm === undefined) { | ||
// model already exists here | ||
const model = await this.get_model(widget_id); | ||
model!.set_state(state.state); | ||
} else { | ||
// This must be the first await in the code path that | ||
// reaches here so that registering the model promise in | ||
// new_model can register the widget promise before it may | ||
// be required by other widgets. | ||
await this.new_model( | ||
{ | ||
model_name: state.model_name, | ||
|
@@ -462,13 +496,14 @@ export abstract class ManagerBase implements IWidgetManager { | |
}, | ||
state.state | ||
); | ||
} catch (error) { | ||
// Failed to create a widget model, we continue creating other models so that | ||
// other widgets can render | ||
console.error(error); | ||
} | ||
}) | ||
); | ||
|
||
} catch (error) { | ||
// Failed to create a widget model, we continue creating other models so that | ||
// other widgets can render | ||
console.error(error); | ||
} | ||
})); | ||
} | ||
|
||
/** | ||
|
@@ -477,7 +512,7 @@ export abstract class ManagerBase implements IWidgetManager { | |
* | ||
* This is a utility function that can be used in subclasses. | ||
*/ | ||
protected async _loadFromKernelSlow(): Promise<void> { | ||
protected async _loadFromKernelModels(): Promise<void> { | ||
const comm_ids = await this._get_comm_info(); | ||
|
||
// For each comm id that we do not know about, create the comm, and request the state. | ||
|
@@ -507,7 +542,7 @@ export abstract class ManagerBase implements IWidgetManager { | |
|
||
let msg_id = ''; | ||
const info = new PromiseDelegate<Private.ICommUpdateData>(); | ||
comm.on_msg((msg: services.KernelMessage.ICommMsgMsg) => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We lost a type annotation here that we should preserve. |
||
comm.on_msg((msg) => { | ||
if ( | ||
(msg.parent_header as any).msg_id === msg_id && | ||
msg.header.msg_type === 'comm_msg' && | ||
|
This file contains 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 |
---|---|---|
|
@@ -370,11 +370,11 @@ This is implemented in ipywidgets 7.7. | |
|
||
### The `jupyter.widget.control` comm target | ||
|
||
A kernel-side Jupyter widgets library registers a `jupyter.widget.control` comm target that is used for fetching all widgets states through a "one shot" comm message (one for all widget instances). Unlike the `jupyter.widget` comm target, the created comm is global to all widgets, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should ignore the changes to this file in this PR. |
||
A kernel-side Jupyter widgets library may optionally register a `jupyter.widget.control` comm target that is used for fetching all kernel widget state through a single comm message. | ||
|
||
#### State requests: `request_states` | ||
|
||
When a frontend wants to request the full state of a all widgets, the frontend sends a `request_states` message: | ||
When a frontend wants to request the full state of all widgets from the kernel in a single message, the frontend sends a `request_states` message through the `jupyter.widget.control` comm channel: | ||
|
||
``` | ||
{ | ||
|
@@ -385,7 +385,7 @@ When a frontend wants to request the full state of a all widgets, the frontend s | |
} | ||
``` | ||
|
||
The kernel side of the widget should immediately send an `update_states` message with all widgets states: | ||
The kernel handler for the `jupyter.widget.control` comm target should immediately send an `update_states` message with all widgets states: | ||
|
||
``` | ||
{ | ||
|
@@ -401,3 +401,7 @@ The kernel side of the widget should immediately send an `update_states` message | |
} | ||
} | ||
``` | ||
|
||
Comm messages for state synchronization may contain binary buffers. The `data.buffer_paths` value contains a list of 'paths' in the `data.states` object corresponding to the binary buffers. For example, if `data.buffer_paths` is `[['widget-id1', 'x'], ['widget-id2', 'y', 'z', 0]]`, then the first binary buffer is the value of the `data.states['widget-id1']['x']` attribute and the second binary buffer is the value of the `data.states['widget-id2']['y']['z'][0]` state attribute. A path representing a list value (i.e., last index of the path is an integer) will have a `null` placeholder in the list in `data.states`, and a path representing a value for a dictionary key (i.e., last index of the path is a string) will not exist in the dictionary in `data.states`. | ||
|
||
Since the `update_states` message may be very large, it may be dropped in the communication channel (for example, the message may exceed the websocket message limit size). For that reason, we suggest that frontends fall back to other ways to retrieve state from the kernel if they do not get an `update_states` reply in a reasonable amount of time. |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.