summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorkarnigen <karnigen@gmail.com>2023-12-29 16:25:17 +0100
committerkarnigen <karnigen@gmail.com>2023-12-29 16:25:17 +0100
commitf1f9d275a1ffaeb538a72e3643fb98231323337a (patch)
tree0ede0d3c064e17d4545cb6e085b97110bc8b2b29 /lib
parentfe323375e42253f00fd378fbaff1a3373385fccc (diff)
replace DEBUG,PROFILE by DEVEL.ini
Diffstat (limited to 'lib')
-rw-r--r--lib/debug.py21
-rw-r--r--lib/debug_utils.py36
2 files changed, 40 insertions, 17 deletions
diff --git a/lib/debug.py b/lib/debug.py
index 6934d6ed..a256bc0a 100644
--- a/lib/debug.py
+++ b/lib/debug.py
@@ -63,23 +63,25 @@ class Debug(object):
def __init__(self):
self.debugger = None
+ self.wait_attach = True
self.enabled = False
self.last_log_time = None
self.current_layer = None
self.group_stack = []
- def enable(self, debug_type):
+ def enable(self, debug_type, debug_file, wait_attach):
if debug_type == 'none':
return
self.debugger = debug_type
+ self.wait_attach = wait_attach
self.enabled = True
- self.init_log()
+ self.init_log(debug_file)
self.init_debugger()
self.init_svg()
- def init_log(self):
- self.log_file = os.path.join(os.path.dirname(os.path.dirname(__file__)), "debug.log")
+ def init_log(self, debug_file):
+ self.log_file = os.path.join(os.path.dirname(os.path.dirname(__file__)), debug_file)
# delete old content
with open(self.log_file, "w"):
pass
@@ -196,9 +198,10 @@ class Debug(object):
try:
if self.debugger == 'vscode':
debugpy.listen(('localhost', 5678))
- print("Waiting for debugger attach")
- debugpy.wait_for_client() # wait for debugger to attach
- debugpy.breakpoint() # stop here to start normal debugging
+ 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
elif self.debugger == 'pycharm':
pydevd_pycharm.settrace('localhost', port=5678, stdoutToServer=True,
stderrToServer=True)
@@ -360,5 +363,5 @@ class Debug(object):
debug = Debug()
-def enable(debug_type):
- debug.enable(debug_type)
+def enable(debug_type, debug_file, wait_attach):
+ debug.enable(debug_type, debug_file, wait_attach)
diff --git a/lib/debug_utils.py b/lib/debug_utils.py
index b5d7aa6a..183a44f8 100644
--- a/lib/debug_utils.py
+++ b/lib/debug_utils.py
@@ -5,6 +5,12 @@
import os
import sys
+from pathlib import Path
+
+# this file is without: import inkex
+# - so we can modify sys.path before importing inkex
+
+# DEBUG and PROFILE are in DEVEL.ini file
# DEBUG file format:
# - first non-comment line is debugger type
@@ -45,12 +51,24 @@ def parse_file(filename):
break
return value_type
-def write_offline_debug_script(SCRIPTDIR, bash_name, bash_svg):
+def write_offline_debug_script(SCRIPTDIR : Path, bash_name : Path, bash_svg : Path):
# prepare script for offline debugging from console
- # - only tested on linux
+
+ # check if input svg file exists in arguments, take argument that not start with '-' as file name
+ svgs = [arg for arg in sys.argv[1:] if not arg.startswith('-')]
+ if len(svgs) != 1:
+ print(f"WARN: {len(svgs)} svg files found, expected 1, [{svgs}]. No script created in write debug script.", file=sys.stderr)
+ return
+
+ svg_file = Path(svgs[0])
+ if svg_file.exists() and bash_svg.exists() and bash_svg.samefile(svg_file):
+ print(f"WARN: input svg file is same as output svg file. No script created in write debug script.", file=sys.stderr)
+ return
+
import shutil
- ink_file = os.path.join(SCRIPTDIR, bash_name)
- with open(ink_file, 'w') as f:
+ bash_file = SCRIPTDIR / bash_name
+
+ with open(bash_file, 'w') as f: # "w" text mode, automatic conversion of \n to os.linesep
f.write(f"#!/usr/bin/env bash\n\n")
f.write(f"# python version: {sys.version}\n") # python version
@@ -67,13 +85,11 @@ def write_offline_debug_script(SCRIPTDIR, bash_name, bash_svg):
for p in os.environ.get('PYTHONPATH', '').split(os.pathsep): # PYTHONPATH to list
f.write(f"# {p}\n")
- # take argument that not start with '-' as file name
- svg_file = " ".join([arg for arg in sys.argv[1:] if not arg.startswith('-')])
f.write(f"# copy {svg_file} to {bash_svg}\n")
# check if files are not the same
if svg_file != bash_svg:
shutil.copy(svg_file, SCRIPTDIR / bash_svg) # copy file to bash_svg
- myargs = myargs.replace(svg_file, bash_svg) # replace file name with bash_svg
+ myargs = myargs.replace(str(svg_file), str(bash_svg)) # replace file name with bash_svg
# see void Extension::set_environment() in inkscape/src/extension/extension.cpp
notexported = ["SELF_CALL"] # if an extension calls inkscape itself
@@ -86,5 +102,9 @@ def write_offline_debug_script(SCRIPTDIR, bash_name, bash_svg):
if k in os.environ:
f.write(f'export {k}="{os.environ[k]}"\n')
+ f.write('# signal inkstitch.py that we are running from offline script\n')
+ f.write(f'export INKSTITCH_OFFLINE_SCRIPT="True"\n')
+
+ f.write('# call inkstitch\n')
f.write(f"python3 inkstitch.py {myargs}\n")
- os.chmod(ink_file, 0o0755) # make file executable
+ bash_file.chmod(0o0755) # make file executable