1 | "use strict";
|
2 |
|
3 |
|
4 | Object.defineProperty(exports, "__esModule", { value: true });
|
5 | exports.supportedKernelWebSocketProtocols = exports.isInputReplyMsg = exports.isInputRequestMsg = exports.isDebugReplyMsg = exports.isDebugRequestMsg = exports.isExecuteReplyMsg = exports.isInfoRequestMsg = exports.isCommMsgMsg = exports.isCommCloseMsg = exports.isCommOpenMsg = exports.isDebugEventMsg = exports.isClearOutputMsg = exports.isStatusMsg = exports.isErrorMsg = exports.isExecuteResultMsg = exports.isExecuteInputMsg = exports.isUpdateDisplayDataMsg = exports.isDisplayDataMsg = exports.isStreamMsg = exports.createMessage = void 0;
|
6 | const coreutils_1 = require("@lumino/coreutils");
|
7 | function createMessage(options) {
|
8 | var _a, _b, _c, _d, _e;
|
9 | return {
|
10 | buffers: (_a = options.buffers) !== null && _a !== void 0 ? _a : [],
|
11 | channel: options.channel,
|
12 | content: options.content,
|
13 | header: {
|
14 | date: new Date().toISOString(),
|
15 | msg_id: (_b = options.msgId) !== null && _b !== void 0 ? _b : coreutils_1.UUID.uuid4(),
|
16 | msg_type: options.msgType,
|
17 | session: options.session,
|
18 | username: (_c = options.username) !== null && _c !== void 0 ? _c : '',
|
19 | version: '5.2'
|
20 | },
|
21 | metadata: (_d = options.metadata) !== null && _d !== void 0 ? _d : {},
|
22 | parent_header: (_e = options.parentHeader) !== null && _e !== void 0 ? _e : {}
|
23 | };
|
24 | }
|
25 | exports.createMessage = createMessage;
|
26 |
|
27 |
|
28 |
|
29 | function isStreamMsg(msg) {
|
30 | return msg.header.msg_type === 'stream';
|
31 | }
|
32 | exports.isStreamMsg = isStreamMsg;
|
33 |
|
34 |
|
35 |
|
36 | function isDisplayDataMsg(msg) {
|
37 | return msg.header.msg_type === 'display_data';
|
38 | }
|
39 | exports.isDisplayDataMsg = isDisplayDataMsg;
|
40 |
|
41 |
|
42 |
|
43 | function isUpdateDisplayDataMsg(msg) {
|
44 | return msg.header.msg_type === 'update_display_data';
|
45 | }
|
46 | exports.isUpdateDisplayDataMsg = isUpdateDisplayDataMsg;
|
47 |
|
48 |
|
49 |
|
50 | function isExecuteInputMsg(msg) {
|
51 | return msg.header.msg_type === 'execute_input';
|
52 | }
|
53 | exports.isExecuteInputMsg = isExecuteInputMsg;
|
54 |
|
55 |
|
56 |
|
57 | function isExecuteResultMsg(msg) {
|
58 | return msg.header.msg_type === 'execute_result';
|
59 | }
|
60 | exports.isExecuteResultMsg = isExecuteResultMsg;
|
61 |
|
62 |
|
63 |
|
64 | function isErrorMsg(msg) {
|
65 | return msg.header.msg_type === 'error';
|
66 | }
|
67 | exports.isErrorMsg = isErrorMsg;
|
68 |
|
69 |
|
70 |
|
71 | function isStatusMsg(msg) {
|
72 | return msg.header.msg_type === 'status';
|
73 | }
|
74 | exports.isStatusMsg = isStatusMsg;
|
75 |
|
76 |
|
77 |
|
78 | function isClearOutputMsg(msg) {
|
79 | return msg.header.msg_type === 'clear_output';
|
80 | }
|
81 | exports.isClearOutputMsg = isClearOutputMsg;
|
82 |
|
83 |
|
84 |
|
85 |
|
86 |
|
87 |
|
88 |
|
89 |
|
90 |
|
91 |
|
92 | function isDebugEventMsg(msg) {
|
93 | return msg.header.msg_type === 'debug_event';
|
94 | }
|
95 | exports.isDebugEventMsg = isDebugEventMsg;
|
96 |
|
97 |
|
98 |
|
99 | function isCommOpenMsg(msg) {
|
100 | return msg.header.msg_type === 'comm_open';
|
101 | }
|
102 | exports.isCommOpenMsg = isCommOpenMsg;
|
103 |
|
104 |
|
105 |
|
106 | function isCommCloseMsg(msg) {
|
107 | return msg.header.msg_type === 'comm_close';
|
108 | }
|
109 | exports.isCommCloseMsg = isCommCloseMsg;
|
110 |
|
111 |
|
112 |
|
113 | function isCommMsgMsg(msg) {
|
114 | return msg.header.msg_type === 'comm_msg';
|
115 | }
|
116 | exports.isCommMsgMsg = isCommMsgMsg;
|
117 |
|
118 |
|
119 |
|
120 | function isInfoRequestMsg(msg) {
|
121 | return msg.header.msg_type === 'kernel_info_request';
|
122 | }
|
123 | exports.isInfoRequestMsg = isInfoRequestMsg;
|
124 |
|
125 |
|
126 |
|
127 | function isExecuteReplyMsg(msg) {
|
128 | return msg.header.msg_type === 'execute_reply';
|
129 | }
|
130 | exports.isExecuteReplyMsg = isExecuteReplyMsg;
|
131 |
|
132 |
|
133 |
|
134 |
|
135 |
|
136 |
|
137 |
|
138 |
|
139 |
|
140 |
|
141 | function isDebugRequestMsg(msg) {
|
142 | return msg.header.msg_type === 'debug_request';
|
143 | }
|
144 | exports.isDebugRequestMsg = isDebugRequestMsg;
|
145 |
|
146 |
|
147 |
|
148 |
|
149 |
|
150 |
|
151 |
|
152 |
|
153 |
|
154 |
|
155 | function isDebugReplyMsg(msg) {
|
156 | return msg.header.msg_type === 'debug_reply';
|
157 | }
|
158 | exports.isDebugReplyMsg = isDebugReplyMsg;
|
159 |
|
160 |
|
161 |
|
162 | function isInputRequestMsg(msg) {
|
163 | return msg.header.msg_type === 'input_request';
|
164 | }
|
165 | exports.isInputRequestMsg = isInputRequestMsg;
|
166 |
|
167 |
|
168 |
|
169 | function isInputReplyMsg(msg) {
|
170 | return msg.header.msg_type === 'input_reply';
|
171 | }
|
172 | exports.isInputReplyMsg = isInputReplyMsg;
|
173 |
|
174 |
|
175 |
|
176 |
|
177 |
|
178 |
|
179 | var supportedKernelWebSocketProtocols;
|
180 | (function (supportedKernelWebSocketProtocols) {
|
181 | supportedKernelWebSocketProtocols["v1KernelWebsocketJupyterOrg"] = "v1.kernel.websocket.jupyter.org";
|
182 | })(supportedKernelWebSocketProtocols || (exports.supportedKernelWebSocketProtocols = supportedKernelWebSocketProtocols = {}));
|
183 |
|
\ | No newline at end of file |