1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
|
# Copyright (c) 2022 Ultimaker B.V.
# Uranium is released under the terms of the LGPLv3 or higher.
import configparser
import io
from typing import Any, cast, Dict, List, Optional, Set, Tuple
from PyQt6.QtCore import QObject, pyqtProperty, pyqtSignal
from UM.Logger import Logger
from PyQt6.QtQml import QQmlEngine
import UM.FlameProfiler
from UM.ConfigurationErrorMessage import ConfigurationErrorMessage
from UM.Signal import Signal, signalemitter
from UM.PluginObject import PluginObject
from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType
from UM.Settings.ContainerFormatError import ContainerFormatError
from UM.Settings.DefinitionContainer import DefinitionContainer #For getting all definitions in this stack.
from UM.Settings.Interfaces import ContainerInterface, ContainerRegistryInterface
from UM.Settings.PropertyEvaluationContext import PropertyEvaluationContext
from UM.Settings.SettingDefinition import SettingDefinition
from UM.Settings.SettingFunction import SettingFunction
from UM.Settings.Validator import ValidatorState
class IncorrectVersionError(Exception):
pass
class InvalidContainerStackError(Exception):
pass
MimeTypeDatabase.addMimeType(
MimeType(
name = "application/x-uranium-containerstack",
comment = "Uranium Container Stack",
suffixes = [ "stack.cfg" ]
)
)
MimeTypeDatabase.addMimeType(
MimeType(
name = "application/x-uranium-extruderstack",
comment = "Uranium Extruder Stack",
suffixes = [ "stack.cfg" ]
)
)
@signalemitter
class ContainerStack(QObject, ContainerInterface, PluginObject):
"""A stack of setting containers to handle setting value retrieval."""
Version = 5 # type: int
def __init__(self, stack_id: str) -> None:
"""Constructor
:param stack_id: A unique, machine readable/writable ID.
"""
super().__init__()
QQmlEngine.setObjectOwnership(self, QQmlEngine.ObjectOwnership.CppOwnership)
self._metadata = {
"id": stack_id,
"name": stack_id,
"version": self.Version,
"container_type": ContainerStack
} #type: Dict[str, Any]
self._containers = [] # type: List[ContainerInterface]
self._next_stack = None # type: Optional[ContainerStack]
self._read_only = False # type: bool
self._dirty = False # type: bool
self._path = "" # type: str
self._postponed_emits = [] # type: List[Tuple[Signal, ContainerInterface]] # gets filled with 2-tuples: signal, signal_argument(s)
self._property_changes = {} # type: Dict[str, Set[str]]
self._emit_property_changed_queued = False # type: bool
def __getnewargs__(self) -> Tuple[str]:
"""For pickle support"""
return (self.getId(),)
def __getstate__(self) -> Dict[str, Any]:
"""For pickle support"""
return self.__dict__
def __setstate__(self, state: Dict[str, Any]) -> None:
"""For pickle support"""
self.__dict__.update(state)
def getId(self) -> str:
""":copydoc ContainerInterface::getId
Reimplemented from ContainerInterface
"""
return cast(str, self._metadata["id"])
id = pyqtProperty(str, fget = getId, constant = True)
def getName(self) -> str:
""":copydoc ContainerInterface::getName
Reimplemented from ContainerInterface
"""
return str(self._metadata["name"])
def setName(self, name: str) -> None:
"""Set the name of this stack.
:param name: The new name of the stack.
"""
if name != self.getName():
self._metadata["name"] = name
self._dirty = True
self.nameChanged.emit()
self.metaDataChanged.emit(self)
nameChanged = pyqtSignal()
"""Emitted whenever the name of this stack changes."""
name = pyqtProperty(str, fget = getName, fset = setName, notify = nameChanged)
def isReadOnly(self) -> bool:
""":copydoc ContainerInterface::isReadOnly
Reimplemented from ContainerInterface
"""
return self._read_only
def setReadOnly(self, read_only: bool) -> None:
if read_only != self._read_only:
self._read_only = read_only
self.readOnlyChanged.emit()
readOnlyChanged = pyqtSignal()
readOnly = pyqtProperty(bool, fget = isReadOnly, fset = setReadOnly, notify = readOnlyChanged)
def getMetaData(self) -> Dict[str, Any]:
""":copydoc ContainerInterface::getMetaData
Reimplemented from ContainerInterface
"""
return self._metadata
def setMetaData(self, meta_data: Dict[str, Any]) -> None:
"""Set the complete set of metadata"""
if meta_data == self.getMetaData():
return #Unnecessary.
#We'll fill a temporary dictionary with all the required metadata and overwrite it with the new metadata.
#This way it is ensured that at least the required metadata is still there.
self._metadata = {
"id": self.getId(),
"name": self.getName(),
"version": self.getMetaData().get("version", 0),
"container_type": ContainerStack
}
self._metadata.update(meta_data)
self.metaDataChanged.emit(self)
metaDataChanged = pyqtSignal(QObject)
metaData = pyqtProperty("QVariantMap", fget = getMetaData, fset = setMetaData, notify = metaDataChanged)
def getMetaDataEntry(self, entry: str, default: Any = None) -> Any:
""":copydoc ContainerInterface::getMetaDataEntry
Reimplemented from ContainerInterface
"""
value = self._metadata.get(entry, None)
if value is None:
for container in self._containers:
value = container.getMetaDataEntry(entry, None)
if value is not None:
break
if value is None:
return default
else:
return value
def setMetaDataEntry(self, key: str, value: Any) -> None:
if key not in self._metadata or self._metadata[key] != value:
self._metadata[key] = value
self._dirty = True
self.metaDataChanged.emit(self)
def removeMetaDataEntry(self, key: str) -> None:
if key in self._metadata:
del self._metadata[key]
self.metaDataChanged.emit(self)
def isDirty(self) -> bool:
return self._dirty
def setDirty(self, dirty: bool) -> None:
self._dirty = dirty
containersChanged = Signal()
def getProperty(self, key: str, property_name: str, context: Optional[PropertyEvaluationContext] = None) -> Any:
""":copydoc ContainerInterface::getProperty
Reimplemented from ContainerInterface.
getProperty will start at the top of the stack and try to get the property
specified. If that container returns no value, the next container on the
stack will be tried and so on until the bottom of the stack is reached.
If a next stack is defined for this stack it will then try to get the
value from that stack. If no next stack is defined, None will be returned.
Note that if the property value is a function, this method will return the
result of evaluating that property with the current stack. If you need the
actual function, use getRawProperty()
"""
value = self.getRawProperty(key, property_name, context = context)
if isinstance(value, SettingFunction):
if context is not None:
context.pushContainer(self)
value = value(self, context)
if context is not None:
context.popContainer()
return value
def getRawProperty(self, key: str, property_name: str, *, context: Optional[PropertyEvaluationContext] = None, use_next: bool = True, skip_until_container: Optional[ContainerInterface] = None) -> Any:
"""Retrieve a property of a setting by key and property name.
This method does the same as getProperty() except it does not perform any
special handling of the result, instead the raw stored value is returned.
:param key: The key to get the property value of.
:param property_name: The name of the property to get the value of.
:param use_next: True if the value should be retrieved from the next
stack if not found in this stack. False if not.
:param skip_until_container: A container ID to skip to. If set, it will
be as if all containers above the specified container are empty. If the
container is not in the stack, it'll try to find it in the next stack.
:return: The raw property value of the property, or None if not found. Note that
the value might be a SettingFunction instance.
"""
containers = self._containers
if context is not None:
# if context is provided, check if there is any container that needs to be skipped.
start_index = context.context.get("evaluate_from_container_index", 0)
if start_index >= len(self._containers):
return None
containers = self._containers[start_index:]
if property_name not in ["value", "state", "validationState"]:
# Value, state & validationState can be changed by instanceContainer, the rest cant. Ask the definition
# right away
value = containers[-1].getProperty(key, property_name, context)
if value is not None:
return value
else:
for container in containers:
if skip_until_container and container.getId() != skip_until_container:
continue #Skip.
skip_until_container = None #When we find the container, stop skipping.
value = container.getProperty(key, property_name, context)
if value is not None:
return value
if self._next_stack and use_next:
return self._next_stack.getRawProperty(key, property_name, context = context,
use_next = use_next, skip_until_container = skip_until_container)
else:
return None
def hasProperty(self, key: str, property_name: str) -> bool:
""":copydoc ContainerInterface::hasProperty
Reimplemented from ContainerInterface.
hasProperty will check if any of the containers in the stack has the
specified property. If it does, it stops and returns True. If it gets to
the end of the stack, it returns False.
"""
for container in self._containers:
if container.hasProperty(key, property_name):
return True
if self._next_stack:
return self._next_stack.hasProperty(key, property_name)
return False
# NOTE: we make propertyChanged and propertiesChanged as queued signals because otherwise, the emits in
# _emitCollectedPropertyChanges() will be direct calls which modify the dict we are iterating over, and then
# everything crashes.
propertyChanged = Signal(Signal.Queued)
propertiesChanged = Signal(Signal.Queued)
def serialize(self, ignored_metadata_keys: Optional[Set[str]] = None) -> str:
""":copydoc ContainerInterface::serialize
Reimplemented from ContainerInterface
TODO: Expand documentation here, include the fact that this should _not_ include all containers
"""
parser = configparser.ConfigParser(interpolation = None, empty_lines_in_values = False)
parser["general"] = {}
parser["general"]["version"] = str(self._metadata["version"])
parser["general"]["name"] = str(self.getName())
parser["general"]["id"] = str(self.getId())
if ignored_metadata_keys is None:
ignored_metadata_keys = set()
ignored_metadata_keys |= {"id", "name", "version", "container_type"}
parser["metadata"] = {}
for key, value in self._metadata.items():
# only serialize the data that's not in the ignore list
if key not in ignored_metadata_keys:
parser["metadata"][key] = str(value)
parser.add_section("containers")
for index in range(len(self._containers)):
parser["containers"][str(index)] = str(self._containers[index].getId())
stream = io.StringIO()
parser.write(stream)
return stream.getvalue()
@classmethod
def _readAndValidateSerialized(cls, serialized: str) -> configparser.ConfigParser:
"""Deserializes the given data and checks if the required fields are present.
The profile upgrading code depends on information such as "configuration_type" and "version", which come from
the serialized data. Due to legacy problem, those data may not be available if it comes from an ancient Cura.
"""
parser = configparser.ConfigParser(interpolation = None, empty_lines_in_values=False)
parser.read_string(serialized)
if "general" not in parser or any(pn not in parser["general"] for pn in ("version", "name", "id")):
raise InvalidContainerStackError("Missing required section 'general' or 'version' property")
return parser
@classmethod
def getConfigurationTypeFromSerialized(cls, serialized: str) -> Optional[str]:
configuration_type = None
try:
parser = cls._readAndValidateSerialized(serialized)
configuration_type = parser["metadata"]["type"]
except InvalidContainerStackError as icse:
raise icse
except Exception as e:
Logger.log("e", "Could not get configuration type: %s", e)
return configuration_type
@classmethod
def getVersionFromSerialized(cls, serialized: str) -> Optional[int]:
configuration_type = cls.getConfigurationTypeFromSerialized(serialized)
if not configuration_type:
Logger.log("d", "Could not get type from serialized.")
return None
# Get version
version = None
try:
from UM.VersionUpgradeManager import VersionUpgradeManager
version = VersionUpgradeManager.getInstance().getFileVersion(configuration_type, serialized)
except Exception as e:
Logger.log("d", "Could not get version from serialized: %s", e)
return version
def deserialize(self, serialized: str, file_name: Optional[str] = None) -> str:
""":copydoc ContainerInterface::deserialize
Reimplemented from ContainerInterface
TODO: Expand documentation here, include the fact that this should _not_ include all containers
"""
# Update the serialized data first
serialized = super().deserialize(serialized, file_name)
parser = self._readAndValidateSerialized(serialized)
if parser.getint("general", "version") != self.Version:
raise IncorrectVersionError()
# Clear all data before starting.
for container in self._containers:
container.propertyChanged.disconnect(self._collectPropertyChanges)
self._containers = []
self._metadata = {}
if "metadata" in parser:
self._metadata = dict(parser["metadata"])
self._metadata["id"] = parser["general"]["id"]
self._metadata["name"] = parser["general"].get("name", self.getId())
self._metadata["version"] = self.Version # Guaranteed to be equal to what's in the container. See above.
self._metadata["container_type"] = ContainerStack
if "containers" in parser:
for index, container_id in parser.items("containers"):
containers = _containerRegistry.findContainers(id = container_id)
if containers:
containers[0].propertyChanged.connect(self._collectPropertyChanges)
self._containers.append(containers[0])
else:
self._containers.append(_containerRegistry.getEmptyInstanceContainer())
ConfigurationErrorMessage.getInstance().addFaultyContainers(container_id, self.getId())
Logger.log("e", "When trying to deserialize %s, we received an unknown container ID (%s)" % (self.getId(), container_id))
raise ContainerFormatError("When trying to deserialize %s, we received an unknown container ID (%s)" % (self.getId(), container_id))
elif parser.has_option("general", "containers"):
# Backward compatibility with 2.3.1: The containers used to be saved in a single comma-separated list.
container_string = parser["general"].get("containers", "")
Logger.log("d", "While deserializing, we got the following container string: %s", container_string)
container_id_list = container_string.split(",")
for container_id in container_id_list:
if container_id != "":
containers = _containerRegistry.findContainers(id = container_id)
if containers:
containers[0].propertyChanged.connect(self._collectPropertyChanges)
self._containers.append(containers[0])
else:
self._containers.append(_containerRegistry.getEmptyInstanceContainer())
ConfigurationErrorMessage.getInstance().addFaultyContainers(container_id, self.getId())
Logger.log("e", "When trying to deserialize %s, we received an unknown container ID (%s)" % (self.getId(), container_id))
raise ContainerFormatError("When trying to deserialize %s, we received an unknown container ID (%s)" % (self.getId(), container_id))
## TODO; Deserialize the containers.
return serialized
@classmethod
def deserializeMetadata(cls, serialized: str, container_id: str) -> List[Dict[str, Any]]:
"""Gets the metadata of a container stack from a serialised format.
This parses the entire CFG document and only extracts the metadata from
it.
:param serialized: A CFG document, serialised as a string.
:param container_id: The ID of the container that we're getting the
metadata of, as obtained from the file name.
:return: A dictionary of metadata that was in the CFG document as a
singleton list. If anything went wrong, this returns an empty list
instead.
"""
serialized = cls._updateSerialized(serialized) # Update to most recent version.
parser = configparser.ConfigParser(interpolation = None)
parser.read_string(serialized)
metadata = {
"id": container_id,
"container_type": ContainerStack
}
try:
metadata["name"] = parser["general"]["name"]
metadata["version"] = parser["general"]["version"]
except KeyError as e: # One of the keys or the General section itself is missing.
raise InvalidContainerStackError("Missing required fields: {error_msg}".format(error_msg = str(e)))
if "metadata" in parser:
metadata.update(parser["metadata"])
return [metadata]
def getAllKeys(self) -> Set[str]:
"""Get all keys known to this container stack.
In combination with getProperty(), you can obtain the current property
values of all settings.
:return: A set of all setting keys in this container stack.
"""
keys = set() # type: Set[str]
definition_containers = [container for container in self.getContainers() if container.__class__ == DefinitionContainer] #To get all keys, get all definitions from all definition containers.
for definition_container in cast(List[DefinitionContainer], definition_containers):
keys |= definition_container.getAllKeys()
if self._next_stack:
keys |= self._next_stack.getAllKeys()
return keys
def getContainers(self) -> List[ContainerInterface]:
"""Get a list of all containers in this stack.
Note that it returns a shallow copy of the container list, as it's only allowed to change the order or entries
in this list by the proper functions.
:return: A list of all containers in this stack.
"""
return self._containers[:]
def getContainerIndex(self, container: ContainerInterface) -> int:
return self._containers.index(container)
def getContainer(self, index: int) -> ContainerInterface:
"""Get a container by index.
:param index: The index of the container to get.
:return: The container at the specified index.
:exception IndexError: Raised when the specified index is out of bounds.
"""
if index < 0:
raise IndexError
return self._containers[index]
def getTop(self) -> Optional[ContainerInterface]:
"""Get the container at the top of the stack.
This is a convenience method that will always return the top of the stack.
:return: The container at the top of the stack, or None if no containers have been added.
"""
if self._containers:
return self._containers[0]
return None
def getBottom(self) -> Optional[ContainerInterface]:
"""Get the container at the bottom of the stack.
This is a convenience method that will always return the bottom of the stack.
:return: The container at the bottom of the stack, or None if no containers have been added.
"""
if self._containers:
return self._containers[-1]
return None
def getPath(self) -> str:
""":copydoc ContainerInterface::getPath.
Reimplemented from ContainerInterface
"""
return self._path
def setPath(self, path: str) -> None:
""":copydoc ContainerInterface::setPath
Reimplemented from ContainerInterface
"""
self._path = path
def getSettingDefinition(self, key: str) -> Optional[SettingDefinition]:
"""Get the SettingDefinition object for a specified key"""
for container in self._containers:
if not isinstance(container, DefinitionContainer):
continue
settings = container.findDefinitions(key = key)
if settings:
return settings[0]
if self._next_stack:
return self._next_stack.getSettingDefinition(key)
else:
return None
@UM.FlameProfiler.profile
def findContainer(self, criteria: Dict[str, Any] = None, container_type: type = None, **kwargs: Any) -> Optional[ContainerInterface]:
"""Find a container matching certain criteria.
:param criteria: A dictionary containing key and value pairs that need to
match the container. Note that the value of "*" can be used as a wild
card. This will ensure that any container that has the specified key in
the meta data is found.
:param container_type: An optional type of container to filter on.
:return: The first container that matches the filter criteria or None if not found.
"""
if not criteria and kwargs:
criteria = kwargs
elif criteria is None:
criteria = {}
for container in self._containers:
meta_data = container.getMetaData()
match = container.__class__ == container_type or container_type is None
for key in criteria:
if not match:
break
try:
if meta_data[key] == criteria[key] or criteria[key] == "*":
continue
else:
match = False
break
except KeyError:
match = False
break
if match:
return container
return None
def addContainer(self, container: ContainerInterface) -> None:
"""Add a container to the top of the stack.
:param container: The container to add to the stack.
"""
self.insertContainer(0, container)
def insertContainer(self, index: int, container: ContainerInterface) -> None:
"""Insert a container into the stack.
:param index: The index of to insert the container at.
A negative index counts from the bottom
:param container: The container to add to the stack.
"""
if container is self:
raise Exception("Unable to add stack to itself.")
container.propertyChanged.connect(self._collectPropertyChanges)
self._containers.insert(index, container)
self.containersChanged.emit(container)
self._dirty = True
def replaceContainer(self, index: int, container: ContainerInterface, postpone_emit: bool = False) -> None:
"""Replace a container in the stack.
:param index: :type{int} The index of the container to replace.
:param container: The container to replace the existing entry with.
:param postpone_emit: During stack manipulation you may want to emit later.
:exception IndexError: Raised when the specified index is out of bounds.
:exception Exception: when trying to replace container ContainerStack.
"""
if index < 0:
raise IndexError
if container is self:
raise Exception("Unable to replace container with ContainerStack (self) ")
self._containers[index].propertyChanged.disconnect(self._collectPropertyChanges)
container.propertyChanged.connect(self._collectPropertyChanges)
self._containers[index] = container
self._dirty = True
if postpone_emit:
# send it using sendPostponedEmits
self._postponed_emits.append((self.containersChanged, container))
else:
self.containersChanged.emit(container)
def removeContainer(self, index: int = 0) -> None:
"""Remove a container from the stack.
:param index: :type{int} The index of the container to remove.
:exception IndexError: Raised when the specified index is out of bounds.
"""
if index < 0:
raise IndexError
try:
container = self._containers[index]
self._dirty = True
container.propertyChanged.disconnect(self._collectPropertyChanges)
del self._containers[index]
self.containersChanged.emit(container)
except TypeError:
raise IndexError("Can't delete container with index %s" % index)
def getNextStack(self) -> Optional["ContainerStack"]:
"""Get the next stack
The next stack is the stack that is searched for a setting value if the
bottom of the stack is reached when searching for a value.
:return: :type{ContainerStack} The next stack or None if not set.
"""
return self._next_stack
def setNextStack(self, stack: "ContainerStack", connect_signals: bool = True) -> None:
"""Set the next stack
:param stack: :type{ContainerStack} The next stack to set. Can be None.
Raises Exception when trying to set itself as next stack (to prevent infinite loops)
:sa getNextStack
"""
if self is stack:
raise Exception("Next stack can not be itself")
if self._next_stack == stack:
return
if self._next_stack:
self._next_stack.propertyChanged.disconnect(self._collectPropertyChanges)
self.containersChanged.disconnect(self._next_stack.containersChanged)
self._next_stack = stack
if self._next_stack and connect_signals:
self._next_stack.propertyChanged.connect(self._collectPropertyChanges)
self.containersChanged.connect(self._next_stack.containersChanged)
def sendPostponedEmits(self) -> None:
"""Send postponed emits
These emits are collected from the option postpone_emit.
Note: the option can be implemented for all functions modifying the stack.
"""
while self._postponed_emits:
signal, signal_arg = self._postponed_emits.pop(0)
signal.emit(signal_arg)
@UM.FlameProfiler.profile
def hasErrors(self) -> bool:
"""Check if the container stack has errors"""
for key in self.getAllKeys():
enabled = self.getProperty(key, "enabled")
if not enabled:
continue
validation_state = self.getProperty(key, "validationState")
if validation_state is None:
# Setting is not validated. This can happen if there is only a setting definition.
# We do need to validate it, because a setting defintions value can be set by a function, which could
# be an invalid setting.
definition = cast(SettingDefinition, self.getSettingDefinition(key))
validator_type = SettingDefinition.getValidatorForType(definition.type)
if validator_type:
validator = validator_type(key)
validation_state = validator(self)
if validation_state in (ValidatorState.Exception, ValidatorState.MaximumError, ValidatorState.MinimumError, ValidatorState.Invalid):
return True
return False
@UM.FlameProfiler.profile
def getErrorKeys(self) -> List[str]:
"""Get all the keys that are in an error state in this stack"""
error_keys = []
for key in self.getAllKeys():
if not self.getProperty(key, "enabled"):
continue
validation_state = self.getProperty(key, "validationState")
if validation_state is None:
# Setting is not validated. This can happen if there is only a setting definition.
# We do need to validate it, because a setting definitions value can be set by a function, which could
# be an invalid setting.
definition = cast(SettingDefinition, self.getSettingDefinition(key))
validator_type = SettingDefinition.getValidatorForType(definition.type)
if validator_type:
validator = validator_type(key)
validation_state = validator(self)
if validation_state in (ValidatorState.Exception, ValidatorState.MaximumError, ValidatorState.MinimumError, ValidatorState.Invalid):
error_keys.append(key)
return error_keys
# protected:
# Gather up all signal emissions and delay their emit until the next time the event
# loop can run. This prevents us from sending the same change signal multiple times.
# In addition, it allows us to emit a single signal that reports all properties that
# have changed.
def _collectPropertyChanges(self, key: str, property_name: str) -> None:
if key not in self._property_changes:
self._property_changes[key] = set()
self._property_changes[key].add(property_name)
if not self._emit_property_changed_queued:
from UM.Application import Application
Application.getInstance().callLater(self._emitCollectedPropertyChanges)
self._emit_property_changed_queued = True
# Perform the emission of the change signals that were collected in a previous step.
def _emitCollectedPropertyChanges(self) -> None:
for key, property_names in self._property_changes.items():
self.propertiesChanged.emit(key, property_names)
for property_name in property_names:
self.propertyChanged.emit(key, property_name)
self._property_changes = {}
self._emit_property_changed_queued = False
def __str__(self) -> str:
return "<{class_name} '{id}' containers={containers}>".format(class_name=type(self).__name__, id = self.getId(),
containers = self._containers)
def __repr__(self) -> str:
return str(self)
_containerRegistry = ContainerRegistryInterface() # type: ContainerRegistryInterface
def setContainerRegistry(registry: ContainerRegistryInterface) -> None:
global _containerRegistry
_containerRegistry = registry
|