# Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. import sys from IPython.core.displayhook import DisplayHook from IPython.core.displaypub import DisplayPublisher class PyDevDisplayHook(DisplayHook): """ Used for execution result """ def write_format_data(self, format_dict, *args, **kwargs): if not is_supported(format_dict): super(PyDevDisplayHook, self).write_format_data(format_dict, *args, **kwargs) return add_new_line_to_text(format_dict) format_dict["execution_count"] = str(get_current_exec_count(self.shell)) send_rich_output(format_dict) class PyDevDisplayPub(DisplayPublisher): """ Used for display() function """ def publish(self, data, *args, **kwargs): if not is_supported(data): super(PyDevDisplayPub, self).publish(data, *args, **kwargs) return add_new_line_to_text(data) data["execution_count"] = str(get_current_exec_count(self.shell)) send_rich_output(data) def get_current_exec_count(shell): if hasattr(shell, "pydev_curr_exec_line") and shell.pydev_curr_exec_line != 0: return shell.pydev_curr_exec_line else: return shell.execution_count def add_new_line_to_text(format_dict): if "text/plain" in format_dict: text = format_dict["text/plain"] if len(text) > 0 and not text.endswith("\n"): format_dict["text/plain"] = text + "\n" def is_supported(data): for type in data.keys(): if type not in ("text/plain", "image/png", "text/html"): return False if type == "text/html": html = data["text/html"] if not is_data_frame(html): return False return True def is_data_frame(html): return ("javascript" not in html) and ("dataframe" in html) and ("