metadata: add object detection logging

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2022-11-30 16:24:34 -05:00
parent 1cb46a8f8f
commit dde9bcc752
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
1 changed files with 12 additions and 2 deletions

View File

@ -138,11 +138,21 @@ class BaseSlicer(object):
pattern: Optional[str] = None
) -> bool:
match = re.search(
r"\n(DEFINE_OBJECT)|(EXCLUDE_OBJECT_DEFINE) NAME=",
r"\n((DEFINE_OBJECT)|(EXCLUDE_OBJECT_DEFINE)) NAME=",
data
)
if match is not None:
# Objects alread processed
# Objects already processed
fname = os.path.basename(self.path)
log_to_stderr(
f"File '{fname}' currently supports cancellation, "
"processing aborted"
)
if match.group(1).startswith("DEFINE_OBJECT"):
log_to_stderr(
"Legacy object processing detected. This is not "
"compatible with official versions of Klipper."
)
return False
# Always check M486
patterns = [r"\nM486"]