Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ClusterPrintJobStatus.py « Http « Models « src « UM3NetworkPrinting « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 987ca9fab1d334a0b2496a9795ed52c5d23809e0 (plain)
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
# Copyright (c) 2021 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from typing import List, Optional, Union, Dict, Any

from cura.PrinterOutput.Models.PrinterConfigurationModel import PrinterConfigurationModel

from .ClusterBuildPlate import ClusterBuildPlate
from .ClusterPrintJobConfigurationChange import ClusterPrintJobConfigurationChange
from .ClusterPrintJobImpediment import ClusterPrintJobImpediment
from .ClusterPrintCoreConfiguration import ClusterPrintCoreConfiguration
from .ClusterPrintJobConstraints import ClusterPrintJobConstraints
from ..UM3PrintJobOutputModel import UM3PrintJobOutputModel
from ..ConfigurationChangeModel import ConfigurationChangeModel
from ..BaseModel import BaseModel
from ...ClusterOutputController import ClusterOutputController


class ClusterPrintJobStatus(BaseModel):
    """Model for the status of a single print job in a cluster."""

    def __init__(self,
                 created_at: str,
                 force: bool,
                 machine_variant: str,
                 name: str,
                 started: bool,
                 status: str,
                 time_total: int,
                 uuid: str,
                 configuration: List[Union[Dict[str, Any], ClusterPrintCoreConfiguration]],
                 constraints: Optional[Union[Dict[str, Any], ClusterPrintJobConstraints]] = None,
                 last_seen: Optional[float] = None,
                 network_error_count: Optional[int] = None,
                 owner: Optional[str] = None,
                 printer_uuid: Optional[str] = None,
                 time_elapsed: Optional[int] = None,
                 assigned_to: Optional[str] = None,
                 deleted_at: Optional[str] = None,
                 printed_on_uuid: Optional[str] = None,
                 configuration_changes_required: List[
                     Union[Dict[str, Any], ClusterPrintJobConfigurationChange]] = None,
                 build_plate: Union[Dict[str, Any], ClusterBuildPlate] = None,
                 compatible_machine_families: List[str] = None,
                 impediments_to_printing: List[Union[Dict[str, Any], ClusterPrintJobImpediment]] = None,
                 preview_url: Optional[str] = None,
                 **kwargs) -> None:

        """Creates a new cloud print job status model.

        :param assigned_to: The name of the printer this job is assigned to while being queued.
        :param configuration: The required print core configurations of this print job.
        :param constraints: Print job constraints object.
        :param created_at: The timestamp when the job was created in Cura Connect.
        :param force: Allow this job to be printed despite of mismatching configurations.
        :param last_seen: The number of seconds since this job was checked.
        :param machine_variant: The machine type that this job should be printed on.Coincides with the machine_type field
        of the printer object.
        :param name: The name of the print job. Usually the name of the .gcode file.
        :param network_error_count: The number of errors encountered when requesting data for this print job.
        :param owner: The name of the user who added the print job to Cura Connect.
        :param printer_uuid: UUID of the printer that the job is currently printing on or assigned to.
        :param started: Whether the job has started printing or not.
        :param status: The status of the print job.
        :param time_elapsed: The remaining printing time in seconds.
        :param time_total: The total printing time in seconds.
        :param uuid: UUID of this print job. Should be used for identification purposes.
        :param deleted_at: The time when this print job was deleted.
        :param printed_on_uuid: UUID of the printer used to print this job.
        :param configuration_changes_required: List of configuration changes the printer this job is associated with
        needs to make in order to be able to print this job
        :param build_plate: The build plate (type) this job needs to be printed on.
        :param compatible_machine_families: Family names of machines suitable for this print job
        :param impediments_to_printing: A list of reasons that prevent this job from being printed on the associated
        printer
        :param preview_url: URL to the preview image (same as wou;d've been included in the ufp).
        """
        self.assigned_to = assigned_to
        self.configuration = self.parseModels(ClusterPrintCoreConfiguration, configuration)
        self.constraints = self.parseModel(ClusterPrintJobConstraints, constraints) if constraints else None
        self.created_at = created_at
        self.force = force
        self.last_seen = last_seen
        self.machine_variant = machine_variant
        self.name = name
        self.network_error_count = network_error_count
        self.owner = owner
        self.printer_uuid = printer_uuid
        self.started = started
        self.status = status
        self.time_elapsed = time_elapsed
        self.time_total = time_total
        self.uuid = uuid
        self.deleted_at = deleted_at
        self.printed_on_uuid = printed_on_uuid
        self.preview_url = preview_url
        self.configuration_changes_required = self.parseModels(ClusterPrintJobConfigurationChange,
                                                               configuration_changes_required) \
            if configuration_changes_required else []
        self.build_plate = self.parseModel(ClusterBuildPlate, build_plate) if build_plate else None
        self.compatible_machine_families = compatible_machine_families if compatible_machine_families else []
        self.impediments_to_printing = self.parseModels(ClusterPrintJobImpediment, impediments_to_printing) \
            if impediments_to_printing else []

        super().__init__(**kwargs)

    def createOutputModel(self, controller: ClusterOutputController) -> UM3PrintJobOutputModel:
        """Creates an UM3 print job output model based on this cloud cluster print job.

        :param printer: The output model of the printer
        """

        model = UM3PrintJobOutputModel(controller, self.uuid, self.name)
        self.updateOutputModel(model)
        return model

    def _createConfigurationModel(self) -> PrinterConfigurationModel:
        """Creates a new configuration model"""

        extruders = [extruder.createConfigurationModel() for extruder in self.configuration or ()]
        configuration = PrinterConfigurationModel()
        configuration.setExtruderConfigurations(extruders)
        configuration.setPrinterType(self.machine_variant)
        return configuration

    def updateOutputModel(self, model: UM3PrintJobOutputModel) -> None:
        """Updates an UM3 print job output model based on this cloud cluster print job.

        :param model: The model to update.
        """

        model.updateConfiguration(self._createConfigurationModel())
        model.updateTimeTotal(self.time_total)
        model.updateTimeElapsed(self.time_elapsed)
        model.updateOwner(self.owner)
        model.updateState(self.status)
        model.setCompatibleMachineFamilies(self.compatible_machine_families)

        status_set_by_impediment = False
        for impediment in self.impediments_to_printing:
            # TODO: impediment.severity is defined as int, this will not work, is there a translation?
            if impediment.severity == "UNFIXABLE":
                status_set_by_impediment = True
                model.updateState("error")
                break

        if not status_set_by_impediment:
            model.updateState(self.status)

        model.updateConfigurationChanges(
            [ConfigurationChangeModel(
                type_of_change = change.type_of_change,
                index = change.index if change.index else 0,
                target_name = change.target_name if change.target_name else "",
                origin_name = change.origin_name if change.origin_name else "")
                for change in self.configuration_changes_required])