-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
Copy pathmessages.ts
1256 lines (1141 loc) · 32.9 KB
/
messages.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import * as nbformat from '@jupyterlab/nbformat';
import { UUID, JSONObject } from '@lumino/coreutils';
export interface IOptions<T extends Message> {
session: string;
channel: T['channel'];
msgType: T['header']['msg_type'];
content: T['content'];
buffers?: (ArrayBuffer | ArrayBufferView)[];
metadata?: JSONObject;
msgId?: string;
username?: string;
parentHeader?: T['parent_header'];
}
export function createMessage<T extends IClearOutputMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends ICommCloseMsg<'iopub'>>(
options: IOptions<T>
): T;
export function createMessage<T extends ICommCloseMsg<'shell'>>(
options: IOptions<T>
): T;
export function createMessage<T extends ICommInfoReplyMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends ICommInfoRequestMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends ICommMsgMsg<'iopub'>>(
options: IOptions<T>
): T;
export function createMessage<T extends ICommMsgMsg<'shell'>>(
options: IOptions<T>
): T;
export function createMessage<T extends ICommOpenMsg<'iopub'>>(
options: IOptions<T>
): T;
export function createMessage<T extends ICommOpenMsg<'shell'>>(
options: IOptions<T>
): T;
export function createMessage<T extends ICompleteReplyMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends ICompleteRequestMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IDisplayDataMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IErrorMsg>(options: IOptions<T>): T;
export function createMessage<T extends IExecuteInputMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IExecuteReplyMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IExecuteRequestMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IExecuteResultMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IHistoryReplyMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IHistoryRequestMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IInfoReplyMsg>(options: IOptions<T>): T;
export function createMessage<T extends IInfoRequestMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IInputReplyMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IInputRequestMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IInspectReplyMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IInspectRequestMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IIsCompleteReplyMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IIsCompleteRequestMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends IStatusMsg>(options: IOptions<T>): T;
export function createMessage<T extends IStreamMsg>(options: IOptions<T>): T;
export function createMessage<T extends IUpdateDisplayDataMsg>(
options: IOptions<T>
): T;
/**
* @hidden
* #### Notes
* Debug messages are experimental messages that are not in the official
* kernel message specification. As such, this function is *NOT* considered
* part of the public API, and may change without notice.
*/
export function createMessage<T extends IDebugRequestMsg>(
options: IOptions<T>
): T;
/**
* @hidden
* #### Notes
* Debug messages are experimental messages that are not in the official
* kernel message specification. As such, this function is *NOT* considered
* part of the public API, and may change without notice.
*/
export function createMessage<T extends IDebugReplyMsg>(
options: IOptions<T>
): T;
/**
* @hidden
* #### Notes
* Debug messages are experimental messages that are not in the official
* kernel message specification. As such, this function is *NOT* considered
* part of the public API, and may change without notice.
*/
export function createMessage<T extends IDebugEventMsg>(
options: IOptions<T>
): T;
export function createMessage<T extends Message>(options: IOptions<T>): T {
return {
buffers: options.buffers ?? [],
channel: options.channel,
content: options.content,
header: {
date: new Date().toISOString(),
msg_id: options.msgId ?? UUID.uuid4(),
msg_type: options.msgType,
session: options.session,
username: options.username ?? '',
version: '5.2'
},
metadata: options.metadata ?? {},
parent_header: options.parentHeader ?? {}
} as T;
}
/**
* Shell message types.
*/
export type ShellMessageType =
| 'comm_close'
| 'comm_info_reply'
| 'comm_info_request'
| 'comm_msg'
| 'comm_open'
| 'complete_reply'
| 'complete_request'
| 'execute_reply'
| 'execute_request'
| 'history_reply'
| 'history_request'
| 'inspect_reply'
| 'inspect_request'
| 'interrupt_reply'
| 'interrupt_request'
| 'is_complete_reply'
| 'is_complete_request'
| 'kernel_info_reply'
| 'kernel_info_request'
| 'shutdown_reply'
| 'shutdown_request';
/**
* Control message types.
*
* #### Notes
* Debug messages are experimental messages that are not in the official
* kernel message specification. As such, debug message types are *NOT*
* considered part of the public API, and may change without notice.
*/
export type ControlMessageType = 'debug_request' | 'debug_reply';
/**
* IOPub message types.
*
* #### Notes
* Debug messages are experimental messages that are not in the official
* kernel message specification. As such, debug message types are *NOT*
* considered part of the public API, and may change without notice.
*/
export type IOPubMessageType =
| 'clear_output'
| 'comm_close'
| 'comm_msg'
| 'comm_open'
| 'display_data'
| 'error'
| 'execute_input'
| 'execute_result'
| 'status'
| 'stream'
| 'update_display_data'
| 'debug_event';
/**
* Stdin message types.
*/
export type StdinMessageType = 'input_request' | 'input_reply';
/**
* Jupyter message types.
*/
export type MessageType =
| IOPubMessageType
| ShellMessageType
| ControlMessageType
| StdinMessageType;
/**
* The valid Jupyter channel names in a message to a frontend.
*/
export type Channel = 'shell' | 'control' | 'iopub' | 'stdin';
/**
* Kernel message header content.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#general-message-format).
*
* **See also:** [[IMessage]]
*/
export interface IHeader<T extends MessageType = MessageType> {
/**
* ISO 8601 timestamp for when the message is created
*/
date: string;
/**
* Message id, typically UUID, must be unique per message
*/
msg_id: string;
/**
* Message type
*/
msg_type: T;
/**
* Session id, typically UUID, should be unique per session.
*/
session: string;
/**
* The user sending the message
*/
username: string;
/**
* The message protocol version, should be 5.1, 5.2, 5.3, etc.
*/
version: string;
}
/**
* Kernel message specification.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#general-message-format).
*/
export interface IMessage<MSGTYPE extends MessageType = MessageType> {
/**
* An optional list of binary buffers.
*/
buffers?: (ArrayBuffer | ArrayBufferView)[];
/**
* The channel on which the message is transmitted.
*/
channel: Channel;
/**
* The content of the message.
*/
content: Message['content'];
/**
* The message header.
*/
header: IHeader<MSGTYPE>;
/**
* Metadata associated with the message.
*/
metadata: JSONObject;
/**
* The parent message
*/
parent_header: IHeader | {};
}
/**
* A kernel message on the `'shell'` channel.
*/
export interface IShellMessage<T extends ShellMessageType = ShellMessageType>
extends IMessage<T> {
channel: 'shell';
}
/**
* A kernel message on the `'control'` channel.
*/
export interface IControlMessage<
T extends ControlMessageType = ControlMessageType
> extends IMessage<T> {
channel: 'control';
}
/**
* A message type for shell or control messages.
*
* #### Notes
* This convenience is so we can use it as a generic type constraint.
*/
export type IShellControlMessage = IShellMessage | IControlMessage;
/**
* A kernel message on the `'iopub'` channel.
*/
export interface IIOPubMessage<T extends IOPubMessageType = IOPubMessageType>
extends IMessage<T> {
channel: 'iopub';
}
/**
* A kernel message on the `'stdin'` channel.
*/
export interface IStdinMessage<T extends StdinMessageType = StdinMessageType>
extends IMessage<T> {
channel: 'stdin';
}
/**
* Message types.
*
* #### Notes
* Debug messages are experimental messages that are not in the official
* kernel message specification. As such, debug message types are *NOT*
* considered part of the public API, and may change without notice.
*/
export type Message =
| IClearOutputMsg
| ICommCloseMsg<'iopub'>
| ICommCloseMsg<'shell'>
| ICommInfoReplyMsg
| ICommInfoRequestMsg
| ICommMsgMsg<'iopub'>
| ICommMsgMsg<'shell'>
| ICommOpenMsg<'iopub'>
| ICommOpenMsg<'shell'>
| ICompleteReplyMsg
| ICompleteRequestMsg
| IDisplayDataMsg
| IErrorMsg
| IExecuteInputMsg
| IExecuteReplyMsg
| IExecuteRequestMsg
| IExecuteResultMsg
| IHistoryReplyMsg
| IHistoryRequestMsg
| IInfoReplyMsg
| IInfoRequestMsg
| IInputReplyMsg
| IInputRequestMsg
| IInspectReplyMsg
| IInspectRequestMsg
| IIsCompleteReplyMsg
| IIsCompleteRequestMsg
| IStatusMsg
| IStreamMsg
| IUpdateDisplayDataMsg
| IDebugRequestMsg
| IDebugReplyMsg
| IDebugEventMsg;
//////////////////////////////////////////////////
// IOPub Messages
/////////////////////////////////////////////////
/**
* A `'stream'` message on the `'iopub'` channel.
*
* See [Streams](https://jupyter-client.readthedocs.io/en/latest/messaging.html#streams-stdout-stderr-etc).
*/
export interface IStreamMsg extends IIOPubMessage<'stream'> {
content: {
name: 'stdout' | 'stderr';
text: string;
};
}
/**
* Test whether a kernel message is a `'stream'` message.
*/
export function isStreamMsg(msg: IMessage): msg is IStreamMsg {
return msg.header.msg_type === 'stream';
}
/**
* A `'display_data'` message on the `'iopub'` channel.
*
* See [Display data](https://jupyter-client.readthedocs.io/en/latest/messaging.html#display-data).
*/
export interface IDisplayDataMsg extends IIOPubMessage<'display_data'> {
content: {
data: nbformat.IMimeBundle;
metadata: nbformat.OutputMetadata;
transient?: { display_id?: string };
};
}
/**
* Test whether a kernel message is an `'display_data'` message.
*/
export function isDisplayDataMsg(msg: IMessage): msg is IDisplayDataMsg {
return msg.header.msg_type === 'display_data';
}
/**
* An `'update_display_data'` message on the `'iopub'` channel.
*
* See [Update Display data](https://jupyter-client.readthedocs.io/en/latest/messaging.html#update-display-data).
*/
export interface IUpdateDisplayDataMsg
extends IIOPubMessage<'update_display_data'> {
content: IDisplayDataMsg['content'] & {
// display_id is a required field in update_display_data
transient: { display_id: string };
};
}
/**
* Test whether a kernel message is an `'update_display_data'` message.
*/
export function isUpdateDisplayDataMsg(
msg: IMessage
): msg is IUpdateDisplayDataMsg {
return msg.header.msg_type === 'update_display_data';
}
/**
* An `'execute_input'` message on the `'iopub'` channel.
*
* See [Code inputs](https://jupyter-client.readthedocs.io/en/latest/messaging.html#code-inputs).
*/
export interface IExecuteInputMsg extends IIOPubMessage<'execute_input'> {
content: {
code: string;
execution_count: nbformat.ExecutionCount;
};
}
/**
* Test whether a kernel message is an `'execute_input'` message.
*/
export function isExecuteInputMsg(msg: IMessage): msg is IExecuteInputMsg {
return msg.header.msg_type === 'execute_input';
}
/**
* An `'execute_result'` message on the `'iopub'` channel.
*
* See [Execution results](https://jupyter-client.readthedocs.io/en/latest/messaging.html#id4).
*/
export interface IExecuteResultMsg extends IIOPubMessage<'execute_result'> {
content: {
execution_count: nbformat.ExecutionCount;
data: nbformat.IMimeBundle;
metadata: nbformat.OutputMetadata;
transient?: { display_id?: string };
};
}
/**
* Test whether a kernel message is an `'execute_result'` message.
*/
export function isExecuteResultMsg(msg: IMessage): msg is IExecuteResultMsg {
return msg.header.msg_type === 'execute_result';
}
/**
* A `'error'` message on the `'iopub'` channel.
*
* See [Execution errors](https://jupyter-client.readthedocs.io/en/latest/messaging.html#execution-errors).
*/
export interface IErrorMsg extends IIOPubMessage<'error'> {
content: {
ename: string;
evalue: string;
traceback: string[];
};
}
/**
* Test whether a kernel message is an `'error'` message.
*/
export function isErrorMsg(msg: IMessage): msg is IErrorMsg {
return msg.header.msg_type === 'error';
}
/**
* The valid Kernel status states.
*
* #### Notes
* The status states are:
* * `unknown`: The kernel status is unknown, often because the connection
* is disconnected or connecting. This state is determined by the kernel
* connection status.
* * `autorestarting`: The kernel is restarting, initiated by the server.
* This state is set by the services library, not explicitly sent from the
* kernel.
* * `starting`: The kernel is starting
* * `idle`: The kernel has finished processing messages.
* * `busy`: The kernel is currently processing messages.
* * `restarting`: The kernel is restarting. This state is sent by the
* Jupyter server.
* * `dead`: The kernel is dead and will not be restarted. This state is set
* by the Jupyter server and is a final state.
*/
export type Status =
| 'unknown'
| 'starting'
| 'idle'
| 'busy'
| 'restarting'
| 'autorestarting'
| 'dead';
/**
* A `'status'` message on the `'iopub'` channel.
*
* See [Kernel status](https://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-status).
*/
export interface IStatusMsg extends IIOPubMessage<'status'> {
content: {
execution_state: Status;
};
}
/**
* Test whether a kernel message is a `'status'` message.
*/
export function isStatusMsg(msg: IMessage): msg is IStatusMsg {
return msg.header.msg_type === 'status';
}
/**
* A `'clear_output'` message on the `'iopub'` channel.
*
* See [Clear output](https://jupyter-client.readthedocs.io/en/latest/messaging.html#clear-output).
*/
export interface IClearOutputMsg extends IIOPubMessage<'clear_output'> {
content: {
wait: boolean;
};
}
/**
* Test whether a kernel message is a `'clear_output'` message.
*/
export function isClearOutputMsg(msg: IMessage): msg is IClearOutputMsg {
return msg.header.msg_type === 'clear_output';
}
/**
* An experimental `'debug_event'` message on the `'iopub'` channel
*
* @hidden
*
* #### Notes
* Debug messages are experimental messages that are not in the official
* kernel message specification. As such, this is *NOT* considered
* part of the public API, and may change without notice.
*/
export interface IDebugEventMsg extends IIOPubMessage<'debug_event'> {
content: {
seq: number;
type: 'event';
event: string;
body?: any;
};
}
/**
* Test whether a kernel message is an experimental `'debug_event'` message.
*
* @hidden
*
* #### Notes
* Debug messages are experimental messages that are not in the official
* kernel message specification. As such, this is *NOT* considered
* part of the public API, and may change without notice.
*/
export function isDebugEventMsg(msg: IMessage): msg is IDebugEventMsg {
return msg.header.msg_type === 'debug_event';
}
//////////////////////////////////////////////////
// Comm Messages
/////////////////////////////////////////////////
/**
* A `'comm_open'` message on the `'iopub'` channel.
*
* See [Comm open](https://jupyter-client.readthedocs.io/en/latest/messaging.html#opening-a-comm).
*/
export interface ICommOpenMsg<T extends 'shell' | 'iopub' = 'iopub' | 'shell'>
extends IMessage<'comm_open'> {
channel: T;
content: {
comm_id: string;
target_name: string;
data: JSONObject;
target_module?: string;
};
}
/**
* Test whether a kernel message is a `'comm_open'` message.
*/
export function isCommOpenMsg(msg: IMessage): msg is ICommOpenMsg {
return msg.header.msg_type === 'comm_open';
}
/**
* A `'comm_close'` message on the `'iopub'` channel.
*
* See [Comm close](https://jupyter-client.readthedocs.io/en/latest/messaging.html#opening-a-comm).
*/
export interface ICommCloseMsg<T extends 'iopub' | 'shell' = 'iopub' | 'shell'>
extends IMessage<'comm_close'> {
channel: T;
content: {
comm_id: string;
data: JSONObject;
};
}
/**
* Test whether a kernel message is a `'comm_close'` message.
*/
export function isCommCloseMsg(
msg: IMessage
): msg is ICommCloseMsg<'iopub' | 'shell'> {
return msg.header.msg_type === 'comm_close';
}
/**
* A `'comm_msg'` message on the `'iopub'` channel.
*
* See [Comm msg](https://jupyter-client.readthedocs.io/en/latest/messaging.html#opening-a-comm).
*/
export interface ICommMsgMsg<T extends 'iopub' | 'shell' = 'iopub' | 'shell'>
extends IMessage<'comm_msg'> {
channel: T;
content: {
comm_id: string;
data: JSONObject;
};
}
/**
* Test whether a kernel message is a `'comm_msg'` message.
*/
export function isCommMsgMsg(msg: IMessage): msg is ICommMsgMsg {
return msg.header.msg_type === 'comm_msg';
}
//////////////////////////////////////////////////
// Shell Messages
/////////////////////////////////////////////////
/**
* Reply content indicating a sucessful request.
*/
export interface IReplyOkContent {
status: 'ok';
}
/**
* Reply content indicating an error.
*
* See the [Message spec](https://jupyter-client.readthedocs.io/en/latest/messaging.html#request-reply) for details.
*/
export interface IReplyErrorContent {
status: 'error';
/**
* Exception name
*/
ename: string;
/**
* Exception value
*/
evalue: string;
/**
* Traceback
*/
traceback: string[];
}
/**
* Reply content indicating an aborted request.
*
* This is [deprecated](https://jupyter-client.readthedocs.io/en/latest/messaging.html#request-reply)
* in message spec 5.1. Kernels should send an 'error' reply instead.
*/
export interface IReplyAbortContent {
status: 'abort';
}
/**
* A convenience type for reply content.
*
* This automatically unions the necessary error and abort replies required in
* the [message spec](https://jupyter-client.readthedocs.io/en/latest/messaging.html#request-reply).
*/
type ReplyContent<T> = T | IReplyErrorContent | IReplyAbortContent;
/**
* A `'kernel_info_request'` message on the `'shell'` channel.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-info).
*/
export interface IInfoRequestMsg extends IShellMessage<'kernel_info_request'> {
content: {};
}
/**
* Test whether a kernel message is a `'kernel_info_request'` message.
*/
export function isInfoRequestMsg(msg: IMessage): msg is IInfoRequestMsg {
return msg.header.msg_type === 'kernel_info_request';
}
/**
* A `'kernel_info_reply'` message content.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-info).
*/
export interface IInfoReply extends IReplyOkContent {
protocol_version: string;
implementation: string;
implementation_version: string;
language_info: ILanguageInfo;
banner: string;
help_links: { text: string; url: string }[];
}
/**
* The kernel language information specification.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-info).
*/
export interface ILanguageInfo extends nbformat.ILanguageInfoMetadata {
version: string;
nbconverter_exporter?: string;
}
/**
* A `'kernel_info_reply'` message on the `'shell'` channel.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-info).
*/
export interface IInfoReplyMsg extends IShellMessage<'kernel_info_reply'> {
parent_header: IHeader<'kernel_info_request'>;
content: ReplyContent<IInfoReply>;
}
/**
* A `'complete_request'` message.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#completion).
*
* **See also:** [[ICompleteReplyMsg]], [[IKernel.complete]]
*/
export interface ICompleteRequestMsg extends IShellMessage<'complete_request'> {
content: {
code: string;
cursor_pos: number;
};
}
/**
* A `'complete_reply'` message content.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#completion).
*
* **See also:** [[ICompleteRequest]], [[IKernel.complete]]
*/
interface ICompleteReply extends IReplyOkContent {
matches: string[];
cursor_start: number;
cursor_end: number;
metadata: JSONObject;
}
/**
* A `'complete_reply'` message on the `'shell'` channel.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#completion).
*
* **See also:** [[ICompleteRequest]], [[IKernel.complete]]
*/
export interface ICompleteReplyMsg extends IShellMessage<'complete_reply'> {
parent_header: IHeader<'complete_request'>;
content: ReplyContent<ICompleteReply>;
}
/**
* An `'inspect_request'` message.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#introspection).
*
* **See also:** [[IInspectReplyMsg]], [[[IKernel.inspect]]]
*/
export interface IInspectRequestMsg extends IShellMessage<'inspect_request'> {
content: {
code: string;
cursor_pos: number;
detail_level: 0 | 1;
};
}
/**
* A `'inspect_reply'` message content.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#introspection).
*
* **See also:** [[IInspectRequest]], [[IKernel.inspect]]
*/
export interface IInspectReply extends IReplyOkContent {
found: boolean;
data: JSONObject;
metadata: JSONObject;
}
/**
* A `'inspect_reply'` message on the `'shell'` channel.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#introspection).
*
* **See also:** [[IInspectRequest]], [[IKernel.inspect]]
*/
export interface IInspectReplyMsg extends IShellMessage<'inspect_reply'> {
parent_header: IHeader<'inspect_request'>;
content: ReplyContent<IInspectReply>;
}
/**
* A `'history_request'` message.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history).
*
* **See also:** [[IHistoryReplyMsg]], [[[IKernel.history]]]
*/
export interface IHistoryRequestMsg extends IShellMessage<'history_request'> {
content: IHistoryRequestRange | IHistoryRequestSearch | IHistoryRequestTail;
}
/**
* The content of a `'history_request'` range message.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history).
*
* **See also:** [[IHistoryReply]], [[[IKernel.history]]]
*/
export interface IHistoryRequestRange {
output: boolean;
raw: boolean;
hist_access_type: 'range';
session: number;
start: number;
stop: number;
}
/**
* The content of a `'history_request'` search message.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history).
*
* **See also:** [[IHistoryReply]], [[[IKernel.history]]]
*/
export interface IHistoryRequestSearch {
output: boolean;
raw: boolean;
hist_access_type: 'search';
n: number;
pattern: string;
unique: boolean;
}
/**
* The content of a `'history_request'` tail message.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history).
*
* **See also:** [[IHistoryReply]], [[[IKernel.history]]]
*/
export interface IHistoryRequestTail {
output: boolean;
raw: boolean;
hist_access_type: 'tail';
n: number;
}
/**
* A `'history_reply'` message content.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history).
*
* **See also:** [[IHistoryRequest]], [[IKernel.history]]
*/
export interface IHistoryReply extends IReplyOkContent {
history: [number, number, string][] | [number, number, [string, string]][];
}
/**
* A `'history_reply'` message on the `'shell'` channel.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history).
*
* **See also:** [[IHistoryRequest]], [[IKernel.history]]
*/
export interface IHistoryReplyMsg extends IShellMessage<'history_reply'> {
parent_header: IHeader<'history_request'>;
content: ReplyContent<IHistoryReply>;
}
/**
* An `'is_complete_request'` message.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#code-completeness).
*
* **See also:** [[IIsCompleteReplyMsg]], [[IKernel.isComplete]]
*/
export interface IIsCompleteRequestMsg
extends IShellMessage<'is_complete_request'> {
content: {
code: string;
};
}
/**
* An `'is_complete_reply'` message on the `'stream'` channel.
*
* See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#code-completeness).
*
* **See also:** [[IIsCompleteRequest]], [[IKernel.isComplete]]
*/
export interface IIsCompleteReplyMsg
extends IShellMessage<'is_complete_reply'> {
parent_header: IHeader<'is_complete_request'>;
content: ReplyContent<IIsCompleteReplyIncomplete | IIsCompleteReplyOther>;
}
/**
* An 'incomplete' completion reply
*/
export interface IIsCompleteReplyIncomplete {
status: 'incomplete';
indent: string;
}
/**
* A completion reply for completion or invalid states.
*/
export interface IIsCompleteReplyOther {
status: 'complete' | 'invalid' | 'unknown';
}
/**
* An `execute_request` message on the `'shell'` channel.
*/
export interface IExecuteRequestMsg extends IShellMessage<'execute_request'> {
content: {
/**
* The code to execute.
*/
code: string;
/**
* Whether to execute the code as quietly as possible.