print_queue.py 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. from datetime import datetime
  2. from typing import Annotated, Literal
  3. from pydantic import BaseModel, BeforeValidator, Field, PlainSerializer, model_validator
  4. from backend.app.utils.printer_models import MAX_CHAMBER_TEMP_C
  5. # Custom serializer to ensure UTC datetimes have Z suffix
  6. def serialize_utc_datetime(dt: datetime | None) -> str | None:
  7. if dt is None:
  8. return None
  9. # Add Z suffix to indicate UTC
  10. return dt.isoformat() + "Z"
  11. UTCDatetime = Annotated[datetime | None, PlainSerializer(serialize_utc_datetime)]
  12. def _coerce_tristate(v: object) -> object:
  13. """Map legacy on/off booleans onto the tri-state calibration options.
  14. bed_levelling / flow_cali / nozzle_offset_cali were plain booleans before we
  15. added BambuStudio's third "auto" state (skip if recently done). Rows and API
  16. payloads created under the old scheme carry bool / 0-1 int / "true"/"false";
  17. coerce them so old clients and un-migrated rows still validate. getValueInt
  18. parity: off=0, on=1, auto=2.
  19. """
  20. if isinstance(v, bool):
  21. return "on" if v else "off"
  22. if isinstance(v, int):
  23. return {0: "off", 1: "on", 2: "auto"}.get(v, "auto")
  24. if isinstance(v, str):
  25. low = v.strip().lower()
  26. if low in ("true", "1"):
  27. return "on"
  28. if low in ("false", "0"):
  29. return "off"
  30. return v
  31. # Tri-state calibration option: "auto" (printer decides / skip if recent),
  32. # "on" (force every print), "off" (never). Mirrors BambuStudio's ops_auto.
  33. TriState = Annotated[Literal["off", "on", "auto"], BeforeValidator(_coerce_tristate)]
  34. class QueueVariantCreate(BaseModel):
  35. """One candidate file for a cross-model queue item (#671).
  36. Per-file rather than per-item because the settings genuinely differ between
  37. candidates: an H2C slice is dual-nozzle and will not share slot count, AMS
  38. mapping or nozzle mapping with the H2S slice of the same model.
  39. ``target_model`` is normally omitted and read from the file's own
  40. ``sliced_for_model``; supply it only for a legacy 3MF that declares none.
  41. """
  42. library_file_id: int
  43. target_model: str | None = None
  44. plate_id: int | None = None
  45. ams_mapping: list[int] | None = None
  46. nozzle_mapping: list[int] | None = None
  47. # Which rack position each filament group prints from (#1784), as
  48. # {group_id: 1-based position}. The operator's pick, re-checked against the
  49. # live rack at dispatch; null means "assign them for me".
  50. nozzle_rack_choice: dict[int, int] | None = None
  51. filament_overrides: list[dict] | None = None
  52. class PrintQueueItemCreate(BaseModel):
  53. printer_id: int | None = None # None = unassigned, user assigns later
  54. target_model: str | None = None # Target printer model (mutually exclusive with printer_id)
  55. target_location: str | None = None # Target location filter (only used with target_model)
  56. required_filament_types: list[str] | None = None # Required filament types for model-based assignment
  57. filament_overrides: list[dict] | None = None # Filament overrides for model-based assignment
  58. # Either archive_id OR library_file_id must be provided
  59. archive_id: int | None = None
  60. library_file_id: int | None = None
  61. scheduled_time: datetime | None = None # None = ASAP (next when idle)
  62. require_previous_success: bool = False
  63. auto_off_after: bool = False # Power off printer after print completes
  64. manual_start: bool = False # Requires manual trigger to start (staged)
  65. insert_at_top: bool = False # Insert ahead of other pending items in the same queue scope
  66. insert_position: int | None = None # 1-indexed insertion position for priority queueing
  67. # Persistent "Print Anyway" acknowledgement (#1698-followup). When set,
  68. # PrintModal already showed the deficit warning and the user confirmed,
  69. # so the scheduler does not re-flag this item on the next tick.
  70. skip_filament_check: bool = False
  71. # AMS mapping: list of global tray IDs for each filament slot
  72. # Format: [5, -1, 2, -1] where position = slot_id-1, value = global tray ID (-1 = unused)
  73. ams_mapping: list[int] | None = None
  74. # Plate ID for multi-plate 3MF files (1-indexed, None = auto-detect/plate 1)
  75. plate_id: int | None = None
  76. # Print options. bed_levelling / flow_cali / nozzle_offset_cali are tri-state
  77. # (off/on/auto), defaulting to "auto" to match BambuStudio. vibration_cali /
  78. # layer_inspect / timelapse stay on/off (BambuStudio exposes no auto for them).
  79. bed_levelling: TriState = "auto"
  80. flow_cali: TriState = "auto"
  81. vibration_cali: bool = True
  82. layer_inspect: bool = False
  83. timelapse: bool = False
  84. use_ams: bool = True
  85. # Nozzle offset calibration — dual-nozzle printers only (#1682). The MQTT
  86. # layer ignores the value on single-nozzle printers so the wire stays "skip".
  87. nozzle_offset_cali: TriState = "auto"
  88. # Preheat / heat-soak per-item override (#1468). 'inherit' uses the global
  89. # preheat_enabled setting; 'on' / 'off' force the decision. The chamber
  90. # target falls through: this override → max(filament-map[loaded tray]) → 0.
  91. preheat_override: Literal["inherit", "on", "off"] = "inherit"
  92. preheat_chamber_target_override: int | None = Field(default=None, ge=0, le=MAX_CHAMBER_TEMP_C)
  93. # Auto-print G-code injection
  94. gcode_injection: bool = False
  95. # Batch: create multiple copies (creates a batch if > 1)
  96. quantity: int = 1
  97. # Existing batch to add this item into. When set, the item's batch_id is
  98. # populated on insert so the queue UI groups it with its siblings. Used by
  99. # the multi-plate auto-batch flow and by the "Group as batch" action.
  100. batch_id: int | None = None
  101. # Project to associate the resulting archive with
  102. project_id: int | None = None
  103. cost_center_id: int | None = None
  104. estimated_cost: float | None = None
  105. # Which rack position each filament group prints from (#1784), as
  106. # {group_id: 1-based position}. The operator's pick, re-checked against the
  107. # live rack at dispatch; null means "assign them for me".
  108. nozzle_rack_choice: dict[int, int] | None = None
  109. # Direct printer-card uploads are temporary library files. The scheduler
  110. # deletes them after creating the durable archive copy.
  111. cleanup_library_after_dispatch: bool = False
  112. # Cross-model alternatives (#671): several sliced files, one job, whichever
  113. # printer frees up first. Mutually exclusive with printer_id (a specific
  114. # printer defeats the purpose) and with archive_id/library_file_id (the
  115. # candidates ARE the files). The scheduler resolves one onto the row at
  116. # dispatch, after which the item is an ordinary single-file job.
  117. variants: list[QueueVariantCreate] | None = None
  118. class PrintQueueItemUpdate(BaseModel):
  119. printer_id: int | None = None
  120. target_model: str | None = None # Target printer model (mutually exclusive with printer_id)
  121. target_location: str | None = None # Target location filter (only used with target_model)
  122. filament_overrides: list[dict] | None = None # Filament overrides for model-based assignment
  123. position: int | None = None
  124. scheduled_time: datetime | None = None
  125. require_previous_success: bool | None = None
  126. auto_off_after: bool | None = None
  127. manual_start: bool | None = None
  128. ams_mapping: list[int] | None = None
  129. plate_id: int | None = None
  130. # Print options
  131. bed_levelling: TriState | None = None
  132. flow_cali: TriState | None = None
  133. vibration_cali: bool | None = None
  134. layer_inspect: bool | None = None
  135. timelapse: bool | None = None
  136. use_ams: bool | None = None
  137. nozzle_offset_cali: TriState | None = None
  138. preheat_override: Literal["inherit", "on", "off"] | None = None
  139. preheat_chamber_target_override: int | None = Field(default=None, ge=0, le=MAX_CHAMBER_TEMP_C)
  140. # Auto-print G-code injection
  141. gcode_injection: bool | None = None
  142. cost_center_id: int | None = None
  143. estimated_cost: float | None = None
  144. # H2C dual-nozzle-rack slicer pick (#1780). list[int] per-filament
  145. # physical nozzle position IDs from BambuStudio's project_file MQTT
  146. # body; sent back to the printer verbatim on dispatch.
  147. nozzle_mapping: list[int] | None = None
  148. # Which rack position each filament group prints from (#1784), as
  149. # {group_id: 1-based position}. The operator's pick, re-checked against the
  150. # live rack at dispatch; null means "assign them for me".
  151. nozzle_rack_choice: dict[int, int] | None = None
  152. class QueueVariantSummary(BaseModel):
  153. """One candidate on a cross-model queue item, for display (#671)."""
  154. library_file_id: int
  155. filename: str
  156. target_model: str
  157. position: int
  158. class PrintQueueItemResponse(BaseModel):
  159. id: int
  160. printer_id: int | None # None = unassigned
  161. target_model: str | None = None # Target printer model for model-based assignment
  162. target_location: str | None = None # Target location filter for model-based assignment
  163. required_filament_types: list[str] | None = None # Required filament types for model-based assignment
  164. filament_overrides: list[dict] | None = None # Filament overrides for model-based assignment
  165. waiting_reason: str | None = None # Why a model-based job hasn't started yet
  166. archive_id: int | None # None if library_file_id is set (archive created at print start)
  167. library_file_id: int | None # For queue items from library files
  168. cost_center_id: int | None = None
  169. estimated_cost: float | None = None
  170. position: int
  171. scheduled_time: UTCDatetime
  172. require_previous_success: bool
  173. auto_off_after: bool
  174. manual_start: bool
  175. # True when the dispatch scheduler last evaluated this item and the
  176. # assigned spool could not satisfy at least one slot's required grams
  177. # (#1496). Display-only — the ▶ click recomputes deficit against live
  178. # spool state.
  179. filament_short: bool = False
  180. # User has acknowledged "Print Anyway" — scheduler skips the deficit check
  181. # for this item (#1698-followup).
  182. skip_filament_check: bool = False
  183. ams_mapping: list[int] | None = None
  184. plate_id: int | None = None # Plate ID for multi-plate 3MF files
  185. # Print options
  186. bed_levelling: TriState = "auto"
  187. flow_cali: TriState = "auto"
  188. vibration_cali: bool = True
  189. layer_inspect: bool = False
  190. timelapse: bool = False
  191. use_ams: bool = True
  192. nozzle_offset_cali: TriState = "auto"
  193. preheat_override: Literal["inherit", "on", "off"] = "inherit"
  194. preheat_chamber_target_override: int | None = None
  195. status: Literal["pending", "printing", "completed", "failed", "skipped", "cancelled"]
  196. started_at: UTCDatetime
  197. completed_at: UTCDatetime
  198. error_message: str | None
  199. created_at: UTCDatetime
  200. # Nested info for UI (populated in route)
  201. archive_name: str | None = None
  202. archive_thumbnail: str | None = None
  203. # True when the linked archive has been soft-deleted (its files are gone
  204. # from disk). In that case the *archive_name* / *archive_thumbnail* /
  205. # downstream metadata fields are intentionally left None so the frontend
  206. # doesn't 404-storm the now-missing thumbnail / plates / plate-thumbnail
  207. # endpoints (#1348 follow-up). Frontends can render a "source deleted"
  208. # badge based on this flag.
  209. archive_deleted: bool = False
  210. library_file_name: str | None = None # Name of library file (if library_file_id is set)
  211. library_file_thumbnail: str | None = None # Thumbnail of library file
  212. printer_name: str | None = None
  213. print_time_seconds: int | None = None # Estimated print time from archive or library file
  214. filament_used_grams: float | None = None # Estimated print weight from archive or library file
  215. filament_type: str | None = None # e.g. "PLA", "PETG" (from archive/library file)
  216. filament_color: str | None = None # e.g. "#FFFFFF" (from archive/library file)
  217. layer_height: float | None = None # e.g. 0.2 (from archive/library file)
  218. nozzle_diameter: float | None = None # e.g. 0.4 (from archive/library file)
  219. sliced_for_model: str | None = None # e.g. "P1S" (from archive/library file)
  220. # Build plate type (e.g. "Textured PEI Plate") so the user knows which
  221. # plate to mount on the printer (#1281). Per-plate accurate on multi-plate
  222. # 3MFs: when `plate_id` is set, the value is the matching plate's
  223. # `curr_bed_type` rather than the archive-level first-plate default.
  224. bed_type: str | None = None
  225. # True when the source archive carries the slicer's own live-resolved
  226. # AMS-slot pick (extra_data.slicer_ams_mapping) *and* it was resolved
  227. # against this row's own printer — the only case where dispatch actually
  228. # reuses that exact physical spool instead of the scheduler re-deriving one
  229. # from the file's static type/color.
  230. archive_has_slicer_ams_mapping: bool = False
  231. # User tracking (Issue #206)
  232. created_by_id: int | None = None
  233. created_by_username: str | None = None
  234. # Batch grouping
  235. batch_id: int | None = None
  236. batch_name: str | None = None
  237. # Cross-model alternatives (#671), in priority order. Empty for every
  238. # ordinary item. Present until dispatch resolves one onto the row, after
  239. # which library_file_id / target_model name the candidate that actually ran.
  240. variants: list[QueueVariantSummary] = []
  241. # Shortest-job-first scheduling
  242. been_jumped: bool = False
  243. # Auto-print G-code injection
  244. gcode_injection: bool = False
  245. cleanup_library_after_dispatch: bool = False
  246. # H2C dual-nozzle-rack slicer pick (#1780). Surface for any future
  247. # "edit print → choose nozzle" UI; null on every model except O1C2
  248. # uploads from BambuStudio.
  249. nozzle_mapping: list[int] | None = None
  250. # Which rack position each filament group prints from (#1784), as
  251. # {group_id: 1-based position}. The operator's pick, re-checked against the
  252. # live rack at dispatch; null means "assign them for me".
  253. nozzle_rack_choice: dict[int, int] | None = None
  254. class Config:
  255. from_attributes = True
  256. class PrintQueueReorderItem(BaseModel):
  257. id: int
  258. position: int
  259. class PrintQueueReorder(BaseModel):
  260. items: list[PrintQueueReorderItem]
  261. @model_validator(mode="after")
  262. def _validate_positions_unique(self) -> "PrintQueueReorder":
  263. """Reject reorder requests with duplicate positions in the payload
  264. (#1625-followup).
  265. The /reorder route is the drag-drop renumber path on the queue UI;
  266. a well-behaved client sends a contiguous renumbering of a single
  267. printer's pending queue. A buggy client that sends two items at
  268. the same position would leave the queue in an inconsistent state
  269. (scheduler's ORDER BY (printer_id, position) ties get broken by
  270. physical row order). Fail closed at the schema boundary so the
  271. bug is caught before any DB mutation.
  272. Uniqueness is enforced WITHIN THE PAYLOAD only — cross-printer
  273. reorders that intentionally share positions across different
  274. printer queues are a non-goal of the drag-drop UI, so this is the
  275. right scope.
  276. """
  277. positions = [it.position for it in self.items]
  278. if len(positions) != len(set(positions)):
  279. duplicates = sorted({p for p in positions if positions.count(p) > 1})
  280. raise ValueError(f"Duplicate positions in reorder request: {duplicates}")
  281. return self
  282. class PrintQueueBulkUpdate(BaseModel):
  283. """Bulk update multiple queue items with the same values."""
  284. item_ids: list[int]
  285. # Fields to update (all optional - only set fields are applied)
  286. printer_id: int | None = None
  287. scheduled_time: datetime | None = None
  288. require_previous_success: bool | None = None
  289. auto_off_after: bool | None = None
  290. manual_start: bool | None = None
  291. # Print options
  292. bed_levelling: TriState | None = None
  293. flow_cali: TriState | None = None
  294. vibration_cali: bool | None = None
  295. layer_inspect: bool | None = None
  296. timelapse: bool | None = None
  297. use_ams: bool | None = None
  298. nozzle_offset_cali: TriState | None = None
  299. preheat_override: Literal["inherit", "on", "off"] | None = None
  300. preheat_chamber_target_override: int | None = Field(default=None, ge=0, le=MAX_CHAMBER_TEMP_C)
  301. # Auto-print G-code injection
  302. gcode_injection: bool | None = None
  303. cost_center_id: int | None = None
  304. estimated_cost: float | None = None
  305. class PrintQueueBulkUpdateResponse(BaseModel):
  306. """Response for bulk update operation."""
  307. updated_count: int
  308. skipped_count: int # Items that were not pending
  309. message: str
  310. class PrintBatchPlateTarget(BaseModel):
  311. """How many runs of one plate an order wants (#342).
  312. ``plate_id`` is the plate index inside the source 3MF, or null for a
  313. single-plate file — matching ``PrintQueueItem.plate_id``. A target of 0 is
  314. legal and means "this plate is not required (yet)".
  315. """
  316. plate_id: int | None = None
  317. plate_name: str | None = None
  318. quantity_target: int = Field(default=1, ge=0, le=999)
  319. sort_order: int = 0
  320. class PrintBatchCreate(BaseModel):
  321. """Create a batch, either empty (multi-plate pre-batch flow) or by
  322. assigning existing pending queue items into it (manual "Group as batch")."""
  323. name: str
  324. archive_id: int | None = None
  325. library_file_id: int | None = None
  326. # Existing pending queue items to assign to this batch. None / empty for
  327. # the empty-batch flow (client passes the returned id on subsequent
  328. # addToQueue calls).
  329. item_ids: list[int] | None = None
  330. # Per-plate targets. Omitted entirely by the pre-#342 flows, which produce
  331. # a batch that reports progress but owes nothing.
  332. plates: list[PrintBatchPlateTarget] | None = None
  333. # Planning metadata. Projects own the heavier fields (BOM, attachments,
  334. # tags); these two are the ones that are useless without a Project to
  335. # hang them on, so the order carries them directly.
  336. project_id: int | None = None
  337. due_date: datetime | None = None
  338. notes: str | None = None
  339. class PrintBatchUpdate(BaseModel):
  340. """Edit an order's header or its per-plate targets while it runs.
  341. Every field is optional; ``plates`` replaces the full target set when
  342. given, so a plate omitted from the list has its target row removed.
  343. """
  344. name: str | None = None
  345. status: Literal["active", "cancelled"] | None = None
  346. plates: list[PrintBatchPlateTarget] | None = None
  347. project_id: int | None = None
  348. due_date: datetime | None = None
  349. notes: str | None = None
  350. class PrintBatchDispatchRequest(BaseModel):
  351. """Create queue items for the runs an order still owes."""
  352. # Restrict to one plate. Null is a legitimate plate_id (single-plate file),
  353. # so the caller opts in explicitly rather than us inferring from null.
  354. plate_id: int | None = None
  355. only_plate: bool = False
  356. # Cap on how many items to create across all plates. None = everything owed.
  357. limit: int | None = Field(default=None, ge=1, le=999)
  358. class PrintBatchUngroupResponse(BaseModel):
  359. """Response after ungrouping a batch."""
  360. ungrouped_count: int
  361. message: str
  362. class PrintBatchPlateProgress(BaseModel):
  363. """Per-plate progress within a batch."""
  364. plate_id: int | None = None
  365. plate_name: str | None = None
  366. quantity_target: int = 0
  367. dispatched: int = 0
  368. remaining: int = 0
  369. pending_count: int = 0
  370. printing_count: int = 0
  371. completed_count: int = 0
  372. failed_count: int = 0
  373. cancelled_count: int = 0
  374. skipped_count: int = 0
  375. # Measured from finished runs, never estimated from the file. Null until
  376. # at least one run of this plate has produced a cost.
  377. actual_cost: float | None = None
  378. estimated_remaining_cost: float | None = None
  379. filament_used_grams: float | None = None
  380. print_time_seconds: int = 0
  381. class PrintBatchResponse(BaseModel):
  382. """Response for a print batch with progress stats."""
  383. id: int
  384. name: str
  385. archive_id: int | None = None
  386. library_file_id: int | None = None
  387. quantity: int
  388. status: str
  389. created_at: UTCDatetime
  390. completed_at: UTCDatetime | None = None
  391. created_by_id: int | None = None
  392. created_by_username: str | None = None
  393. project_id: int | None = None
  394. due_date: UTCDatetime | None = None
  395. notes: str | None = None
  396. # Derived counts
  397. pending_count: int = 0
  398. printing_count: int = 0
  399. completed_count: int = 0
  400. failed_count: int = 0
  401. cancelled_count: int = 0
  402. skipped_count: int = 0
  403. # Planning roll-up. has_targets is false for batches created before
  404. # per-plate targets existed: they report progress but owe nothing, and the
  405. # dispatch endpoint is a no-op for them.
  406. has_targets: bool = False
  407. target_count: int = 0
  408. remaining_count: int = 0
  409. actual_cost: float | None = None
  410. estimated_remaining_cost: float | None = None
  411. filament_used_grams: float | None = None
  412. print_time_seconds: int = 0
  413. plates: list[PrintBatchPlateProgress] = []
  414. class Config:
  415. from_attributes = True