inkstitch/lib/debug.py

386 wiersze
14 KiB
Python
Czysty Zwykły widok Historia

2021-03-12 04:17:19 +00:00
# Authors: see git history
#
# Copyright (c) 2010 Authors
# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
2019-03-28 18:47:05 +00:00
import os
import sys
import atexit # to save svg file on exit
import socket # to check if debugger is running
import time # to measure time of code block, use time.monotonic() instead of time.time()
from datetime import datetime
from contextlib import contextmanager # to measure time of with block
import configparser # to read DEBUG.ini
from pathlib import Path # to work with paths as objects
2019-03-28 18:47:05 +00:00
2019-03-28 19:52:37 +00:00
import inkex
from lxml import etree # to create svg file
2019-03-28 19:52:37 +00:00
from .svg import line_strings_to_path
from .svg.tags import INKSCAPE_GROUPMODE, INKSCAPE_LABEL
2019-03-28 19:52:37 +00:00
# decorator to check if debugging is enabled
# - if debug is not enabled then decorated function is not called
2019-03-29 19:03:28 +00:00
def check_enabled(func):
def decorated(self, *args, **kwargs):
if self.enabled:
2023-01-29 03:09:34 +00:00
return func(self, *args, **kwargs)
return decorated
# unwrapping = provision for functions as arguments
# - if argument is callable then it is called and return value is used as argument
# otherwise argument is returned as is
2023-01-29 03:09:34 +00:00
def _unwrap(arg):
if callable(arg):
return arg()
else:
return arg
# decorator to unwrap arguments if they are callable
# eg: if argument is lambda function then it is called and return value is used as argument
2023-01-29 03:09:34 +00:00
def unwrap_arguments(func):
def decorated(self, *args, **kwargs):
unwrapped_args = [_unwrap(arg) for arg in args]
unwrapped_kwargs = {name: _unwrap(value) for name, value in kwargs.items()}
return func(self, *unwrapped_args, **unwrapped_kwargs)
2019-03-29 19:03:28 +00:00
return decorated
2019-03-28 18:47:05 +00:00
class Debug(object):
2023-01-29 03:09:34 +00:00
"""Tools to help debug Ink/Stitch
This class contains methods to log strings and SVG elements. Strings are
logged to debug.log, and SVG elements are stored in debug.svg to aid in
debugging stitch algorithms.
All functionality is gated by self.enabled. If debugging is not enabled,
then debug calls will consume very few resources. Any method argument
can be a callable, in which case it is called and the return value is
logged instead. This way one can log potentially expensive expressions
by wrapping them in a lambda:
debug.log(lambda: some_expensive_function(some_argument))
The lambda is only called if debugging is enabled.
"""
2019-03-28 18:47:05 +00:00
def __init__(self):
2023-12-17 22:08:39 +00:00
self.debugger = None
2023-12-29 15:25:17 +00:00
self.wait_attach = True
2019-03-29 19:03:28 +00:00
self.enabled = False
2019-03-28 18:47:05 +00:00
self.last_log_time = None
2019-03-28 19:52:37 +00:00
self.current_layer = None
2019-03-29 19:03:28 +00:00
self.group_stack = []
2019-03-28 18:47:05 +00:00
def enable(self, debug_type, debug_dir : Path, ini : configparser.ConfigParser):
# initilize file names and other parameters from DEBUG.ini file
self.debug_dir = debug_dir # directory where debug files are stored
self.debug_log_file = ini.get("DEBUG","debug_log_file", fallback="debug.log")
self.debug_svg_file = ini.get("DEBUG","debug_svg_file", fallback="debug.svg")
self.wait_attach = ini.getboolean("DEBUG","wait_attach", fallback=True) # currently only for vscode
2023-12-17 22:08:39 +00:00
if debug_type == 'none':
return
2023-12-17 22:08:39 +00:00
self.debugger = debug_type
2019-03-29 19:03:28 +00:00
self.enabled = True
self.init_log()
2019-03-29 19:03:28 +00:00
self.init_debugger()
self.init_svg()
2019-03-28 18:47:05 +00:00
def init_log(self):
self.log_file = self.debug_dir / self.debug_log_file
# delete old content
with self.log_file.open("w"):
pass
2019-03-28 18:47:05 +00:00
self.log("Debug logging enabled.")
2019-03-29 19:03:28 +00:00
def init_debugger(self):
2023-02-16 04:11:13 +00:00
# How to debug Ink/Stitch with LiClipse:
2019-03-28 18:47:05 +00:00
#
# 1. Install LiClipse (liclipse.com) -- no need to install Eclipse first
# 2. Start debug server as described here: http://www.pydev.org/manual_adv_remote_debugger.html
# * follow the "Note:" to enable the debug server menu item
# 3. Copy and edit a file named "DEBUG.ini" from "DEBUG_template.ini" next to inkstitch.py in your git clone.
2019-03-28 18:47:05 +00:00
# 4. Run any extension and PyDev will start debugging.
# debugger = vscode - 'debugpy' for vscode editor
# debugger = pycharm - 'pydevd-pycharm' for pycharm editor
# debugger = pydev - 'pydevd' for eclipse editor
# debugger = file - no debugger, only debug.log, debug.svg are used
2023-02-16 04:11:13 +00:00
###
# To debug with PyCharm:
2023-02-16 13:00:12 +00:00
# You must use the PyCharm Professional Edition and _not_ the Community
# Edition. Jetbrains has chosen to make remote debugging a Pro feature.
# To debug Inkscape python extensions, the extension code and Inkscape run
# independently of PyCharm, and only communicate with the debugger via a
# TCP socket. Thus, debugging is "remote," even if it's on the same machine,
# connected via the loopback interface.
2023-02-16 04:11:13 +00:00
#
# 1. pip install pydev_pycharm
#
# pydev_pycharm is versioned frequently. Jetbrains suggests installing
# a version at least compatible with the current build. For example, if your
# PyCharm build, as found in menu PyCharm -> About Pycharm is 223.8617.48,
# you could do:
# pip install pydevd-pycharm~=223.8617.48
#
2023-02-16 13:00:12 +00:00
# 2. From the Pycharm "Run" menu, choose "Edit Configurations..." and create a new
2023-02-16 04:11:13 +00:00
# configuration. Set "IDE host name:" to "localhost" and "Port:" to 5678.
# You can leave the default settings for all other choices.
#
# 3. Touch a file named "DEBUG.ini" at the top of your git repo, as above.
2023-02-16 04:11:13 +00:00
#
2023-02-16 13:00:12 +00:00
# 4. Create a symbolic link in the Inkscape extensions directory to the
2023-02-16 13:02:07 +00:00
# top-level directory of your git repo. On a mac, for example:
2023-02-16 13:00:12 +00:00
# cd ~/Library/Application\ Support/org.inkscape.Inkscape/config/inkscape/extensions/
2023-02-16 13:02:07 +00:00
# ln -s <full path to the top level of your Ink/Stitch git repo>
2023-02-16 13:00:12 +00:00
# On other architectures it may be:
# cd ~/.config/inkscape/extensions
2023-02-16 13:02:07 +00:00
# ln -s <full path to the top level of your Ink/Stitch git repo>
2023-02-16 13:00:12 +00:00
# Remove any other Ink/Stitch files or references to Ink/Stitch from the
# extensions directory, or you'll see duplicate entries in the Ink/Stitch
# extensions menu in Inkscape.
#
# 5. In Pycharm, either click on the green "bug" icon if visible in the upper
2023-02-16 13:05:38 +00:00
# right or press Ctrl-D to start debugging.The PyCharm debugger pane will
# display the message "Waiting for process connection..."
2023-02-16 04:11:13 +00:00
#
# 6. Do some action in Inkscape which invokes Ink/Stitch extension code, and the
2023-02-16 04:11:13 +00:00
# debugger will be triggered. If you've left "Suspend after connect" checked
# in the Run configuration, PyCharm will pause in the "self.log("Enabled
# PyDev debugger.)" statement, below. Uncheck the box to have it continue
# automatically to your first set breakpoint.
2023-12-17 22:08:39 +00:00
###
# To debug with VS Code
# see: https://code.visualstudio.com/docs/python/debugging#_command-line-debugging
# https://code.visualstudio.com/docs/python/debugging#_debugging-by-attaching-over-a-network-connection
#
# 1. Install the Python extension for VS Code
# pip install debugpy
# 2. create .vscode/launch.json containing:
2023-12-17 22:08:39 +00:00
# "configurations": [ ...
# {
# "name": "Python: Attach",
# "type": "python",
# "request": "attach",
# "connect": {
# "host": "localhost",
# "port": 5678
# }
# }
# ]
# 3. Touch a file named "DEBUG.ini" at the top of your git repo, as above.
2023-12-17 22:08:39 +00:00
# 4. Start the debug server in VS Code by clicking on the debug icon in the left pane
# select "Python: Attach" from the dropdown menu and click on the green arrow.
# The debug server will start and connect to already running python processes,
# but immediately exit if no python processes are running.
2023-12-17 22:08:39 +00:00
#
# Notes:
# to see flask server url routes:
# - comment out the line self.disable_logging() in run() of lib/api/server.py
2019-03-28 18:47:05 +00:00
try:
2023-12-17 22:08:39 +00:00
if self.debugger == 'vscode':
import debugpy
elif self.debugger == 'pycharm':
2023-02-16 04:11:13 +00:00
import pydevd_pycharm
2023-12-17 22:08:39 +00:00
elif self.debugger == 'pydev':
2023-02-16 04:11:13 +00:00
import pydevd
elif self.debugger == 'file':
pass
2023-12-17 22:08:39 +00:00
else:
raise ValueError(f"unknown debugger: '{self.debugger}'")
2023-02-16 04:11:13 +00:00
2019-03-28 18:47:05 +00:00
except ImportError:
self.log(f"importing debugger failed (debugger disabled) for {self.debugger}")
2019-03-28 18:47:05 +00:00
# pydevd likes to shout about errors to stderr whether I want it to or not
with open(os.devnull, 'w') as devnull:
stderr = sys.stderr
sys.stderr = devnull
try:
2023-12-17 22:08:39 +00:00
if self.debugger == 'vscode':
debugpy.listen(('localhost', 5678))
2023-12-29 15:25:17 +00:00
if self.wait_attach:
print("Waiting for debugger attach")
debugpy.wait_for_client() # wait for debugger to attach
debugpy.breakpoint() # stop here to start normal debugging
2023-12-17 22:08:39 +00:00
elif self.debugger == 'pycharm':
2023-02-16 04:11:13 +00:00
pydevd_pycharm.settrace('localhost', port=5678, stdoutToServer=True,
stderrToServer=True)
2023-12-17 22:08:39 +00:00
elif self.debugger == 'pydev':
2023-02-16 04:11:13 +00:00
pydevd.settrace()
elif self.debugger == 'file':
pass
2023-12-17 22:08:39 +00:00
else:
raise ValueError(f"unknown debugger: '{self.debugger}'")
2023-02-16 04:11:13 +00:00
except socket.error as error:
2019-03-28 18:47:05 +00:00
self.log("Debugging: connection to pydevd failed: %s", error)
2023-12-17 22:08:39 +00:00
self.log(f"Be sure to run 'Start debugging server' in {self.debugger} to enable debugging.")
2019-03-28 18:47:05 +00:00
else:
2023-12-17 22:08:39 +00:00
self.log(f"Enabled '{self.debugger}' debugger.")
2019-03-28 18:47:05 +00:00
sys.stderr = stderr
2019-03-29 19:03:28 +00:00
def init_svg(self):
2019-03-28 19:52:37 +00:00
self.svg = etree.Element("svg", nsmap=inkex.NSS)
atexit.register(self.save_svg)
def save_svg(self):
tree = etree.ElementTree(self.svg)
debug_svg = self.debug_dir / self.debug_svg_file
tree.write(debug_svg)
2019-03-28 19:52:37 +00:00
2019-03-29 19:03:28 +00:00
@check_enabled
2023-01-29 03:09:34 +00:00
@unwrap_arguments
2019-03-28 19:52:37 +00:00
def add_layer(self, name="Debug"):
layer = etree.Element("g", {
INKSCAPE_GROUPMODE: "layer",
INKSCAPE_LABEL: name,
"style": "display: none"
2019-03-28 19:52:37 +00:00
})
self.svg.append(layer)
self.current_layer = layer
2019-03-29 19:03:28 +00:00
@check_enabled
2023-01-29 03:09:34 +00:00
@unwrap_arguments
2019-03-29 19:03:28 +00:00
def open_group(self, name="Group"):
group = etree.Element("g", {
INKSCAPE_LABEL: name
})
2019-03-28 18:47:05 +00:00
2019-03-29 19:03:28 +00:00
self.log_svg_element(group)
self.group_stack.append(group)
2019-03-28 18:47:05 +00:00
2019-03-29 19:03:28 +00:00
@check_enabled
2023-01-29 03:09:34 +00:00
@unwrap_arguments
2019-03-29 19:03:28 +00:00
def close_group(self):
if self.group_stack:
self.group_stack.pop()
@check_enabled
2023-01-29 03:09:34 +00:00
@unwrap_arguments
2019-03-29 19:03:28 +00:00
def log(self, message, *args):
2019-03-28 18:47:05 +00:00
if self.last_log_time:
message = "(+%s) %s" % (datetime.now() - self.last_log_time, message)
self.raw_log(message, *args)
2019-03-29 19:03:28 +00:00
def raw_log(self, message, *args):
2019-03-28 18:47:05 +00:00
now = datetime.now()
timestamp = now.isoformat()
self.last_log_time = now
with self.log_file.open("a") as logfile:
print(timestamp, message % args, file=logfile)
logfile.flush()
2019-03-28 18:47:05 +00:00
# decorator to measure time of function
2019-03-28 18:47:05 +00:00
def time(self, func):
def decorated(*args, **kwargs):
2019-03-29 19:03:28 +00:00
if self.enabled:
self.raw_log("entering %s()", func.__name__)
start = time.monotonic()
2019-03-29 19:03:28 +00:00
2019-03-28 18:47:05 +00:00
result = func(*args, **kwargs)
2019-03-29 19:03:28 +00:00
if self.enabled:
end = time.monotonic()
self.raw_log("leaving %s(), duration = %s", func.__name__, round(end - start, 6))
2019-03-29 19:03:28 +00:00
2019-03-28 18:47:05 +00:00
return result
return decorated
2019-03-29 19:03:28 +00:00
@check_enabled
2023-01-29 03:09:34 +00:00
@unwrap_arguments
2019-03-28 19:52:37 +00:00
def log_svg_element(self, element):
if self.current_layer is None:
self.add_layer()
2019-03-29 19:03:28 +00:00
if self.group_stack:
self.group_stack[-1].append(element)
else:
self.current_layer.append(element)
2019-03-28 19:52:37 +00:00
2019-03-29 19:03:28 +00:00
@check_enabled
2023-01-29 03:09:34 +00:00
@unwrap_arguments
2019-03-29 19:03:28 +00:00
def log_line_string(self, line_string, name=None, color=None):
2019-03-28 19:52:37 +00:00
"""Add a Shapely LineString to the SVG log."""
2019-03-29 19:03:28 +00:00
self.log_line_strings([line_string], name, color)
2019-03-28 19:52:37 +00:00
2019-03-29 19:03:28 +00:00
@check_enabled
2023-01-29 03:09:34 +00:00
@unwrap_arguments
2019-03-29 19:03:28 +00:00
def log_line_strings(self, line_strings, name=None, color=None):
2019-03-28 19:52:37 +00:00
path = line_strings_to_path(line_strings)
2022-06-22 14:11:12 +00:00
path.set('style', str(inkex.Style({"stroke": color or "#000000", "stroke-width": "0.3", "fill": None})))
2019-03-29 19:03:28 +00:00
if name is not None:
path.set(INKSCAPE_LABEL, name)
2019-03-28 19:52:37 +00:00
self.log_svg_element(path)
2019-03-29 19:03:28 +00:00
@check_enabled
2023-01-29 03:09:34 +00:00
@unwrap_arguments
2019-03-29 19:03:28 +00:00
def log_line(self, start, end, name="line", color=None):
self.log_svg_element(etree.Element("path", {
"d": "M%s,%s %s,%s" % (start + end),
2022-06-22 14:11:12 +00:00
"style": str(inkex.Style({"stroke": color or "#000000", "stroke-width": "0.3", "fill": None})),
2019-03-29 19:03:28 +00:00
INKSCAPE_LABEL: name
}))
2023-01-18 02:44:23 +00:00
@check_enabled
2023-01-29 03:09:34 +00:00
@unwrap_arguments
2023-01-18 02:44:23 +00:00
def log_point(self, point, name="point", color=None):
self.log_svg_element(etree.Element("circle", {
"cx": str(point.x),
"cy": str(point.y),
"r": "1",
"style": str(inkex.Style({"fill": "#000000"})),
}))
2019-03-29 19:03:28 +00:00
@check_enabled
2023-01-29 03:09:34 +00:00
@unwrap_arguments
2019-03-29 19:03:28 +00:00
def log_graph(self, graph, name="Graph", color=None):
d = ""
2019-03-29 19:03:28 +00:00
for edge in graph.edges:
d += "M%s,%s %s,%s" % (edge[0] + edge[1])
2019-03-29 19:03:28 +00:00
self.log_svg_element(etree.Element("path", {
"d": d,
2022-06-22 14:11:12 +00:00
"style": str(inkex.Style({"stroke": color or "#000000", "stroke-width": "0.3", "fill": None})),
INKSCAPE_LABEL: name
}))
2019-03-29 19:03:28 +00:00
# decorator to measure time of with block
@contextmanager
def time_this(self, label="code block"):
if self.enabled:
start = time.monotonic()
self.raw_log("begin %s", label)
yield
if self.enabled:
self.raw_log("completed %s, duration = %s", label, time.monotonic() - start)
2019-03-28 18:47:05 +00:00
# global debug object
2019-03-28 18:47:05 +00:00
debug = Debug()
2019-03-29 19:03:28 +00:00