print_queue.py 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. from datetime import datetime
  2. from sqlalchemy import Boolean, DateTime, ForeignKey, Integer, String, Text, func
  3. from sqlalchemy.orm import Mapped, mapped_column, relationship
  4. from backend.app.core.database import Base
  5. class PrintQueueItem(Base):
  6. """Print queue item for scheduled/queued prints."""
  7. __tablename__ = "print_queue"
  8. id: Mapped[int] = mapped_column(primary_key=True)
  9. # Links
  10. printer_id: Mapped[int | None] = mapped_column(ForeignKey("printers.id", ondelete="CASCADE"), nullable=True)
  11. # Target printer model for model-based assignment (mutually exclusive with printer_id)
  12. # When set, scheduler assigns to any idle printer of matching model
  13. target_model: Mapped[str | None] = mapped_column(String(50), nullable=True)
  14. # Target location filter for model-based assignment (only used with target_model)
  15. # When set, only printers in this location are considered
  16. target_location: Mapped[str | None] = mapped_column(String(100), nullable=True)
  17. # Required filament types for model-based assignment (JSON array, e.g., '["PLA", "PETG"]')
  18. # Used by scheduler to validate printer has compatible filaments loaded
  19. required_filament_types: Mapped[str | None] = mapped_column(Text, nullable=True)
  20. # Waiting reason - explains why a model-based job hasn't started yet
  21. # Set by scheduler when no matching printer is available
  22. waiting_reason: Mapped[str | None] = mapped_column(Text, nullable=True)
  23. # Either archive_id OR library_file_id must be set (archive created at print start from library file)
  24. archive_id: Mapped[int | None] = mapped_column(ForeignKey("print_archives.id", ondelete="CASCADE"), nullable=True)
  25. library_file_id: Mapped[int | None] = mapped_column(
  26. ForeignKey("library_files.id", ondelete="CASCADE"), nullable=True
  27. )
  28. project_id: Mapped[int | None] = mapped_column(ForeignKey("projects.id", ondelete="SET NULL"), nullable=True)
  29. batch_id: Mapped[int | None] = mapped_column(ForeignKey("print_batches.id", ondelete="SET NULL"), nullable=True)
  30. # Scheduling
  31. position: Mapped[int] = mapped_column(Integer, default=0) # Queue order
  32. scheduled_time: Mapped[datetime | None] = mapped_column(DateTime, nullable=True) # None = ASAP
  33. manual_start: Mapped[bool] = mapped_column(Boolean, default=False) # Requires manual trigger to start
  34. # Conditions
  35. require_previous_success: Mapped[bool] = mapped_column(Boolean, default=False)
  36. # Power management
  37. auto_off_after: Mapped[bool] = mapped_column(Boolean, default=False) # Power off printer after print
  38. # AMS mapping: JSON array of global tray IDs for each filament slot
  39. # Format: "[5, -1, 2, -1]" where position = slot_id-1, value = global tray ID (-1 = unused)
  40. ams_mapping: Mapped[str | None] = mapped_column(Text, nullable=True)
  41. # Filament overrides for model-based assignment: JSON array of override objects
  42. # Format: '[{"slot_id": 1, "type": "PLA", "color": "#FFFFFF"}]'
  43. # Only slots with overrides are included (sparse). null = use original 3MF values.
  44. filament_overrides: Mapped[str | None] = mapped_column(Text, nullable=True)
  45. # Plate ID for multi-plate 3MF files (1-indexed, None = auto-detect/plate 1)
  46. plate_id: Mapped[int | None] = mapped_column(Integer, nullable=True)
  47. # Shortest-job-first scheduling
  48. print_time_seconds: Mapped[int | None] = mapped_column(Integer, nullable=True) # Cached from archive/library
  49. been_jumped: Mapped[bool] = mapped_column(Boolean, default=False) # Starvation guard for SJF
  50. # Auto-print G-code injection (#422)
  51. gcode_injection: Mapped[bool] = mapped_column(Boolean, default=False)
  52. # How many times the start-watchdog has reverted this item from 'printing'
  53. # back to 'pending' (#2555). A printer that accepts project_file but never
  54. # starts (#1678) used to be retried forever: upload, wait out the watchdog,
  55. # revert, upload again — burning a full 3MF transfer per cycle and, with
  56. # the queue dispatching serially, dragging every other printer's start time
  57. # out with it. The counter bounds that loop; see DISPATCH_MAX_ATTEMPTS.
  58. dispatch_attempts: Mapped[int] = mapped_column(Integer, default=0, server_default="0")
  59. # H2C dual-nozzle-rack slicer pick preservation (#1780). BambuStudio's
  60. # project_file MQTT command for rack-swap-capable models (O1C2 today)
  61. # carries per-filament physical nozzle position IDs in `nozzle_mapping`,
  62. # forwarded verbatim through the queue and replayed by the dispatcher so
  63. # the firmware honours the user's pick instead of falling back to
  64. # "last matching nozzle type" auto-pick. Stored as opaque JSON string
  65. # (list[int]); NULL on every other model. `nozzles_info` is a deprecated
  66. # column from the original #1780 attempt — kept nullable so old rows still
  67. # load; never written to or read from.
  68. nozzle_mapping: Mapped[str | None] = mapped_column(Text, nullable=True)
  69. nozzles_info: Mapped[str | None] = mapped_column(Text, nullable=True)
  70. # Printer-card direct uploads create transient library rows. When this is
  71. # true, the scheduler deletes the source row/files after archiving a copy.
  72. cleanup_library_after_dispatch: Mapped[bool] = mapped_column(Boolean, default=False)
  73. # Print options
  74. bed_levelling: Mapped[bool] = mapped_column(Boolean, default=True)
  75. flow_cali: Mapped[bool] = mapped_column(Boolean, default=False)
  76. vibration_cali: Mapped[bool] = mapped_column(Boolean, default=True)
  77. layer_inspect: Mapped[bool] = mapped_column(Boolean, default=False)
  78. timelapse: Mapped[bool] = mapped_column(Boolean, default=False)
  79. use_ams: Mapped[bool] = mapped_column(Boolean, default=True)
  80. # Nozzle offset calibration — dual-nozzle printers only, MQTT-gated (#1682)
  81. nozzle_offset_cali: Mapped[bool] = mapped_column(Boolean, default=True)
  82. # Preheat / heat-soak override (#1468). 'inherit' uses the global
  83. # preheat_enabled setting; 'on' / 'off' force the per-item decision. The
  84. # chamber target falls through: per-item override → max(filament-map[loaded
  85. # tray type]) → 0 (skips chamber phase). 'inherit' + global off + override
  86. # null = no preheat. Default 'inherit' so existing queue items behave
  87. # exactly as before the migration.
  88. preheat_override: Mapped[str] = mapped_column(String(10), default="inherit")
  89. preheat_chamber_target_override: Mapped[int | None] = mapped_column(Integer, nullable=True)
  90. # Status: pending, printing, completed, failed, skipped, cancelled
  91. status: Mapped[str] = mapped_column(String(20), default="pending")
  92. # Cleared by the per-printer "Resume after failure" action (#1818) so the
  93. # scheduler's `_check_previous_success` lookback skips this row. Without
  94. # this, a single `failed` or `aborted` print poisoned every later
  95. # `require_previous_success` item on the same printer forever — the
  96. # lookback excluded `skipped` but had no way to dismiss the originating
  97. # failure. The flag is per-item, not per-printer, so a fresh failure
  98. # after a resume re-gates downstream items independently.
  99. gate_acknowledged: Mapped[bool] = mapped_column(Boolean, default=False)
  100. # Set by the dispatch scheduler when the assigned spool can't satisfy
  101. # this print's per-slot filament weight (#1496). Display-only flag — the
  102. # actual deficit is recomputed live every time the user clicks ▶, so
  103. # swapping a spool to a fuller one between flag and dispatch clears the
  104. # block automatically.
  105. filament_short: Mapped[bool] = mapped_column(Boolean, default=False)
  106. # User has acknowledged the filament-shortage warning for this item
  107. # ("Print Anyway"). Set by the start route when the user passes
  108. # skip_filament_check=true, or at queue-creation time if PrintModal's
  109. # frontend deficit warning was acknowledged. Survives scheduler ticks so
  110. # the dispatch no longer bounces between "user said anyway" and
  111. # "scheduler re-flagged" (#1698-followup).
  112. skip_filament_check: Mapped[bool] = mapped_column(Boolean, default=False)
  113. # Tracking
  114. started_at: Mapped[datetime | None] = mapped_column(DateTime, nullable=True)
  115. completed_at: Mapped[datetime | None] = mapped_column(DateTime, nullable=True)
  116. error_message: Mapped[str | None] = mapped_column(Text, nullable=True)
  117. # Timestamps
  118. created_at: Mapped[datetime] = mapped_column(DateTime, server_default=func.now())
  119. # User tracking (who added this to the queue)
  120. created_by_id: Mapped[int | None] = mapped_column(ForeignKey("users.id", ondelete="SET NULL"), nullable=True)
  121. # Relationships
  122. printer: Mapped["Printer"] = relationship()
  123. archive: Mapped["PrintArchive | None"] = relationship()
  124. library_file: Mapped["LibraryFile | None"] = relationship()
  125. project: Mapped["Project | None"] = relationship(back_populates="queue_items")
  126. batch: Mapped["PrintBatch | None"] = relationship(back_populates="queue_items")
  127. created_by: Mapped["User | None"] = relationship()
  128. from backend.app.models.archive import PrintArchive # noqa: E402
  129. from backend.app.models.library import LibraryFile # noqa: E402
  130. from backend.app.models.print_batch import PrintBatch # noqa: E402
  131. from backend.app.models.printer import Printer # noqa: E402
  132. from backend.app.models.project import Project # noqa: E402
  133. from backend.app.models.user import User # noqa: E402