Spaces:
Runtime error
Runtime error
File size: 56,997 Bytes
6f72e2b | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 | """Base class for a kernel that talks to frontends over 0MQ."""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
from __future__ import annotations
import asyncio
import inspect
import logging
import os
import socket
import sys
import threading
import time
import typing as t
import uuid
import warnings
from collections.abc import Mapping
from contextvars import Context, ContextVar, copy_context
from datetime import datetime
from functools import partial
from signal import SIGINT, SIGTERM, Signals, default_int_handler, signal
from .thread import CONTROL_THREAD_NAME
if sys.platform != "win32":
from signal import SIGKILL
else:
SIGKILL = "windown-SIGKILL-sentinel"
try:
# jupyter_client >= 5, use tz-aware now
from jupyter_client.session import utcnow as now
except ImportError:
# jupyter_client < 5, use local now()
now = datetime.now
import psutil
import zmq
from IPython.core.error import StdinNotImplementedError
from jupyter_client.session import Session
from tornado import ioloop
from traitlets.config.configurable import SingletonConfigurable
from traitlets.traitlets import (
Any,
Bool,
Dict,
Float,
Instance,
Integer,
List,
Unicode,
default,
observe,
)
from zmq.eventloop.zmqstream import ZMQStream
from ipykernel.jsonutil import json_clean
from ._version import kernel_protocol_version
from .iostream import OutStream
from .utils import LazyDict, _async_in_context
_AWAITABLE_MESSAGE: str = (
"For consistency across implementations, it is recommended that `{func_name}`"
" either be a coroutine function (`async def`) or return an awaitable object"
" (like an `asyncio.Future`). It might become a requirement in the future."
" Coroutine functions and awaitables have been supported since"
" ipykernel 6.0 (2021). {target} does not seem to return an awaitable"
)
T = t.TypeVar("T")
def _accepts_parameters(meth, param_names):
parameters = inspect.signature(meth).parameters
accepts = dict.fromkeys(param_names, False)
for param in param_names:
param_spec = parameters.get(param)
accepts[param] = (
param_spec
and param_spec.kind in [param_spec.KEYWORD_ONLY, param_spec.POSITIONAL_OR_KEYWORD]
) or any(p.kind == p.VAR_KEYWORD for p in parameters.values())
return accepts
class Kernel(SingletonConfigurable):
"""The base kernel class."""
# ---------------------------------------------------------------------------
# Kernel interface
# ---------------------------------------------------------------------------
# attribute to override with a GUI
eventloop = Any(None)
processes: dict[str, psutil.Process] = {}
@observe("eventloop")
def _update_eventloop(self, change):
"""schedule call to eventloop from IOLoop"""
loop = ioloop.IOLoop.current()
if change.new is not None:
loop.add_callback(self.enter_eventloop)
session = Instance(Session, allow_none=True)
profile_dir = Instance("IPython.core.profiledir.ProfileDir", allow_none=True)
shell_stream = Instance(ZMQStream, allow_none=True)
shell_streams: List[t.Any] = List(
help="""Deprecated shell_streams alias. Use shell_stream
.. versionchanged:: 6.0
shell_streams is deprecated. Use shell_stream.
"""
)
implementation: str
implementation_version: str
banner: str
@default("shell_streams")
def _shell_streams_default(self): # pragma: no cover
warnings.warn(
"Kernel.shell_streams is deprecated in ipykernel 6.0. Use Kernel.shell_stream",
DeprecationWarning,
stacklevel=2,
)
if self.shell_stream is not None:
return [self.shell_stream]
return []
@observe("shell_streams")
def _shell_streams_changed(self, change): # pragma: no cover
warnings.warn(
"Kernel.shell_streams is deprecated in ipykernel 6.0. Use Kernel.shell_stream",
DeprecationWarning,
stacklevel=2,
)
if len(change.new) > 1:
warnings.warn(
"Kernel only supports one shell stream. Additional streams will be ignored.",
RuntimeWarning,
stacklevel=2,
)
if change.new:
self.shell_stream = change.new[0]
control_stream = Instance(ZMQStream, allow_none=True)
debug_shell_socket = Any()
control_thread = Any()
shell_channel_thread = Any()
iopub_socket = Any()
iopub_thread = Any()
stdin_socket = Any()
log: logging.Logger = Instance(logging.Logger, allow_none=True) # type:ignore[assignment]
# identities:
int_id = Integer(-1)
ident = Unicode()
@default("ident")
def _default_ident(self):
return str(uuid.uuid4())
# This should be overridden by wrapper kernels that implement any real
# language.
language_info: dict[str, object] = {}
# any links that should go in the help menu
help_links: List[dict[str, str]] = List()
# Experimental option to break in non-user code.
# The ipykernel source is in the call stack, so the user
# has to manipulate the step-over and step-into in a wize way.
debug_just_my_code = Bool(
False,
help="""Set to False if you want to debug python standard and dependent libraries.
""",
).tag(config=True)
# Experimental option to filter internal frames from the stack trace and stepping.
filter_internal_frames = Bool(
True,
help="""Set to False if you want to debug kernel modules.
""",
).tag(config=True)
# track associations with current request
# Private interface
_darwin_app_nap = Bool(
True,
help="""Whether to use appnope for compatibility with OS X App Nap.
Only affects OS X >= 10.9.
""",
).tag(config=True)
# track associations with current request
_allow_stdin = Bool(False)
_control_parent: Dict[str, t.Any] = Dict({})
_control_parent_ident: bytes = b""
_shell_parent: ContextVar[dict[str, Any]]
_shell_parent_ident: ContextVar[bytes]
_shell_context: Context
# Kept for backward-compatibility, accesses _control_parent_ident and _shell_parent_ident,
# see https://github.com/jupyterlab/jupyterlab/issues/17785
_parent_ident: Mapping[str, bytes]
# Asyncio lock for main shell thread.
_main_asyncio_lock: asyncio.Lock
@property
def _parent_header(self):
warnings.warn(
"Kernel._parent_header is deprecated in ipykernel 6. Use .get_parent()",
DeprecationWarning,
stacklevel=2,
)
return self.get_parent()
# Time to sleep after flushing the stdout/err buffers in each execute
# cycle. While this introduces a hard limit on the minimal latency of the
# execute cycle, it helps prevent output synchronization problems for
# clients.
# Units are in seconds. The minimum zmq latency on local host is probably
# ~150 microseconds, set this to 500us for now. We may need to increase it
# a little if it's not enough after more interactive testing.
_execute_sleep = Float(0.0005).tag(config=True)
# Frequency of the kernel's event loop.
# Units are in seconds, kernel subclasses for GUI toolkits may need to
# adapt to milliseconds.
_poll_interval = Float(0.01).tag(config=True)
stop_on_error_timeout = Float(
0.0,
config=True,
help="""time (in seconds) to wait for messages to arrive
when aborting queued requests after an error.
Requests that arrive within this window after an error
will be cancelled.
Increase in the event of unusually slow network
causing significant delays,
which can manifest as e.g. "Run all" in a notebook
aborting some, but not all, messages after an error.
""",
)
# If the shutdown was requested over the network, we leave here the
# necessary reply message so it can be sent by our registered atexit
# handler. This ensures that the reply is only sent to clients truly at
# the end of our shutdown process (which happens after the underlying
# IPython shell's own shutdown).
_shutdown_message = None
# This is a dict of port number that the kernel is listening on. It is set
# by record_ports and used by connect_request.
_recorded_ports = Dict()
# Track execution count here. For IPython, we override this to use the
# execution count we store in the shell.
execution_count = 0
# Asyncio lock to ensure only one control queue message is processed at a time.
_control_lock = Instance(asyncio.Lock)
msg_types = [
"execute_request",
"complete_request",
"inspect_request",
"history_request",
"comm_info_request",
"kernel_info_request",
"connect_request",
"shutdown_request",
"is_complete_request",
"interrupt_request",
]
# control channel accepts all shell messages
# and some of its own
control_msg_types = [
*msg_types,
"debug_request",
"usage_request",
"create_subshell_request",
"delete_subshell_request",
"list_subshell_request",
]
def __init__(self, **kwargs):
"""Initialize the kernel."""
super().__init__(**kwargs)
# Kernel application may swap stdout and stderr to OutStream,
# which is the case in `IPKernelApp.init_io`, hence `sys.stdout`
# can already by different from TextIO at initialization time.
self._stdout: OutStream | t.TextIO = sys.stdout
self._stderr: OutStream | t.TextIO = sys.stderr
# Build dict of handlers for message types
self.shell_handlers = {}
for msg_type in self.msg_types:
self.shell_handlers[msg_type] = getattr(self, msg_type)
self.control_handlers = {}
for msg_type in self.control_msg_types:
self.control_handlers[msg_type] = getattr(self, msg_type)
# Storing the accepted parameters for do_execute, used in execute_request
self._do_exec_accepted_params = _accepts_parameters(
self.do_execute, ["cell_meta", "cell_id"]
)
self._control_parent = {}
self._control_parent_ident = b""
self._shell_parent = ContextVar("shell_parent")
self._shell_parent.set({})
self._shell_parent_ident = ContextVar("shell_parent_ident")
self._shell_parent_ident.set(b"")
self._shell_context = copy_context()
# For backward compatibility so that _parent_ident["shell"] and _parent_ident["control"]
# work as they used to for ipykernel >= 7
self._parent_ident = LazyDict(
{
"control": lambda: self._control_parent_ident,
"shell": lambda: self._get_shell_context_var(self._shell_parent_ident),
}
)
self._main_asyncio_lock = asyncio.Lock()
async def dispatch_control(self, msg):
"""Dispatch a control request, ensuring only one message is processed at a time."""
# Ensure only one control message is processed at a time
async with self._control_lock:
await self.process_control(msg)
async def process_control(self, msg):
"""dispatch control requests"""
if not self.session:
return
idents, msg = self.session.feed_identities(msg, copy=False)
try:
msg = self.session.deserialize(msg, content=True, copy=False)
except Exception:
self.log.error("Invalid Control Message", exc_info=True) # noqa: G201
return
self.log.debug("Control received: %s", msg)
# Set the parent message for side effects.
self.set_parent(idents, msg, channel="control")
self._publish_status("busy", "control")
header = msg["header"]
msg_type = header["msg_type"]
handler = self.control_handlers.get(msg_type, None)
if handler is None:
self.log.error("UNKNOWN CONTROL MESSAGE TYPE: %r", msg_type)
else:
try:
result = handler(self.control_stream, idents, msg)
if inspect.isawaitable(result):
await result
except Exception:
self.log.error("Exception in control handler:", exc_info=True) # noqa: G201
if sys.stdout is not None:
sys.stdout.flush()
if sys.stderr is not None:
sys.stderr.flush()
self._publish_status_and_flush("idle", "control", self.control_stream)
def should_handle(self, stream, msg, idents):
"""Check whether a shell-channel message should be handled
Allows subclasses to prevent handling of certain messages (e.g. aborted requests).
.. versionchanged:: 7
Subclass should_handle _may_ be async.
Base class implementation is not async.
"""
return True
async def dispatch_shell(self, msg, /, subshell_id: str | None = None):
"""dispatch shell requests"""
if len(msg) == 1 and msg[0].buffer == b"stop aborting":
# Dummy "stop aborting" message to stop aborting execute requests on this subshell.
# This dummy message implementation allows the subshell to abort messages that are
# already queued in the zmq sockets/streams without having to know any of their
# details in advance.
if subshell_id is None:
self._aborting = False
else:
self.shell_channel_thread.manager.set_subshell_aborting(subshell_id, False)
return
if not self.session:
return
if self._supports_kernel_subshells:
assert threading.current_thread() not in (
self.control_thread,
self.shell_channel_thread,
)
idents, msg = self.session.feed_identities(msg, copy=False)
try:
msg = self.session.deserialize(msg, content=True, copy=False)
except Exception:
self.log.error("Invalid Message", exc_info=True) # noqa: G201
return
# Set the parent message for side effects.
self.set_parent(idents, msg, channel="shell")
self._publish_status("busy", "shell")
msg_type = msg["header"]["msg_type"]
assert msg["header"].get("subshell_id") == subshell_id
if self._supports_kernel_subshells:
stream = self.shell_channel_thread.manager.get_subshell_to_shell_channel_socket(
subshell_id
)
else:
stream = self.shell_stream
# Only abort execute requests
if msg_type == "execute_request":
if subshell_id is None:
aborting = self._aborting # type:ignore[unreachable]
else:
aborting = self.shell_channel_thread.manager.get_subshell_aborting(subshell_id)
if aborting:
self._send_abort_reply(stream, msg, idents)
self._publish_status_and_flush("idle", "shell", stream)
return
# Print some info about this message and leave a '--->' marker, so it's
# easier to trace visually the message chain when debugging. Each
# handler prints its message at the end.
self.log.debug("\n*** MESSAGE TYPE:%s***", msg_type)
self.log.debug(" Content: %s\n --->\n ", msg["content"])
should_handle: bool | t.Awaitable[bool] = self.should_handle(stream, msg, idents)
if inspect.isawaitable(should_handle):
should_handle = await should_handle
if not should_handle:
self._publish_status_and_flush("idle", "shell", stream)
self.log.debug("Not handling %s:%s", msg_type, msg["header"].get("msg_id"))
return
handler = self.shell_handlers.get(msg_type, None)
if handler is None:
self.log.warning("Unknown message type: %r", msg_type)
else:
self.log.debug("%s: %s", msg_type, msg)
try:
self.pre_handler_hook()
except Exception:
self.log.debug("Unable to signal in pre_handler_hook:", exc_info=True)
try:
result = handler(stream, idents, msg)
if inspect.isawaitable(result):
await result
except Exception:
self.log.error("Exception in message handler:", exc_info=True) # noqa: G201
except KeyboardInterrupt:
# Ctrl-c shouldn't crash the kernel here.
self.log.error("KeyboardInterrupt caught in kernel.")
finally:
try:
self.post_handler_hook()
except Exception:
self.log.debug("Unable to signal in post_handler_hook:", exc_info=True)
if sys.stdout is not None:
sys.stdout.flush()
if sys.stderr is not None:
sys.stderr.flush()
self._publish_status_and_flush("idle", "shell", stream)
def pre_handler_hook(self):
"""Hook to execute before calling message handler"""
# ensure default_int_handler during handler call
self.saved_sigint_handler = signal(SIGINT, default_int_handler)
def post_handler_hook(self):
"""Hook to execute after calling message handler"""
signal(SIGINT, self.saved_sigint_handler)
def enter_eventloop(self):
"""enter eventloop"""
self.log.info("Entering eventloop %s", self.eventloop)
# record handle, so we can check when this changes
eventloop = self.eventloop
if eventloop is None:
self.log.info("Exiting as there is no eventloop")
return
async def advance_eventloop():
# check if eventloop changed:
if self.eventloop is not eventloop:
self.log.info("exiting eventloop %s", eventloop)
return
self.log.debug("Advancing eventloop %s", eventloop)
try:
eventloop(self)
except KeyboardInterrupt:
# Ctrl-C shouldn't crash the kernel
self.log.error("KeyboardInterrupt caught in kernel")
if self.eventloop is eventloop:
# schedule advance again
schedule_next()
def schedule_next():
"""Schedule the next advance of the eventloop"""
# call_later allows the io_loop to process other events if needed.
# Going through schedule_dispatch ensures all other dispatches on msg_queue
# are processed before we enter the eventloop, even if the previous dispatch was
# already consumed from the queue by process_one and the queue is
# technically empty.
self.log.debug("Scheduling eventloop advance")
self.io_loop.call_later(0.001, advance_eventloop)
# begin polling the eventloop
schedule_next()
async def _create_control_lock(self):
# This can be removed when minimum python increases to 3.10
self._control_lock = asyncio.Lock()
def start(self):
"""register dispatchers for streams"""
self.io_loop = ioloop.IOLoop.current()
if self.control_stream:
self.control_stream.on_recv(self.dispatch_control, copy=False)
if self.control_thread and sys.version_info < (3, 10):
# Before Python 3.10 we need to ensure the _control_lock is created in the
# thread that uses it. When our minimum python is 3.10 we can remove this
# and always use the else below, or just assign it where it is declared.
self.control_thread.io_loop.add_callback(self._create_control_lock)
else:
self._control_lock = asyncio.Lock()
if self.shell_stream:
if self.shell_channel_thread:
self.shell_channel_thread.manager.set_on_recv_callback(self.shell_main)
self.shell_stream.on_recv(self.shell_channel_thread_main, copy=False)
else:
self.shell_stream.on_recv(
_async_in_context(partial(self.shell_main, None)),
copy=False,
)
# publish idle status
self._publish_status("starting", "shell")
async def shell_channel_thread_main(self, msg):
"""Handler for shell messages received on shell_channel_thread"""
assert threading.current_thread() == self.shell_channel_thread
async with self.shell_channel_thread.asyncio_lock:
if self.session is None:
return
# deserialize only the header to get subshell_id
# Keep original message to send to subshell_id unmodified.
_, msg2 = self.session.feed_identities(msg, copy=False)
try:
msg3 = self.session.deserialize(msg2, content=False, copy=False)
subshell_id = msg3["header"].get("subshell_id")
# Find inproc pair socket to use to send message to correct subshell.
subshell_manager = self.shell_channel_thread.manager
socket = subshell_manager.get_shell_channel_to_subshell_socket(subshell_id)
assert socket is not None
socket.send_multipart(msg, copy=False)
except Exception:
self.log.error("Invalid message", exc_info=True) # noqa: G201
async def shell_main(self, subshell_id: str | None, msg):
"""Handler of shell messages for a single subshell"""
if self._supports_kernel_subshells:
if subshell_id is None:
assert threading.current_thread() == self.shell_channel_thread.parent_thread
asyncio_lock = self._main_asyncio_lock
else:
assert threading.current_thread() not in (
self.shell_channel_thread,
self.shell_channel_thread.parent_thread,
)
asyncio_lock = self.shell_channel_thread.manager.get_subshell_asyncio_lock(
subshell_id
)
else:
assert subshell_id is None
asyncio_lock = self._main_asyncio_lock
# Whilst executing a shell message, do not accept any other shell messages on the
# same subshell, so that cells are run sequentially. Without this we can run multiple
# async cells at the same time which would be a nice feature to have but is an API
# change.
assert asyncio_lock is not None
async with asyncio_lock:
await self.dispatch_shell(msg, subshell_id=subshell_id)
def record_ports(self, ports):
"""Record the ports that this kernel is using.
The creator of the Kernel instance must call this methods if they
want the :meth:`connect_request` method to return the port numbers.
"""
self._recorded_ports = ports
# ---------------------------------------------------------------------------
# Kernel request handlers
# ---------------------------------------------------------------------------
def _publish_execute_input(self, code, parent, execution_count):
"""Publish the code request on the iopub stream."""
if not self.session:
return
self.session.send(
self.iopub_socket,
"execute_input",
{"code": code, "execution_count": execution_count},
parent=parent,
ident=self._topic("execute_input"),
)
def _publish_status(self, status, channel, parent=None):
"""send status (busy/idle) on IOPub"""
if not self.session:
return
self.session.send(
self.iopub_socket,
"status",
{"execution_state": status},
parent=parent or self.get_parent(channel),
ident=self._topic("status"),
)
def _publish_status_and_flush(self, status, channel, stream, parent=None):
"""send status on IOPub and flush specified stream to ensure reply is sent before handling the next reply"""
self._publish_status(status, channel, parent)
if stream and hasattr(stream, "flush") and not self._supports_kernel_subshells:
stream.flush(zmq.POLLOUT)
def _publish_debug_event(self, event):
if not self.session:
return
self.session.send(
self.iopub_socket,
"debug_event",
event,
parent=self.get_parent(),
ident=self._topic("debug_event"),
)
def set_parent(self, ident, parent, channel="shell"):
"""Set the current parent request
Side effects (IOPub messages) and replies are associated with
the request that caused them via the parent_header.
The parent identity is used to route input_request messages
on the stdin channel.
"""
if channel == "control":
self._control_parent_ident = ident
self._control_parent = parent
else:
self._shell_parent_ident.set(ident)
self._shell_parent.set(parent)
# preserve the last call to set_parent
self._shell_context = copy_context()
def get_parent(self, channel=None):
"""Get the parent request associated with a channel.
.. versionadded:: 6
Parameters
----------
channel : str
the name of the channel ('shell' or 'control')
Returns
-------
message : dict
the parent message for the most recent request on the channel.
"""
if channel is None:
# If a channel is not specified, get information from current thread
if threading.current_thread().name == CONTROL_THREAD_NAME:
channel = "control"
else:
channel = "shell"
if channel == "control":
return self._control_parent
return self._get_shell_context_var(self._shell_parent)
def _get_shell_context_var(self, var: ContextVar[T]) -> T:
"""Lookup a ContextVar, falling back on the shell context
Allows for user-launched Threads to still resolve to the shell's main context
necessary for e.g. display from threads.
"""
try:
return var.get()
except LookupError:
return self._shell_context[var]
def send_response(
self,
stream,
msg_or_type,
content=None,
ident=None,
buffers=None,
track=False,
header=None,
metadata=None,
channel=None,
):
"""Send a response to the message we're currently processing.
This accepts all the parameters of :meth:`jupyter_client.session.Session.send`
except ``parent``.
This relies on :meth:`set_parent` having been called for the current
message.
"""
if not self.session:
return None
return self.session.send(
stream,
msg_or_type,
content,
self.get_parent(channel),
ident,
buffers,
track,
header,
metadata,
)
def init_metadata(self, parent):
"""Initialize metadata.
Run at the beginning of execution requests.
"""
# FIXME: `started` is part of ipyparallel
# Remove for ipykernel 5.0
return {
"started": now(),
}
def finish_metadata(self, parent, metadata, reply_content):
"""Finish populating metadata.
Run after completing an execution request.
"""
return metadata
async def execute_request(self, stream, ident, parent):
"""handle an execute_request"""
if not self.session:
return
try:
content = parent["content"]
code = content["code"]
silent = content.get("silent", False)
store_history = content.get("store_history", not silent)
user_expressions = content.get("user_expressions", {})
allow_stdin = content.get("allow_stdin", False)
cell_meta = parent.get("metadata", {})
cell_id = cell_meta.get("cellId")
except Exception:
self.log.error("Got bad msg: ")
self.log.error("%s", parent)
return
stop_on_error = content.get("stop_on_error", True)
metadata = self.init_metadata(parent)
# Re-broadcast our input for the benefit of listening clients, and
# start computing output
if not silent:
self.execution_count += 1
self._publish_execute_input(code, parent, self.execution_count)
# Arguments based on the do_execute signature
do_execute_args = {
"code": code,
"silent": silent,
"store_history": store_history,
"user_expressions": user_expressions,
"allow_stdin": allow_stdin,
}
if self._do_exec_accepted_params["cell_meta"]:
do_execute_args["cell_meta"] = cell_meta
if self._do_exec_accepted_params["cell_id"]:
do_execute_args["cell_id"] = cell_id
subshell_id = parent["header"].get("subshell_id")
# Call do_execute with the appropriate arguments
reply_content = self.do_execute(**do_execute_args)
if inspect.isawaitable(reply_content):
reply_content = await reply_content
else:
warnings.warn(
_AWAITABLE_MESSAGE.format(func_name="do_execute", target=self.do_execute),
PendingDeprecationWarning,
stacklevel=1,
)
# Flush output before sending the reply.
if sys.stdout is not None:
sys.stdout.flush()
if sys.stderr is not None:
sys.stderr.flush()
# FIXME: on rare occasions, the flush doesn't seem to make it to the
# clients... This seems to mitigate the problem, but we definitely need
# to better understand what's going on.
if self._execute_sleep:
time.sleep(self._execute_sleep)
# Send the reply.
reply_content = json_clean(reply_content)
metadata = self.finish_metadata(parent, metadata, reply_content)
reply_msg: dict[str, t.Any] = self.session.send( # type:ignore[assignment]
stream,
"execute_reply",
reply_content,
parent,
metadata=metadata,
ident=ident,
)
self.log.debug("%s", reply_msg)
if not silent and reply_msg["content"]["status"] == "error" and stop_on_error:
subshell_id = parent["header"].get("subshell_id")
self._abort_queues(subshell_id)
def do_execute(
self,
code,
silent,
store_history=True,
user_expressions=None,
allow_stdin=False,
*,
cell_meta=None,
cell_id=None,
):
"""Execute user code. Must be overridden by subclasses."""
raise NotImplementedError
async def complete_request(self, stream, ident, parent):
"""Handle a completion request."""
if not self.session:
return
content = parent["content"]
code = content["code"]
cursor_pos = content["cursor_pos"]
matches = self.do_complete(code, cursor_pos)
if inspect.isawaitable(matches):
matches = await matches
else:
warnings.warn(
_AWAITABLE_MESSAGE.format(func_name="do_complete", target=self.do_complete),
PendingDeprecationWarning,
stacklevel=1,
)
matches = json_clean(matches)
self.session.send(stream, "complete_reply", matches, parent, ident)
def do_complete(self, code, cursor_pos):
"""Override in subclasses to find completions."""
return {
"matches": [],
"cursor_end": cursor_pos,
"cursor_start": cursor_pos,
"metadata": {},
"status": "ok",
}
async def inspect_request(self, stream, ident, parent):
"""Handle an inspect request."""
if not self.session:
return
content = parent["content"]
reply_content = self.do_inspect(
content["code"],
content["cursor_pos"],
content.get("detail_level", 0),
set(content.get("omit_sections", [])),
)
if inspect.isawaitable(reply_content):
reply_content = await reply_content
else:
warnings.warn(
_AWAITABLE_MESSAGE.format(func_name="do_inspect", target=self.do_inspect),
PendingDeprecationWarning,
stacklevel=1,
)
# Before we send this object over, we scrub it for JSON usage
reply_content = json_clean(reply_content)
msg = self.session.send(stream, "inspect_reply", reply_content, parent, ident)
self.log.debug("%s", msg)
def do_inspect(self, code, cursor_pos, detail_level=0, omit_sections=()):
"""Override in subclasses to allow introspection."""
return {"status": "ok", "data": {}, "metadata": {}, "found": False}
async def history_request(self, stream, ident, parent):
"""Handle a history request."""
if not self.session:
return
content = parent["content"]
reply_content = self.do_history(**content)
if inspect.isawaitable(reply_content):
reply_content = await reply_content
else:
warnings.warn(
_AWAITABLE_MESSAGE.format(func_name="do_history", target=self.do_history),
PendingDeprecationWarning,
stacklevel=1,
)
reply_content = json_clean(reply_content)
msg = self.session.send(stream, "history_reply", reply_content, parent, ident)
self.log.debug("%s", msg)
def do_history(
self,
hist_access_type,
output,
raw,
session=None,
start=None,
stop=None,
n=None,
pattern=None,
unique=False,
):
"""Override in subclasses to access history."""
return {"status": "ok", "history": []}
async def connect_request(self, stream, ident, parent):
"""Handle a connect request."""
if not self.session:
return
content = self._recorded_ports.copy() if self._recorded_ports else {}
content["status"] = "ok"
msg = self.session.send(stream, "connect_reply", content, parent, ident)
self.log.debug("%s", msg)
@property
def kernel_info(self):
from .debugger import _is_debugpy_available
supported_features: list[str] = []
if self._supports_kernel_subshells:
supported_features.append("kernel subshells")
if _is_debugpy_available:
supported_features.append("debugger")
return {
"protocol_version": kernel_protocol_version,
"implementation": self.implementation,
"implementation_version": self.implementation_version,
"language_info": self.language_info,
"banner": self.banner,
"help_links": self.help_links,
"supported_features": supported_features,
}
async def kernel_info_request(self, stream, ident, parent):
"""Handle a kernel info request."""
if not self.session:
return
content = {"status": "ok"}
content.update(self.kernel_info)
msg = self.session.send(stream, "kernel_info_reply", content, parent, ident)
self.log.debug("%s", msg)
async def comm_info_request(self, stream, ident, parent):
"""Handle a comm info request."""
if not self.session:
return
content = parent["content"]
target_name = content.get("target_name", None)
# Should this be moved to ipkernel?
if hasattr(self, "comm_manager"):
comms = {
k: dict(target_name=v.target_name)
for (k, v) in self.comm_manager.comms.items()
if v.target_name == target_name or target_name is None
}
else:
comms = {}
reply_content = dict(comms=comms, status="ok")
msg = self.session.send(stream, "comm_info_reply", reply_content, parent, ident)
self.log.debug("%s", msg)
def _send_interrupt_children(self):
if os.name == "nt":
self.log.error("Interrupt message not supported on Windows")
else:
pid = os.getpid()
pgid = os.getpgid(pid)
# Prefer process-group over process
# but only if the kernel is the leader of the process group
if pgid and pgid == pid and hasattr(os, "killpg"):
try:
os.killpg(pgid, SIGINT)
except OSError:
os.kill(pid, SIGINT)
raise
else:
os.kill(pid, SIGINT)
async def interrupt_request(self, stream, ident, parent):
"""Handle an interrupt request."""
if not self.session:
return
content: dict[str, t.Any] = {"status": "ok"}
try:
self._send_interrupt_children()
except OSError as err:
import traceback
content = {
"status": "error",
"traceback": traceback.format_stack(),
"ename": str(type(err).__name__),
"evalue": str(err),
}
self.session.send(stream, "interrupt_reply", content, parent, ident=ident)
return
async def shutdown_request(self, stream, ident, parent):
"""Handle a shutdown request."""
if not self.session:
return
content = self.do_shutdown(parent["content"]["restart"])
if inspect.isawaitable(content):
content = await content
else:
warnings.warn(
_AWAITABLE_MESSAGE.format(func_name="do_shutdown", target=self.do_shutdown),
PendingDeprecationWarning,
stacklevel=1,
)
self.session.send(stream, "shutdown_reply", content, parent, ident=ident)
# same content, but different msg_id for broadcasting on IOPub
self._shutdown_message = self.session.msg("shutdown_reply", content, parent)
await self._at_shutdown()
self.log.debug("Stopping control ioloop")
if self.control_stream:
control_io_loop = self.control_stream.io_loop
control_io_loop.add_callback(control_io_loop.stop)
self.log.debug("Stopping shell ioloop")
self.io_loop.add_callback(self.io_loop.stop)
if self.shell_stream and self.shell_stream.io_loop != self.io_loop:
shell_io_loop = self.shell_stream.io_loop
shell_io_loop.add_callback(shell_io_loop.stop)
def do_shutdown(self, restart):
"""Override in subclasses to do things when the frontend shuts down the
kernel.
"""
return {"status": "ok", "restart": restart}
async def is_complete_request(self, stream, ident, parent):
"""Handle an is_complete request."""
if not self.session:
return
content = parent["content"]
code = content["code"]
reply_content = self.do_is_complete(code)
if inspect.isawaitable(reply_content):
reply_content = await reply_content
else:
warnings.warn(
_AWAITABLE_MESSAGE.format(func_name="do_is_complete", target=self.do_is_complete),
PendingDeprecationWarning,
stacklevel=1,
)
reply_content = json_clean(reply_content)
reply_msg = self.session.send(stream, "is_complete_reply", reply_content, parent, ident)
self.log.debug("%s", reply_msg)
def do_is_complete(self, code):
"""Override in subclasses to find completions."""
return {"status": "unknown"}
async def debug_request(self, stream, ident, parent):
"""Handle a debug request."""
if not self.session:
return
content = parent["content"]
reply_content = self.do_debug_request(content)
if inspect.isawaitable(reply_content):
reply_content = await reply_content
else:
warnings.warn(
_AWAITABLE_MESSAGE.format(
func_name="do_debug_request", target=self.do_debug_request
),
PendingDeprecationWarning,
stacklevel=1,
)
reply_content = json_clean(reply_content)
reply_msg = self.session.send(stream, "debug_reply", reply_content, parent, ident)
self.log.debug("%s", reply_msg)
def get_process_metric_value(self, process, name, attribute=None):
"""Get the process metric value."""
try:
metric_value = getattr(process, name)()
if attribute is not None: # ... a named tuple
return getattr(metric_value, attribute)
# ... or a number
return metric_value
# Avoid littering logs with stack traces
# complaining about dead processes
except BaseException:
return 0
async def usage_request(self, stream, ident, parent):
"""Handle a usage request."""
if not self.session:
return
reply_content = {"hostname": socket.gethostname(), "pid": os.getpid()}
current_process = psutil.Process()
all_processes = [current_process, *current_process.children(recursive=True)]
# Ensure 1) self.processes is updated to only current subprocesses
# and 2) we reuse processes when possible (needed for accurate CPU)
self.processes = {
process.pid: self.processes.get(process.pid, process) # type:ignore[misc,call-overload]
for process in all_processes
}
reply_content["kernel_cpu"] = sum(
[
self.get_process_metric_value(process, "cpu_percent", None)
for process in self.processes.values()
]
)
mem_info_type = "pss" if hasattr(current_process.memory_full_info(), "pss") else "rss"
reply_content["kernel_memory"] = sum(
[
self.get_process_metric_value(process, "memory_full_info", mem_info_type)
for process in self.processes.values()
]
)
cpu_percent = psutil.cpu_percent()
# https://psutil.readthedocs.io/en/latest/index.html?highlight=cpu#psutil.cpu_percent
# The first time cpu_percent is called it will return a meaningless 0.0 value which you are supposed to ignore.
if cpu_percent is not None and cpu_percent != 0.0: # type:ignore[redundant-expr]
reply_content["host_cpu_percent"] = cpu_percent
reply_content["cpu_count"] = psutil.cpu_count(logical=True)
reply_content["host_virtual_memory"] = dict(psutil.virtual_memory()._asdict())
reply_msg = self.session.send(stream, "usage_reply", reply_content, parent, ident)
self.log.debug("%s", reply_msg)
async def do_debug_request(self, msg):
raise NotImplementedError
async def create_subshell_request(self, socket, ident, parent) -> None:
"""Handle a create subshell request.
.. versionadded:: 7
"""
if not self.session:
return
if not self._supports_kernel_subshells:
self.log.error("Subshells are not supported by this kernel")
return
assert threading.current_thread().name == CONTROL_THREAD_NAME
# This should only be called in the control thread if it exists.
# Request is passed to shell channel thread to process.
control_socket = self.shell_channel_thread.manager.control_to_shell_channel.from_socket
control_socket.send_json({"type": "create"})
reply = control_socket.recv_json()
self.session.send(socket, "create_subshell_reply", reply, parent, ident)
async def delete_subshell_request(self, socket, ident, parent) -> None:
"""Handle a delete subshell request.
.. versionadded:: 7
"""
if not self.session:
return
if not self._supports_kernel_subshells:
self.log.error("KERNEL SUBSHELLS NOT SUPPORTED")
return
assert threading.current_thread().name == CONTROL_THREAD_NAME
try:
content = parent["content"]
subshell_id = content["subshell_id"]
except Exception:
self.log.error("Got bad msg from parent: %s", parent)
return
# This should only be called in the control thread if it exists.
# Request is passed to shell channel thread to process.
control_socket = self.shell_channel_thread.manager.control_to_shell_channel.from_socket
control_socket.send_json({"type": "delete", "subshell_id": subshell_id})
reply = control_socket.recv_json()
self.session.send(socket, "delete_subshell_reply", reply, parent, ident)
async def list_subshell_request(self, socket, ident, parent) -> None:
"""Handle a list subshell request.
.. versionadded:: 7
"""
if not self.session:
return
if not self._supports_kernel_subshells:
self.log.error("Subshells are not supported by this kernel")
return
assert threading.current_thread().name == CONTROL_THREAD_NAME
# This should only be called in the control thread if it exists.
# Request is passed to shell channel thread to process.
control_socket = self.shell_channel_thread.manager.control_to_shell_channel.from_socket
control_socket.send_json({"type": "list"})
reply = control_socket.recv_json()
self.session.send(socket, "list_subshell_reply", reply, parent, ident)
# ---------------------------------------------------------------------------
# Protected interface
# ---------------------------------------------------------------------------
def _topic(self, topic):
"""prefixed topic for IOPub messages"""
base = "kernel.%s" % self.ident
return (f"{base}.{topic}").encode()
_aborting = Bool(False)
def _post_dummy_stop_aborting_message(self, subshell_id: str | None) -> None:
"""Post a dummy message to the correct subshell that when handled will unset
the _aborting flag.
"""
subshell_manager = self.shell_channel_thread.manager
socket = subshell_manager.get_shell_channel_to_subshell_socket(subshell_id)
assert socket is not None
msg = b"stop aborting" # Magic string for dummy message.
socket.send(msg, copy=False)
def _abort_queues(self, subshell_id: str | None = None):
# while this flag is true,
# execute requests will be aborted
if subshell_id is None:
self._aborting = True
else:
self.shell_channel_thread.manager.set_subshell_aborting(subshell_id, True)
self.log.info("Aborting queue")
if self.shell_channel_thread:
# Only really need to do this if there are messages already queued
self.shell_channel_thread.io_loop.add_callback(
self._post_dummy_stop_aborting_message, subshell_id
)
return
# flush streams, so all currently waiting messages
# are added to the queue
if self.shell_stream and not self._supports_kernel_subshells:
self.shell_stream.flush()
# Callback to signal that we are done aborting
# dispatch functions _must_ be async
async def stop_aborting():
self.log.info("Finishing abort")
self._aborting = False
if self.stop_on_error_timeout:
# if we have a delay, give messages this long to arrive on the queue
# before we stop aborting requests
self.io_loop.call_later(self.stop_on_error_timeout, stop_aborting)
# If we have an eventloop, it may interfere with the call_later above.
# If the loop has a _schedule_exit method, we call that so the loop exits
# after stop_on_error_timeout, returning to the main io_loop and letting
# the call_later fire.
if self.eventloop is not None and hasattr(self.eventloop, "_schedule_exit"):
self.eventloop._schedule_exit(self.stop_on_error_timeout + 0.01)
else:
self.io_loop.add_callback(stop_aborting)
def _send_abort_reply(self, stream, msg, idents):
"""Send a reply to an aborted request"""
if not self.session:
return
self.log.info("Aborting %s: %s", msg["header"]["msg_id"], msg["header"]["msg_type"])
reply_type = msg["header"]["msg_type"].rsplit("_", 1)[0] + "_reply"
status = {"status": "aborted"}
md = self.init_metadata(msg)
md = self.finish_metadata(msg, md, status)
md.update(status)
self.session.send(
stream,
reply_type,
metadata=md,
content=status,
parent=msg,
ident=idents,
)
def _no_raw_input(self):
"""Raise StdinNotImplementedError if active frontend doesn't support
stdin."""
msg = "raw_input was called, but this frontend does not support stdin."
raise StdinNotImplementedError(msg)
def getpass(self, prompt="", stream=None):
"""Forward getpass to frontends
Raises
------
StdinNotImplementedError if active frontend doesn't support stdin.
"""
if not self._allow_stdin:
msg = "getpass was called, but this frontend does not support input requests."
raise StdinNotImplementedError(msg)
if stream is not None:
import warnings
warnings.warn(
"The `stream` parameter of `getpass.getpass` will have no effect when using ipykernel",
UserWarning,
stacklevel=2,
)
return self._input_request(
prompt,
self._get_shell_context_var(self._shell_parent_ident),
self.get_parent("shell"),
password=True,
)
def raw_input(self, prompt=""):
"""Forward raw_input to frontends
Raises
------
StdinNotImplementedError if active frontend doesn't support stdin.
"""
if not self._allow_stdin:
msg = "raw_input was called, but this frontend does not support input requests."
raise StdinNotImplementedError(msg)
return self._input_request(
str(prompt),
self._get_shell_context_var(self._shell_parent_ident),
self.get_parent("shell"),
password=False,
)
def _input_request(self, prompt, ident, parent, password=False):
# Flush output before making the request.
if sys.stdout is not None:
sys.stdout.flush()
if sys.stderr is not None:
sys.stderr.flush()
# flush the stdin socket, to purge stale replies
while True:
try:
self.stdin_socket.recv_multipart(zmq.NOBLOCK)
except zmq.ZMQError as e:
if e.errno == zmq.EAGAIN:
break
raise
# Send the input request.
assert self.session is not None
content = json_clean(dict(prompt=prompt, password=password))
self.session.send(self.stdin_socket, "input_request", content, parent, ident=ident)
# Await a response.
while True:
try:
# Use polling with select() so KeyboardInterrupts can get
# through; doing a blocking recv() means stdin reads are
# uninterruptible on Windows. We need a timeout because
# zmq.select() is also uninterruptible, but at least this
# way reads get noticed immediately and KeyboardInterrupts
# get noticed fairly quickly by human response time standards.
rlist, _, xlist = zmq.select([self.stdin_socket], [], [self.stdin_socket], 0.01)
if rlist or xlist:
ident, reply = self.session.recv(self.stdin_socket)
if (ident, reply) != (None, None):
break
except KeyboardInterrupt:
# re-raise KeyboardInterrupt, to truncate traceback
msg = "Interrupted by user"
raise KeyboardInterrupt(msg) from None
except Exception:
self.log.warning("Invalid Message:", exc_info=True)
try:
value = reply["content"]["value"] # type:ignore[index]
except Exception:
self.log.error("Bad input_reply: %s", parent)
value = ""
if value == "\x04":
# EOF
raise EOFError
return value
def _signal_children(self, signum):
"""
Send a signal to all our children
Like `killpg`, but does not include the current process
(or possible parents).
"""
sig_rep = f"{Signals(signum)!r}"
for p in self._process_children():
self.log.debug("Sending %s to subprocess %s", sig_rep, p)
try:
if signum == SIGTERM:
p.terminate()
elif signum == SIGKILL:
p.kill()
else:
p.send_signal(signum)
except psutil.NoSuchProcess:
pass
def _process_children(self):
"""Retrieve child processes in the kernel's process group
Avoids:
- including parents and self with killpg
- including all children that may have forked-off a new group
"""
kernel_process = psutil.Process()
all_children = kernel_process.children(recursive=True)
if os.name == "nt":
return all_children
kernel_pgid = os.getpgrp()
process_group_children = []
for child in all_children:
try:
child_pgid = os.getpgid(child.pid)
except OSError:
pass
else:
if child_pgid == kernel_pgid:
process_group_children.append(child)
return process_group_children
async def _progressively_terminate_all_children(self):
sleeps = (0.01, 0.03, 0.1, 0.3, 1, 3, 10)
if not self._process_children():
self.log.debug("Kernel has no children.")
return
for signum in (SIGTERM, SIGKILL):
for delay in sleeps:
children = self._process_children()
if not children:
self.log.debug("No more children, continuing shutdown routine.")
return
# signals only children, not current process
self._signal_children(signum)
self.log.debug(
"Will sleep %s sec before checking for children and retrying. %s",
delay,
children,
)
await asyncio.sleep(delay)
async def _at_shutdown(self):
"""Actions taken at shutdown by the kernel, called by python's atexit."""
try:
await self._progressively_terminate_all_children()
except Exception as e:
self.log.exception("Exception during subprocesses termination %s", e)
finally:
if self._shutdown_message is not None and self.session:
self.session.send(
self.iopub_socket,
self._shutdown_message,
ident=self._topic("shutdown"),
)
self.log.debug("%s", self._shutdown_message)
if self.control_stream:
self.control_stream.flush(zmq.POLLOUT)
@property
def _supports_kernel_subshells(self):
return self.shell_channel_thread is not None
|