Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions soliduimodelui/kernelprogram/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import os

IDENT_KERNEL_MANAGER = "kernel_manager"
IDENT_MAIN = "main"
KERNEL_PID_DIR = "process_pids"
SNAKEMQ_PORT = int(os.environ.get("SNAKEMQ_PORT", 8765))


def get_logger():
logging.basicConfig(
format="[%(asctime)s] %(levelname)s [%(name)s:%(lineno)s] %(message)s"
)

logger = logging.getLogger(__name__)
if "DEBUG" in os.environ:
logger.setLevel(logging.DEBUG)
return logger
237 changes: 237 additions & 0 deletions soliduimodelui/kernelprogram/kernel_manager.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,237 @@
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
import subprocess
import os
import queue
import json
import signal
import pathlib
import threading
import time
import atexit
import traceback

from time import sleep
from jupyter_client import BlockingKernelClient

from dotenv import load_dotenv
load_dotenv('.env')

import soliduimodelui.kernelprogram.utils as utils
import soliduimodelui.kernelprogram.config as config

# Set up globals
messaging = None
logger = config.get_logger()


class FlushingThread(threading.Thread):
def __init__(self, kc, kill_sema):
threading.Thread.__init__(self)
self.kill_sema = kill_sema
self.kc = kc

def run(self):
logger.info("Running message flusher...")
while True:

if self.kill_sema.acquire(blocking=False):
logger.info("Sema was released to kill thread")
sys.exit()

flush_kernel_msgs(self.kc)
time.sleep(1)


def cleanup_spawned_processes():
print("Cleaning up kernels...")
for filename in os.listdir(config.KERNEL_PID_DIR):
fp = os.path.join(config.KERNEL_PID_DIR, filename)
if os.path.isfile(fp):
try:
pid = int(filename.split(".pid")[0])
logger.debug("Killing process with pid %s" % pid)
os.remove(fp)
try:
if os.name == "nt":
os.kill(pid, signal.CTRL_BREAK_EVENT)
else:
os.kill(pid, signal.SIGKILL)

# After successful kill, cleanup pid file
os.remove(fp)

except Exception:
# Windows process killing is flaky
pass
except Exception as e:
logger.debug(e)


def start_snakemq(kc):
global messaging

messaging, link = utils.init_snakemq(config.IDENT_KERNEL_MANAGER, "connect")

def on_recv(conn, ident, message):
if ident == config.IDENT_MAIN:
message = json.loads(message.data.decode("utf-8"))

if message["type"] == "execute":
logger.debug("Executing command: %s" % message["value"])
kc.execute(message["value"])
# Try direct flush with default wait (0.2)
flush_kernel_msgs(kc)

messaging.on_message_recv.add(on_recv)

start_flusher(kc)

# Send alive
utils.send_json(messaging, {"type": "status", "value": "ready"}, config.IDENT_MAIN)
logger.info("Python kernel ready to receive messages!")

logger.info("Starting snakemq loop")

try:
link.loop()
except KeyboardInterrupt:
logger.info("Keyboard interrupt received, exiting...")
sys.exit(0)
except Exception as e:
logger.error("Error in snakemq loop: %s" % e)
sys.exit(1)


def start_flusher(kc):
# Start FlushMessenger
kill_sema = threading.Semaphore()
kill_sema.acquire()
t = FlushingThread(kc, kill_sema)
t.start()

def end_thread():
kill_sema.release()

atexit.register(end_thread)


def send_message(message, message_type="message"):
utils.send_json(
messaging, {"type": message_type, "value": message}, config.IDENT_MAIN
)


def flush_kernel_msgs(kc, tries=1, timeout=0.2):
try:
hit_empty = 0

while True:
try:
msg = kc.get_iopub_msg(timeout=timeout)
if msg["msg_type"] == "execute_result":
if "text/plain" in msg["content"]["data"]:
send_message(
msg["content"]["data"]["text/plain"], "message_raw"
)
if msg["msg_type"] == "display_data":
if "image/png" in msg["content"]["data"]:
# Convert to Slack upload
send_message(
msg["content"]["data"]["image/png"],
message_type="image/png",
)
elif "text/plain" in msg["content"]["data"]:
send_message(msg["content"]["data"]["text/plain"])

elif msg["msg_type"] == "stream":
logger.debug("Received stream output %s" % msg["content"]["text"])
send_message(msg["content"]["text"])
elif msg["msg_type"] == "error":
send_message(
utils.escape_ansi("\n".join(msg["content"]["traceback"])),
"message_raw",
)
except queue.Empty:
hit_empty += 1
if hit_empty == tries:
# Empty queue for one second, give back control
break
except (ValueError, IndexError):
# get_iopub_msg suffers from message fetch errors
break
except Exception as e:
logger.debug(f"{e} [{type(e)}")
logger.debug(traceback.format_exc())
break
except Exception as e:
logger.debug(f"{e} [{type(e)}")


def start_kernel():
kernel_connection_file = os.path.join(os.getcwd(), "kernel_connection_file.json")

if os.path.isfile(kernel_connection_file):
os.remove(kernel_connection_file)
if os.path.isdir(kernel_connection_file):
os.rmdir(kernel_connection_file)

launch_kernel_script_path = os.path.join(
pathlib.Path(__file__).parent.resolve(), "launch_kernel.py"
)

os.makedirs('workspace/', exist_ok=True)

kernel_process = subprocess.Popen(
[
sys.executable,
launch_kernel_script_path,
"--IPKernelApp.connection_file",
kernel_connection_file,
"--matplotlib=inline",
"--quiet",
],
cwd='workspace/'
)
# Write PID for caller to kill
str_kernel_pid = str(kernel_process.pid)
os.makedirs(config.KERNEL_PID_DIR, exist_ok=True)
with open(os.path.join(config.KERNEL_PID_DIR, str_kernel_pid + ".pid"), "w") as p:
p.write("kernel")

# Wait for kernel connection file to be written
while True:
if not os.path.isfile(kernel_connection_file):
sleep(0.1)
else:
# Keep looping if JSON parsing fails, file may be partially written
try:
with open(kernel_connection_file, 'r') as fp:
json.load(fp)
break
except json.JSONDecodeError:
pass

# Client
kc = BlockingKernelClient(connection_file=kernel_connection_file)
kc.load_connection_file()
kc.start_channels()
kc.wait_for_ready()
return kc


if __name__ == "__main__":
kc = start_kernel()
start_snakemq(kc)
18 changes: 18 additions & 0 deletions soliduimodelui/kernelprogram/launch_kernel.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

if __name__ == "__main__":
from ipykernel import kernelapp as app

app.launch_new_instance()
Loading