print_scheduler.py 232 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689
  1. """Print scheduler service - processes the print queue."""
  2. import asyncio
  3. import json
  4. import logging
  5. import time
  6. from dataclasses import dataclass
  7. from datetime import datetime, timezone
  8. from pathlib import Path
  9. from sqlalchemy import func, select, update
  10. from sqlalchemy.ext.asyncio import AsyncSession
  11. from sqlalchemy.orm import selectinload
  12. from backend.app.core.config import settings
  13. from backend.app.core.database import async_session, run_with_retry
  14. from backend.app.core.tasks import spawn_background_task
  15. from backend.app.core.websocket import ws_manager
  16. from backend.app.models.archive import PrintArchive
  17. from backend.app.models.library import LibraryFile
  18. from backend.app.models.print_queue import PrintQueueItem, PrintQueueVariant
  19. from backend.app.models.printer import Printer
  20. from backend.app.models.settings import Settings
  21. from backend.app.models.smart_plug import SmartPlug
  22. from backend.app.models.spool_assignment import SpoolAssignment
  23. from backend.app.models.spoolman_slot_assignment import SpoolmanSlotAssignment
  24. from backend.app.services import print_dispatch_context
  25. from backend.app.services.bambu_ftp import (
  26. UploadCancelled,
  27. cache_3mf_download,
  28. delete_file_async,
  29. get_ftp_retry_settings,
  30. upload_file_async,
  31. with_ftp_retry,
  32. )
  33. from backend.app.services.bambu_mqtt import HMS_MQTT_VERIFY_FAILED
  34. from backend.app.services.filament_deficit import compute_deficit_for_queue_item
  35. from backend.app.services.ha_sensor_manager import ha_sensor_manager
  36. from backend.app.services.notification_service import notification_service
  37. from backend.app.services.printer_manager import (
  38. printer_manager,
  39. supports_airduct,
  40. supports_chamber_heater,
  41. supports_chamber_temp,
  42. supports_drying,
  43. supports_drying_while_printing,
  44. )
  45. from backend.app.services.smart_plug_manager import smart_plug_manager
  46. from backend.app.utils.filename import derive_remote_filename
  47. from backend.app.utils.printer_models import is_gcode_compatible, normalize_printer_model
  48. logger = logging.getLogger(__name__)
  49. # Dispatch-toast progress throttling (#1625 follow-up). Mirrors the legacy
  50. # background_dispatch.py upload_progress_callback (200 ms time gate + 256 KB
  51. # byte gate) from before the scheduler unification. Time gate keeps small
  52. # files from going silent (a single 8 KB chunk fires once and that's it);
  53. # byte gate caps the broadcast rate on slow LAN where 200 ms covers many
  54. # chunks. uploaded >= total always emits so the bar closes cleanly even on
  55. # sub-200 ms files.
  56. _DISPATCH_PROGRESS_BYTE_STEP = 256 * 1024
  57. _DISPATCH_PROGRESS_MIN_INTERVAL_SECS = 0.2
  58. class _UploadProgressBridge:
  59. """Thread-safe bridge from ``upload_file_async`` to the WS broadcaster.
  60. ``upload_file_async`` runs the FTP transfer in an executor thread and
  61. invokes its ``progress_callback`` from that thread, so the callback
  62. body cannot ``await`` directly. This bridge captures the asyncio loop
  63. at construction (on the scheduler thread) and uses
  64. ``run_coroutine_threadsafe`` to hop back. The byte/time throttle
  65. matches the legacy background_dispatch.py path 1:1 so the toast feels
  66. identical to the pre-#1625 experience.
  67. Failures inside the emit are swallowed — progress is a UX nicety, the
  68. upload itself must not fail because of a WS hiccup.
  69. """
  70. def __init__(self, user_id: int | None, queue_item_id: int):
  71. self._user_id = user_id
  72. self._queue_item_id = queue_item_id
  73. try:
  74. self._loop = asyncio.get_running_loop()
  75. except RuntimeError:
  76. self._loop = None
  77. self._last_emit_bytes = 0
  78. self._last_emit_monotonic = 0.0
  79. self._has_emitted = False
  80. def __call__(self, bytes_transferred: int, total_bytes: int) -> None:
  81. if self._loop is None or total_bytes <= 0:
  82. return
  83. now = time.monotonic()
  84. # Mirrors legacy bg-dispatch: emit if first call OR upload complete
  85. # OR 200 ms elapsed OR ≥256 KB transferred since last emit. Two of
  86. # the four matter most: first-call so the user sees something even
  87. # for sub-chunk-size files; uploaded >= total so the bar locks at
  88. # 100% even when the throttle would otherwise eat it.
  89. should_emit = (
  90. not self._has_emitted
  91. or bytes_transferred >= total_bytes
  92. or now - self._last_emit_monotonic >= _DISPATCH_PROGRESS_MIN_INTERVAL_SECS
  93. or bytes_transferred - self._last_emit_bytes >= _DISPATCH_PROGRESS_BYTE_STEP
  94. )
  95. if not should_emit:
  96. return
  97. self._has_emitted = True
  98. self._last_emit_bytes = bytes_transferred
  99. self._last_emit_monotonic = now
  100. try:
  101. asyncio.run_coroutine_threadsafe(
  102. ws_manager.send_queue_item_upload_progress(
  103. user_id=self._user_id,
  104. queue_item_id=self._queue_item_id,
  105. bytes_transferred=bytes_transferred,
  106. total_bytes=total_bytes,
  107. ),
  108. self._loop,
  109. )
  110. except Exception:
  111. pass # progress is best-effort, never block the upload
  112. # Bambu firmware states that mean the project_file has actually been accepted
  113. # and the printer is now processing / running / paused mid-print. Used by the
  114. # dispatch watchdog (#1370): a transition into one of these states means the
  115. # print landed, anything else (e.g. FINISH -> IDLE after the user dismisses
  116. # a post-print prompt) is NOT a valid "command landed" signal even though the
  117. # state value did change. SLICING is included because some firmwares park
  118. # briefly in SLICING between PREPARE and RUNNING while parsing the g-code.
  119. _ACTIVE_PRINT_STATES: frozenset[str] = frozenset({"PREPARE", "SLICING", "RUNNING", "PAUSE"})
  120. # How many times the start-watchdog may revert an item to 'pending' before it
  121. # gives up and fails the row instead (#2555). Each attempt costs a full 3MF
  122. # re-upload plus the watchdog's wait, so a wedged printer left to retry forever
  123. # both never recovers and starves the other printers of dispatch slots. Three
  124. # is chosen to clear the transient causes the watchdog already recovers from —
  125. # a lost MQTT publish on a half-broken session (#887/#936) is fixed by the
  126. # force-reconnect on the very next attempt — while still bounding the loop.
  127. DISPATCH_MAX_ATTEMPTS = 3
  128. # Filament type equivalence groups — types within the same group are
  129. # interchangeable on the printer side (Bambu Lab firmware treats them as compatible).
  130. _FILAMENT_TYPE_GROUPS: list[list[str]] = [
  131. ["PA-CF", "PA12-CF", "PAHT-CF"],
  132. ]
  133. _FILAMENT_EQUIV_MAP: dict[str, str] = {}
  134. for _group in _FILAMENT_TYPE_GROUPS:
  135. _canonical = _group[0].upper()
  136. for _t in _group:
  137. _FILAMENT_EQUIV_MAP[_t.upper()] = _canonical
  138. def _canonical_filament_type(ftype: str) -> str:
  139. """Return canonical type for equivalence matching."""
  140. upper = ftype.upper()
  141. return _FILAMENT_EQUIV_MAP.get(upper, upper)
  142. @dataclass(slots=True)
  143. class _ModelCandidate:
  144. """One (file, printer model) pair the model-based matcher may try.
  145. Model-based assignment used to have exactly one of these per item, held
  146. directly in the item's own columns. Cross-model queue items (#671) have
  147. several, held in ``print_queue_variants``. Both shapes are normalised into
  148. this so the matching, the cross-model gate and the waiting-reason handling
  149. are written once and an item without variants provably takes the same path
  150. it took before variants existed.
  151. ``variant`` is None for the item's own columns and set for a real variant
  152. row, which is what :meth:`PrintScheduler._resolve_variant` writes onto the
  153. item once that candidate wins.
  154. """
  155. target_model: str | None
  156. sliced_for: str | None
  157. required_filament_types: str | None
  158. filament_overrides: str | None
  159. variant: "PrintQueueVariant | None" = None
  160. def _sliced_for_model(archive, library_file) -> str | None:
  161. """Model a 3MF declares it was sliced for, from whichever source holds it."""
  162. if archive is not None:
  163. return archive.sliced_for_model
  164. if library_file is not None and library_file.file_metadata:
  165. return library_file.file_metadata.get("sliced_for_model")
  166. return None
  167. def _candidates_for(item: PrintQueueItem) -> list[_ModelCandidate]:
  168. """Candidate files for ``item``, best first.
  169. An item with no variant rows yields exactly one candidate built from its own
  170. columns — the pre-#671 behaviour, unchanged.
  171. Variants come back least-attempted first, ties broken by the user's
  172. ``position``. On the first pass every count is zero, so this is purely the
  173. user's priority order. After a start-watchdog bounce the printer that failed
  174. drops behind, so the next lap tries the other machine rather than spending the
  175. item's whole retry budget on the one that is wedged. Once every candidate has
  176. been tried equally often they cycle again, which keeps the item-level
  177. ``DISPATCH_MAX_ATTEMPTS`` bound from #2555 intact — a job with alternatives
  178. still gives up, it just does not give up without trying them.
  179. """
  180. if not item.variants:
  181. if not item.archive_id and not item.library_file_id:
  182. # Nothing to print at all. Dispatching would fail deep in the upload
  183. # on "No archive_id or library_file_id"; the caller holds the item
  184. # with an explanation instead.
  185. return []
  186. return [
  187. _ModelCandidate(
  188. target_model=item.target_model,
  189. sliced_for=_sliced_for_model(item.archive, item.library_file),
  190. required_filament_types=item.required_filament_types,
  191. filament_overrides=item.filament_overrides,
  192. )
  193. ]
  194. # Drop candidates whose file is gone or in the trash. Both are reachable and
  195. # neither is covered by the schema: library deletes are soft (the row lives
  196. # on with ``deleted_at`` set, which no foreign key can express), and SQLite
  197. # ships with ``PRAGMA foreign_keys`` off, so the ON DELETE CASCADE never
  198. # fires there and a hard delete leaves the variant row pointing at nothing.
  199. usable = [v for v in item.variants if v.library_file is not None and v.library_file.deleted_at is None]
  200. ordered = sorted(usable, key=lambda v: (v.attempt_count or 0, v.position, v.id))
  201. return [
  202. _ModelCandidate(
  203. target_model=v.target_model,
  204. sliced_for=_sliced_for_model(None, v.library_file),
  205. required_filament_types=v.required_filament_types,
  206. filament_overrides=v.filament_overrides,
  207. variant=v,
  208. )
  209. for v in ordered
  210. ]
  211. def _collapse_waiting_reasons(per_model: list[tuple[str | None, str]]) -> str | None:
  212. """Fold one waiting reason per candidate into a single line for the item.
  213. A cross-model item produces a reason per candidate, and pasting them
  214. together unlabelled reads as gibberish ("No idle printer; PETG not loaded"
  215. — on which machine?). Each reason is prefixed with its model, except in the
  216. single-candidate case where the item already displays its target model and
  217. the prefix would be noise.
  218. Identical reasons collapse rather than repeat, so three idle-less models
  219. read as one clause.
  220. When *every* candidate is merely busy the parts are joined with the ``" | "``
  221. separator :meth:`PrintScheduler._is_busy_only` already parses, and left
  222. unprefixed. That case must keep testing busy-only: a fleet that is simply
  223. printing needs no user action, and labelling the clauses would turn each pass
  224. over a two-model item into a "job waiting" notification.
  225. """
  226. reasons = [(model, reason) for model, reason in per_model if reason]
  227. if not reasons:
  228. return None
  229. if len(reasons) == 1:
  230. return reasons[0][1]
  231. distinct = list(dict.fromkeys(reason for _model, reason in reasons))
  232. if len(distinct) == 1:
  233. return distinct[0]
  234. if all(PrintScheduler._is_busy_only(reason) for _model, reason in reasons):
  235. return " | ".join(distinct)
  236. return "; ".join(f"{model or 'unassigned'}: {reason}" for model, reason in reasons)
  237. def _candidate_model_label(candidates: list[_ModelCandidate]) -> str | None:
  238. """Human label for the models an item is waiting on ("H2S or H2C").
  239. Notifications take a single target model. For a cross-model item the item's
  240. own ``target_model`` is whichever variant happens to be first, which reads as
  241. a lie once it is the H2C that actually runs — so name all of them.
  242. """
  243. models = list(dict.fromkeys(c.target_model for c in candidates if c.target_model))
  244. if not models:
  245. return None
  246. return " or ".join(models)
  247. def _mapping_is_all_unresolved(mapping: list | None) -> bool:
  248. """True if ``mapping`` is a non-empty list whose every entry is the
  249. unresolved sentinel (-1 / None) — i.e. no required slot ever matched a tray.
  250. Such a mapping is a bug artifact: a frontend status-load race can serialize
  251. ``[-1]`` before the printer's AMS trays are known (#2589). It must be
  252. recomputed from live status at dispatch rather than trusted, otherwise it
  253. reaches the print command and is silently downgraded to external-spool mode.
  254. A partially-resolved mapping (``[-1, -1, 5]`` where slot 3 matched, or a
  255. padding ``-1`` for a slot this plate does not print) is NOT unresolved. An
  256. explicit external selection (``>= 254``) is NOT unresolved either — those
  257. keep their meaning.
  258. """
  259. if not isinstance(mapping, list) or not mapping:
  260. return False
  261. return all(t is None or (isinstance(t, int) and t < 0) for t in mapping)
  262. def _mqtt_commands_rejected(status) -> bool:
  263. """True when the printer is currently reporting that it refused a command.
  264. ``HMS_MQTT_VERIFY_FAILED`` means the firmware's authorization check rejected
  265. a control command it could not verify. Queries still answer, so the printer
  266. looks connected and idle while project_file, gcode_line and
  267. ams_change_filament are all dropped — no amount of waiting or re-uploading
  268. changes that (#2732).
  269. Tolerates a missing status and errors without a ``full_code`` (the 8-char
  270. ``print_error`` path builds HMSError differently), so this is safe to call on
  271. every watchdog poll.
  272. """
  273. for err in getattr(status, "hms_errors", None) or []:
  274. if getattr(err, "full_code", "") == HMS_MQTT_VERIFY_FAILED:
  275. return True
  276. return False
  277. def _drying_ams_ids(status) -> list[int]:
  278. """AMS unit ids currently running a drying cycle, per firmware telemetry.
  279. ``dry_time`` is minutes remaining, so >0 is the firmware's own statement that
  280. a cycle is active. Used by the dispatch watchdog to say *why* a print never
  281. started (#2758) — it is a diagnostic, not a gate.
  282. Deliberately not used to block or stop drying before dispatch. This printer
  283. class supports drying concurrently with an active print
  284. (``supports_drying_while_printing``), so drying is not incompatible with
  285. printing in general; what #2758 shows is one X2D refusing to *begin* a print
  286. while two AMS units were drying, one of them without its external PSU. Until
  287. it is known whether the blocker is drying itself or the power budget
  288. (``dry_sf_reason`` 1 / 8), acting on this would tear down drying that the
  289. hardware is perfectly happy to continue.
  290. """
  291. ids: list[int] = []
  292. for unit in (getattr(status, "raw_data", None) or {}).get("ams") or []:
  293. if not isinstance(unit, dict):
  294. continue
  295. try:
  296. if int(unit.get("dry_time") or 0) > 0:
  297. ids.append(int(unit.get("id", 0)))
  298. except (TypeError, ValueError):
  299. continue
  300. return ids
  301. def _installed_nozzle_diameters(status) -> list[float]:
  302. """Parse the installed nozzle diameters from a PrinterState (#1899).
  303. Returns the diameters the printer actually reports (e.g. [0.4] single-nozzle,
  304. [0.4, 0.6] dual-nozzle), skipping the empty-string defaults that populate a
  305. NozzleInfo before MQTT fills it in. An empty list means "the printer hasn't
  306. told us its nozzle hardware" — callers must treat that as unknown, not as a
  307. mismatch, so we never block a print on missing data.
  308. """
  309. diameters: list[float] = []
  310. for nozzle in getattr(status, "nozzles", None) or []:
  311. raw = getattr(nozzle, "nozzle_diameter", "") or ""
  312. try:
  313. value = float(raw)
  314. except (TypeError, ValueError):
  315. continue
  316. if value > 0:
  317. diameters.append(value)
  318. return diameters
  319. def _nozzle_mismatch_message(sliced_nozzle: float | None, installed: list[float]) -> str | None:
  320. """Return an actionable error message when the sliced nozzle can't be
  321. printed on any installed nozzle, else None (#1899).
  322. Fail-safe: returns None whenever we lack the data to judge — no sliced
  323. diameter, or the printer reported no nozzles — so a print is only ever
  324. blocked on a POSITIVE mismatch. On dual-nozzle printers a match against
  325. EITHER installed nozzle passes (a 0.6 slice is fine if one hotend is 0.6).
  326. The 0.05 tolerance absorbs float noise while staying well inside the 0.2
  327. gap between adjacent nozzle sizes (0.2/0.4/0.6/0.8).
  328. """
  329. if not sliced_nozzle or not installed:
  330. return None
  331. if any(abs(d - sliced_nozzle) < 0.05 for d in installed):
  332. return None
  333. installed_str = " / ".join(f"{d:g}mm" for d in installed)
  334. return (
  335. f"File sliced for a {sliced_nozzle:g}mm nozzle, but the printer has "
  336. f"{installed_str} installed. Re-slice for the installed nozzle, or "
  337. f"install the matching nozzle before printing."
  338. )
  339. def _describe_filament(entry: dict, nozzle_key: str) -> str:
  340. """One-line "PETG #000000 (left nozzle)" for an error message (#2771).
  341. Shared by the required and loaded sides, which name their extruder
  342. differently: a 3MF requirement carries ``nozzle_id``, a loaded tray carries
  343. ``extruder_id``. Both are MQTT extruder ids — 0 is the right/main nozzle,
  344. 1 the left/deputy — and both are absent on single-nozzle printers, where
  345. naming a nozzle would be noise.
  346. """
  347. parts = [(entry.get("type") or "filament").upper()]
  348. if entry.get("color"):
  349. parts.append(str(entry["color"]))
  350. nozzle = entry.get(nozzle_key)
  351. if nozzle == 0:
  352. parts.append("(right nozzle)")
  353. elif nozzle == 1:
  354. parts.append("(left nozzle)")
  355. return " ".join(parts)
  356. def _unmatched_filament_message(required: list[dict], loaded: list[dict]) -> str:
  357. """Explain that nothing loaded matches what the file needs (#2771).
  358. Only ever built for a printer with no AMS, where the loaded list is short
  359. enough to quote in full and there is no "load another spool and hit Resume"
  360. recovery — the external spool holder is all there is, so the user needs to
  361. be told which filament to put on it.
  362. """
  363. want = ", ".join(_describe_filament(r, "nozzle_id") for r in required)
  364. have = ", ".join(_describe_filament(f, "extruder_id") for f in loaded)
  365. return (
  366. f"No filament loaded on this printer matches the file. It needs {want}; "
  367. f"the printer has {have} and no AMS. Load the required filament on the "
  368. f"external spool holder, or send this job to a printer that has it."
  369. )
  370. class PrintScheduler:
  371. """Background scheduler that processes the print queue."""
  372. # Built-in drying presets per filament type (from BambuStudio filament profiles)
  373. # Format: { n3f_temp, n3s_temp, n3f_hours, n3s_hours }
  374. DEFAULT_DRYING_PRESETS: dict[str, dict[str, int]] = {
  375. "PLA": {"n3f": 45, "n3s": 45, "n3f_hours": 12, "n3s_hours": 12},
  376. "PETG": {"n3f": 65, "n3s": 65, "n3f_hours": 12, "n3s_hours": 12},
  377. "TPU": {"n3f": 65, "n3s": 75, "n3f_hours": 12, "n3s_hours": 18},
  378. "ABS": {"n3f": 65, "n3s": 80, "n3f_hours": 12, "n3s_hours": 8},
  379. "ASA": {"n3f": 65, "n3s": 80, "n3f_hours": 12, "n3s_hours": 8},
  380. "PA": {"n3f": 65, "n3s": 85, "n3f_hours": 12, "n3s_hours": 12},
  381. "PC": {"n3f": 65, "n3s": 80, "n3f_hours": 12, "n3s_hours": 8},
  382. "PVA": {"n3f": 65, "n3s": 85, "n3f_hours": 12, "n3s_hours": 18},
  383. }
  384. def __init__(self):
  385. self._running = False
  386. self._check_interval = 30 # seconds
  387. # After a pass that actually dispatched something, loop again almost
  388. # immediately instead of sleeping the full interval (#2555). A dispatch
  389. # changes printer state — a batch launch fans out over several passes as
  390. # printers free up, a wedged head-of-line job reverts to pending, an
  391. # upload slot opens — and the next batch of ready work should not have to
  392. # wait 30 s behind an idle sleep. When a pass dispatches nothing (all
  393. # pending items are behind printers that are genuinely busy printing),
  394. # there is nothing to react to, so we fall back to the normal interval;
  395. # that also means this can never tight-loop, since fast ticks only
  396. # continue while dispatches keep happening and the queue is draining.
  397. self._fast_check_interval = 3 # seconds
  398. self._power_on_wait_time = 180 # seconds to wait for printer after power on (3 min)
  399. self._power_on_check_interval = 10 # seconds between connection checks
  400. # Track which printers are currently auto-drying (printer_id -> start timestamp)
  401. self._drying_in_progress: dict[int, float] = {}
  402. # Defensive in-memory dispatch hold (#1157): a printer that just received
  403. # a project_file command must not get a second dispatch until either it
  404. # transitions out of pre_state OR the hard timeout expires. The H2D Pro
  405. # can take 80–210 s to flip FINISH→PREPARE after project_file, and
  406. # during that window the DB busy_printers seed is empirically unreliable
  407. # (multi-plate batches double-/triple-dispatched onto the same printer
  408. # 30 s apart). Keyed by printer_id; cleared by the watchdog on success
  409. # or revert.
  410. # printer_id -> (monotonic_started_at, pre_state, pre_subtask_id)
  411. self._dispatch_holds: dict[int, tuple[float, str, str | None]] = {}
  412. # Minimum cooldown between dispatches to the same printer (covers the
  413. # H2D's project_file digestion window).
  414. self._dispatch_min_cooldown = 60.0
  415. # Hard timeout — drop the hold even if we never observed a transition,
  416. # so a lost MQTT session can't lock a printer out of the queue forever.
  417. # Matches the watchdog timeout (90 s) plus a safety margin so the
  418. # watchdog runs first on the unhappy path.
  419. self._dispatch_max_hold = 180.0
  420. # Refillable upload pool (#2602). Items whose FTP upload was launched by
  421. # an earlier pass and is still running. `_start_print` flips the row
  422. # pending -> printing only *after* the upload completes, so until then
  423. # the row stays `pending`: each tick, check_queue excludes these
  424. # item_ids from re-selection and their printers from new dispatch /
  425. # auto-drying, and launches only `limit - len(_inflight)` new uploads so
  426. # freed slots refill on the next fast tick. check_queue is the sole,
  427. # sequential caller and the prune done-callbacks run in the same
  428. # event-loop thread, so this dict needs no lock.
  429. # item_id -> (task, printer_id)
  430. self._inflight: dict[int, tuple[asyncio.Task, int | None]] = {}
  431. # Expected prints registered by `_start_print` that have not yet had a
  432. # print command sent. Populated at registration, dropped once
  433. # `start_print()` succeeds, and rolled back by `_dispatch_one` on every
  434. # other exit. Same threading argument as `_inflight` above: one
  435. # sequential caller, callbacks on the same loop, so no lock.
  436. # item_id -> (printer_id, remote_filename, archive_id)
  437. self._unconfirmed_expected_print: dict[int, tuple[int, str, int]] = {}
  438. async def run(self):
  439. """Main loop - check queue every interval."""
  440. self._running = True
  441. logger.info("Print scheduler started")
  442. await self._clear_stale_dispatch_claims(at_startup=True)
  443. while self._running:
  444. dispatched = False
  445. try:
  446. # No-op while any upload is in flight; on a quiet tick it releases
  447. # a claim whose best-effort clear failed (e.g. the database was
  448. # briefly unreachable), instead of leaving the row wedged until
  449. # the next restart.
  450. await self._clear_stale_dispatch_claims()
  451. dispatched = await self.check_queue()
  452. except Exception as e:
  453. logger.error("Scheduler error: %s", e)
  454. # Re-check quickly after a productive pass so a draining batch does
  455. # not stall behind the idle interval; otherwise sleep normally (#2555).
  456. await asyncio.sleep(self._fast_check_interval if dispatched else self._check_interval)
  457. async def _clear_stale_dispatch_claims(self, *, at_startup: bool = False) -> None:
  458. """Clear dispatch claims with no live dispatch coroutine behind them (#2615).
  459. A claim is only ever held by a live dispatch coroutine, so when this
  460. process has nothing in ``_inflight`` every ``dispatching_at`` in the table
  461. is stale. At startup that is trivially true — no coroutine survives a
  462. restart. It is equally true on any later tick where no upload is running,
  463. which is what makes this safe to repeat rather than only run once.
  464. Repeating it matters because ``_clear_dispatch_claim`` is best-effort: if
  465. the database is briefly unreachable at exactly the moment dispatch ends,
  466. the claim survives and the row is wedged out of the selection query. That
  467. used to last until the next restart (#2702 follow-up, seen when
  468. PostgreSQL refused a connection mid-dispatch).
  469. ``_inflight`` is populated when the task is spawned, before the coroutine
  470. claims its row, and pruned by a done-callback that cannot run before the
  471. coroutine's own ``finally`` — so "claim present, nothing in flight" has no
  472. race window and needs no age threshold. A size-derived upload deadline
  473. (``max(600s, size/25KB/s)``) has no safe fixed bound anyway.
  474. """
  475. if self._inflight:
  476. return
  477. try:
  478. async with async_session() as db:
  479. res = await db.execute(
  480. update(PrintQueueItem).where(PrintQueueItem.dispatching_at.is_not(None)).values(dispatching_at=None)
  481. )
  482. await db.commit()
  483. if res.rowcount:
  484. logger.info(
  485. "Cleared %d orphaned dispatch claim(s)%s (#2615)",
  486. res.rowcount,
  487. " at startup" if at_startup else "",
  488. )
  489. except Exception as exc:
  490. logger.error("Failed to clear orphaned dispatch claims: %s", exc)
  491. def stop(self):
  492. """Stop the scheduler."""
  493. self._running = False
  494. logger.info("Print scheduler stopped")
  495. async def check_queue(self) -> bool:
  496. """Check for prints ready to start.
  497. Returns True if this pass dispatched at least one item, so the caller
  498. can loop again quickly instead of sleeping the full interval (#2555).
  499. """
  500. async with async_session() as db:
  501. # Check if shortest-job-first scheduling is enabled
  502. sjf_enabled = await self._get_bool_setting(db, "queue_shortest_first")
  503. # Get all pending items, ordered by printer and position (or SJF order)
  504. if sjf_enabled:
  505. # SJF: group by printer (and target_model for model-based jobs),
  506. # then items already jumped get top priority (starvation guard),
  507. # then sort by print_time ascending. Items with no print time go last.
  508. result = await db.execute(
  509. select(PrintQueueItem)
  510. .where(PrintQueueItem.status == "pending")
  511. # Never re-select a row a dispatch worker has already claimed
  512. # (#2615) — belt-and-suspenders with the _inflight exclusion
  513. # below, and the guard that lets an orphaned claim be ignored
  514. # until startup reconciliation clears it.
  515. .where(PrintQueueItem.dispatching_at.is_(None))
  516. # archive/library_file are read by the cross-model gate
  517. # (#2578); eager-load once per pass instead of a lazy-load
  518. # (which would raise in async) per item.
  519. .options(
  520. selectinload(PrintQueueItem.archive),
  521. selectinload(PrintQueueItem.library_file),
  522. # Cross-model candidates (#671), plus each candidate's file
  523. # for the same cross-model gate. Lazy-loading either would
  524. # raise in async.
  525. selectinload(PrintQueueItem.variants).selectinload(PrintQueueVariant.library_file),
  526. )
  527. .order_by(
  528. PrintQueueItem.printer_id,
  529. PrintQueueItem.target_model,
  530. PrintQueueItem.been_jumped.desc(),
  531. PrintQueueItem.print_time_seconds.asc().nullslast(),
  532. PrintQueueItem.position,
  533. )
  534. )
  535. else:
  536. result = await db.execute(
  537. select(PrintQueueItem)
  538. .where(PrintQueueItem.status == "pending")
  539. # Skip rows already claimed by a dispatch worker (#2615).
  540. .where(PrintQueueItem.dispatching_at.is_(None))
  541. .options(
  542. selectinload(PrintQueueItem.archive),
  543. selectinload(PrintQueueItem.library_file),
  544. # Cross-model candidates (#671), plus each candidate's file
  545. # for the same cross-model gate. Lazy-loading either would
  546. # raise in async.
  547. selectinload(PrintQueueItem.variants).selectinload(PrintQueueVariant.library_file),
  548. )
  549. .order_by(PrintQueueItem.printer_id, PrintQueueItem.position)
  550. )
  551. items = list(result.scalars().all())
  552. # Drop rows whose upload is still in flight from an earlier pass
  553. # (#2602). They stay `pending` until the upload finishes, so without
  554. # this a fast tick would re-select and re-dispatch the same row.
  555. # Belt-and-suspenders with the printer exclusion below.
  556. if self._inflight:
  557. inflight_ids = set(self._inflight)
  558. items = [it for it in items if it.id not in inflight_ids]
  559. # Read plate-clear setting once per queue check. Default MUST be
  560. # False to match the schema (SettingsSchema.require_plate_clear
  561. # defaults False) and the frontend (toggle + card badge both treat a
  562. # missing value as off). When no settings row exists, a True default
  563. # here re-enabled the plate-clear gate the UI showed as disabled,
  564. # blocking dispatch to FINISH-state printers forever with no UI path
  565. # to clear it (#1865).
  566. require_plate_clear = await self._get_bool_setting(db, "require_plate_clear", default=False)
  567. if not items:
  568. # No dispatchable pending items — still check auto-drying on idle
  569. # printers, but keep any printer with an upload still in flight
  570. # from an earlier pass out of it (#2602): its print is imminent,
  571. # so it must not be auto-dried in the gap before the row flips to
  572. # printing. Report the pass as productive while uploads run so the
  573. # loop stays on the fast interval.
  574. inflight_printers = {pid for (_task, pid) in self._inflight.values() if pid is not None}
  575. await self._check_auto_drying(db, [], inflight_printers, require_plate_clear=require_plate_clear)
  576. return bool(self._inflight)
  577. logger.info(
  578. "Queue check: found %d pending items: %s",
  579. len(items),
  580. [(i.id, i.printer_id, i.archive_id, i.library_file_id) for i in items],
  581. )
  582. # Seed busy_printers with printers that already have an item in 'printing'
  583. # status. _is_printer_idle() alone is not sufficient as a dispatch gate —
  584. # on H2D / P1 series the MQTT state transition from IDLE to RUNNING can
  585. # lag several seconds behind the print command, so the next check_queue
  586. # tick still sees IDLE and would double-dispatch onto the same printer.
  587. # Without this guard, two pending items targeting the same printer
  588. # (e.g. a batch with quantity>1) both end up in 'printing' status —
  589. # surfaced via the "BUG: Multiple queue items" warning in on_print_complete.
  590. busy_result = await db.execute(
  591. select(PrintQueueItem.printer_id)
  592. .where(PrintQueueItem.status == "printing")
  593. .where(PrintQueueItem.printer_id.is_not(None))
  594. )
  595. busy_printers: set[int] = {pid for (pid,) in busy_result.all() if pid is not None}
  596. # Defense-in-depth (#1157): augment busy_printers with any printer
  597. # still in its post-dispatch hold window. Empirically, the DB seed
  598. # above can miss in-flight items in a multi-plate batch — same-file
  599. # plates were being dispatched 30 s apart while the H2D was still
  600. # digesting the first project_file. The hold is keyed in-memory and
  601. # released by the watchdog on the success path, so it adds a layer
  602. # that doesn't depend on DB row visibility or completion-callback
  603. # timing.
  604. for held_printer_id in list(self._dispatch_holds.keys()):
  605. if self._printer_in_dispatch_hold(held_printer_id):
  606. busy_printers.add(held_printer_id)
  607. # Exclude printers whose upload is still in flight from an earlier
  608. # pass (#2602). The row is `pending` until the upload finishes and
  609. # the printing-state seed / dispatch hold above only arm once the
  610. # upload completes, so this is what holds the printer (and, via
  611. # busy_printers, its auto-drying) out of the pass during the upload.
  612. for _task, inflight_pid in self._inflight.values():
  613. if inflight_pid is not None:
  614. busy_printers.add(inflight_pid)
  615. # Printers held by a Home Assistant sensor interlock (#1148) — an
  616. # enclosure door left open, say. The fixed-printer branch turns
  617. # this into a waiting_reason the user can act on; the model-based
  618. # branch hides these printers from the matcher so an "Any <model>"
  619. # job runs on a sibling instead of queueing behind the held one.
  620. #
  621. # Deliberately NOT merged into busy_printers, even though that set
  622. # already means "unavailable this pass". _check_auto_drying reads
  623. # it as "is currently printing" and would put an idle-but-held
  624. # printer down the mid-print drying path, which caps the drying
  625. # temperature and skips the queue-only gating. A held printer is
  626. # idle; it should dry exactly as it did before.
  627. #
  628. # Only sensors we actually read and found alerting appear here; see
  629. # ha_sensor_manager.blocked_printers. A Home Assistant that is down
  630. # holds nothing.
  631. interlocked: dict[int, str] = {}
  632. try:
  633. interlocked = await ha_sensor_manager.blocked_printers(db)
  634. except Exception as e:
  635. # Never let the interlock stop the queue running. A broken
  636. # lookup means no holds, not no dispatches.
  637. logger.warning("Home Assistant interlock check failed: %s", e)
  638. interlocked = {}
  639. # Log skip reasons once per queue check (not per item)
  640. skip_reasons: dict[str, int] = {}
  641. # Items selected for dispatch in this pass, one per printer. The
  642. # loop below only *decides* — the uploads happen afterwards, in
  643. # parallel (#2555). See _dispatch_selected().
  644. dispatch_ids: list[int] = []
  645. # Library rows queued with `cleanup_library_after_dispatch` (the
  646. # printer-card "upload and print" flow) are CONSUMED by the dispatch
  647. # that prints them: the row is deleted and the 3MF is unlinked from
  648. # disk. That was safe only because dispatch was serial. Run two of
  649. # them against the same row at once and the second DELETE matches no
  650. # row (StaleDataError), and the winner's unlink can pull the file out
  651. # from under the loser's in-flight upload.
  652. #
  653. # Only the cleanup flag mutates the row. An ordinary library print
  654. # just reads it, so the common fan-out — one file, many printers,
  655. # which is exactly the reporter's workload — still goes out fully in
  656. # parallel. Narrow the guard to the mutating case; do not serialise
  657. # the case the whole fix exists for.
  658. dispatch_libs: set[int] = set()
  659. consumed_libs: set[int] = set()
  660. def _library_row_conflict(candidate: PrintQueueItem) -> bool:
  661. """True if dispatching `candidate` now would race another item's cleanup."""
  662. lib_id = candidate.library_file_id
  663. if lib_id is None:
  664. return False
  665. if candidate.cleanup_library_after_dispatch:
  666. # We would delete a row someone else in this pass is reading.
  667. return lib_id in dispatch_libs
  668. # Someone else in this pass will delete the row out from under us.
  669. return lib_id in consumed_libs
  670. def _claim_library_row(candidate: PrintQueueItem) -> None:
  671. lib_id = candidate.library_file_id
  672. if lib_id is None:
  673. return
  674. dispatch_libs.add(lib_id)
  675. if candidate.cleanup_library_after_dispatch:
  676. consumed_libs.add(lib_id)
  677. for item in items:
  678. # Check scheduled time first (scheduled_time is stored in UTC from ISO string)
  679. if item.scheduled_time:
  680. sched = item.scheduled_time
  681. if sched.tzinfo is None:
  682. sched = sched.replace(tzinfo=timezone.utc)
  683. if sched > datetime.now(timezone.utc):
  684. skip_reasons["scheduled_future"] = skip_reasons.get("scheduled_future", 0) + 1
  685. continue
  686. # Skip items that require manual start
  687. if item.manual_start:
  688. skip_reasons["manual_start"] = skip_reasons.get("manual_start", 0) + 1
  689. continue
  690. if item.printer_id:
  691. # Held by a sensor interlock (#1148). Checked before the
  692. # busy_printers test that would otherwise swallow it
  693. # silently — "waiting for a printer" and "waiting for you
  694. # to shut the enclosure" need to read differently, and only
  695. # one of them is something the user can fix.
  696. #
  697. # The interlock is the only thing that writes a
  698. # waiting_reason on this branch — the model-based branch
  699. # nulls it at the moment it assigns a printer — so any
  700. # reason still standing once the hold lifts is stale and is
  701. # cleared here. Doing it at dispatch instead would leave a
  702. # shut door reading "Waiting on Enclosure Door" for as long
  703. # as the printer stayed busy with something else.
  704. interlock_reason = interlocked.get(item.printer_id)
  705. reason = f"Waiting on {interlock_reason}" if interlock_reason else None
  706. if item.waiting_reason != reason:
  707. item.waiting_reason = reason
  708. await db.commit()
  709. if interlock_reason:
  710. skip_reasons["sensor_interlock"] = skip_reasons.get("sensor_interlock", 0) + 1
  711. continue
  712. # Specific printer assignment (existing behavior)
  713. if item.printer_id in busy_printers:
  714. continue
  715. # Check if printer is idle
  716. printer_idle = self._is_printer_idle(item.printer_id, require_plate_clear)
  717. printer_connected = printer_manager.is_connected(item.printer_id)
  718. # If printer not connected, try to power on via smart plug
  719. if not printer_connected:
  720. plugs = await self._get_smart_plugs(db, item.printer_id)
  721. auto_on_plugs = [p for p in plugs if p.auto_on and p.enabled]
  722. if auto_on_plugs:
  723. logger.info("Printer %s offline, attempting to power on via smart plug(s)", item.printer_id)
  724. # Power on using the plug that actually feeds the printer, and
  725. # wait for it to boot on that one only (#2629).
  726. primary_plug = self._pick_power_plug(auto_on_plugs)
  727. powered_on = await self._power_on_and_wait(primary_plug, item.printer_id, db)
  728. if powered_on:
  729. # Also turn on any remaining auto_on plugs (e.g., filter)
  730. for extra_plug in [p for p in auto_on_plugs if p.id != primary_plug.id]:
  731. try:
  732. service = await smart_plug_manager.get_service_for_plug(extra_plug, db)
  733. await service.turn_on(extra_plug)
  734. logger.info(
  735. "Also powered on plug '%s' for printer %s", extra_plug.name, item.printer_id
  736. )
  737. except Exception as e:
  738. logger.warning("Failed to power on extra plug '%s': %s", extra_plug.name, e)
  739. printer_connected = True
  740. printer_idle = self._is_printer_idle(item.printer_id, require_plate_clear)
  741. else:
  742. logger.warning("Could not power on printer %s via smart plug", item.printer_id)
  743. busy_printers.add(item.printer_id)
  744. continue
  745. else:
  746. # No plug or auto_on disabled
  747. busy_printers.add(item.printer_id)
  748. continue
  749. # Check if printer is idle (busy with another print)
  750. if not printer_idle:
  751. # If printer is drying (not truly busy), handle based on queue_drying_block
  752. if self._drying_in_progress.get(item.printer_id):
  753. block_for_drying = await self._get_bool_setting(db, "queue_drying_block")
  754. if block_for_drying:
  755. # Drying blocks queue — skip this printer
  756. busy_printers.add(item.printer_id)
  757. continue
  758. else:
  759. # Print takes priority — stop drying
  760. await self._stop_drying(item.printer_id)
  761. # Re-check idle after stopping drying
  762. printer_idle = self._is_printer_idle(item.printer_id, require_plate_clear)
  763. if not printer_idle:
  764. busy_printers.add(item.printer_id)
  765. continue
  766. else:
  767. busy_printers.add(item.printer_id)
  768. continue
  769. # Check condition (previous print success)
  770. if item.require_previous_success:
  771. if not await self._check_previous_success(db, item):
  772. item.status = "skipped"
  773. item.error_message = "Previous print failed or was aborted"
  774. item.completed_at = datetime.now(timezone.utc)
  775. await db.commit()
  776. logger.info("Skipped queue item %s - previous print failed", item.id)
  777. # Send notification
  778. job_name = await self._get_job_name(db, item)
  779. printer = await self._get_printer(db, item.printer_id)
  780. await notification_service.on_queue_job_skipped(
  781. job_name=job_name,
  782. printer_id=item.printer_id,
  783. printer_name=printer.name if printer else "Unknown",
  784. reason="Previous print failed or was aborted",
  785. db=db,
  786. )
  787. continue
  788. # Resolve the AMS mapping when it's missing OR unresolved
  789. # (all -1). A stored all-[-1] mapping is a bug artifact — a
  790. # frontend status-load race can persist [-1] (#2589) — and
  791. # must be recomputed from live trays rather than trusted.
  792. unmappable = await self._ensure_ams_mapping(db, item.printer_id, item)
  793. if unmappable:
  794. await self._fail_unmappable_item(db, item, item.printer_id, unmappable)
  795. continue
  796. # Filament-deficit pre-dispatch check (#1496). If the
  797. # assigned spool can't satisfy any required slot grams,
  798. # promote the item to manual_start so the user must
  799. # acknowledge via the ▶ button (which re-checks live).
  800. if await self._block_on_filament_deficit(db, item):
  801. continue
  802. # Hold this item back for the next pass rather than racing
  803. # another dispatch over the same transient library row. The
  804. # printer is still marked busy so a later item does not jump
  805. # its place in this printer's queue.
  806. if _library_row_conflict(item):
  807. skip_reasons["library_row_in_use"] = skip_reasons.get("library_row_in_use", 0) + 1
  808. busy_printers.add(item.printer_id)
  809. continue
  810. # Queue the dispatch instead of running it here — see
  811. # _dispatch_selected(). busy_printers still gets the printer
  812. # immediately, so nothing else in this pass can target it.
  813. _claim_library_row(item)
  814. dispatch_ids.append(item.id)
  815. busy_printers.add(item.printer_id)
  816. # SJF starvation guard: mark items that were jumped
  817. if sjf_enabled and item.print_time_seconds is not None:
  818. for other in items:
  819. if (
  820. other.id != item.id
  821. and other.status == "pending"
  822. and other.printer_id == item.printer_id
  823. and not other.been_jumped
  824. and other.position < item.position
  825. and (
  826. other.print_time_seconds is None
  827. or other.print_time_seconds > item.print_time_seconds
  828. )
  829. ):
  830. other.been_jumped = True
  831. await db.commit()
  832. elif item.target_model or item.variants:
  833. # Model-based assignment - find any idle printer of matching model.
  834. # A plain model-based item has exactly one candidate, built from
  835. # its own columns. A cross-model item (#671) has one per sliced
  836. # variant and takes the first that matches, walking them in the
  837. # user's priority order so the pick is reproducible when more
  838. # than one printer is free in the same pass.
  839. candidates = _candidates_for(item)
  840. printer_id = None
  841. chosen: _ModelCandidate | None = None
  842. per_model_reasons: list[tuple[str | None, str]] = []
  843. if not candidates:
  844. # Every candidate file has been deleted or trashed out from
  845. # under this item. Hold it with something the user can act
  846. # on rather than letting it look dispatchable forever.
  847. per_model_reasons.append(
  848. (
  849. item.target_model,
  850. "Every file for this job has been deleted — add a file back or remove the item",
  851. )
  852. )
  853. for candidate in candidates:
  854. # Parse required filament types if present
  855. required_types = None
  856. if candidate.required_filament_types:
  857. try:
  858. required_types = json.loads(candidate.required_filament_types)
  859. except json.JSONDecodeError:
  860. pass # Ignore malformed filament types; treat as no constraint
  861. # Parse filament overrides if present
  862. filament_overrides = None
  863. if candidate.filament_overrides:
  864. try:
  865. filament_overrides = json.loads(candidate.filament_overrides)
  866. except json.JSONDecodeError:
  867. pass
  868. # If overrides exist, use override types for validation instead
  869. effective_types = required_types
  870. if filament_overrides:
  871. override_types = sorted({o["type"] for o in filament_overrides if "type" in o})
  872. if override_types:
  873. # Merge: keep original types for non-overridden slots, add override types
  874. effective_types = sorted(set(required_types or []) | set(override_types))
  875. # Cross-model safety gate (#2578): never hand a 3MF sliced
  876. # for an incompatible model to a printer, no matter how the
  877. # row got into the DB (old rows, direct API writes). Held
  878. # as pending with an actionable waiting_reason — the user
  879. # fixes it by editing the item's target model.
  880. if not is_gcode_compatible(candidate.sliced_for, candidate.target_model):
  881. per_model_reasons.append(
  882. (
  883. candidate.target_model,
  884. f"File was sliced for {candidate.sliced_for}, which is not compatible with "
  885. f"{candidate.target_model} — edit the item and fix its target model",
  886. )
  887. )
  888. skip_reasons["sliced_model_mismatch"] = skip_reasons.get("sliced_model_mismatch", 0) + 1
  889. continue
  890. match_id, match_reason = await self._find_idle_printer_for_model(
  891. db,
  892. candidate.target_model,
  893. # Sensor-held printers are unavailable to the
  894. # matcher but stay out of busy_printers itself
  895. # (#1148) — see where `interlocked` is built.
  896. busy_printers | interlocked.keys(),
  897. effective_types,
  898. item.target_location,
  899. filament_overrides=filament_overrides,
  900. require_plate_clear=require_plate_clear,
  901. )
  902. if match_id:
  903. printer_id = match_id
  904. chosen = candidate
  905. break
  906. per_model_reasons.append((candidate.target_model, match_reason or ""))
  907. waiting_reason = None if printer_id else _collapse_waiting_reasons(per_model_reasons)
  908. # Fold the winning variant's file and settings onto the item
  909. # before anything else looks at them — the guards below and
  910. # every step of the dispatch read the item's own columns.
  911. if chosen is not None:
  912. self._resolve_variant(item, chosen)
  913. # Update waiting_reason if changed and send notification when first waiting
  914. if item.waiting_reason != waiting_reason:
  915. was_waiting = item.waiting_reason is not None
  916. item.waiting_reason = waiting_reason
  917. await db.commit()
  918. # Send waiting notification only when transitioning to waiting state
  919. # and the reason requires user action (not just "all printers busy")
  920. if waiting_reason and not was_waiting and not self._is_busy_only(waiting_reason):
  921. job_name = await self._get_job_name(db, item)
  922. await notification_service.on_queue_job_waiting(
  923. job_name=job_name,
  924. target_model=_candidate_model_label(candidates) or item.target_model,
  925. waiting_reason=waiting_reason,
  926. db=db,
  927. )
  928. if printer_id:
  929. # Before claiming the printer: hold back rather than race
  930. # another dispatch over the same transient library row.
  931. # Checked here so a held item does not get a printer
  932. # assigned and then sit on it. See _library_row_conflict().
  933. #
  934. # No busy_printers.add() here, unlike the fixed-printer
  935. # branch above: that one protects its printer's own queue
  936. # ordering, but this item was never assigned to `printer_id`
  937. # — the matcher merely offered it. Marking it busy would
  938. # strand an idle printer for the rest of the pass.
  939. if _library_row_conflict(item):
  940. skip_reasons["library_row_in_use"] = skip_reasons.get("library_row_in_use", 0) + 1
  941. continue
  942. # Check condition (previous print success) before assigning
  943. if item.require_previous_success:
  944. if not await self._check_previous_success(db, item):
  945. item.status = "skipped"
  946. item.error_message = "Previous print failed or was aborted"
  947. item.completed_at = datetime.now(timezone.utc)
  948. await db.commit()
  949. logger.info("Skipped queue item %s - previous print failed", item.id)
  950. # Send notification
  951. job_name = await self._get_job_name(db, item)
  952. printer = await self._get_printer(db, printer_id)
  953. await notification_service.on_queue_job_skipped(
  954. job_name=job_name,
  955. printer_id=printer_id,
  956. printer_name=printer.name if printer else "Unknown",
  957. reason="Previous print failed or was aborted",
  958. db=db,
  959. )
  960. continue
  961. # Assign printer and start - clear waiting reason
  962. item.printer_id = printer_id
  963. item.waiting_reason = None
  964. logger.info("Model-based assignment: queue item %s assigned to printer %s", item.id, printer_id)
  965. # Send assignment notification
  966. job_name = await self._get_job_name(db, item)
  967. printer = await self._get_printer(db, printer_id)
  968. await notification_service.on_queue_job_assigned(
  969. job_name=job_name,
  970. printer_id=printer_id,
  971. printer_name=printer.name if printer else "Unknown",
  972. target_model=item.target_model,
  973. db=db,
  974. )
  975. # Resolve the AMS mapping for the assigned printer when it's
  976. # missing OR unresolved (all -1). Critical for model-based
  977. # jobs where mapping wasn't computed upfront, and it also
  978. # self-heals a bogus stored [-1] (#2589).
  979. unmappable = await self._ensure_ams_mapping(db, printer_id, item)
  980. if unmappable:
  981. await self._fail_unmappable_item(db, item, printer_id, unmappable)
  982. continue
  983. # Filament-deficit pre-dispatch check (#1496).
  984. if await self._block_on_filament_deficit(db, item):
  985. continue
  986. _claim_library_row(item)
  987. dispatch_ids.append(item.id)
  988. busy_printers.add(printer_id)
  989. # SJF starvation guard: mark model-based items that were jumped
  990. if sjf_enabled and item.print_time_seconds is not None:
  991. for other in items:
  992. if (
  993. other.id != item.id
  994. and other.status == "pending"
  995. and other.printer_id is None
  996. and other.target_model
  997. and other.target_model.upper() == item.target_model.upper()
  998. and not other.been_jumped
  999. and other.position < item.position
  1000. and (
  1001. other.print_time_seconds is None
  1002. or other.print_time_seconds > item.print_time_seconds
  1003. )
  1004. ):
  1005. other.been_jumped = True
  1006. await db.commit()
  1007. # Log the decisions BEFORE dispatching. The dispatch below blocks for
  1008. # as long as the slowest upload takes (minutes on a big 3MF), and a
  1009. # skip summary that only lands after the transfers have finished is
  1010. # useless for working out why an item did not go out.
  1011. if skip_reasons:
  1012. logger.info("Queue skip summary: %s", skip_reasons)
  1013. if busy_printers:
  1014. # Log why each printer was busy (first time it was checked)
  1015. for pid in busy_printers:
  1016. state = printer_manager.get_status(pid)
  1017. connected = printer_manager.is_connected(pid)
  1018. awaiting = printer_manager.is_awaiting_plate_clear(pid)
  1019. state_name = state.state if state else "NO_STATUS"
  1020. logger.info(
  1021. "Queue: printer %d not available — connected=%s, state=%s, awaiting_plate_clear=%s",
  1022. pid,
  1023. connected,
  1024. state_name,
  1025. awaiting,
  1026. )
  1027. # Read the concurrency limit BEFORE the commit below, not inside
  1028. # _dispatch_selected(). A SELECT on this session after the commit
  1029. # implicitly opens a fresh transaction that nothing then closes, and
  1030. # it would stay open for the whole dispatch — minutes of "idle in
  1031. # transaction" on Postgres (pinned MVCC snapshot, vacuum blocked),
  1032. # and on SQLite a pinned WAL read snapshot that stops the WAL being
  1033. # checkpointed while every dispatch is writing to it.
  1034. upload_limit = max(1, await self._get_int_setting(db, "queue_max_concurrent_uploads", default=4))
  1035. # Selection is done; every decision above is recorded on `db`
  1036. # (model-based printer assignment, computed ams_mapping). Flush it
  1037. # before the dispatch tasks open their own sessions, or they will
  1038. # read a row that still says printer_id=None. This also releases the
  1039. # connection back to the pool for the duration of the dispatch.
  1040. await db.commit()
  1041. if dispatch_ids:
  1042. item_printers = {it.id: it.printer_id for it in items}
  1043. self._launch_uploads(dispatch_ids, item_printers, upload_limit)
  1044. # Auto-drying: start drying on idle printers that have no pending queue items
  1045. await self._check_auto_drying(db, items, busy_printers, require_plate_clear=require_plate_clear)
  1046. # Keep the loop on the fast interval while any upload is in flight so
  1047. # a slot freed mid-tick refills within seconds rather than after the
  1048. # 30 s idle sleep (#2602). Selecting anything this pass (launched or
  1049. # deferred because the pool was full) also counts as productive.
  1050. return bool(dispatch_ids) or bool(self._inflight)
  1051. def _launch_uploads(self, item_ids: list[int], item_printers: dict[int, int | None], limit: int) -> None:
  1052. """Launch selected uploads as a refillable pool, capped at ``limit`` (#2602).
  1053. Dispatch used to happen inline in the selection loop: ``await
  1054. _start_print(db, item)`` per item in turn. Since ``_start_print``
  1055. performs the FTP upload, that serialized every printer behind every
  1056. other printer's transfer even though the printers are independent
  1057. machines; #2555 moved it to a parallel ``asyncio.gather()``. But that
  1058. gather was awaited before ``check_queue`` returned, so the run loop
  1059. stayed blocked until the *slowest* upload in the batch finished — a
  1060. 513 s upload left 15 of 16 configured slots idle for 8.5 minutes on a
  1061. 93-printer farm even as other printers came free (#2602).
  1062. Each upload now runs as an independent background task tracked in
  1063. ``self._inflight``. check_queue excludes in-flight item_ids (still
  1064. `pending` until their upload completes) and their printers from the
  1065. next pass's selection, and this method launches at most
  1066. ``limit - len(self._inflight)`` new uploads, so a freed slot refills on
  1067. the next fast tick instead of waiting out the whole batch. The bound
  1068. exists because the printers are independent but the host is not: each
  1069. in-flight upload holds a thread in the FTP pool, a TLS session and a
  1070. file handle.
  1071. The no-overlapping-dispatch invariant the batch-await used to provide
  1072. is now carried by the in-flight exclusion in check_queue. Everything
  1073. else — the pending->printing CAS, the busy-printer guard (#2598), the
  1074. per-printer hold, and each item's independent failure handling — still
  1075. lives in ``_start_print`` and runs per task exactly as before.
  1076. Synchronous on purpose: it registers every launched task into
  1077. ``self._inflight`` before returning, so the next (sequential) tick sees
  1078. an accurate in-flight count with no interleaving await.
  1079. """
  1080. free = limit - len(self._inflight)
  1081. if free <= 0:
  1082. logger.info(
  1083. "Upload pool full (%d/%d in flight) — deferring %d item(s) to a later tick: %s",
  1084. len(self._inflight),
  1085. limit,
  1086. len(item_ids),
  1087. item_ids,
  1088. )
  1089. return
  1090. to_launch = item_ids[:free]
  1091. deferred = item_ids[free:]
  1092. logger.info(
  1093. "Launching %d upload(s) (pool %d/%d in flight)%s",
  1094. len(to_launch),
  1095. len(self._inflight),
  1096. limit,
  1097. f" — deferring {deferred} to a later tick" if deferred else "",
  1098. )
  1099. for item_id in to_launch:
  1100. task = spawn_background_task(self._dispatch_one(item_id), name=f"queue-upload-{item_id}")
  1101. self._inflight[item_id] = (task, item_printers.get(item_id))
  1102. # Prune on completion so the freed slot is refillable next tick.
  1103. # spawn_background_task already logs any uncaught exception; this
  1104. # only reclaims the pool slot (fires on success, failure, or cancel).
  1105. task.add_done_callback(lambda _t, iid=item_id: self._inflight.pop(iid, None))
  1106. async def _dispatch_one(self, item_id: int) -> None:
  1107. """Upload + start one queue item in its own session (pool worker, #2602).
  1108. Its own session: pool workers run concurrently and an AsyncSession is
  1109. not safe to share across tasks; it also keeps a slow upload from pinning
  1110. the scheduler's session (and, on SQLite, its transaction) open for the
  1111. transfer's duration.
  1112. """
  1113. async with async_session() as item_db:
  1114. # Claim the row for dispatch BEFORE reading the printer snapshot or
  1115. # touching any slow I/O (#2615). The claim is an atomic CAS on
  1116. # (status='pending', dispatching_at IS NULL); while it's held the edit
  1117. # routes reject reassignment (409), so printer_id can't change out from
  1118. # under the in-flight upload and split the queue row from the
  1119. # archive/expected-print/physical command.
  1120. if not await self._claim_for_dispatch(item_db, item_id):
  1121. logger.info(
  1122. "Queue item %s not claimable for dispatch (cancelled, removed, or already claimed) — skipping",
  1123. item_id,
  1124. )
  1125. return
  1126. try:
  1127. item = await item_db.get(PrintQueueItem, item_id)
  1128. if not item:
  1129. logger.info("Queue item %s vanished after claim — skipping", item_id)
  1130. return
  1131. await self._start_print(item_db, item)
  1132. finally:
  1133. # Undo an expected-print registration whose print command never
  1134. # went out. One choke point covers every way `_start_print` can
  1135. # end without sending: a raised exception (a DB failure mid-
  1136. # dispatch is the reported case), an early return, a cancel
  1137. # winning the #1853 CAS, or `start_print()` returning False.
  1138. # A confirmed send removes the entry itself, so this is a no-op
  1139. # on the happy path.
  1140. self._rollback_unconfirmed_expected_print(item_id)
  1141. # Release the claim on every exit. Once dispatch has finished the
  1142. # row's status carries the lock (printing/failed/cancelled are all
  1143. # != pending), so the token is only needed for the duration of the
  1144. # upload. A row left pending (e.g. busy-printer deferral) becomes
  1145. # dispatchable again on the next tick.
  1146. await self._clear_dispatch_claim(item_db, item_id)
  1147. def _rollback_unconfirmed_expected_print(self, item_id: int) -> None:
  1148. """Drop an expectation for a print command that was never sent.
  1149. Best-effort and never raises: this runs in the ``finally`` of dispatch,
  1150. where the interesting exception is usually the one already propagating.
  1151. """
  1152. pending = self._unconfirmed_expected_print.pop(item_id, None)
  1153. if pending is None:
  1154. return
  1155. printer_id, remote_filename, archive_id = pending
  1156. try:
  1157. from backend.app.main import unregister_expected_print
  1158. unregister_expected_print(printer_id, remote_filename, archive_id)
  1159. except Exception:
  1160. logger.warning(
  1161. "Queue item %s: failed to unregister expected print (printer=%s, file=%s, archive=%s)",
  1162. item_id,
  1163. printer_id,
  1164. remote_filename,
  1165. archive_id,
  1166. exc_info=True,
  1167. )
  1168. async def _claim_for_dispatch(self, db: AsyncSession, item_id: int) -> bool:
  1169. """Atomically stamp ``dispatching_at`` on a still-pending, unclaimed row.
  1170. Returns True if this call won the claim, False if the row was already
  1171. claimed, no longer pending (cancelled mid-tick), or removed. The CAS is
  1172. the load-bearing guard against reassign-during-dispatch (#2615)."""
  1173. res = await db.execute(
  1174. update(PrintQueueItem)
  1175. .where(PrintQueueItem.id == item_id)
  1176. .where(PrintQueueItem.status == "pending")
  1177. .where(PrintQueueItem.dispatching_at.is_(None))
  1178. .values(dispatching_at=datetime.now(timezone.utc))
  1179. )
  1180. await db.commit()
  1181. return res.rowcount > 0
  1182. async def _clear_dispatch_claim(self, db: AsyncSession, item_id: int) -> None:
  1183. """Clear the dispatch claim (#2615). Best-effort: a failure here must not
  1184. mask the dispatch outcome.
  1185. Retried, because the failure mode in practice is transient and narrow: a
  1186. database that is momentarily unreachable — PostgreSQL out of connection
  1187. slots is the observed case — refuses this write for a second or two while
  1188. the dispatch that just ended is still holding the row out of the selection
  1189. query. One attempt was enough to wedge the item; a couple of spaced
  1190. attempts clear it. Each attempt rolls back first, since a failed write
  1191. leaves the session needing it before it can be reused.
  1192. If every attempt fails, ``_clear_stale_dispatch_claims`` picks the row up
  1193. on the next quiet tick.
  1194. """
  1195. for attempt in range(1, 4):
  1196. try:
  1197. await db.execute(update(PrintQueueItem).where(PrintQueueItem.id == item_id).values(dispatching_at=None))
  1198. await db.commit()
  1199. return
  1200. except Exception as exc:
  1201. try:
  1202. await db.rollback()
  1203. except Exception:
  1204. pass
  1205. if attempt == 3:
  1206. logger.warning(
  1207. "Queue item %s: failed to clear dispatch claim after %d attempts: %s "
  1208. "— a later quiet tick will release it",
  1209. item_id,
  1210. attempt,
  1211. exc,
  1212. )
  1213. return
  1214. await asyncio.sleep(0.5 * attempt)
  1215. async def _find_idle_printer_for_model(
  1216. self,
  1217. db: AsyncSession,
  1218. model: str,
  1219. exclude_ids: set[int],
  1220. required_filament_types: list[str] | None = None,
  1221. target_location: str | None = None,
  1222. filament_overrides: list[dict] | None = None,
  1223. require_plate_clear: bool = True,
  1224. ) -> tuple[int | None, str | None]:
  1225. """Find an idle, connected printer matching the model with compatible filaments.
  1226. Args:
  1227. db: Database session
  1228. model: Printer model to match (e.g., "X1C", "P1S")
  1229. exclude_ids: Printer IDs to exclude (already busy)
  1230. required_filament_types: Optional list of filament types needed (e.g., ["PLA", "PETG"])
  1231. If provided, only printers with all required types loaded will match.
  1232. target_location: Optional location filter. If provided, only printers in this location are considered.
  1233. filament_overrides: Optional list of override dicts. Each entry may include
  1234. ``force_color_match: true`` to require an exact type+color match
  1235. on the printer for that slot. Without the flag the existing
  1236. colour-preference logic applies.
  1237. Returns:
  1238. Tuple of (printer_id, waiting_reason):
  1239. - (printer_id, None) if a matching printer was found
  1240. - (None, reason) if no printer is available, with explanation
  1241. """
  1242. # Normalize model name and use case-insensitive matching
  1243. normalized_model = normalize_printer_model(model) or model
  1244. query = (
  1245. select(Printer)
  1246. .where(func.lower(Printer.model) == normalized_model.lower())
  1247. .where(Printer.is_active == True) # noqa: E712
  1248. )
  1249. # Add location filter if specified
  1250. if target_location:
  1251. query = query.where(Printer.location == target_location)
  1252. result = await db.execute(query)
  1253. printers = list(result.scalars().all())
  1254. location_suffix = f" in {target_location}" if target_location else ""
  1255. if not printers:
  1256. return None, f"No active {normalized_model} printers{location_suffix} configured"
  1257. # Separate force-matched overrides from preference-only overrides
  1258. force_overrides = [o for o in (filament_overrides or []) if o.get("force_color_match")]
  1259. pref_overrides = [o for o in (filament_overrides or []) if not o.get("force_color_match")]
  1260. # Track reasons for skipping printers
  1261. printers_busy = []
  1262. printers_offline = []
  1263. printers_missing_filament: list[tuple[str, list[str]]] = []
  1264. candidates: list[tuple[int, int]] = [] # (printer_id, color_match_count)
  1265. for printer in printers:
  1266. if printer.id in exclude_ids:
  1267. # Printer is already claimed by another job in this scheduling run.
  1268. # For force-color jobs, still check if the color would match — if not,
  1269. # report it as a color mismatch rather than plain "Busy" so the user
  1270. # knows the job needs a filament change, not just to wait for availability.
  1271. if force_overrides and not pref_overrides:
  1272. missing_colors = self._get_missing_force_color_slots(printer.id, force_overrides)
  1273. if missing_colors:
  1274. printers_missing_filament.append((printer.name, missing_colors))
  1275. continue
  1276. printers_busy.append(printer.name)
  1277. continue
  1278. is_connected = printer_manager.is_connected(printer.id)
  1279. is_idle = self._is_printer_idle(printer.id, require_plate_clear) if is_connected else False
  1280. if not is_connected:
  1281. printers_offline.append(printer.name)
  1282. continue
  1283. if not is_idle:
  1284. # Printer is currently printing. For force-color jobs, check whether the
  1285. # loaded color would satisfy the requirement — if not, surface it as a
  1286. # color-mismatch reason rather than plain "Busy" so the user understands
  1287. # that the job is waiting for a filament change, not just printer availability.
  1288. if force_overrides and not pref_overrides:
  1289. missing_colors = self._get_missing_force_color_slots(printer.id, force_overrides)
  1290. if missing_colors:
  1291. printers_missing_filament.append((printer.name, missing_colors))
  1292. logger.debug(
  1293. "Printer %s (%s) is busy but also has wrong force-color: %s",
  1294. printer.id,
  1295. printer.name,
  1296. missing_colors,
  1297. )
  1298. continue
  1299. printers_busy.append(printer.name)
  1300. continue
  1301. # Validate filament compatibility if required types are specified
  1302. if required_filament_types:
  1303. missing = self._get_missing_filament_types(printer.id, required_filament_types)
  1304. if missing:
  1305. # When force_overrides are present, enrich missing entries with color info
  1306. # so the "Waiting on" message includes "TYPE (color)" instead of just "TYPE"
  1307. if force_overrides:
  1308. force_color_map = {
  1309. (o.get("type") or "").upper(): o.get("color_name") or o.get("color", "?")
  1310. for o in force_overrides
  1311. }
  1312. missing_enriched = [
  1313. f"{t} ({force_color_map[t_upper]})" if (t_upper := t.upper()) in force_color_map else t
  1314. for t in missing
  1315. ]
  1316. printers_missing_filament.append((printer.name, missing_enriched))
  1317. else:
  1318. printers_missing_filament.append((printer.name, missing))
  1319. logger.debug("Skipping printer %s (%s) - missing filaments: %s", printer.id, printer.name, missing)
  1320. continue
  1321. # Force color match: ALL flagged slots must have an exact type+color match
  1322. if force_overrides:
  1323. missing_colors = self._get_missing_force_color_slots(printer.id, force_overrides)
  1324. if missing_colors:
  1325. printers_missing_filament.append((printer.name, missing_colors))
  1326. logger.debug(
  1327. "Skipping printer %s (%s) - missing force-matched colors: %s",
  1328. printer.id,
  1329. printer.name,
  1330. missing_colors,
  1331. )
  1332. continue
  1333. # If preference-only overrides exist, rank by color matches (existing behaviour)
  1334. if pref_overrides:
  1335. color_matches = self._count_override_color_matches(printer.id, pref_overrides)
  1336. if color_matches > 0:
  1337. candidates.append((printer.id, color_matches))
  1338. else:
  1339. override_colors = [f"{o.get('type', '?')} ({o.get('color', '?')})" for o in pref_overrides]
  1340. printers_missing_filament.append((printer.name, override_colors))
  1341. logger.debug("Skipping printer %s (%s) - no matching override colors", printer.id, printer.name)
  1342. continue
  1343. elif force_overrides:
  1344. # Passed all force checks — immediately eligible (no preference ordering needed)
  1345. return printer.id, None
  1346. else:
  1347. # No overrides at all - take first available (existing behavior)
  1348. return printer.id, None
  1349. # If we have candidates from preference override matching, pick the one with most color matches
  1350. if candidates:
  1351. candidates.sort(key=lambda c: c[1], reverse=True)
  1352. return candidates[0][0], None
  1353. # Build waiting reason from what we found
  1354. reasons = []
  1355. if printers_missing_filament:
  1356. # Filament/color mismatch is most actionable - show first
  1357. if force_overrides and not pref_overrides:
  1358. # All mismatches are force-color failures — use descriptive message only;
  1359. # but only if there are no busy printers that DO have the matching color.
  1360. # If a printer has the right color but is busy, surface "Busy" instead so
  1361. # the user knows the job will start automatically once that printer is free.
  1362. if not printers_busy:
  1363. all_missing = sorted({c for _, cols in printers_missing_filament for c in cols})
  1364. return None, f"No matching material/color. Waiting on {', '.join(all_missing)}"
  1365. # else: fall through — printers_busy will be appended below
  1366. else:
  1367. names_and_missing = [
  1368. f"{name} (needs {', '.join(missing)})" for name, missing in printers_missing_filament
  1369. ]
  1370. reasons.append(f"Waiting for filament: {'; '.join(names_and_missing)}")
  1371. if printers_busy:
  1372. reasons.append(f"Busy: {', '.join(printers_busy)}")
  1373. if printers_offline:
  1374. reasons.append(f"Offline: {', '.join(printers_offline)}")
  1375. return None, " | ".join(reasons) if reasons else f"No available {model} printers{location_suffix}"
  1376. @staticmethod
  1377. def _is_busy_only(waiting_reason: str) -> bool:
  1378. """Check if the waiting reason only contains 'Busy' entries.
  1379. When all matching printers are simply busy printing, the queued job
  1380. will start automatically once a printer finishes — no user action
  1381. is required, so we skip the notification.
  1382. """
  1383. parts = [p.strip() for p in waiting_reason.split(" | ")]
  1384. return all(p.startswith("Busy:") for p in parts)
  1385. def _get_missing_force_color_slots(self, printer_id: int, force_overrides: list[dict]) -> list[str]:
  1386. """Return descriptive strings for force_color_match slots not satisfied by the printer.
  1387. Each entry in ``force_overrides`` must have ``type`` and ``color`` fields and is expected
  1388. to carry ``force_color_match: True``. The printer must have **every** such slot loaded
  1389. with an exact type+color match.
  1390. When both the override and a candidate tray carry a ``tray_info_idx``, they must also
  1391. match on it: Bambu reports every PLA variant as ``tray_type == "PLA"``, so the
  1392. Basic/Matte/Silk distinction lives only in ``tray_info_idx`` (GFA00/GFA01/GFA06/...).
  1393. Without this, a job sliced for PLA Matte matched every white PLA regardless of variant
  1394. (#2650). If either side lacks an idx (custom/third-party spools report a blank one, and
  1395. older 3MFs carry none) we fall back to the historical type+colour behaviour so those
  1396. setups are unaffected.
  1397. Returns:
  1398. List of ``"TYPE (color)"`` strings for unmatched slots (empty list means all match).
  1399. """
  1400. status = printer_manager.get_status(printer_id)
  1401. if not status:
  1402. return [f"{o.get('type', '?')} ({o.get('color_name') or o.get('color', '?')})" for o in force_overrides]
  1403. # Build loaded (type, colour, tray_info_idx) triples from AMS and external spool.
  1404. loaded: list[tuple[str, str, str]] = []
  1405. for ams_unit in status.raw_data.get("ams", []):
  1406. for tray in ams_unit.get("tray", []):
  1407. tray_type = tray.get("tray_type")
  1408. if tray_type:
  1409. color_norm = (tray.get("tray_color", "") or "").replace("#", "").lower()[:6]
  1410. loaded.append(
  1411. (_canonical_filament_type(tray_type), color_norm, tray.get("tray_info_idx", "") or "")
  1412. )
  1413. for vt in status.raw_data.get("vt_tray") or []:
  1414. vt_type = vt.get("tray_type")
  1415. if vt_type:
  1416. color_norm = (vt.get("tray_color", "") or "").replace("#", "").lower()[:6]
  1417. loaded.append((_canonical_filament_type(vt_type), color_norm, vt.get("tray_info_idx", "") or ""))
  1418. missing = []
  1419. for o in force_overrides:
  1420. o_type = _canonical_filament_type(o.get("type") or "")
  1421. o_color = (o.get("color") or "").replace("#", "").lower()[:6]
  1422. o_idx = o.get("tray_info_idx") or ""
  1423. satisfied = any(
  1424. t_type == o_type and t_color == o_color and (not o_idx or not t_idx or o_idx == t_idx)
  1425. for t_type, t_color, t_idx in loaded
  1426. )
  1427. if not satisfied:
  1428. color_label = o.get("color_name") or o.get("color", "?")
  1429. missing.append(f"{o_type} ({color_label})")
  1430. return missing
  1431. def _get_missing_filament_types(self, printer_id: int, required_types: list[str]) -> list[str]:
  1432. """Get the list of required filament types that are not loaded on the printer.
  1433. Args:
  1434. printer_id: The printer ID
  1435. required_types: List of filament types needed (e.g., ["PLA", "PETG"])
  1436. Returns:
  1437. List of missing filament types (empty if all are loaded)
  1438. """
  1439. status = printer_manager.get_status(printer_id)
  1440. if not status:
  1441. return required_types # Can't determine, assume all missing
  1442. # Collect all filament types loaded on this printer (AMS units + external spool)
  1443. # Use canonical types so equivalence groups (e.g. PA-CF/PA12-CF/PAHT-CF) match.
  1444. loaded_types: set[str] = set()
  1445. # Check AMS units (stored in raw_data["ams"])
  1446. ams_data = status.raw_data.get("ams", [])
  1447. if ams_data:
  1448. for ams_unit in ams_data:
  1449. for tray in ams_unit.get("tray", []):
  1450. tray_type = tray.get("tray_type")
  1451. if tray_type:
  1452. loaded_types.add(_canonical_filament_type(tray_type))
  1453. # Check external spool(s) (virtual tray, stored in raw_data["vt_tray"] as list)
  1454. for vt in status.raw_data.get("vt_tray") or []:
  1455. vt_type = vt.get("tray_type")
  1456. if vt_type:
  1457. loaded_types.add(_canonical_filament_type(vt_type))
  1458. # Find which required types are missing (using canonical type for equivalence)
  1459. missing = []
  1460. for req_type in required_types:
  1461. if _canonical_filament_type(req_type) not in loaded_types:
  1462. missing.append(req_type)
  1463. return missing
  1464. def _count_override_color_matches(self, printer_id: int, overrides: list[dict]) -> int:
  1465. """Count how many filament overrides have an exact color match on the printer.
  1466. Used to prefer printers that already have the desired override colors loaded.
  1467. """
  1468. status = printer_manager.get_status(printer_id)
  1469. if not status:
  1470. return 0
  1471. # Collect loaded filaments' type+color pairs
  1472. loaded: set[tuple[str, str]] = set()
  1473. for ams_unit in status.raw_data.get("ams", []):
  1474. for tray in ams_unit.get("tray", []):
  1475. tray_type = tray.get("tray_type")
  1476. tray_color = tray.get("tray_color", "")
  1477. if tray_type:
  1478. color_norm = tray_color.replace("#", "").lower()[:6]
  1479. loaded.add((tray_type.upper(), color_norm))
  1480. for vt in status.raw_data.get("vt_tray") or []:
  1481. vt_type = vt.get("tray_type")
  1482. if vt_type:
  1483. color_norm = (vt.get("tray_color", "") or "").replace("#", "").lower()[:6]
  1484. loaded.add((vt_type.upper(), color_norm))
  1485. matches = 0
  1486. for o in overrides:
  1487. o_type = (o.get("type") or "").upper()
  1488. o_color = (o.get("color") or "").replace("#", "").lower()[:6]
  1489. if (o_type, o_color) in loaded:
  1490. matches += 1
  1491. return matches
  1492. def _resolve_variant(self, item: PrintQueueItem, candidate: _ModelCandidate) -> None:
  1493. """Fold the winning candidate's file and settings onto the queue row (#671).
  1494. This is the whole trick that keeps cross-model items cheap: the many-to-many
  1495. never escapes the selection loop. By the time the pass commits, the row
  1496. looks exactly like an ordinary single-file model-based item, so the upload,
  1497. archive creation, expected-print registration, print history and reprint
  1498. paths need no knowledge that variants exist.
  1499. No-ops for a non-variant candidate, which is already the item's own columns.
  1500. Safe to run and re-run: the item's file columns are only ever *read* when it
  1501. has no variants, so an item that gets resolved and then skipped (library-row
  1502. conflict, previous-print gate) is simply resolved again on the next pass.
  1503. """
  1504. variant = candidate.variant
  1505. if variant is None:
  1506. return
  1507. item.library_file_id = variant.library_file_id
  1508. item.library_file = variant.library_file
  1509. # The dispatcher checks archive_id first and would print that instead of
  1510. # the file we just picked. Creation refuses to combine the two, so this
  1511. # only ever fires on a hand-written row — clear it rather than silently
  1512. # dispatch something the matcher never considered.
  1513. item.archive_id = None
  1514. item.archive = None
  1515. item.target_model = variant.target_model
  1516. item.plate_id = variant.plate_id
  1517. item.ams_mapping = variant.ams_mapping
  1518. item.nozzle_mapping = variant.nozzle_mapping
  1519. item.filament_overrides = variant.filament_overrides
  1520. item.required_filament_types = variant.required_filament_types
  1521. if variant.print_time_seconds is not None:
  1522. # The row carried the shortest candidate's estimate so SJF could order
  1523. # it before a printer was known; now that one is chosen, record what is
  1524. # actually going to run so history and the ETA agree with reality.
  1525. item.print_time_seconds = variant.print_time_seconds
  1526. async def _ensure_ams_mapping(self, db: AsyncSession, printer_id: int, item: PrintQueueItem) -> str | None:
  1527. """Ensure the queue item carries a usable AMS mapping before dispatch.
  1528. Recomputes from live printer status when the stored mapping is missing OR
  1529. unresolved (all -1). A stored all-[-1] mapping is a bug artifact — a
  1530. frontend status-load race can serialize [-1] before the printer's AMS
  1531. trays are known (#2589) — and must not be trusted: downstream it would be
  1532. silently downgraded to external-spool mode and print against an empty
  1533. feed. A resolved mapping (including manual overrides, or a partially
  1534. padded one) is left untouched.
  1535. When recompute cannot resolve it either (no compatible tray loaded), the
  1536. bogus [-1] is cleared to None so it is not later mistaken for an explicit
  1537. external selection; the print command then keeps use_ams=True and the
  1538. firmware surfaces a clear AMS-mapping error instead of silently printing
  1539. to the empty external feed.
  1540. Returns an actionable message when that firmware error is the only
  1541. possible outcome — the matcher ran, matched nothing, and the printer has
  1542. no AMS to load a different spool into (#2771). The caller fails the item
  1543. on it instead of spending an upload on a print that cannot start.
  1544. Returns None everywhere else, including every case where we simply lack
  1545. the data to judge, so dispatch is only ever blocked on a positive
  1546. finding.
  1547. """
  1548. stored_mapping: list | None = None
  1549. if item.ams_mapping:
  1550. try:
  1551. stored_mapping = json.loads(item.ams_mapping)
  1552. except (json.JSONDecodeError, TypeError):
  1553. stored_mapping = None
  1554. # Already resolved (present and not all-unresolved) — keep as-is so a
  1555. # user's manual mapping is never overwritten.
  1556. if item.ams_mapping and not _mapping_is_all_unresolved(stored_mapping):
  1557. return None
  1558. computed_mapping = await self._compute_ams_mapping_for_printer(db, printer_id, item)
  1559. if computed_mapping and not _mapping_is_all_unresolved(computed_mapping):
  1560. item.ams_mapping = json.dumps(computed_mapping)
  1561. logger.info(
  1562. "Queue item %s: Computed AMS mapping for printer %s: %s",
  1563. item.id,
  1564. printer_id,
  1565. computed_mapping,
  1566. )
  1567. await db.commit()
  1568. return None
  1569. if _mapping_is_all_unresolved(stored_mapping):
  1570. logger.warning(
  1571. "Queue item %s: stored ams_mapping %s is unresolved and could not be recomputed "
  1572. "from live status on printer %s; clearing it so dispatch does not treat it as external",
  1573. item.id,
  1574. stored_mapping,
  1575. printer_id,
  1576. )
  1577. item.ams_mapping = None
  1578. await db.commit()
  1579. return await self._unmappable_without_ams_message(db, printer_id, item, computed_mapping)
  1580. async def _unmappable_without_ams_message(
  1581. self,
  1582. db: AsyncSession,
  1583. printer_id: int,
  1584. item: PrintQueueItem,
  1585. computed_mapping: list[int] | None,
  1586. ) -> str | None:
  1587. """Message for a mapping that resolved nothing on an AMS-less printer (#2771).
  1588. A print dispatched with no mapping goes out as ``use_ams: true`` with no
  1589. ``ams_mapping`` and no ``ams_mapping2``, which the firmware rejects with
  1590. 0700_8012 "Failed to get AMS mapping table" — after Bambuddy has already
  1591. uploaded several megabytes and burned its dispatch retries. With an AMS
  1592. attached that error is worth reaching: the user can load the right spool
  1593. and press Resume, so this returns None and today's behaviour stands. With
  1594. no AMS there is nothing to resume into — the external spool holder is the
  1595. whole inventory — so the useful answer is to say which filament is
  1596. missing and stop.
  1597. Fail-safe by construction, mirroring the nozzle-diameter guard (#1899):
  1598. every branch that lacks the evidence to be sure returns None.
  1599. """
  1600. # None means the matcher never ran (no requirements parsed from the 3MF,
  1601. # or nothing loaded at all) rather than "ran and matched nothing". Those
  1602. # dispatch as they always have.
  1603. if not _mapping_is_all_unresolved(computed_mapping):
  1604. return None
  1605. status = printer_manager.get_status(printer_id)
  1606. if status is None:
  1607. return None
  1608. # "No AMS" has to be a fact the printer stated, not the absence of a
  1609. # statement. `raw_data["ams"]` is written only once an AMS push has been
  1610. # handled and is preserved across partial pushes thereafter, so a missing
  1611. # key means we have not heard yet — most likely a reconnect, where the
  1612. # trays of a fully loaded AMS would be invisible for a few seconds. An
  1613. # empty list is the positive report of a printer with no AMS.
  1614. ams_units = status.raw_data.get("ams")
  1615. if not isinstance(ams_units, list) or ams_units:
  1616. return None
  1617. required = await self._get_filament_requirements(db, item)
  1618. loaded = self._build_loaded_filaments(status)
  1619. if not required or not loaded:
  1620. # Both were non-empty moments ago or the matcher could not have run.
  1621. # If the picture changed under us, say nothing rather than fail an
  1622. # item on stale evidence.
  1623. return None
  1624. self._apply_filament_overrides(item, required)
  1625. return _unmatched_filament_message(required, loaded)
  1626. async def _fail_unmappable_item(
  1627. self, db: AsyncSession, item: PrintQueueItem, printer_id: int, message: str
  1628. ) -> None:
  1629. """Fail a queue item whose filament mapping cannot resolve (#2771).
  1630. This replaces a failure, not a success: without it the item is uploaded,
  1631. rejected by the firmware with 0700_8012, retried twice more and failed
  1632. anyway with "never started the print after N dispatch attempts". So this
  1633. applies on the model-based path too, even though it means an "Any <model>"
  1634. job stops at the first printer offered rather than trying its siblings —
  1635. deferring instead would need the check to move inside
  1636. ``_find_printer_for_model``'s candidate loop, since un-assigning here just
  1637. re-assigns the same printer on the next tick.
  1638. """
  1639. item.status = "failed"
  1640. item.error_message = message
  1641. item.completed_at = datetime.now(timezone.utc)
  1642. item.waiting_reason = None
  1643. await db.commit()
  1644. logger.warning(
  1645. "Queue item %s: no usable AMS mapping on printer %s — %s",
  1646. item.id,
  1647. printer_id,
  1648. message,
  1649. )
  1650. job_name = await self._get_job_name(db, item)
  1651. printer = await self._get_printer(db, printer_id)
  1652. await notification_service.on_queue_job_failed(
  1653. job_name=job_name,
  1654. printer_id=printer_id,
  1655. printer_name=printer.name if printer else "Unknown",
  1656. reason=message,
  1657. db=db,
  1658. )
  1659. try:
  1660. await ws_manager.send_queue_item_failed(
  1661. user_id=item.created_by_id,
  1662. queue_item_id=item.id,
  1663. printer_id=printer_id,
  1664. reason="filament_unmappable",
  1665. )
  1666. except Exception:
  1667. pass
  1668. async def _compute_ams_mapping_for_printer(
  1669. self, db: AsyncSession, printer_id: int, item: PrintQueueItem
  1670. ) -> list[int] | None:
  1671. """Compute AMS mapping for a printer based on filament requirements.
  1672. Called when a queue item has no ams_mapping set — either for model-based
  1673. items after printer assignment, or printer-specific items (e.g. from VP).
  1674. Args:
  1675. db: Database session
  1676. printer_id: The assigned printer ID
  1677. item: The queue item (contains archive_id or library_file_id)
  1678. Returns:
  1679. AMS mapping array or None if no mapping needed/possible
  1680. """
  1681. # Get printer status
  1682. status = printer_manager.get_status(printer_id)
  1683. if not status:
  1684. logger.warning("Cannot compute AMS mapping: printer %s status unavailable", printer_id)
  1685. return None
  1686. # Filament Track Switch (FTS): when installed it routes any AMS slot to
  1687. # either extruder, so the per-nozzle hard filter below must NOT apply.
  1688. # Otherwise a print on one nozzle can't use a spool physically loaded in
  1689. # an AMS on the *other* nozzle, and the matcher falls through to a
  1690. # same-type wrong-colour spool on the target nozzle — the H2C + FTS
  1691. # wrong-filament bug (#2186). Mirrors the frontend skip added for #1162.
  1692. fts_installed = bool(getattr(getattr(status, "fila_switch", None), "installed", False))
  1693. # Get filament requirements from source file
  1694. filament_reqs = await self._get_filament_requirements(db, item)
  1695. if not filament_reqs:
  1696. # When the 3MF can't be read but force-color overrides are present, build a
  1697. # direct mapping from the overrides so the printer uses the correct AMS slot.
  1698. if item.filament_overrides:
  1699. try:
  1700. overrides = json.loads(item.filament_overrides)
  1701. force_overrides = [o for o in overrides if o.get("force_color_match")]
  1702. if force_overrides:
  1703. logger.info(
  1704. "Queue item %s: No filament reqs from 3MF; building AMS mapping from %d "
  1705. "force-color override(s)",
  1706. item.id,
  1707. len(force_overrides),
  1708. )
  1709. return self._build_override_direct_mapping(force_overrides, status)
  1710. except (json.JSONDecodeError, KeyError, TypeError) as e:
  1711. logger.warning("Queue item %s: Force-color fallback mapping failed: %s", item.id, e)
  1712. logger.debug("No filament requirements found for queue item %s", item.id)
  1713. return None
  1714. self._apply_filament_overrides(item, filament_reqs)
  1715. # Build loaded filaments from printer status
  1716. loaded_filaments = self._build_loaded_filaments(status)
  1717. if not loaded_filaments:
  1718. logger.debug("No filaments loaded on printer %s", printer_id)
  1719. return None
  1720. # Check if user prefers lowest remaining filament when multiple spools match
  1721. prefer_lowest = await self._get_bool_setting(db, "prefer_lowest_filament")
  1722. # Gate prefer_lowest on the printer's AMS Filament Backup state (#1766).
  1723. # Without backup, the printer will not switch to a second spool when the
  1724. # picked one runs out — so sorting toward the lowest leaves the print
  1725. # at risk of running dry mid-job. None (unknown / A1 family) preserves
  1726. # today's behaviour intentionally.
  1727. if prefer_lowest and status.ams_filament_backup is False:
  1728. logger.info("[prefer-lowest] skipped (AMS Backup OFF on printer %s)", printer_id)
  1729. prefer_lowest = False
  1730. # When the preference is on, surface Bambuddy's inventory-side
  1731. # remaining for each slot that's bound to a tracked spool, so the
  1732. # sort beats the MQTT-only blind spot (#1508). Skip the lookup
  1733. # entirely when the preference is off — no behaviour change for
  1734. # users who haven't opted in.
  1735. inventory_remain_overrides: dict[int, float] | None = None
  1736. if prefer_lowest:
  1737. inventory_remain_overrides = await self._build_inventory_remain_overrides(db, printer_id, loaded_filaments)
  1738. # Compute mapping: match required filaments to available slots
  1739. return self._match_filaments_to_slots(
  1740. filament_reqs, loaded_filaments, prefer_lowest, inventory_remain_overrides, fts_installed
  1741. )
  1742. def _apply_filament_overrides(self, item: PrintQueueItem, filament_reqs: list[dict]) -> None:
  1743. """Rewrite ``filament_reqs`` in place with the item's per-slot overrides.
  1744. Extracted from ``_compute_ams_mapping_for_printer`` so the unmappable
  1745. diagnosis (#2771) describes the filament the matcher actually looked
  1746. for, not the one the 3MF was sliced with — naming the pre-override
  1747. filament in a user-facing error would send the user to load the wrong
  1748. spool.
  1749. """
  1750. if not item.filament_overrides:
  1751. return
  1752. try:
  1753. overrides = json.loads(item.filament_overrides)
  1754. override_map = {o["slot_id"]: o for o in overrides}
  1755. for req in filament_reqs:
  1756. if req["slot_id"] in override_map:
  1757. override = override_map[req["slot_id"]]
  1758. req["type"] = override["type"]
  1759. req["color"] = override["color"]
  1760. # A manual/preference override SWAPS the slot's filament, so the
  1761. # 3MF's original tray_info_idx now points at the old spool and must
  1762. # be cleared — matching then falls back to type+colour. A
  1763. # force_color_match override is not a swap: it carries the 3MF's
  1764. # intended variant (Basic GFA00 / Matte GFA01 / Silk GFA06), so keep
  1765. # it here too, letting the matcher pin the correct variant slot on a
  1766. # printer holding two same-colour spools of different variants (#2650).
  1767. # If that variant isn't loaded the matcher falls back to type+colour,
  1768. # so an eligible printer never fails to map.
  1769. req["tray_info_idx"] = (
  1770. override.get("tray_info_idx", "") if override.get("force_color_match") else ""
  1771. )
  1772. logger.debug(
  1773. "Queue item %s: Override slot %d -> %s %s",
  1774. item.id,
  1775. req["slot_id"],
  1776. override["type"],
  1777. override["color"],
  1778. )
  1779. except (json.JSONDecodeError, KeyError, TypeError) as e:
  1780. logger.warning("Failed to apply filament overrides for queue item %s: %s", item.id, e)
  1781. def _build_override_direct_mapping(self, force_overrides: list[dict], status) -> list[int] | None:
  1782. """Build an AMS mapping directly from force-color overrides without a 3MF.
  1783. Used when ``_get_filament_requirements`` returns nothing (e.g. the 3MF's
  1784. slice_info is missing or unreadable) but ``force_color_match`` overrides
  1785. are present. Each override's ``slot_id``, ``type``, and ``color`` are
  1786. treated as the filament requirement for that slot and matched against the
  1787. current AMS state of the printer.
  1788. Returns the same format as ``_match_filaments_to_slots``, or None when
  1789. the AMS has no loaded filaments.
  1790. """
  1791. loaded = self._build_loaded_filaments(status)
  1792. if not loaded:
  1793. return None
  1794. reqs = [
  1795. {
  1796. "slot_id": o["slot_id"],
  1797. "type": o.get("type", ""),
  1798. "color": o.get("color", ""),
  1799. # These are all force_color_match overrides, so the idx (when the
  1800. # 3MF carried one) is the intended variant, not a stale swap —
  1801. # keep it so the matcher pins the right variant slot, falling back
  1802. # to type+colour when it isn't loaded (#2650).
  1803. "tray_info_idx": o.get("tray_info_idx", ""),
  1804. }
  1805. for o in force_overrides
  1806. ]
  1807. return self._match_filaments_to_slots(reqs, loaded)
  1808. async def _get_filament_requirements(self, db: AsyncSession, item: PrintQueueItem) -> list[dict] | None:
  1809. """Resolve the queue item's source 3MF and parse the per-slot
  1810. filament requirements out of it. Thin DB-resolver wrapper around
  1811. ``filament_requirements.extract_filament_requirements`` so the VP
  1812. queue-mode write path (#1188) can reuse the same parser at upload
  1813. time.
  1814. """
  1815. from backend.app.services.filament_requirements import extract_filament_requirements
  1816. file_path: Path | None = None
  1817. if item.archive_id:
  1818. result = await db.execute(select(PrintArchive).where(PrintArchive.id == item.archive_id))
  1819. archive = result.scalar_one_or_none()
  1820. if archive:
  1821. file_path = settings.base_dir / archive.file_path
  1822. elif item.library_file_id:
  1823. result = await db.execute(LibraryFile.active().where(LibraryFile.id == item.library_file_id))
  1824. library_file = result.scalar_one_or_none()
  1825. if library_file:
  1826. lib_path = Path(library_file.file_path)
  1827. file_path = lib_path if lib_path.is_absolute() else settings.base_dir / library_file.file_path
  1828. if not file_path or not file_path.exists():
  1829. return None
  1830. filaments = extract_filament_requirements(file_path, plate_id=item.plate_id)
  1831. return filaments if filaments else None
  1832. def _build_loaded_filaments(self, status) -> list[dict]:
  1833. """Build list of loaded filaments from printer status.
  1834. Args:
  1835. status: PrinterState from printer_manager
  1836. Returns:
  1837. List of loaded filament dicts with type, color, ams_id, tray_id, global_tray_id
  1838. """
  1839. filaments = []
  1840. # Get ams_extruder_map for dual-nozzle printers (H2D, H2D Pro)
  1841. ams_extruder_map = status.raw_data.get("ams_extruder_map", {})
  1842. # Dual-nozzle detection, used below to route external spools to an
  1843. # extruder (#2771). Mirrors `buildLoadedFilaments` in the frontend,
  1844. # which was corrected for #1257 while this copy kept the old signal.
  1845. #
  1846. # `ams_extruder_map` is derived from AMS info bits, so a dual-nozzle
  1847. # printer with zero AMS units reports an empty map — and every external
  1848. # spool then got `extruder_id=None`, which the nozzle-aware filter in
  1849. # `_match_filaments_to_slots` rejects outright because `None` equals
  1850. # neither 0 nor 1. On an X2D feeding from external spools only that left
  1851. # nothing to match, the mapping came back all -1, and the print went out
  1852. # with `use_ams: true` and no mapping table at all — firmware 0700_8012,
  1853. # "Failed to get AMS mapping table".
  1854. #
  1855. # `nozzles` is always a two-entry list (the state seeds it with two empty
  1856. # NozzleInfo stubs), so its length proves nothing; only a populated
  1857. # diameter on the second entry means real hardware. The other two signals
  1858. # are fallbacks for firmware revisions that surface one but not the
  1859. # other: a populated `ams_extruder_map` is dual-nozzle by construction,
  1860. # and so is more than one `vt_tray` entry, since single-nozzle printers
  1861. # expose exactly one external feed.
  1862. nozzles = getattr(status, "nozzles", None) or []
  1863. vt_trays = status.raw_data.get("vt_tray") or []
  1864. is_dual_nozzle = bool(
  1865. (len(nozzles) > 1 and getattr(nozzles[1], "nozzle_diameter", ""))
  1866. or ams_extruder_map
  1867. # isinstance, because a dict here would count its ~30 keys as trays.
  1868. # bambu_mqtt normalises vt_tray to a list before it reaches raw_data,
  1869. # so this is unreachable — but the loop below would raise on a dict
  1870. # and that is the pre-existing behaviour to keep, not to paper over.
  1871. or (isinstance(vt_trays, list) and len(vt_trays) > 1)
  1872. )
  1873. # Parse AMS units from raw_data
  1874. ams_data = status.raw_data.get("ams", [])
  1875. for ams_unit in ams_data:
  1876. ams_id = int(ams_unit.get("id", 0))
  1877. trays = ams_unit.get("tray", [])
  1878. is_ht = len(trays) == 1 # AMS-HT has single tray
  1879. for tray in trays:
  1880. tray_type = tray.get("tray_type")
  1881. if tray_type:
  1882. tray_id = int(tray.get("id", 0))
  1883. tray_color = tray.get("tray_color", "")
  1884. # tray_info_idx identifies the specific spool (e.g., "GFA00", "P4d64437")
  1885. tray_info_idx = tray.get("tray_info_idx", "")
  1886. # Normalize color: remove alpha, add hash
  1887. color = self._normalize_color(tray_color)
  1888. # Calculate global tray ID
  1889. # AMS-HT units have IDs starting at 128 with a single tray
  1890. global_tray_id = ams_id if ams_id >= 128 else ams_id * 4 + tray_id
  1891. filaments.append(
  1892. {
  1893. "type": tray_type,
  1894. "color": color,
  1895. "tray_info_idx": tray_info_idx,
  1896. "ams_id": ams_id,
  1897. "tray_id": tray_id,
  1898. "is_ht": is_ht,
  1899. "is_external": False,
  1900. "global_tray_id": global_tray_id,
  1901. "extruder_id": ams_extruder_map.get(str(ams_id)),
  1902. "remain": tray.get("remain", -1),
  1903. }
  1904. )
  1905. # Check external spool(s) (vt_tray is a list)
  1906. for idx, vt in enumerate(vt_trays):
  1907. if vt.get("tray_type"):
  1908. color = self._normalize_color(vt.get("tray_color", ""))
  1909. tray_id = int(vt.get("id", 254))
  1910. filaments.append(
  1911. {
  1912. "type": vt["tray_type"],
  1913. "color": color,
  1914. "tray_info_idx": vt.get("tray_info_idx", ""),
  1915. "ams_id": -1,
  1916. "tray_id": idx,
  1917. "is_ht": False,
  1918. "is_external": True,
  1919. "global_tray_id": tray_id,
  1920. # 254 = VIRTUAL_TRAY_DEPUTY_ID feeds extruder 1 (left),
  1921. # 255 = VIRTUAL_TRAY_MAIN_ID feeds extruder 0 (right).
  1922. "extruder_id": (255 - tray_id) if is_dual_nozzle else None,
  1923. "remain": vt.get("remain", -1),
  1924. }
  1925. )
  1926. return filaments
  1927. def _normalize_color(self, color: str | None) -> str:
  1928. """Normalize color to #RRGGBB format."""
  1929. if not color:
  1930. return "#808080"
  1931. hex_color = color.replace("#", "")[:6]
  1932. return f"#{hex_color}"
  1933. def _normalize_color_for_compare(self, color: str | None) -> str:
  1934. """Normalize color for comparison (lowercase, no hash)."""
  1935. if not color:
  1936. return ""
  1937. return color.replace("#", "").lower()[:6]
  1938. def _colors_are_similar(self, color1: str | None, color2: str | None, threshold: int = 40) -> bool:
  1939. """Check if two colors are visually similar within a threshold."""
  1940. hex1 = self._normalize_color_for_compare(color1)
  1941. hex2 = self._normalize_color_for_compare(color2)
  1942. if not hex1 or not hex2 or len(hex1) < 6 or len(hex2) < 6:
  1943. return False
  1944. try:
  1945. r1 = int(hex1[0:2], 16)
  1946. g1 = int(hex1[2:4], 16)
  1947. b1 = int(hex1[4:6], 16)
  1948. r2 = int(hex2[0:2], 16)
  1949. g2 = int(hex2[2:4], 16)
  1950. b2 = int(hex2[4:6], 16)
  1951. return abs(r1 - r2) <= threshold and abs(g1 - g2) <= threshold and abs(b1 - b2) <= threshold
  1952. except ValueError:
  1953. return False
  1954. async def _build_inventory_remain_overrides(
  1955. self, db: AsyncSession, printer_id: int, loaded: list[dict]
  1956. ) -> dict[int, float]:
  1957. """Return ``{global_tray_id: remaining_grams}`` for AMS slots the user
  1958. has bound to an inventory spool — Bambuddy-side or Spoolman-side.
  1959. The MQTT ``remain`` field on a tray is the printer firmware's
  1960. RFID-decremented value, which has two limitations the "Prefer Lowest
  1961. Remaining Filament" feature has been ignoring (#1508):
  1962. - it's only meaningful for Bambu RFID spools; everything else reports
  1963. ``-1`` (then clamped to a sentinel), so multiple non-RFID trays
  1964. compare equal and the sort collapses to AMS-slot order — the user
  1965. who's curating inventory weights gets the lower-slot pick instead
  1966. of the lower-remaining pick;
  1967. - even when set, it's the *printer's* counter, not Bambuddy's
  1968. ``label_weight - weight_used`` (internal mode) or Spoolman's
  1969. ``remaining_weight`` (Spoolman mode) — the two diverge any time the
  1970. user re-spools, swaps cardboard, or runs a print outside Bambuddy.
  1971. When the user has bound a spool to a slot, their own inventory
  1972. tracking is authoritative; this helper surfaces that value so the
  1973. sort can prefer it. Slots without a binding are absent from the
  1974. returned map — the caller then falls back to MQTT ``remain`` for
  1975. those, preserving the pre-#1508 behaviour for un-tracked spools.
  1976. Returns an empty map on any failure (no inventory bindings, DB
  1977. error, Spoolman unreachable). A best-effort lookup; "Prefer Lowest"
  1978. is a preference, not a guarantee.
  1979. """
  1980. if not loaded:
  1981. return {}
  1982. # External / virtual-tray slots are tracked separately from AMS — skip
  1983. # them so a VT-loaded spool doesn't accidentally inherit a tracked
  1984. # AMS binding (the tables use ams_id 254/255 for VT, but the cross
  1985. # match is fiddly and out of scope for this fix).
  1986. tracked_slots = [(f["ams_id"], f["tray_id"], f["global_tray_id"]) for f in loaded if not f.get("is_external")]
  1987. if not tracked_slots:
  1988. return {}
  1989. is_spoolman = await self._is_spoolman_mode(db)
  1990. overrides: dict[int, float] = {}
  1991. if is_spoolman:
  1992. result = await db.execute(
  1993. select(SpoolmanSlotAssignment).where(SpoolmanSlotAssignment.printer_id == printer_id)
  1994. )
  1995. assignments = list(result.scalars().all())
  1996. by_slot = {(a.ams_id, a.tray_id): a.spoolman_spool_id for a in assignments}
  1997. from backend.app.services.filament_deficit import _spoolman_remaining_grams
  1998. for ams_id, tray_id, gtid in tracked_slots:
  1999. spoolman_id = by_slot.get((ams_id, tray_id))
  2000. if spoolman_id is None:
  2001. continue
  2002. grams = await _spoolman_remaining_grams(spoolman_id)
  2003. if grams is not None:
  2004. overrides[gtid] = grams
  2005. return overrides
  2006. # Internal inventory mode (default). selectinload matches the pattern
  2007. # used elsewhere (inventory.py, spoolman.py routes) — a single query
  2008. # plus an eager-loaded relationship rather than an explicit join, so
  2009. # the row-attribute shape is exactly what those routes already rely on.
  2010. result = await db.execute(
  2011. select(SpoolAssignment)
  2012. .options(selectinload(SpoolAssignment.spool))
  2013. .where(SpoolAssignment.printer_id == printer_id)
  2014. )
  2015. assignments = list(result.scalars().all())
  2016. by_slot = {(a.ams_id, a.tray_id): a.spool for a in assignments}
  2017. for ams_id, tray_id, gtid in tracked_slots:
  2018. spool = by_slot.get((ams_id, tray_id))
  2019. if spool is None:
  2020. continue
  2021. label = float(spool.label_weight or 0)
  2022. used = float(spool.weight_used or 0)
  2023. overrides[gtid] = max(0.0, label - used)
  2024. return overrides
  2025. @staticmethod
  2026. async def _is_spoolman_mode(db: AsyncSession) -> bool:
  2027. """Mirror of ``filament_deficit._is_spoolman_mode`` — kept private
  2028. here to avoid making this module import-dependent on that private
  2029. helper's signature."""
  2030. try:
  2031. from backend.app.api.routes.settings import get_setting
  2032. v = await get_setting(db, "spoolman_enabled")
  2033. return bool(v) and v.lower() == "true"
  2034. except Exception:
  2035. return False
  2036. @staticmethod
  2037. def _slot_priority(ams_id: int | None, tray_id: int | None) -> int:
  2038. """Deterministic slot-position tie-breaker for the prefer-lowest sort.
  2039. Three bands, matched to the emission order in ``_build_loaded_filaments``
  2040. so a tied sort produces the same physical-position order the pre-#1508
  2041. stable sort did (preserves the regression-free baseline):
  2042. - Regular AMS (``ams_id`` 0..7): ``ams_id * 4 + tray_id`` → 0..31
  2043. - AMS-HT (``ams_id`` >= 128, single tray): ``1000 + (ams_id - 128) * 4``
  2044. - External / VT (``ams_id`` < 0, or ``None``): ``10_000``
  2045. Banding ensures regular AMS < AMS-HT < external on ties, regardless of
  2046. what the raw ``ams_id`` happens to be (in particular, ``ams_id = -1``
  2047. for VT must NOT sort to a negative number or it would beat AMS slot 0).
  2048. """
  2049. if ams_id is None or ams_id < 0:
  2050. return 10_000
  2051. if ams_id >= 128:
  2052. return 1_000 + (ams_id - 128) * 4 + (tray_id or 0)
  2053. return ams_id * 4 + (tray_id or 0)
  2054. @staticmethod
  2055. def _prefer_lowest_sort_key(f: dict, overrides: dict[int, float] | None) -> tuple[int, float, int]:
  2056. """Sort key for the "Prefer Lowest Remaining Filament" preference.
  2057. Two-tier ordering: inventory-tracked spools always sort BEFORE
  2058. non-tracked spools (the user has told us they care about these
  2059. specifically), then ascending by remaining within each tier, then
  2060. ascending by AMS slot position as the deterministic tie-breaker.
  2061. Tiers are flagged by the first tuple element (0 = inventory-tracked,
  2062. 1 = MQTT-only / unknown). Cross-tier value comparisons never run
  2063. because the tier flag dominates — which is what lets us mix grams
  2064. (inventory) and percent (MQTT) without a unit conversion.
  2065. Within the MQTT tier ``remain = -1`` (unknown) is mapped to 101 so
  2066. spools the printer DOES know something about sort ahead of those
  2067. it knows nothing about — preserves pre-#1508 behaviour for the
  2068. no-inventory-binding case.
  2069. Slot tie-breaker via ``_slot_priority`` so regular AMS < AMS-HT <
  2070. external on ties, matching the legacy emission-order stable sort.
  2071. """
  2072. gtid = f.get("global_tray_id")
  2073. slot_order = PrintScheduler._slot_priority(f.get("ams_id"), f.get("tray_id"))
  2074. if overrides and gtid in overrides:
  2075. return (0, overrides[gtid], slot_order)
  2076. remain = f.get("remain", -1)
  2077. return (1, float(remain) if remain is not None and remain >= 0 else 101.0, slot_order)
  2078. def _match_filaments_to_slots(
  2079. self,
  2080. required: list[dict],
  2081. loaded: list[dict],
  2082. prefer_lowest: bool = False,
  2083. inventory_remain_overrides: dict[int, float] | None = None,
  2084. fts_installed: bool = False,
  2085. ) -> list[int] | None:
  2086. """Match required filaments to loaded filaments and build AMS mapping.
  2087. Priority: unique tray_info_idx match > exact color match > similar color match > type-only match
  2088. The tray_info_idx is a filament type identifier stored in the 3MF file when the user
  2089. slices (e.g., "GFA00" for generic PLA, "P4d64437" for custom presets). If the same
  2090. tray_info_idx appears in only ONE available tray, we use that tray. If multiple trays
  2091. have the same tray_info_idx (e.g., two spools of generic PLA), we fall back to color
  2092. matching among those trays.
  2093. Args:
  2094. required: List of required filaments with slot_id, type, color, tray_info_idx
  2095. loaded: List of loaded filaments with type, color, tray_info_idx, global_tray_id
  2096. Returns:
  2097. AMS mapping array (position = slot_id - 1, value = global_tray_id or -1)
  2098. """
  2099. if not required:
  2100. return None
  2101. # Track used trays to avoid duplicate assignment
  2102. used_tray_ids: set[int] = set()
  2103. comparisons = []
  2104. for req in required:
  2105. req_type = (req.get("type") or "").upper()
  2106. req_color = req.get("color", "")
  2107. req_tray_info_idx = req.get("tray_info_idx", "")
  2108. # Find best match: unique tray_info_idx > exact color > similar color > type-only
  2109. idx_match = None
  2110. exact_match = None
  2111. similar_match = None
  2112. type_only_match = None
  2113. # Get available trays (not already used)
  2114. available = [f for f in loaded if f["global_tray_id"] not in used_tray_ids]
  2115. # Nozzle-aware filtering: restrict to trays on the correct nozzle.
  2116. # Hard filter — cross-nozzle assignment causes print failures
  2117. # ("position of left hotend is abnormal"), so never fall back.
  2118. # Skipped when an FTS is installed: it routes any AMS slot to either
  2119. # extruder, so restricting to one nozzle would wrongly exclude the
  2120. # correct spool sitting in the other nozzle's AMS (#2186).
  2121. req_nozzle_id = req.get("nozzle_id")
  2122. if req_nozzle_id is not None and not fts_installed:
  2123. available = [f for f in available if f.get("extruder_id") == req_nozzle_id]
  2124. # Sort by remaining filament (ascending) so lowest-remain spool wins .find().
  2125. # Inventory-tracked spools sort before MQTT-only ones (#1508); see
  2126. # _prefer_lowest_sort_key for the full rationale.
  2127. if prefer_lowest:
  2128. available.sort(key=lambda f: self._prefer_lowest_sort_key(f, inventory_remain_overrides))
  2129. # INFO-level decision trace for "Prefer Lowest Filament" #1766.
  2130. # One line per filament req so a bug report can be diagnosed
  2131. # without enabling debug logging: shows what the matcher saw
  2132. # (req shape + sorted candidate trays with their remain values
  2133. # and any inventory override that was applied). Mirrored by
  2134. # the picked-match log at the bottom of the loop.
  2135. logger.info(
  2136. "[prefer-lowest] req slot=%s type=%r color=%r tii=%r nozzle=%s; available (sorted lowest-first): %s",
  2137. req.get("slot_id"),
  2138. req_type,
  2139. req_color,
  2140. req_tray_info_idx,
  2141. req_nozzle_id,
  2142. [
  2143. {
  2144. "gtid": f.get("global_tray_id"),
  2145. "type": f.get("type"),
  2146. "color": f.get("color"),
  2147. "tii": f.get("tray_info_idx"),
  2148. "remain": f.get("remain"),
  2149. "inv_g": (
  2150. inventory_remain_overrides.get(f.get("global_tray_id"))
  2151. if inventory_remain_overrides
  2152. else None
  2153. ),
  2154. }
  2155. for f in available
  2156. ],
  2157. )
  2158. # Check if tray_info_idx is unique among available trays
  2159. if req_tray_info_idx:
  2160. idx_matches = [f for f in available if f.get("tray_info_idx") == req_tray_info_idx]
  2161. if len(idx_matches) == 1:
  2162. # Unique tray_info_idx - use it as definitive match
  2163. idx_match = idx_matches[0]
  2164. logger.debug(
  2165. f"Matched filament slot {req.get('slot_id')} by unique tray_info_idx={req_tray_info_idx} "
  2166. f"-> tray {idx_match['global_tray_id']}"
  2167. )
  2168. elif len(idx_matches) > 1:
  2169. # Multiple trays with same tray_info_idx - use color matching among them
  2170. logger.debug(
  2171. f"Non-unique tray_info_idx={req_tray_info_idx} found in {len(idx_matches)} trays, "
  2172. f"using color matching among trays: {[f['global_tray_id'] for f in idx_matches]}"
  2173. )
  2174. if prefer_lowest:
  2175. idx_matches.sort(key=lambda f: self._prefer_lowest_sort_key(f, inventory_remain_overrides))
  2176. # Use color matching within this subset
  2177. for f in idx_matches:
  2178. f_color = f.get("color", "")
  2179. if self._normalize_color_for_compare(f_color) == self._normalize_color_for_compare(req_color):
  2180. if not exact_match:
  2181. exact_match = f
  2182. elif self._colors_are_similar(f_color, req_color):
  2183. if not similar_match:
  2184. similar_match = f
  2185. elif not type_only_match:
  2186. type_only_match = f
  2187. # If no idx_match yet, do standard type/color matching on all available trays
  2188. if not idx_match and not exact_match and not similar_match and not type_only_match:
  2189. for f in available:
  2190. f_type = (f.get("type") or "").upper()
  2191. if _canonical_filament_type(f_type) != _canonical_filament_type(req_type):
  2192. continue
  2193. # Type matches - check color
  2194. f_color = f.get("color", "")
  2195. if self._normalize_color_for_compare(f_color) == self._normalize_color_for_compare(req_color):
  2196. if not exact_match:
  2197. exact_match = f
  2198. elif self._colors_are_similar(f_color, req_color):
  2199. if not similar_match:
  2200. similar_match = f
  2201. elif not type_only_match:
  2202. type_only_match = f
  2203. match = idx_match or exact_match or similar_match or type_only_match
  2204. if match:
  2205. used_tray_ids.add(match["global_tray_id"])
  2206. comparisons.append({"slot_id": req.get("slot_id", 0), "global_tray_id": match["global_tray_id"]})
  2207. else:
  2208. comparisons.append({"slot_id": req.get("slot_id", 0), "global_tray_id": -1})
  2209. if prefer_lowest:
  2210. # Pair with the "available (sorted)" log above so the reporter
  2211. # bundle shows BOTH what the matcher saw AND which match bucket
  2212. # won — fast triage when "Prefer Lowest Filament" picks the
  2213. # wrong slot (#1766).
  2214. if match:
  2215. bucket = (
  2216. "idx"
  2217. if idx_match is not None
  2218. else "exact_color"
  2219. if exact_match is not None
  2220. else "similar_color"
  2221. if similar_match is not None
  2222. else "type_only"
  2223. )
  2224. logger.info(
  2225. "[prefer-lowest] picked gtid=%s via %s for req slot=%s",
  2226. match["global_tray_id"],
  2227. bucket,
  2228. req.get("slot_id"),
  2229. )
  2230. else:
  2231. logger.info(
  2232. "[prefer-lowest] NO MATCH for req slot=%s (type=%r color=%r tii=%r)",
  2233. req.get("slot_id"),
  2234. req_type,
  2235. req_color,
  2236. req_tray_info_idx,
  2237. )
  2238. # Build mapping array
  2239. if not comparisons:
  2240. return None
  2241. max_slot_id = max(c["slot_id"] for c in comparisons)
  2242. if max_slot_id <= 0:
  2243. return None
  2244. mapping = [-1] * max_slot_id
  2245. for c in comparisons:
  2246. slot_id = c["slot_id"]
  2247. if slot_id and slot_id > 0:
  2248. mapping[slot_id - 1] = c["global_tray_id"]
  2249. return mapping
  2250. def _mark_printer_dispatched(
  2251. self,
  2252. printer_id: int,
  2253. pre_state: str | None,
  2254. pre_subtask_id: str | None,
  2255. ) -> None:
  2256. """Record that a print command was just sent to ``printer_id``.
  2257. Held until either the watchdog observes a state/subtask transition
  2258. (success path) or the hard timeout expires. See ``_dispatch_holds``.
  2259. """
  2260. if not pre_state:
  2261. # No pre_state means we can't detect a transition — fall back to a
  2262. # pure time-based hold using empty string as a sentinel that won't
  2263. # match any real printer state.
  2264. pre_state = ""
  2265. self._dispatch_holds[printer_id] = (time.monotonic(), pre_state, pre_subtask_id)
  2266. def _release_dispatch_hold(self, printer_id: int) -> None:
  2267. """Drop the dispatch hold for ``printer_id`` (called by the watchdog)."""
  2268. self._dispatch_holds.pop(printer_id, None)
  2269. def _printer_in_dispatch_hold(self, printer_id: int) -> bool:
  2270. """True if ``printer_id`` is still inside its post-dispatch hold window.
  2271. Returns False (and clears the hold) once any of these are true:
  2272. - hard timeout (``_dispatch_max_hold``) has elapsed
  2273. - the printer has transitioned out of pre_state and we're past the
  2274. minimum cooldown
  2275. - the printer's subtask_id has advanced past pre_subtask_id and we're
  2276. past the minimum cooldown
  2277. Otherwise the printer is held — caller should treat it as busy.
  2278. """
  2279. entry = self._dispatch_holds.get(printer_id)
  2280. if not entry:
  2281. return False
  2282. started_at, pre_state, pre_subtask_id = entry
  2283. elapsed = time.monotonic() - started_at
  2284. if elapsed >= self._dispatch_max_hold:
  2285. self._dispatch_holds.pop(printer_id, None)
  2286. return False
  2287. # Without a pre_state we can't detect a transition — fall back to the
  2288. # min cooldown alone, then drop the hold.
  2289. if not pre_state:
  2290. if elapsed >= self._dispatch_min_cooldown:
  2291. self._dispatch_holds.pop(printer_id, None)
  2292. return False
  2293. return True
  2294. status = printer_manager.get_status(printer_id)
  2295. current_state = getattr(status, "state", None) if status else None
  2296. current_subtask_id = getattr(status, "subtask_id", None) if status else None
  2297. transitioned = (current_state is not None and current_state != pre_state) or (
  2298. pre_subtask_id is not None and current_subtask_id is not None and current_subtask_id != pre_subtask_id
  2299. )
  2300. if transitioned and elapsed >= self._dispatch_min_cooldown:
  2301. self._dispatch_holds.pop(printer_id, None)
  2302. return False
  2303. return True
  2304. def _is_printer_idle(self, printer_id: int, require_plate_clear: bool = True) -> bool:
  2305. """Check if a printer is connected and idle."""
  2306. if not printer_manager.is_connected(printer_id):
  2307. logger.debug("Printer %d: not connected", printer_id)
  2308. return False
  2309. state = printer_manager.get_status(printer_id)
  2310. if not state:
  2311. logger.debug("Printer %d: no status available", printer_id)
  2312. return False
  2313. # Plate-clear gate: if the printer finished/failed a previous print and the user
  2314. # hasn't acknowledged the plate was cleared, the queue must not dispatch the next
  2315. # job — even if the printer currently reports IDLE. After Auto Off cycles the
  2316. # printer, it boots back into IDLE with no memory of the previous finish; without
  2317. # the persisted awaiting flag we'd bypass the confirmation prompt (#961).
  2318. if require_plate_clear and printer_manager.is_awaiting_plate_clear(printer_id):
  2319. logger.debug(
  2320. "Printer %d: not idle — awaiting plate-clear acknowledgment (state=%s)",
  2321. printer_id,
  2322. state.state,
  2323. )
  2324. return False
  2325. idle = state.state in ("IDLE", "FINISH", "FAILED")
  2326. if not idle:
  2327. logger.debug("Printer %d: not idle — state=%s", printer_id, state.state)
  2328. return idle
  2329. async def _get_setting(self, db: AsyncSession, key: str) -> str | None:
  2330. """Read a setting value from the database."""
  2331. result = await db.execute(select(Settings).where(Settings.key == key))
  2332. setting = result.scalar_one_or_none()
  2333. return setting.value if setting else None
  2334. async def _get_bool_setting(self, db: AsyncSession, key: str, default: bool = False) -> bool:
  2335. """Read a boolean setting from the database."""
  2336. result = await db.execute(select(Settings).where(Settings.key == key))
  2337. setting = result.scalar_one_or_none()
  2338. if setting:
  2339. return setting.value.lower() == "true"
  2340. return default
  2341. async def _get_int_setting(self, db: AsyncSession, key: str, default: int) -> int:
  2342. """Read an int setting; falls back to default on missing/unparseable rows."""
  2343. result = await db.execute(select(Settings).where(Settings.key == key))
  2344. setting = result.scalar_one_or_none()
  2345. if setting and setting.value:
  2346. try:
  2347. return int(setting.value)
  2348. except ValueError:
  2349. pass
  2350. return default
  2351. async def _get_drying_presets(self, db: AsyncSession) -> dict[str, dict[str, int]]:
  2352. """Get drying presets (user-configured or built-in defaults)."""
  2353. result = await db.execute(select(Settings).where(Settings.key == "drying_presets"))
  2354. setting = result.scalar_one_or_none()
  2355. if setting and setting.value:
  2356. try:
  2357. presets = json.loads(setting.value)
  2358. if isinstance(presets, dict) and presets:
  2359. return presets
  2360. except json.JSONDecodeError:
  2361. pass
  2362. return self.DEFAULT_DRYING_PRESETS
  2363. async def _get_humidity_thresholds(self, db: AsyncSession) -> dict[str, int]:
  2364. """Per-filament humidity thresholds (#1605).
  2365. Returns the user-configured overrides map keyed by normalized filament
  2366. type (uppercase base, e.g. ``PLA``, ``ASA``) plus a ``default`` key for
  2367. unknown / unmapped types. Empty / unset → empty dict, in which case
  2368. callers fall back to ``ams_humidity_fair``.
  2369. """
  2370. result = await db.execute(select(Settings).where(Settings.key == "ams_humidity_thresholds"))
  2371. setting = result.scalar_one_or_none()
  2372. if not setting or not setting.value:
  2373. return {}
  2374. try:
  2375. data = json.loads(setting.value)
  2376. except json.JSONDecodeError:
  2377. return {}
  2378. if not isinstance(data, dict):
  2379. return {}
  2380. out: dict[str, int] = {}
  2381. for key, value in data.items():
  2382. try:
  2383. out[str(key).upper() if key != "default" else "default"] = int(value)
  2384. except (TypeError, ValueError):
  2385. continue
  2386. return out
  2387. @staticmethod
  2388. def resolve_humidity_threshold(trays: list[dict], thresholds: dict[str, int], fallback: int) -> int:
  2389. """Resolve the effective humidity threshold for an AMS unit (#1605).
  2390. For mixed filament types loaded into one AMS, returns the most
  2391. restrictive (lowest) threshold across all loaded tray types — matches
  2392. the conservative-params strategy already used for drying temp/hours.
  2393. Empty / unloaded trays contribute no constraint. Unknown types use the
  2394. ``default`` key, falling through to ``fallback`` (= ``ams_humidity_fair``)
  2395. when no per-type map is configured at all.
  2396. """
  2397. default = thresholds.get("default", fallback)
  2398. if not thresholds:
  2399. return fallback
  2400. candidates: list[int] = []
  2401. for tray in trays:
  2402. tray_type = str(tray.get("tray_type") or "").strip()
  2403. if not tray_type:
  2404. continue
  2405. base_type = tray_type.split()[0].upper()
  2406. candidates.append(thresholds.get(base_type, default))
  2407. if not candidates:
  2408. return default
  2409. return min(candidates)
  2410. def _get_conservative_drying_params(
  2411. self, trays: list[dict], module_type: str, presets: dict[str, dict[str, int]]
  2412. ) -> tuple[int, int, str] | None:
  2413. """Get the most conservative drying params for mixed filament types in an AMS unit.
  2414. Returns (temp, duration_hours, filament_type) or None if no drying-eligible filaments.
  2415. """
  2416. temp_key = module_type if module_type in ("n3f", "n3s") else "n3f"
  2417. hours_key = f"{temp_key}_hours"
  2418. min_temp = None
  2419. max_hours = None
  2420. filament_type = ""
  2421. for tray in trays:
  2422. tray_type = tray.get("tray_type", "")
  2423. if not tray_type:
  2424. continue
  2425. # Normalize filament type for preset lookup (e.g., "PLA Basic" -> "PLA")
  2426. base_type = tray_type.split()[0].upper()
  2427. preset = presets.get(base_type)
  2428. if not preset:
  2429. continue
  2430. temp = preset.get(temp_key, 55)
  2431. hours = preset.get(hours_key, 12)
  2432. # Conservative: lowest temp, longest duration
  2433. if min_temp is None or temp < min_temp:
  2434. min_temp = temp
  2435. if max_hours is None or hours > max_hours:
  2436. max_hours = hours
  2437. if not filament_type:
  2438. filament_type = base_type
  2439. if min_temp is None:
  2440. return None
  2441. return (min_temp, max_hours or 12, filament_type)
  2442. async def _check_auto_drying(
  2443. self,
  2444. db: AsyncSession,
  2445. queue_items: list[PrintQueueItem],
  2446. busy_printers: set[int],
  2447. *,
  2448. require_plate_clear: bool = True,
  2449. ):
  2450. """Start drying on idle printers based on humidity.
  2451. Three modes (can all be enabled independently):
  2452. - queue_drying_enabled: Dry between scheduled queue prints
  2453. - ambient_drying_enabled: Dry any idle printer when humidity is high, regardless of queue
  2454. - print_drying_enabled: Also evaluate printers that are currently printing,
  2455. when model+firmware supports "Print While Drying" (gated by
  2456. supports_drying_while_printing). Drying temperature is capped at
  2457. max(40, preset_temp - 5) to protect spools mid-print.
  2458. """
  2459. queue_drying_enabled = await self._get_bool_setting(db, "queue_drying_enabled")
  2460. ambient_drying_enabled = await self._get_bool_setting(db, "ambient_drying_enabled")
  2461. print_drying_enabled = await self._get_bool_setting(db, "print_drying_enabled")
  2462. if not queue_drying_enabled and not ambient_drying_enabled:
  2463. # Stop active drying on all printers if both features disabled
  2464. if self._drying_in_progress:
  2465. for pid in list(self._drying_in_progress):
  2466. logger.info("Auto-drying: printer %d — stopping, auto-drying disabled", pid)
  2467. await self._stop_drying(pid)
  2468. return
  2469. # Update drying state from printer status (handles backend restart)
  2470. self._sync_drying_state()
  2471. # Find printers with scheduled items (for queue drying mode)
  2472. printers_with_scheduled: set[int] = set()
  2473. printers_with_items: set[int] = set()
  2474. for item in queue_items:
  2475. if item.printer_id:
  2476. printers_with_items.add(item.printer_id)
  2477. if item.scheduled_time and not item.manual_start:
  2478. printers_with_scheduled.add(item.printer_id)
  2479. # If only queue mode is on and no printers have scheduled items, stop drying
  2480. # (but skip this short-circuit when print_drying_enabled is on — busy printers
  2481. # may still be eligible for mid-print drying regardless of queue state).
  2482. if not ambient_drying_enabled and not printers_with_scheduled and not print_drying_enabled:
  2483. for pid in list(self._drying_in_progress):
  2484. logger.info("Auto-drying: printer %d — stopping, no scheduled prints in queue", pid)
  2485. await self._stop_drying(pid)
  2486. return
  2487. # Get humidity threshold (global fallback)
  2488. result = await db.execute(select(Settings).where(Settings.key == "ams_humidity_fair"))
  2489. setting = result.scalar_one_or_none()
  2490. global_humidity_threshold = int(setting.value) if setting else 60
  2491. # Per-filament humidity threshold overrides (#1605). Empty → fall back
  2492. # to the global threshold for every AMS unit.
  2493. per_type_thresholds = await self._get_humidity_thresholds(db)
  2494. # Get drying presets
  2495. presets = await self._get_drying_presets(db)
  2496. # Determine if drying should be skipped for printers with pending items
  2497. block_for_drying = await self._get_bool_setting(db, "queue_drying_block")
  2498. # Get all active printers
  2499. all_printers = await db.execute(select(Printer).where(Printer.is_active.is_(True)))
  2500. for printer in all_printers.scalars():
  2501. pid = printer.id
  2502. # Resolve model+firmware up front — needed to decide whether this printer
  2503. # qualifies for mid-print drying (busy printer on capable hardware).
  2504. state = printer_manager.get_status(pid)
  2505. if not state:
  2506. logger.debug("Auto-drying: printer %d skipped — no state", pid)
  2507. continue
  2508. model = printer_manager.get_model(pid)
  2509. firmware = state.firmware_version
  2510. mid_print = (
  2511. pid in busy_printers and print_drying_enabled and supports_drying_while_printing(model, firmware)
  2512. )
  2513. if pid in busy_printers and not mid_print:
  2514. logger.debug("Auto-drying: printer %d skipped — busy", pid)
  2515. continue
  2516. if not mid_print:
  2517. # In queue-only mode, only dry printers that have scheduled prints
  2518. if not ambient_drying_enabled and pid not in printers_with_scheduled:
  2519. if self._drying_in_progress.get(pid):
  2520. logger.info("Auto-drying: printer %d — stopping, no scheduled prints for this printer", pid)
  2521. await self._stop_drying(pid)
  2522. logger.debug("Auto-drying: printer %d skipped — no scheduled prints", pid)
  2523. continue
  2524. # When block mode is on, don't START new drying on printers with pending items.
  2525. # But allow already-drying printers through so humidity auto-stop logic still runs.
  2526. if block_for_drying and pid in printers_with_items and not self._drying_in_progress.get(pid):
  2527. logger.debug("Auto-drying: printer %d skipped — has pending items (block mode)", pid)
  2528. continue
  2529. if not printer_manager.is_connected(pid):
  2530. logger.debug("Auto-drying: printer %d skipped — not connected", pid)
  2531. continue
  2532. if not mid_print and not self._is_printer_idle(pid, require_plate_clear):
  2533. logger.debug("Auto-drying: printer %d skipped — not idle", pid)
  2534. continue
  2535. # Check drying capability. For mid-print path, supports_drying_while_printing
  2536. # was already verified when computing mid_print above.
  2537. if not mid_print and not supports_drying(model, firmware):
  2538. logger.debug("Auto-drying: printer %d skipped — model %s does not support drying", pid, model)
  2539. continue
  2540. # Check each AMS unit from raw_data
  2541. ams_list = state.raw_data.get("ams", [])
  2542. logger.debug("Auto-drying: printer %d — checking %d AMS units", pid, len(ams_list))
  2543. for ams_data in ams_list:
  2544. module_type = str(ams_data.get("module_type") or "")
  2545. ams_id = int(ams_data.get("id", 0))
  2546. # Only n3f/n3s support drying
  2547. if module_type not in ("n3f", "n3s"):
  2548. logger.debug("Auto-drying: printer %d AMS %d skipped — module_type=%s", pid, ams_id, module_type)
  2549. continue
  2550. # Resolve per-filament humidity threshold for this AMS unit (#1605).
  2551. # Most-restrictive of all loaded tray types; falls back to the
  2552. # global threshold when no overrides are configured.
  2553. trays = ams_data.get("tray", []) or []
  2554. humidity_threshold = self.resolve_humidity_threshold(
  2555. trays, per_type_thresholds, global_humidity_threshold
  2556. )
  2557. dry_time = int(ams_data.get("dry_time") or 0)
  2558. # Read humidity — prefer humidity_raw (actual %) over humidity (index 1-5)
  2559. humidity = None
  2560. h_raw = ams_data.get("humidity_raw")
  2561. if h_raw is not None:
  2562. try:
  2563. humidity = int(h_raw)
  2564. except (ValueError, TypeError):
  2565. pass
  2566. if humidity is None:
  2567. h_idx = ams_data.get("humidity")
  2568. if h_idx is not None:
  2569. try:
  2570. humidity = int(h_idx)
  2571. except (ValueError, TypeError):
  2572. pass
  2573. # Already drying — let it run to its configured duration (#1892).
  2574. #
  2575. # We deliberately do NOT stop drying from a humidity re-check here.
  2576. # Relative humidity drops steeply in heated air, so the AMS sensor
  2577. # reads ~15-20% within minutes of the dryer starting even while the
  2578. # filament is still saturated. A humidity-based early-stop therefore
  2579. # always fires at the minimum-time floor, truncating both user-started
  2580. # manual cycles and Bambuddy's own preset-duration dries to ~30 min.
  2581. # The firmware stops when the configured duration elapses; scheduling
  2582. # stops (print takes priority, queue no longer needs drying) are
  2583. # handled separately via _stop_drying().
  2584. if dry_time > 0:
  2585. if pid not in self._drying_in_progress:
  2586. # Drying we didn't start (manual or from before restart) —
  2587. # track it so scheduling stops still apply; never auto-stop it.
  2588. self._drying_in_progress[pid] = time.monotonic()
  2589. logger.debug(
  2590. "Auto-drying: printer %d AMS %d — drying (%dm left, humidity %s%%), letting it run",
  2591. pid,
  2592. ams_id,
  2593. dry_time,
  2594. humidity,
  2595. )
  2596. continue
  2597. # Humidity below threshold — no need to start drying
  2598. if humidity is None or humidity <= humidity_threshold:
  2599. logger.debug(
  2600. "Auto-drying: printer %d AMS %d skipped — humidity %s <= threshold %d",
  2601. pid,
  2602. ams_id,
  2603. humidity,
  2604. humidity_threshold,
  2605. )
  2606. continue
  2607. # Check cannot-dry reasons (power constraints etc.)
  2608. sf_reasons = ams_data.get("dry_sf_reason", [])
  2609. if sf_reasons:
  2610. logger.debug(
  2611. "Auto-drying: printer %d AMS %d skipped — cannot dry reasons: %s",
  2612. pid,
  2613. ams_id,
  2614. sf_reasons,
  2615. )
  2616. continue
  2617. # Get conservative drying params for mixed filaments
  2618. params = self._get_conservative_drying_params(trays, module_type, presets)
  2619. if not params:
  2620. logger.debug(
  2621. "Auto-drying: printer %d AMS %d skipped — no drying-eligible filaments in trays", pid, ams_id
  2622. )
  2623. continue
  2624. temp, duration_hours, filament_type = params
  2625. # Mid-print drying: cap drying temperature to protect spools (Bambu warns
  2626. # "drying temperature must not exceed the filament's softening temperature"
  2627. # for Print While Drying). Floor at 40 degC — below that the dryer is
  2628. # ineffective and firmware will reject anyway.
  2629. if mid_print:
  2630. temp = max(40, temp - 5)
  2631. # Start drying
  2632. logger.info(
  2633. "Auto-drying: printer %d AMS %d — humidity %d%% > threshold %d%%, "
  2634. "starting %s drying at %d°C for %dh%s",
  2635. pid,
  2636. ams_id,
  2637. humidity,
  2638. humidity_threshold,
  2639. filament_type,
  2640. temp,
  2641. duration_hours,
  2642. " (mid-print)" if mid_print else "",
  2643. )
  2644. success = printer_manager.send_drying_command(
  2645. pid, ams_id, temp, duration_hours, mode=1, filament=filament_type
  2646. )
  2647. if success:
  2648. self._drying_in_progress[pid] = time.monotonic()
  2649. def _sync_drying_state(self):
  2650. """Drop printers from ``_drying_in_progress`` that are no longer drying.
  2651. One direction only: it prunes, it never adds. A printer drying without an
  2652. entry here — because the user started the cycle from Studio, the printer's
  2653. screen or Bambuddy's own manual Dry button, or because Bambuddy restarted
  2654. mid-cycle — stays unknown to the scheduler, so the "print takes priority"
  2655. stop at ``check_queue`` only ever applies to cycles Bambuddy itself began.
  2656. That is deliberate for now rather than an oversight: populating this from
  2657. telemetry would hand the scheduler authority to stop drying a user started
  2658. by hand. It also means the backend-restart case this used to claim to
  2659. handle is not handled.
  2660. """
  2661. to_remove = []
  2662. for pid in self._drying_in_progress:
  2663. state = printer_manager.get_status(pid)
  2664. if not state:
  2665. to_remove.append(pid)
  2666. continue
  2667. # Check if any AMS unit is still drying
  2668. ams_list = state.raw_data.get("ams", [])
  2669. any_drying = any(int(a.get("dry_time") or 0) > 0 for a in ams_list)
  2670. if not any_drying:
  2671. to_remove.append(pid)
  2672. for pid in to_remove:
  2673. self._drying_in_progress.pop(pid, None)
  2674. async def _stop_drying(self, printer_id: int):
  2675. """Stop all active drying on a printer (print takes priority)."""
  2676. state = printer_manager.get_status(printer_id)
  2677. if not state:
  2678. self._drying_in_progress.pop(printer_id, None)
  2679. return
  2680. ams_list = state.raw_data.get("ams", [])
  2681. for ams_data in ams_list:
  2682. dry_time = int(ams_data.get("dry_time") or 0)
  2683. if dry_time > 0:
  2684. ams_id = int(ams_data.get("id", 0))
  2685. logger.info(
  2686. "Auto-drying: stopping drying on printer %d AMS %d — print takes priority",
  2687. printer_id,
  2688. ams_id,
  2689. )
  2690. printer_manager.send_drying_command(printer_id, ams_id, 0, 0, mode=0)
  2691. self._drying_in_progress.pop(printer_id, None)
  2692. async def _get_smart_plugs(self, db: AsyncSession, printer_id: int) -> list[SmartPlug]:
  2693. """Get all smart plugs associated with a printer."""
  2694. result = await db.execute(select(SmartPlug).where(SmartPlug.printer_id == printer_id))
  2695. return list(result.scalars().all())
  2696. @staticmethod
  2697. def _pick_power_plug(auto_on_plugs: list[SmartPlug]) -> SmartPlug:
  2698. """Pick the plug to power-cycle a printer back online with (#2629).
  2699. Only a plug flagged ``controls_printer_power`` can actually bring the
  2700. printer back; waiting for a boot on an accessory (filter fan, lights)
  2701. just burns the power-on timeout and fails the dispatch. Falls back to
  2702. the first plug when none is flagged, which is the pre-#2629 behaviour.
  2703. Callers must pass a non-empty list.
  2704. """
  2705. for plug in auto_on_plugs:
  2706. if plug.controls_printer_power:
  2707. return plug
  2708. return auto_on_plugs[0]
  2709. # Bundled defaults for preheat_filament_targets (#1468). Values are the
  2710. # chamber-temperature recommendations BambuStudio ships for the matching
  2711. # filament profile; users can override via Settings → Workflow → Preheat
  2712. # card. "default" applies when a loaded tray's normalised type isn't in
  2713. # the map (rare — Bambu RFID-tagged spools always carry a known type).
  2714. DEFAULT_PREHEAT_FILAMENT_TARGETS: dict[str, int] = {
  2715. "PLA": 0,
  2716. "PETG": 0,
  2717. "PETG-CF": 40,
  2718. "ABS": 45,
  2719. "ASA": 45,
  2720. "PA": 50,
  2721. "PA-CF": 55,
  2722. "PC": 50,
  2723. "PC-FR": 50,
  2724. "TPU": 0,
  2725. "PVA": 0,
  2726. "default": 0,
  2727. }
  2728. async def _get_preheat_filament_targets(self, db: AsyncSession) -> dict[str, int]:
  2729. """Parse the user-configured filament→chamber-target map, falling back
  2730. to DEFAULT_PREHEAT_FILAMENT_TARGETS on missing / malformed JSON. Keys
  2731. are uppercased and the 'default' fallback is always present in the
  2732. returned dict so the resolution loop can index it unconditionally."""
  2733. raw = await self._get_setting(db, "preheat_filament_targets")
  2734. if not raw:
  2735. return dict(self.DEFAULT_PREHEAT_FILAMENT_TARGETS)
  2736. try:
  2737. parsed = json.loads(raw)
  2738. if not isinstance(parsed, dict):
  2739. raise ValueError("not an object")
  2740. except (json.JSONDecodeError, ValueError) as exc:
  2741. logger.warning("preheat_filament_targets unparseable, using defaults: %s", exc)
  2742. return dict(self.DEFAULT_PREHEAT_FILAMENT_TARGETS)
  2743. # Coerce values to int; drop unparseable rows so a stray string
  2744. # doesn't crash the loop.
  2745. out: dict[str, int] = {}
  2746. for key, value in parsed.items():
  2747. try:
  2748. out[str(key).upper()] = int(value)
  2749. except (TypeError, ValueError):
  2750. continue
  2751. if "DEFAULT" not in out:
  2752. out["DEFAULT"] = self.DEFAULT_PREHEAT_FILAMENT_TARGETS["default"]
  2753. return out
  2754. @staticmethod
  2755. def _normalize_filament_type(tray_type: str) -> str:
  2756. """Reduce the printer's tray_type to a preset-lookup key. Mirrors the
  2757. existing drying-preset normalisation (split-at-space, upper-case) so
  2758. the two maps share vocabulary — "PLA Basic" → "PLA", "PA-CF" stays
  2759. "PA-CF" (no space to split on)."""
  2760. return tray_type.split()[0].upper() if tray_type else ""
  2761. def _derive_chamber_target(
  2762. self,
  2763. printer: Printer,
  2764. targets: dict[str, int],
  2765. ) -> int:
  2766. """Look up the chamber target for each loaded AMS tray and return the
  2767. max. Returns 0 when no AMS data is available (e.g. external-spool
  2768. prints) or when every loaded slot maps to 0 — the chamber phase then
  2769. short-circuits in the main loop.
  2770. Reads from `printer_manager.get_status(...).raw_data['ams']`, which is
  2771. the same source the dispatcher uses for AMS slot mapping. Empty / RFID-
  2772. less slots have empty `tray_type` and contribute nothing."""
  2773. state = printer_manager.get_status(printer.id)
  2774. if state is None:
  2775. return 0
  2776. ams_list = (state.raw_data or {}).get("ams") if state.raw_data else None
  2777. # Older Bambu firmware nests AMS as {"ams": {"ams": [...]}} — try both.
  2778. if isinstance(ams_list, dict):
  2779. ams_list = ams_list.get("ams") or []
  2780. if not isinstance(ams_list, list):
  2781. return 0
  2782. best = 0
  2783. for ams in ams_list:
  2784. for tray in (ams.get("tray") or []) if isinstance(ams, dict) else []:
  2785. normalised = self._normalize_filament_type(tray.get("tray_type") or "")
  2786. if not normalised:
  2787. continue
  2788. target = targets.get(normalised, targets.get("DEFAULT", 0))
  2789. if target > best:
  2790. best = target
  2791. return best
  2792. async def _preheat_and_soak(
  2793. self,
  2794. db: AsyncSession,
  2795. item: PrintQueueItem,
  2796. printer: Printer,
  2797. archive: PrintArchive | None,
  2798. ) -> None:
  2799. """Run the per-printer preheat + heat-soak stage before FTP upload (#1468).
  2800. Resolution order:
  2801. 1. `item.preheat_override` — 'off' skips entirely; 'inherit' falls back
  2802. to the global `preheat_enabled` setting; 'on' forces the stage on
  2803. even if the global is off.
  2804. 2. Chamber target — `item.preheat_chamber_target_override` if non-null;
  2805. else max of `preheat_filament_targets[normalize(t.tray_type)]`
  2806. across loaded AMS slots; else 0 (skips chamber phase, keeps bed
  2807. phase + soak timer).
  2808. 3. Three hardware tiers branch the wait loop:
  2809. - Chamber heater (H2C/H2D/H2DPro/H2S/X2D/X1E via supports_chamber_heater):
  2810. send M141 to the resolved target, then wait for the chamber sensor
  2811. to reach it (or the max-wait timeout to elapse).
  2812. - Chamber sensor only (X1C/P2S via supports_chamber_temp ∧ ¬supports_chamber_heater):
  2813. no M141; the bed is the only heat source, so we wait for the chamber
  2814. sensor to rise via bed radiation OR fall through on timeout.
  2815. - No chamber sensor (P1S/P1P/A1/A1 Mini): no way to verify chamber
  2816. temperature; the function just heats the bed and holds for the
  2817. configured soak duration.
  2818. The bed target comes from the archive's parsed metadata
  2819. (`bed_temperature`); if missing the preheat stage logs and returns
  2820. without dispatching anything, rather than guessing at a default that
  2821. might wreck filament setup.
  2822. Failures are logged but never re-raised — preheat is best-effort. A
  2823. printer that goes offline mid-soak, a refused gcode command, or a
  2824. missing temperature reading must not turn into a failed queue item; the
  2825. normal upload + start path runs immediately after this method returns.
  2826. """
  2827. override = (getattr(item, "preheat_override", None) or "inherit").lower()
  2828. if override == "off":
  2829. return
  2830. if override == "inherit":
  2831. enabled = await self._get_bool_setting(db, "preheat_enabled", default=False)
  2832. if not enabled:
  2833. return
  2834. # override == "on" forces the stage on regardless of the global setting.
  2835. max_wait = await self._get_int_setting(db, "preheat_max_wait_seconds", default=900)
  2836. soak_seconds = await self._get_int_setting(db, "preheat_soak_seconds", default=300)
  2837. # Chamber target resolution:
  2838. # 1. Explicit per-item override beats everything (user knows best).
  2839. # 2. Otherwise derive from loaded AMS filament types via the per-
  2840. # filament target map. PLA-only print derives 0 → chamber phase
  2841. # auto-skips without the user touching anything.
  2842. explicit_target = getattr(item, "preheat_chamber_target_override", None)
  2843. if explicit_target is not None and explicit_target > 0:
  2844. chamber_target = int(explicit_target)
  2845. chamber_source = "item-override"
  2846. elif explicit_target == 0:
  2847. chamber_target = 0 # explicit 0 means "no chamber, even if filament wants it"
  2848. chamber_source = "item-override-zero"
  2849. else:
  2850. targets = await self._get_preheat_filament_targets(db)
  2851. chamber_target = self._derive_chamber_target(printer, targets)
  2852. chamber_source = "filament-map"
  2853. bed_target = int(archive.bed_temperature) if archive and archive.bed_temperature else 0
  2854. if bed_target <= 0:
  2855. logger.info(
  2856. "Queue item %s: preheat skipped — archive has no bed_temperature metadata",
  2857. item.id,
  2858. )
  2859. return
  2860. client = printer_manager.get_client(printer.id)
  2861. if client is None:
  2862. logger.warning("Queue item %s: preheat skipped — printer client unavailable", item.id)
  2863. return
  2864. model = printer.model or ""
  2865. has_heater = supports_chamber_heater(model)
  2866. has_sensor = supports_chamber_temp(model)
  2867. do_chamber = chamber_target > 0 and (has_heater or has_sensor)
  2868. logger.info(
  2869. "Queue item %s: preheat starting — bed=%d°C chamber_target=%d°C (source=%s override=%s "
  2870. "model=%s has_heater=%s has_sensor=%s) max_wait=%ds soak=%ds",
  2871. item.id,
  2872. bed_target,
  2873. chamber_target if do_chamber else 0,
  2874. chamber_source,
  2875. override,
  2876. model,
  2877. has_heater,
  2878. has_sensor,
  2879. max_wait,
  2880. soak_seconds,
  2881. )
  2882. # Dispatch heaters. set_bed_temperature / set_chamber_temperature already
  2883. # cache the target locally so the polling reads below see consistent
  2884. # state (firmware MQTT echoes lag by ~1s).
  2885. try:
  2886. client.set_bed_temperature(bed_target)
  2887. except Exception as exc:
  2888. logger.warning("Queue item %s: preheat bed M140 failed: %s", item.id, exc)
  2889. return
  2890. # Airduct mode (#1468 follow-up). Models with the cooling/heating flap
  2891. # (H2C/H2D/H2D Pro/H2S/X2D/P2S) keep the flap whatever the user last
  2892. # left it on, regardless of M141. Default cooling actively vents the
  2893. # chamber, so a `chamber_target > 0` print with the flap stuck in
  2894. # cooling never converges — the heater fights the open exhaust. We
  2895. # flip the flap BEFORE M141 to "heating" when the preheat wants
  2896. # chamber heat, and back to "cooling" when it doesn't (PLA-only print
  2897. # on an H2D that was previously running ABS would otherwise stay in
  2898. # heating mode and overheat PLA). The current-state read keeps the
  2899. # command idempotent — no MQTT chatter when the flap is already where
  2900. # we want it.
  2901. if supports_airduct(model):
  2902. desired_airduct = "heating" if chamber_target > 0 else "cooling"
  2903. desired_id = 1 if desired_airduct == "heating" else 0
  2904. current_state = printer_manager.get_status(printer.id)
  2905. current_airduct = getattr(current_state, "airduct_mode", None) if current_state else None
  2906. if current_airduct != desired_id:
  2907. try:
  2908. client.set_airduct_mode(desired_airduct)
  2909. except Exception as exc:
  2910. logger.warning(
  2911. "Queue item %s: preheat airduct %s mode failed: %s",
  2912. item.id,
  2913. desired_airduct,
  2914. exc,
  2915. )
  2916. if do_chamber and has_heater:
  2917. try:
  2918. client.set_chamber_temperature(chamber_target)
  2919. except Exception as exc:
  2920. logger.warning("Queue item %s: preheat chamber M141 failed: %s", item.id, exc)
  2921. # Release the pooled DB connection before the (potentially many-minute)
  2922. # heat-soak wait below (#2572). Every setting this method needs is read
  2923. # above; the wait/soak loop only polls printer_manager state and sleeps —
  2924. # it never touches the DB. Without this the caller's transaction sat
  2925. # "idle in transaction" for the whole soak, pinning one pooled connection
  2926. # per preheating printer. expire_on_commit=False keeps item/printer
  2927. # readable afterwards; there are no pending writes to lose here.
  2928. await db.commit()
  2929. # Wait for convergence. Bed warm-up is fast (~5 min from cold); chamber
  2930. # via M141 takes a few minutes; chamber via bed radiation can take 20+.
  2931. # Poll every 3s — frequent enough for responsive logging without
  2932. # spamming the MQTT state stream. The "converged" predicate is:
  2933. # bed reached target (within 2°C tolerance for floating-point + heater hysteresis),
  2934. # AND
  2935. # chamber phase satisfied (no chamber phase, no sensor, or sensor reached target).
  2936. BED_TOLERANCE = 2.0
  2937. CHAMBER_TOLERANCE = 2.0
  2938. POLL_INTERVAL = 3.0
  2939. deadline = asyncio.get_event_loop().time() + max_wait
  2940. while True:
  2941. state = printer_manager.get_status(printer.id)
  2942. if state is None:
  2943. logger.warning("Queue item %s: preheat lost state during wait", item.id)
  2944. break
  2945. temps = state.temperatures or {}
  2946. bed_now = float(temps.get("bed", 0) or 0)
  2947. chamber_now = float(temps.get("chamber", 0) or 0)
  2948. bed_ok = bed_now >= bed_target - BED_TOLERANCE
  2949. if not do_chamber:
  2950. chamber_ok = True # phase disabled or model has neither sensor nor heater
  2951. elif not has_sensor:
  2952. chamber_ok = True # P1S etc — can't read, rely on soak timer only
  2953. else:
  2954. chamber_ok = chamber_now >= chamber_target - CHAMBER_TOLERANCE
  2955. if bed_ok and chamber_ok:
  2956. logger.info(
  2957. "Queue item %s: preheat target reached (bed=%.1f chamber=%.1f) — entering soak",
  2958. item.id,
  2959. bed_now,
  2960. chamber_now,
  2961. )
  2962. break
  2963. if asyncio.get_event_loop().time() >= deadline:
  2964. logger.info(
  2965. "Queue item %s: preheat max_wait reached (bed=%.1f/%d chamber=%.1f/%d) — falling through to soak",
  2966. item.id,
  2967. bed_now,
  2968. bed_target,
  2969. chamber_now,
  2970. chamber_target if do_chamber else 0,
  2971. )
  2972. break
  2973. await asyncio.sleep(POLL_INTERVAL)
  2974. if soak_seconds > 0:
  2975. logger.info("Queue item %s: preheat soak — holding for %ds", item.id, soak_seconds)
  2976. await asyncio.sleep(soak_seconds)
  2977. logger.info("Queue item %s: preheat complete — proceeding to upload", item.id)
  2978. async def _power_on_and_wait(self, plug: SmartPlug, printer_id: int, db: AsyncSession) -> bool:
  2979. """Turn on smart plug and wait for printer to connect.
  2980. Returns True if printer connected successfully within timeout.
  2981. """
  2982. # Get the appropriate service for the plug type (Tasmota or Home Assistant)
  2983. service = await smart_plug_manager.get_service_for_plug(plug, db)
  2984. # Check current plug state
  2985. status = await service.get_status(plug)
  2986. if not status.get("reachable"):
  2987. logger.warning("Smart plug '%s' is not reachable", plug.name)
  2988. return False
  2989. # Turn on if not already on
  2990. if status.get("state") != "ON":
  2991. success = await service.turn_on(plug)
  2992. if not success:
  2993. logger.warning("Failed to turn on smart plug '%s'", plug.name)
  2994. return False
  2995. logger.info("Powered on smart plug '%s' for printer %s", plug.name, printer_id)
  2996. # Get printer from database for connection
  2997. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  2998. printer = result.scalar_one_or_none()
  2999. if not printer:
  3000. logger.error("Printer %s not found in database", printer_id)
  3001. return False
  3002. # Wait for printer to boot (give it some time before trying to connect)
  3003. logger.info("Waiting 30s for printer %s to boot...", printer_id)
  3004. await asyncio.sleep(30)
  3005. # Try to connect to the printer periodically
  3006. elapsed = 30 # Already waited 30s
  3007. while elapsed < self._power_on_wait_time:
  3008. # Try to connect
  3009. logger.info("Attempting to connect to printer %s...", printer_id)
  3010. try:
  3011. connected = await printer_manager.connect_printer(printer)
  3012. if connected:
  3013. logger.info("Printer %s connected after %ss", printer_id, elapsed)
  3014. # Give it a moment to stabilize and get status
  3015. await asyncio.sleep(5)
  3016. return True
  3017. except Exception as e:
  3018. logger.debug("Connection attempt failed: %s", e)
  3019. await asyncio.sleep(self._power_on_check_interval)
  3020. elapsed += self._power_on_check_interval
  3021. logger.debug("Waiting for printer %s to connect... (%ss)", printer_id, elapsed)
  3022. logger.warning("Printer %s did not connect within %ss after power on", printer_id, self._power_on_wait_time)
  3023. return False
  3024. async def _check_previous_success(self, db: AsyncSession, item: PrintQueueItem) -> bool:
  3025. """Check if the previous print on this printer succeeded.
  3026. A user-cancelled predecessor is treated as neutral — `cancelled` is a
  3027. deliberate action, not a failure, so subsequent items should still
  3028. dispatch (#1667). `skipped` is excluded from the lookback entirely:
  3029. a skip isn't an actual print attempt, so it must not gate downstream
  3030. items — counting it as a failed predecessor was the cascade bug that
  3031. let a single cancellation block 18 items over 3 days for the reporter.
  3032. Only `failed` and `aborted` — real print-attempt failures — block.
  3033. Failures with `gate_acknowledged=True` (set by the per-printer Resume
  3034. action — #1818) are also excluded from the lookback so the user can
  3035. clear the gate after fixing the physical issue without having to
  3036. re-queue every downstream job.
  3037. """
  3038. result = await db.execute(
  3039. select(PrintQueueItem)
  3040. .where(PrintQueueItem.printer_id == item.printer_id)
  3041. .where(PrintQueueItem.id != item.id)
  3042. .where(PrintQueueItem.status.in_(["completed", "failed", "cancelled", "aborted"]))
  3043. .where(PrintQueueItem.gate_acknowledged == False) # noqa: E712
  3044. .order_by(PrintQueueItem.completed_at.desc())
  3045. .limit(1)
  3046. )
  3047. prev_item = result.scalar_one_or_none()
  3048. # If no previous item, assume success (first in queue)
  3049. if not prev_item:
  3050. return True
  3051. return prev_item.status in ("completed", "cancelled")
  3052. async def _power_off_if_needed(self, db: AsyncSession, item: PrintQueueItem):
  3053. """Schedule power-off if the queue item enabled auto_off_after.
  3054. Delegates to the smart-plug manager so the off honours each plug's
  3055. configured strategy (time delay or temperature threshold), is cancelled
  3056. if the printer starts printing again, and never cuts power on a loaded
  3057. print (#1890). Previously this hardcoded a 50°C / 600s cooldown wait and
  3058. powered off on the timeout regardless of print state.
  3059. """
  3060. if not item.auto_off_after:
  3061. return
  3062. try:
  3063. await smart_plug_manager.schedule_off_after_queue_job(item.printer_id, db)
  3064. except Exception as e:
  3065. logger.warning("Auto-off: Failed to schedule power-off for printer %s: %s", item.printer_id, e)
  3066. async def _get_job_name(self, db: AsyncSession, item: PrintQueueItem) -> str:
  3067. """Get a human-readable name for a queue item."""
  3068. if item.archive_id:
  3069. result = await db.execute(select(PrintArchive).where(PrintArchive.id == item.archive_id))
  3070. archive = result.scalar_one_or_none()
  3071. if archive:
  3072. return archive.filename.replace(".gcode.3mf", "").replace(".3mf", "")
  3073. if item.library_file_id:
  3074. result = await db.execute(LibraryFile.active().where(LibraryFile.id == item.library_file_id))
  3075. library_file = result.scalar_one_or_none()
  3076. if library_file:
  3077. return library_file.filename.replace(".gcode.3mf", "").replace(".3mf", "")
  3078. # A cross-model item (#671) holds no file of its own until a printer is
  3079. # picked, so name it after its first candidate — otherwise every waiting
  3080. # notification for one reads "Job #12". Queried rather than read off
  3081. # item.variants because callers outside the selection loop have not
  3082. # eager-loaded them, and a lazy load raises in async.
  3083. first_variant_name = (
  3084. await db.execute(
  3085. select(LibraryFile.filename)
  3086. .join(PrintQueueVariant, PrintQueueVariant.library_file_id == LibraryFile.id)
  3087. .where(PrintQueueVariant.queue_item_id == item.id)
  3088. .order_by(PrintQueueVariant.position, PrintQueueVariant.id)
  3089. .limit(1)
  3090. )
  3091. ).scalar_one_or_none()
  3092. if first_variant_name:
  3093. return first_variant_name.replace(".gcode.3mf", "").replace(".3mf", "")
  3094. return f"Job #{item.id}"
  3095. async def _get_printer(self, db: AsyncSession, printer_id: int) -> Printer | None:
  3096. """Get printer by ID."""
  3097. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  3098. return result.scalar_one_or_none()
  3099. async def _notify_dispatch_gave_up(
  3100. self,
  3101. queue_item_id: int,
  3102. printer_id: int,
  3103. created_by_id: int | None,
  3104. reason: str = "Printer accepted the file but never started printing",
  3105. ) -> None:
  3106. """Tell the user the queue item was failed after exhausting its dispatch retries.
  3107. Called from the watchdog, which is a background task with no session of
  3108. its own — hence the fresh one here. Best-effort throughout: the row is
  3109. already marked failed and that is the load-bearing part; a notification
  3110. provider being down must not resurrect the retry loop we just stopped.
  3111. ``reason`` defaults to the exhausted-retries wording. The command-rejected
  3112. path passes its own, because "accepted the file but never started" is the
  3113. opposite of what happened there — the printer refused it outright (#2732).
  3114. """
  3115. try:
  3116. async with async_session() as db:
  3117. item = await db.get(PrintQueueItem, queue_item_id)
  3118. if not item:
  3119. return
  3120. job_name = await self._get_job_name(db, item)
  3121. printer = await self._get_printer(db, printer_id)
  3122. await notification_service.on_queue_job_failed(
  3123. job_name=job_name,
  3124. printer_id=printer_id,
  3125. printer_name=printer.name if printer else "Unknown",
  3126. reason=reason,
  3127. db=db,
  3128. )
  3129. except Exception as e:
  3130. logger.warning("Queue item %s: give-up notification failed: %s", queue_item_id, e)
  3131. try:
  3132. await ws_manager.send_queue_item_failed(
  3133. user_id=created_by_id,
  3134. queue_item_id=queue_item_id,
  3135. printer_id=printer_id,
  3136. reason="never_started",
  3137. )
  3138. except Exception:
  3139. pass # toast is best-effort
  3140. async def _block_on_filament_deficit(
  3141. self,
  3142. db: AsyncSession,
  3143. item: PrintQueueItem,
  3144. ) -> bool:
  3145. """Promote the item to manual_start when the assigned spool is short (#1496).
  3146. Returns True when this dispatch attempt was blocked, False when the
  3147. item is clear to start. A previously-flagged item whose spool has
  3148. since been swapped to one with enough material clears the flag here
  3149. so the next scheduler tick dispatches it.
  3150. """
  3151. # User has explicitly acknowledged the deficit ("Print Anyway") —
  3152. # don't re-flag, don't even compute. Without this short-circuit the
  3153. # scheduler bounces between "user said anyway" (route clears
  3154. # manual_start) and "scheduler re-blocked" (this method re-flags it
  3155. # on identical spool state) (#1698-followup).
  3156. if item.skip_filament_check:
  3157. # #1762 diagnostic: surface the short-circuit at INFO so a
  3158. # future "Print Anyway didn't work" report (e.g. issue #1762
  3159. # comment 3) has actionable evidence in the support bundle
  3160. # without needing DEBUG enabled.
  3161. logger.info(
  3162. "Queue item %s honouring user's Print Anyway acknowledgement — skipping deficit check",
  3163. item.id,
  3164. )
  3165. return False
  3166. try:
  3167. deficit = await compute_deficit_for_queue_item(db, item)
  3168. except Exception as e:
  3169. # Never let a flaky deficit check wedge the queue — log and let
  3170. # dispatch proceed. The PrintModal-side check still runs on the
  3171. # manual paths.
  3172. logger.warning("Filament deficit check failed for item %s: %s", item.id, e)
  3173. return False
  3174. if deficit:
  3175. item.filament_short = True
  3176. item.manual_start = True
  3177. await db.commit()
  3178. job_name = await self._get_job_name(db, item)
  3179. printer = await self._get_printer(db, item.printer_id) if item.printer_id else None
  3180. logger.info(
  3181. "Queue item %s blocked on filament deficit (%d slot(s)) — promoted to manual_start",
  3182. item.id,
  3183. len(deficit),
  3184. )
  3185. try:
  3186. await notification_service.on_queue_job_waiting(
  3187. job_name=job_name,
  3188. target_model=(printer.model if printer else "") or "",
  3189. waiting_reason="filament_short",
  3190. db=db,
  3191. )
  3192. except Exception as e:
  3193. logger.debug("filament_short notification failed for item %s: %s", item.id, e)
  3194. return True
  3195. # No deficit — clear any stale flag from a previous tick.
  3196. if item.filament_short:
  3197. item.filament_short = False
  3198. await db.commit()
  3199. return False
  3200. async def _propagate_owner_to_printer_manager(self, db: AsyncSession, item: PrintQueueItem) -> None:
  3201. """Hand the queue item's owner to printer_manager so the
  3202. print-complete callback can credit the user in PrintLogEntry (#1670).
  3203. No-ops when the item has no `created_by_id` or the referenced user
  3204. row is missing (e.g. user deleted between queue-add and dispatch —
  3205. in that case the print log row falls back to the existing un-credited
  3206. behaviour rather than crashing the dispatch).
  3207. """
  3208. if not item.created_by_id:
  3209. return
  3210. from backend.app.models.user import User
  3211. owner = await db.get(User, item.created_by_id)
  3212. if owner:
  3213. printer_manager.set_current_print_user(item.printer_id, owner.id, owner.username)
  3214. async def _start_print(self, db: AsyncSession, item: PrintQueueItem):
  3215. """Upload file and start print for a queue item.
  3216. Supports two sources:
  3217. - archive_id: Print from an existing archive
  3218. - library_file_id: Print from a library file (file manager)
  3219. """
  3220. logger.info("Starting queue item %s", item.id)
  3221. # Get printer first (needed for both paths)
  3222. result = await db.execute(select(Printer).where(Printer.id == item.printer_id))
  3223. printer = result.scalar_one_or_none()
  3224. if not printer:
  3225. item.status = "failed"
  3226. item.error_message = "Printer not found"
  3227. item.completed_at = datetime.now(timezone.utc)
  3228. await db.commit()
  3229. logger.error("Queue item %s: Printer %s not found", item.id, item.printer_id)
  3230. await self._power_off_if_needed(db, item)
  3231. return
  3232. # Check printer is connected
  3233. if not printer_manager.is_connected(item.printer_id):
  3234. item.status = "failed"
  3235. item.error_message = "Printer not connected"
  3236. item.completed_at = datetime.now(timezone.utc)
  3237. await db.commit()
  3238. logger.error("Queue item %s: Printer %s not connected", item.id, item.printer_id)
  3239. await self._power_off_if_needed(db, item)
  3240. return
  3241. # Cancel-while-dispatching race (#1853): the scheduler's snapshot of
  3242. # `items` was taken at the top of check_queue, but the user can /cancel
  3243. # any pending row in the gap before we reach this point. Re-read the
  3244. # row and bail out cleanly instead of starting an FTP upload for a row
  3245. # that's already cancelled. The atomic CAS at the pending→printing
  3246. # transition (below, before start_print) is the load-bearing guard;
  3247. # this is the early-exit optimisation that avoids wasted FTP I/O.
  3248. await db.refresh(item)
  3249. if item.status != "pending":
  3250. logger.info(
  3251. "Queue item %s no longer pending (status=%s) — aborting dispatch",
  3252. item.id,
  3253. item.status,
  3254. )
  3255. return
  3256. # Busy-printer guard (#2598). check_queue gates dispatch on
  3257. # _is_printer_idle(), but that treats FINISH as idle and a printer can
  3258. # keep reporting FINISH for tens of seconds *after* it accepted a
  3259. # project_file (see the watchdog's phase-B note). A watchdog revert
  3260. # (#2555) also releases the dispatch hold, so a re-selected item can
  3261. # reach here while its printer has actually started printing. Uploading
  3262. # and dispatching then collides with the live job — the firmware answers
  3263. # 0500_4004 and, on an A1 mini, cancels the running print. Re-check the
  3264. # live state right before the expensive FTP upload: if the printer is
  3265. # busy, leave the item pending and let a later tick dispatch it once the
  3266. # printer is genuinely idle. No wasted upload, no collision.
  3267. pre_dispatch_state = getattr(printer_manager.get_status(item.printer_id), "state", None)
  3268. if pre_dispatch_state in _ACTIVE_PRINT_STATES:
  3269. logger.info(
  3270. "Queue item %s: printer %s is busy (state=%s) — deferring dispatch, "
  3271. "leaving item pending for a later tick (#2598)",
  3272. item.id,
  3273. item.printer_id,
  3274. pre_dispatch_state,
  3275. )
  3276. return
  3277. # Determine source: archive or library file
  3278. archive = None
  3279. library_file = None
  3280. file_path = None
  3281. filename = None
  3282. cleanup_disk_paths: list[Path] = []
  3283. if item.archive_id:
  3284. # Print from archive
  3285. result = await db.execute(select(PrintArchive).where(PrintArchive.id == item.archive_id))
  3286. archive = result.scalar_one_or_none()
  3287. if not archive:
  3288. item.status = "failed"
  3289. item.error_message = "Archive not found"
  3290. item.completed_at = datetime.now(timezone.utc)
  3291. await db.commit()
  3292. logger.error("Queue item %s: Archive %s not found", item.id, item.archive_id)
  3293. await self._power_off_if_needed(db, item)
  3294. return
  3295. # Persist the queue item's selected plate onto the archive so Print
  3296. # History can show the actual plate after cancel/fail/complete (#2603).
  3297. # Only when the archive doesn't already carry one, so a reprint of a
  3298. # plate-specific archive isn't relabelled by a differently-plated
  3299. # queue row.
  3300. if archive.plate_id is None and item.plate_id is not None:
  3301. archive.plate_id = item.plate_id
  3302. file_path = settings.base_dir / archive.file_path
  3303. filename = archive.filename
  3304. elif item.library_file_id:
  3305. # Print from library file (file manager)
  3306. result = await db.execute(LibraryFile.active().where(LibraryFile.id == item.library_file_id))
  3307. library_file = result.scalar_one_or_none()
  3308. if not library_file:
  3309. item.status = "failed"
  3310. item.error_message = "Library file not found"
  3311. item.completed_at = datetime.now(timezone.utc)
  3312. await db.commit()
  3313. logger.error("Queue item %s: Library file %s not found", item.id, item.library_file_id)
  3314. await self._power_off_if_needed(db, item)
  3315. return
  3316. # Library files store absolute paths
  3317. lib_path = Path(library_file.file_path)
  3318. file_path = lib_path if lib_path.is_absolute() else settings.base_dir / library_file.file_path
  3319. filename = library_file.filename
  3320. # Create archive from library file so usage tracking has access to the 3MF
  3321. queue_item_id = item.id
  3322. try:
  3323. from backend.app.services.archive import ArchiveService
  3324. archive_service = ArchiveService(db)
  3325. archive = await archive_service.archive_print(
  3326. printer_id=item.printer_id,
  3327. source_file=file_path,
  3328. original_filename=filename,
  3329. created_by_id=item.created_by_id,
  3330. project_id=item.project_id,
  3331. library_file_id=item.library_file_id, # per-file project progress (#1897)
  3332. plate_id=item.plate_id, # selected plate → Print History (#2603)
  3333. )
  3334. if archive:
  3335. item.archive_id = archive.id
  3336. if item.cleanup_library_after_dispatch and not library_file.is_external:
  3337. item.library_file_id = None
  3338. cleanup_disk_paths.append(file_path)
  3339. if library_file.thumbnail_path:
  3340. thumb_path = Path(library_file.thumbnail_path)
  3341. if not thumb_path.is_absolute():
  3342. thumb_path = settings.base_dir / library_file.thumbnail_path
  3343. cleanup_disk_paths.append(thumb_path)
  3344. await db.delete(library_file)
  3345. file_path = settings.base_dir / archive.file_path
  3346. filename = archive.filename
  3347. # Commit, not flush — flush opens the SQLite write
  3348. # transaction (item.archive_id update + library_file
  3349. # delete) and would hold the WAL writer lock through the
  3350. # FTP upload below, causing "database is locked" cascades
  3351. # for sensor history + concurrent cancels (#1853).
  3352. await db.commit()
  3353. logger.info(
  3354. "Queue item %s: Created archive %s from library file %s",
  3355. item.id,
  3356. archive.id,
  3357. item.library_file_id,
  3358. )
  3359. except Exception as e:
  3360. logger.warning(
  3361. "Queue item %s: Failed to create archive from library file: %s",
  3362. queue_item_id,
  3363. e,
  3364. exc_info=True,
  3365. )
  3366. await db.rollback()
  3367. item = await db.get(PrintQueueItem, queue_item_id)
  3368. if item:
  3369. item.status = "failed"
  3370. item.error_message = "Failed to create archive from library file"
  3371. item.completed_at = datetime.now(timezone.utc)
  3372. await db.commit()
  3373. await self._power_off_if_needed(db, item)
  3374. return
  3375. if not archive:
  3376. item.status = "failed"
  3377. item.error_message = "Failed to create archive from library file"
  3378. item.completed_at = datetime.now(timezone.utc)
  3379. await db.commit()
  3380. logger.error("Queue item %s: Archive creation from library file returned no archive", item.id)
  3381. await self._power_off_if_needed(db, item)
  3382. return
  3383. else:
  3384. # Neither archive nor library file specified
  3385. item.status = "failed"
  3386. item.error_message = "No source file specified"
  3387. item.completed_at = datetime.now(timezone.utc)
  3388. await db.commit()
  3389. logger.error("Queue item %s: No archive_id or library_file_id specified", item.id)
  3390. await self._power_off_if_needed(db, item)
  3391. return
  3392. # Check file exists on disk
  3393. if not file_path.exists():
  3394. item.status = "failed"
  3395. item.error_message = "Source file not found on disk"
  3396. item.completed_at = datetime.now(timezone.utc)
  3397. await db.commit()
  3398. logger.error("Queue item %s: File not found: %s", item.id, file_path)
  3399. await self._power_off_if_needed(db, item)
  3400. return
  3401. # Nozzle-diameter mismatch guard (#1899). A file sliced for one nozzle
  3402. # size dispatched to a printer with a different nozzle installed is
  3403. # rejected by the firmware with a cryptic HMS ("Failed to get AMS mapping
  3404. # table" 0700_8012, or "nozzle diameter … not consistent" 0500_4038) that
  3405. # gives the user no idea what went wrong. Catch it here, before we spend
  3406. # time preheating and uploading, and fail with an actionable message.
  3407. # Fail-safe by construction: only a POSITIVE mismatch blocks — when the
  3408. # slice carries no nozzle diameter (archive.nozzle_diameter is None) or
  3409. # the printer hasn't reported its nozzles yet, we fall through and let the
  3410. # print proceed exactly as before. On dual-nozzle printers (H2D) a match
  3411. # against EITHER installed nozzle passes, so a 0.6 slice is fine as long
  3412. # as one of the two hotends is a 0.6.
  3413. sliced_nozzle = archive.nozzle_diameter if archive else None
  3414. if sliced_nozzle:
  3415. installed = _installed_nozzle_diameters(printer_manager.get_status(item.printer_id))
  3416. mismatch_msg = _nozzle_mismatch_message(sliced_nozzle, installed)
  3417. if mismatch_msg:
  3418. item.status = "failed"
  3419. item.error_message = mismatch_msg
  3420. item.completed_at = datetime.now(timezone.utc)
  3421. await db.commit()
  3422. logger.warning("Queue item %s: nozzle mismatch — %s", item.id, mismatch_msg)
  3423. await notification_service.on_queue_job_failed(
  3424. job_name=filename.replace(".gcode.3mf", "").replace(".3mf", ""),
  3425. printer_id=printer.id,
  3426. printer_name=printer.name,
  3427. reason=mismatch_msg,
  3428. db=db,
  3429. )
  3430. try:
  3431. await ws_manager.send_queue_item_failed(
  3432. user_id=item.created_by_id,
  3433. queue_item_id=item.id,
  3434. printer_id=item.printer_id,
  3435. reason="nozzle_mismatch",
  3436. )
  3437. except Exception:
  3438. pass
  3439. await self._power_off_if_needed(db, item)
  3440. return
  3441. # Preheat / heat-soak (#1468) — fires before upload so the printer's
  3442. # bed (and chamber, if applicable) is at temperature when the firmware
  3443. # starts the actual print routine. Best-effort: any failure logs and
  3444. # falls through to the normal upload+start path rather than turning a
  3445. # configuration issue into a failed queue item.
  3446. await self._preheat_and_soak(db, item, printer, archive)
  3447. # G-code injection for auto-print systems (#422)
  3448. injected_path = None
  3449. # #2547: tracked separately from `injected_path`, which is also set when
  3450. # only a START snippet was injected. Only an END snippet changes what the
  3451. # camera sees at print completion.
  3452. end_gcode_injected = False
  3453. if item.gcode_injection:
  3454. try:
  3455. snippets_raw = await self._get_setting(db, "gcode_snippets")
  3456. if snippets_raw:
  3457. snippets = json.loads(snippets_raw)
  3458. model_snippets = snippets.get(printer.model, {})
  3459. start_gc = (model_snippets.get("start_gcode") or "").strip()
  3460. end_gc = (model_snippets.get("end_gcode") or "").strip()
  3461. if start_gc or end_gc:
  3462. from backend.app.utils.threemf_tools import inject_gcode_into_3mf
  3463. injected_path = inject_gcode_into_3mf(
  3464. file_path, item.plate_id or 1, start_gc or None, end_gc or None
  3465. )
  3466. if injected_path:
  3467. file_path = injected_path
  3468. end_gcode_injected = bool(end_gc)
  3469. logger.info("Queue item %s: G-code injected for model %s", item.id, printer.model)
  3470. else:
  3471. logger.warning(
  3472. "Queue item %s: G-code injection returned no result, using original", item.id
  3473. )
  3474. except Exception as e:
  3475. logger.warning("Queue item %s: G-code injection failed, using original: %s", item.id, e)
  3476. # #2547: the finish-photo path can't learn from telemetry that this print
  3477. # ends with user End G-code — which means the plate may be gone by the
  3478. # time FINISH arrives (#1867). Flag it here; `on_print_start` binds it to
  3479. # the print once the printer confirms it running.
  3480. if end_gcode_injected:
  3481. print_dispatch_context.mark_pending(printer.id)
  3482. # Upload to root directory (not /cache/) - the start_print command references
  3483. # files by name only (ftp://{filename}), so they must be in the root
  3484. remote_filename = derive_remote_filename(filename)
  3485. remote_path = f"/{remote_filename}"
  3486. # Get FTP retry settings
  3487. ftp_retry_enabled, ftp_retry_count, ftp_retry_delay, ftp_timeout = await get_ftp_retry_settings()
  3488. logger.info(
  3489. f"Queue item {item.id}: FTP upload starting - printer={printer.name} ({printer.model}), "
  3490. f"ip={printer.ip_address}, file={remote_filename}, local_path={file_path}, "
  3491. f"retry_enabled={ftp_retry_enabled}, retry_count={ftp_retry_count}, timeout={ftp_timeout}"
  3492. )
  3493. # Release the pooled DB connection before the FTP delete/upload (#2572).
  3494. # Every read this method needs (printer, archive/library, preheat) is
  3495. # done, and the library-file branch already committed its archive
  3496. # creation. Without this the transaction opened by the first SELECT above
  3497. # stays "idle in transaction" for the entire upload — multiple seconds
  3498. # for a large 3MF — pinning one pooled connection per in-flight dispatch;
  3499. # a farm dispatching many jobs at once then exhausts the pool. This was
  3500. # correlated to an exact idle-in-transaction session on a 93-printer farm
  3501. # (reporter @Jostxxl). expire_on_commit=False keeps item/printer/archive
  3502. # readable; the status writes below (upload-failure path and the
  3503. # pending->printing CAS) transparently open a fresh transaction.
  3504. await db.commit()
  3505. # Delete existing file if present (avoids 553 error on overwrite)
  3506. try:
  3507. logger.debug("Queue item %s: Deleting existing file %s if present...", item.id, remote_path)
  3508. delete_result = await delete_file_async(
  3509. printer.ip_address,
  3510. printer.access_code,
  3511. remote_path,
  3512. socket_timeout=ftp_timeout,
  3513. printer_model=printer.model,
  3514. )
  3515. logger.debug("Queue item %s: Delete result: %s", item.id, delete_result)
  3516. except Exception as e:
  3517. logger.debug("Queue item %s: Delete failed (may not exist): %s", item.id, e)
  3518. # Dispatch toast — announce the upload start with the total byte
  3519. # count so the frontend can render an honest progress bar.
  3520. toast_uid = item.created_by_id
  3521. toast_file_name = filename.replace(".gcode.3mf", "").replace(".3mf", "")
  3522. try:
  3523. total_bytes = file_path.stat().st_size
  3524. except OSError:
  3525. total_bytes = 0
  3526. try:
  3527. await ws_manager.send_queue_item_uploading(
  3528. user_id=toast_uid,
  3529. queue_item_id=item.id,
  3530. printer_id=item.printer_id,
  3531. printer_name=printer.name,
  3532. file_name=toast_file_name,
  3533. total_bytes=total_bytes,
  3534. )
  3535. except Exception:
  3536. pass # toast is best-effort
  3537. progress_bridge = _UploadProgressBridge(toast_uid, item.id)
  3538. # A deadline expiry gets its own message: "check your SD card" is the
  3539. # wrong advice for a link that was simply too slow to finish (#2529).
  3540. upload_error: str | None = None
  3541. try:
  3542. if ftp_retry_enabled:
  3543. uploaded = await with_ftp_retry(
  3544. upload_file_async,
  3545. printer.ip_address,
  3546. printer.access_code,
  3547. file_path,
  3548. remote_path,
  3549. socket_timeout=ftp_timeout,
  3550. printer_model=printer.model,
  3551. progress_callback=progress_bridge,
  3552. max_retries=ftp_retry_count,
  3553. retry_delay=ftp_retry_delay,
  3554. operation_name=f"Upload print to {printer.name}",
  3555. )
  3556. else:
  3557. uploaded = await upload_file_async(
  3558. printer.ip_address,
  3559. printer.access_code,
  3560. file_path,
  3561. remote_path,
  3562. socket_timeout=ftp_timeout,
  3563. printer_model=printer.model,
  3564. progress_callback=progress_bridge,
  3565. )
  3566. except UploadCancelled as e:
  3567. uploaded = False
  3568. upload_error = (
  3569. "Upload was too slow to finish and was cancelled. The printer's connection could not sustain "
  3570. "the transfer — check its Wi-Fi signal, or move it closer to the access point."
  3571. )
  3572. logger.error("Queue item %s: upload deadline exceeded: %s", item.id, e)
  3573. except Exception as e:
  3574. uploaded = False
  3575. logger.error("Queue item %s: FTP error: %s (type: %s)", item.id, e, type(e).__name__)
  3576. # Clean up injected temp file after upload attempt
  3577. if injected_path and injected_path.exists():
  3578. injected_path.unlink(missing_ok=True)
  3579. if not uploaded:
  3580. error_msg = upload_error or (
  3581. "Failed to upload file to printer. Check if SD card is inserted and properly formatted (FAT32/exFAT). "
  3582. "See server logs for detailed diagnostics."
  3583. )
  3584. item.status = "failed"
  3585. item.error_message = error_msg
  3586. item.completed_at = datetime.now(timezone.utc)
  3587. await db.commit()
  3588. logger.error(
  3589. f"Queue item {item.id}: FTP upload failed - printer={printer.name}, model={printer.model}, "
  3590. f"ip={printer.ip_address}. Check logs above for storage diagnostics and specific error codes."
  3591. )
  3592. # Send failure notification
  3593. await notification_service.on_queue_job_failed(
  3594. job_name=filename.replace(".gcode.3mf", "").replace(".3mf", ""),
  3595. printer_id=printer.id,
  3596. printer_name=printer.name,
  3597. reason="Failed to upload file to printer",
  3598. db=db,
  3599. )
  3600. try:
  3601. await ws_manager.send_queue_item_failed(
  3602. user_id=toast_uid,
  3603. queue_item_id=item.id,
  3604. printer_id=item.printer_id,
  3605. reason="upload_failed",
  3606. )
  3607. except Exception:
  3608. pass
  3609. await self._power_off_if_needed(db, item)
  3610. return
  3611. # Parse AMS mapping if stored
  3612. ams_mapping = None
  3613. if item.ams_mapping:
  3614. try:
  3615. ams_mapping = json.loads(item.ams_mapping)
  3616. except json.JSONDecodeError:
  3617. logger.warning("Queue item %s: Invalid AMS mapping JSON, ignoring", item.id)
  3618. # Register as expected print so we don't create a duplicate archive
  3619. # Only applicable for archive-based prints
  3620. if archive:
  3621. from backend.app.main import register_expected_print
  3622. register_expected_print(
  3623. item.printer_id,
  3624. remote_filename,
  3625. archive.id,
  3626. ams_mapping=ams_mapping,
  3627. created_by_id=item.created_by_id,
  3628. plate_id=item.plate_id,
  3629. )
  3630. # Registration happens before the print command by necessity (the
  3631. # printer can report the print before the send returns), so record
  3632. # what to undo if we never get as far as sending. `_dispatch_one`
  3633. # rolls back anything still pending here on every exit — exception,
  3634. # early return, or cancel winning the CAS below.
  3635. self._unconfirmed_expected_print[item.id] = (item.printer_id, remote_filename, archive.id)
  3636. # Propagate the queue item's owner into printer_manager so the
  3637. # print-complete callback can credit the user in the PrintLogEntry
  3638. # (#1670). `created_by_id` is set either at queue-add time (UI-added
  3639. # items) or when the user clicks the manual-start button.
  3640. await self._propagate_owner_to_printer_manager(db, item)
  3641. # IMPORTANT: Set status to "printing" BEFORE sending the print command.
  3642. # This prevents phantom reprints if the backend crashes/restarts after the
  3643. # print command is sent but before the status update is committed.
  3644. # If we crash after this commit but before start_print(), the item will be
  3645. # in "printing" status without actually printing - but that's safer than
  3646. # accidentally reprinting the same file hours later.
  3647. #
  3648. # Atomic CAS (#1853): a user pressing /cancel mid-dispatch (between the
  3649. # initial pending read at the top of check_queue and this point) flips
  3650. # the row to "cancelled" in a separate session. Without the WHERE
  3651. # status='pending' clause, the unconditional update here would silently
  3652. # overwrite that cancellation and we'd ship the MQTT start_print below
  3653. # — printer obeys, user sees "I pressed cancel and the print started".
  3654. # rowcount==0 means the user won the race; bail out, best-effort delete
  3655. # the file we just uploaded, do NOT send start_print.
  3656. now_utc = datetime.now(timezone.utc)
  3657. cas = await db.execute(
  3658. update(PrintQueueItem)
  3659. .where(PrintQueueItem.id == item.id)
  3660. .where(PrintQueueItem.status == "pending")
  3661. .values(status="printing", started_at=now_utc)
  3662. )
  3663. await db.commit()
  3664. if cas.rowcount == 0:
  3665. logger.info(
  3666. "Queue item %s no longer pending at print-command time "
  3667. "(cancelled or removed mid-dispatch) — aborting before MQTT send (#1853)",
  3668. item.id,
  3669. )
  3670. try:
  3671. await delete_file_async(
  3672. printer.ip_address,
  3673. printer.access_code,
  3674. remote_path,
  3675. socket_timeout=ftp_timeout,
  3676. printer_model=printer.model,
  3677. )
  3678. except Exception as cleanup_err:
  3679. logger.debug(
  3680. "Queue item %s: best-effort cleanup of uploaded file failed: %s",
  3681. item.id,
  3682. cleanup_err,
  3683. )
  3684. try:
  3685. await ws_manager.send_queue_item_failed(
  3686. user_id=toast_uid,
  3687. queue_item_id=item.id,
  3688. printer_id=item.printer_id,
  3689. reason="cancelled_mid_dispatch",
  3690. )
  3691. except Exception:
  3692. pass
  3693. return
  3694. # Sync the in-memory item so subsequent code that reads item.status /
  3695. # item.started_at sees the values we just persisted.
  3696. item.status = "printing"
  3697. item.started_at = now_utc
  3698. for cleanup_path in cleanup_disk_paths:
  3699. try:
  3700. if cleanup_path.exists():
  3701. cleanup_path.unlink()
  3702. except OSError as cleanup_err:
  3703. logger.warning(
  3704. "TRANSIENT_LIBRARY_FILE_ORPHAN %s",
  3705. json.dumps(
  3706. {
  3707. "queue_item_id": item.id,
  3708. "path": str(cleanup_path),
  3709. "error": str(cleanup_err),
  3710. },
  3711. sort_keys=True,
  3712. ),
  3713. )
  3714. # Clear the awaiting-plate-clear flag now that we're starting a new print
  3715. printer_manager.set_awaiting_plate_clear(item.printer_id, False)
  3716. logger.info("Queue item %s: Status set to 'printing', sending print command...", item.id)
  3717. # Capture state before dispatch so the watchdog can detect whether the
  3718. # printer actually transitioned (#967). Also capture subtask_id so the
  3719. # watchdog can recognise "command landed but state hasn't flipped yet"
  3720. # on slow H2D transitions (#1078).
  3721. pre_status = printer_manager.get_status(item.printer_id)
  3722. pre_state = getattr(pre_status, "state", None) if pre_status else None
  3723. pre_subtask_id = getattr(pre_status, "subtask_id", None) if pre_status else None
  3724. pre_gcode_file = getattr(pre_status, "gcode_file", None) if pre_status else None
  3725. # #1721: respect the user's explicit timelapse choice. The #1397
  3726. # force-on at dispatch was removed because it caused per-layer nozzle
  3727. # parking on slicer profiles with Timelapse Type = Smooth. Finish-photo
  3728. # capture is now driven by the stg_cur=22 transition in bambu_mqtt.py
  3729. # ("Filament unloading", toolhead parked, bed not yet dropped) with a
  3730. # FINISH-state fallback — no need to force a video.
  3731. effective_timelapse = bool(item.timelapse)
  3732. # Start the print with AMS mapping, plate_id and print options.
  3733. # nozzle_mapping rides through verbatim — JSON string captured from
  3734. # Bambu Studio's project_file on VP intake (#1780); the MQTT layer
  3735. # parses + injects it only for dual-nozzle models so a null on every
  3736. # other model is a transparent pass-through.
  3737. started = printer_manager.start_print(
  3738. item.printer_id,
  3739. remote_filename,
  3740. plate_id=item.plate_id or 1,
  3741. ams_mapping=ams_mapping,
  3742. bed_levelling=item.bed_levelling,
  3743. flow_cali=item.flow_cali,
  3744. vibration_cali=item.vibration_cali,
  3745. layer_inspect=item.layer_inspect,
  3746. timelapse=effective_timelapse,
  3747. use_ams=item.use_ams,
  3748. nozzle_offset_cali=item.nozzle_offset_cali,
  3749. nozzle_mapping=item.nozzle_mapping,
  3750. )
  3751. if started:
  3752. # The command is away, so the expectation is now legitimate and must
  3753. # survive. Anything still in this dict when _dispatch_one exits gets
  3754. # rolled back.
  3755. self._unconfirmed_expected_print.pop(item.id, None)
  3756. logger.info("Queue item %s: Print started successfully - %s", item.id, filename)
  3757. # No dispatch-toast event here: the legacy bg-dispatch path kept
  3758. # status='processing' from upload start until the printer acked
  3759. # (or timed out). The frontend derives "Awaiting printer…" purely
  3760. # from upload_progress_pct >= 99.9; an explicit 'dispatched' WS
  3761. # event would push the status chip out of 'PROCESSING' prematurely
  3762. # — which is exactly what the screenshot at #1625-followup
  3763. # complained about.
  3764. # Register the local 3MF in the cover-cache so /cover skips FTP
  3765. # (#1166 follow-up). file_path was resolved earlier from either the
  3766. # archive or the library file row.
  3767. if file_path is not None:
  3768. cache_3mf_download(item.printer_id, remote_filename, file_path)
  3769. # Hold the printer against further dispatches until the watchdog
  3770. # confirms the printer transitioned (or until the hard timeout).
  3771. # Prevents multi-plate batches from triple-dispatching onto the
  3772. # same H2D Pro while it digests the first project_file (#1157).
  3773. self._mark_printer_dispatched(item.printer_id, pre_state, pre_subtask_id)
  3774. # Watchdog: if the printer never transitions out of pre_state AND
  3775. # never advances subtask_id, the MQTT publish was accepted locally but
  3776. # didn't reach the printer (half-broken session — same shape as
  3777. # #887/#936). Revert the queue item so the next dispatch can pick it
  3778. # up instead of leaving it stuck in "printing" (#967). subtask_id
  3779. # check avoids false reverts on slow H2D FINISH→PREPARE transitions
  3780. # that would otherwise cause the item to re-dispatch as a reprint
  3781. # of the just-finished job (#1078).
  3782. if pre_state:
  3783. spawn_background_task(
  3784. self._watchdog_print_start(
  3785. item.id,
  3786. item.printer_id,
  3787. pre_state,
  3788. pre_subtask_id,
  3789. pre_gcode_file,
  3790. created_by_id=toast_uid,
  3791. ),
  3792. name=f"watchdog-print-start-{item.id}",
  3793. )
  3794. # Get estimated time for notification.
  3795. #
  3796. # This used to fall back to `library_file.print_time_seconds`, a column
  3797. # LibraryFile does not have — the print time it knows about lives in
  3798. # `file_metadata`. So a library print whose archive carried no parseable
  3799. # print time (a plain .gcode, or a 3MF the parser could not read) raised
  3800. # AttributeError right here, *after* the printer had already been sent
  3801. # the job: the started-notification never fired, and the exception
  3802. # unwound the whole queue pass, so every other printer still waiting to
  3803. # be dispatched on that tick silently missed its turn.
  3804. #
  3805. # The queue item caches the print time at creation ("Cached from
  3806. # archive/library"), which is the value this was reaching for.
  3807. estimated_time = None
  3808. if archive and archive.print_time_seconds:
  3809. estimated_time = archive.print_time_seconds
  3810. elif item.print_time_seconds:
  3811. estimated_time = item.print_time_seconds
  3812. # Send job started notification
  3813. await notification_service.on_queue_job_started(
  3814. job_name=filename.replace(".gcode.3mf", "").replace(".3mf", ""),
  3815. printer_id=printer.id,
  3816. printer_name=printer.name,
  3817. db=db,
  3818. estimated_time=estimated_time,
  3819. )
  3820. # MQTT relay - publish queue job started
  3821. try:
  3822. from backend.app.services.mqtt_relay import mqtt_relay
  3823. await mqtt_relay.on_queue_job_started(
  3824. job_id=item.id,
  3825. filename=filename,
  3826. printer_id=printer.id,
  3827. printer_name=printer.name,
  3828. printer_serial=printer.serial_number,
  3829. )
  3830. except Exception:
  3831. pass # Don't fail if MQTT fails
  3832. else:
  3833. # Clean up uploaded file from SD card to prevent phantom prints
  3834. try:
  3835. await delete_file_async(
  3836. printer.ip_address,
  3837. printer.access_code,
  3838. remote_path,
  3839. printer_model=printer.model,
  3840. )
  3841. except Exception:
  3842. pass # Best-effort — don't fail the error handler
  3843. # Busy-refusal is a deferral, not a failure (#2598). The printer's
  3844. # state can flip from idle to active in the window between the
  3845. # pre-dispatch check above and this publish (the FTP upload takes
  3846. # seconds); start_print() then refuses to send project_file to the
  3847. # now-busy printer and returns False. Failing the item here would be
  3848. # wrong — the printer is fine, it is simply busy — so revert to
  3849. # pending and let a later tick dispatch it once the printer is idle,
  3850. # exactly like the pre-dispatch guard. Only a start_print() False on
  3851. # an idle/unknown printer is a genuine command failure.
  3852. post_dispatch_state = getattr(printer_manager.get_status(item.printer_id), "state", None)
  3853. if post_dispatch_state in _ACTIVE_PRINT_STATES:
  3854. logger.info(
  3855. "Queue item %s: printer %s became busy (state=%s) before the start "
  3856. "command was sent — deferring, reverting item to pending (#2598)",
  3857. item.id,
  3858. item.printer_id,
  3859. post_dispatch_state,
  3860. )
  3861. item.status = "pending"
  3862. item.started_at = None
  3863. await db.commit()
  3864. return
  3865. # Print command failed - revert status
  3866. item.status = "failed"
  3867. item.error_message = "Failed to send print command to printer"
  3868. item.completed_at = datetime.now(timezone.utc)
  3869. await db.commit()
  3870. logger.error(
  3871. f"Queue item {item.id}: Failed to start print on {printer.name} ({printer.model}) - "
  3872. f"printer_manager.start_print() returned False. "
  3873. f"This may indicate: printer not connected, MQTT error, unsupported model configuration, or firmware issue. "
  3874. f"Check printer status and backend logs for details."
  3875. )
  3876. # Send failure notification
  3877. await notification_service.on_queue_job_failed(
  3878. job_name=filename.replace(".gcode.3mf", "").replace(".3mf", ""),
  3879. printer_id=printer.id,
  3880. printer_name=printer.name,
  3881. reason="Failed to send print command to printer - check printer connection and status",
  3882. db=db,
  3883. )
  3884. try:
  3885. await ws_manager.send_queue_item_failed(
  3886. user_id=toast_uid,
  3887. queue_item_id=item.id,
  3888. printer_id=item.printer_id,
  3889. reason="start_command_failed",
  3890. )
  3891. except Exception:
  3892. pass
  3893. await self._power_off_if_needed(db, item)
  3894. @staticmethod
  3895. async def _watchdog_print_start(
  3896. queue_item_id: int,
  3897. printer_id: int,
  3898. pre_state: str,
  3899. pre_subtask_id: str | None = None,
  3900. pre_gcode_file: str | None = None,
  3901. timeout: float = 90.0,
  3902. phase_b_timeout: float = 180.0,
  3903. poll_interval: float = 3.0,
  3904. created_by_id: int | None = None,
  3905. ) -> None:
  3906. """Revert a queue item if the printer never acknowledges the start command.
  3907. Bambuddy optimistically marks the queue item as "printing" right after the
  3908. MQTT project_file publish succeeds locally. The watchdog runs in two phases:
  3909. Phase A (up to ``timeout``): wait for either an active-state transition
  3910. or a ``subtask_id`` advance past ``pre_subtask_id``. State alone is the
  3911. primary signal; subtask_id advance handles the H2D case where state can
  3912. sit at FINISH for ~50 s after the printer accepted ``project_file``
  3913. before flipping to PREPARE (#1078). If neither happens, the MQTT publish
  3914. was lost on a half-broken session (#887/#936) — revert and force
  3915. reconnect (the #967 recovery path).
  3916. Phase B (up to ``phase_b_timeout``, only if Phase A exited on subtask_id
  3917. alone): keep watching for the active-state transition. subtask_id alone
  3918. proves the file landed but not that the printer started — and a printer
  3919. that accepts the command but stays at IDLE/FINISH indefinitely (e.g.
  3920. cloud+LAN re-auth dance after a power cycle on old firmware, #1678)
  3921. used to leave the queue item stuck in 'printing' forever because the
  3922. old watchdog returned success as soon as subtask_id advanced. If Phase
  3923. B times out, revert the queue item so the user can retry without
  3924. restarting Bambuddy. Skip ``force_reconnect`` here: the file landed and
  3925. a forced reconnect mid-parse triggers 0500_4003 (#1150).
  3926. Phase A timeout raised from 45 s → 90 s as belt-and-braces for slow
  3927. transitions that also don't emit an early subtask_id tick.
  3928. Both phases also watch for ``HMS_MQTT_VERIFY_FAILED``. A printer that
  3929. refuses to verify our commands will never start this job or any other,
  3930. so waiting out the full 270 s and re-uploading the 3MF twice more only
  3931. burns an upload slot the rest of the farm is queued behind — that path
  3932. is for a printer that might still come good, which this one cannot
  3933. (#2732). It fails the item on the spot with the actual reason instead.
  3934. """
  3935. last_status = None
  3936. landed_on_subtask = False
  3937. # Latched, not level-tested: state.hms_errors is rebuilt from scratch on
  3938. # every push carrying an `hms` key, so the fault can come and go between
  3939. # 3-second polls. Seeing it once inside the dispatch window is enough.
  3940. command_rejected = False
  3941. # Latched for the same reason as command_rejected: drying can finish, or
  3942. # be stopped by the user, part-way through the dispatch window. Seeing it
  3943. # once is what matters — it is the state the printer was in when it
  3944. # declined to start (#2758).
  3945. drying_ams_ids: list[int] = []
  3946. deadline = time.monotonic() + timeout
  3947. while time.monotonic() < deadline:
  3948. await asyncio.sleep(poll_interval)
  3949. status = printer_manager.get_status(printer_id)
  3950. if not status:
  3951. # Printer disconnected — don't mess with the DB. Drop the
  3952. # in-memory dispatch hold too so a fresh dispatch can retry
  3953. # once the printer comes back; the hard timeout would
  3954. # otherwise hold the printer unnecessarily.
  3955. scheduler._release_dispatch_hold(printer_id)
  3956. return
  3957. last_status = status
  3958. if status.state in _ACTIVE_PRINT_STATES:
  3959. # Printer is actively processing the job — release the
  3960. # post-dispatch hold so the next pending item for this printer
  3961. # can be evaluated normally. We do NOT accept arbitrary state
  3962. # transitions: a printer going FINISH -> IDLE (user dismissed
  3963. # the post-print prompt without accepting our project_file)
  3964. # would otherwise look like "command landed" and leave the
  3965. # queue item stuck in 'printing' forever (#1370).
  3966. scheduler._release_dispatch_hold(printer_id)
  3967. try:
  3968. await ws_manager.send_queue_item_acked(
  3969. user_id=created_by_id,
  3970. queue_item_id=queue_item_id,
  3971. printer_id=printer_id,
  3972. )
  3973. except Exception:
  3974. pass
  3975. return
  3976. drying_ams_ids = drying_ams_ids or _drying_ams_ids(status)
  3977. # Checked only after the active-state exit above: a stale HMS left
  3978. # over from an earlier job must never abort a print that is visibly
  3979. # running. An actually-refused command leaves the printer idle, so
  3980. # this ordering costs the detection nothing.
  3981. if _mqtt_commands_rejected(status):
  3982. command_rejected = True
  3983. break
  3984. if pre_subtask_id is not None and status.subtask_id is not None and status.subtask_id != pre_subtask_id:
  3985. # Phase A exit — printer accepted the file (subtask_id flipped
  3986. # to our submission id). Don't return yet: the printer may
  3987. # have accepted the command but never actually start (e.g.
  3988. # cloud+LAN re-auth dance after a power cycle, #1678). Phase
  3989. # B watches for the active-state transition.
  3990. landed_on_subtask = True
  3991. break
  3992. if landed_on_subtask and not command_rejected:
  3993. phase_b_deadline = time.monotonic() + phase_b_timeout
  3994. while time.monotonic() < phase_b_deadline:
  3995. await asyncio.sleep(poll_interval)
  3996. status = printer_manager.get_status(printer_id)
  3997. if not status:
  3998. scheduler._release_dispatch_hold(printer_id)
  3999. return
  4000. last_status = status
  4001. if status.state in _ACTIVE_PRINT_STATES:
  4002. scheduler._release_dispatch_hold(printer_id)
  4003. try:
  4004. await ws_manager.send_queue_item_acked(
  4005. user_id=created_by_id,
  4006. queue_item_id=queue_item_id,
  4007. printer_id=printer_id,
  4008. )
  4009. except Exception:
  4010. pass
  4011. return
  4012. drying_ams_ids = drying_ams_ids or _drying_ams_ids(status)
  4013. # Same ordering rule as Phase A: a running print wins over a
  4014. # lingering HMS.
  4015. if _mqtt_commands_rejected(status):
  4016. command_rejected = True
  4017. break
  4018. # No active-state transition. Revert the item so the scheduler can retry.
  4019. # Drop the in-memory hold so the retry isn't blocked by it.
  4020. scheduler._release_dispatch_hold(printer_id)
  4021. # Logged on every failed dispatch window, not just the last one, so a
  4022. # support bundle shows the correlation from the first attempt rather than
  4023. # only after the retry budget is spent (#2758).
  4024. if drying_ams_ids:
  4025. logger.info(
  4026. "Queue item %s: printer %d never started while AMS %s drying — this may be why, see #2758",
  4027. queue_item_id,
  4028. printer_id,
  4029. ", ".join(str(i) for i in drying_ams_ids),
  4030. )
  4031. # Four outcomes from the revert attempt, each routed differently:
  4032. # "reverted": row flipped from printing -> pending, run recovery
  4033. # "gave_up": same, but the retry budget is spent — row failed
  4034. # rather than pending, so it stops going round again
  4035. # "already_moved_on": item.status != 'printing' (completed/cancelled by
  4036. # on_print_complete or user). Skip recovery entirely
  4037. # — the print clearly landed somewhere even if the
  4038. # watchdog didn't see the active-state transition.
  4039. # "revert_failed": SQLite contention exhausted retries. Still run
  4040. # recovery so the MQTT session gets a fresh client_id
  4041. # on the half-broken-session path.
  4042. #
  4043. # The retry budget (#2555): reverting to 'pending' hands the item straight
  4044. # back to the next queue pass, which re-uploads the whole 3MF and waits out
  4045. # the watchdog again. For a printer that is genuinely wedged that loop never
  4046. # ends — the reporter had one printer "since this morning still not launch"
  4047. # — and each lap also consumes an upload slot that the other printers in the
  4048. # farm are waiting on. Retrying is right; retrying forever is not.
  4049. async def _do_revert(db):
  4050. item = await db.get(PrintQueueItem, queue_item_id)
  4051. if not item or item.status != "printing":
  4052. return "already_moved_on"
  4053. item.dispatch_attempts = (item.dispatch_attempts or 0) + 1
  4054. item.started_at = None
  4055. # Charge the attempt to the candidate that was actually dispatched, so
  4056. # a cross-model item (#671) reaches for its other file next lap instead
  4057. # of retrying the printer that just failed to start. Matched by file
  4058. # because that is what the resolver copied onto the row.
  4059. if item.library_file_id is not None:
  4060. await db.execute(
  4061. update(PrintQueueVariant)
  4062. .where(PrintQueueVariant.queue_item_id == item.id)
  4063. .where(PrintQueueVariant.library_file_id == item.library_file_id)
  4064. .values(attempt_count=PrintQueueVariant.attempt_count + 1)
  4065. )
  4066. if command_rejected:
  4067. # No retry budget for this one: the printer refused to verify the
  4068. # command, and re-uploading the same 3MF to the same printer will
  4069. # be refused the same way. Fail now with the fix rather than after
  4070. # three laps of a message about SD cards (#2732).
  4071. item.status = "failed"
  4072. item.error_message = (
  4073. "The printer rejected the print command: MQTT command verification failed "
  4074. "(HMS 0500-0500-0001-0007). Enable Developer Mode on the printer, restart it, "
  4075. "then start the job again."
  4076. )
  4077. item.completed_at = datetime.now(timezone.utc)
  4078. await db.commit()
  4079. return "command_rejected"
  4080. if item.dispatch_attempts >= DISPATCH_MAX_ATTEMPTS:
  4081. item.status = "failed"
  4082. if drying_ams_ids:
  4083. # #2758: the generic message below sent the reporter looking
  4084. # at the SD card while the actual obstacle — AMS units in a
  4085. # drying cycle — was on screen the whole time. Name what we
  4086. # observed and let the user judge it; Bambuddy does not stop
  4087. # the cycle itself, because on this hardware drying can run
  4088. # alongside a print and stopping it may not be the fix.
  4089. units = ", ".join(f"AMS {i}" for i in drying_ams_ids)
  4090. item.error_message = (
  4091. f"The printer accepted the file but never started printing, after "
  4092. f"{item.dispatch_attempts} attempts. {units} "
  4093. f"{'was' if len(drying_ams_ids) == 1 else 'were'} drying throughout — "
  4094. f"some printers refuse to begin a print while an AMS is in a drying "
  4095. f"cycle, and an AMS drying without its external power supply can also "
  4096. f"leave too little power for the start-of-print calibration. Stop the "
  4097. f"drying, or connect the AMS power supply, and start the job again."
  4098. )
  4099. else:
  4100. item.error_message = (
  4101. f"The printer accepted the file but never started printing, after "
  4102. f"{item.dispatch_attempts} attempts. Check the printer's screen for a "
  4103. f"prompt or error, confirm its SD card is readable, and start the job again."
  4104. )
  4105. item.completed_at = datetime.now(timezone.utc)
  4106. await db.commit()
  4107. return "gave_up"
  4108. item.status = "pending"
  4109. await db.commit()
  4110. return "reverted"
  4111. try:
  4112. revert_outcome = await run_with_retry(_do_revert, label=f"watchdog revert item={queue_item_id}")
  4113. except Exception as e:
  4114. logger.warning(
  4115. "Queue item %s: failed to revert to 'pending' (printer %d): %s — "
  4116. "scheduler may keep treating this item as in-flight",
  4117. queue_item_id,
  4118. printer_id,
  4119. e,
  4120. )
  4121. revert_outcome = "revert_failed"
  4122. if revert_outcome == "already_moved_on":
  4123. # Preserves the pre-#1370 early-return: if on_print_complete (or any
  4124. # other path) already moved the item past 'printing', don't run the
  4125. # MQTT session-recovery logic below — a forced reconnect on a healthy
  4126. # session breaks ongoing prints on the same printer.
  4127. return
  4128. total_timeout = timeout + (phase_b_timeout if landed_on_subtask else 0.0)
  4129. if revert_outcome == "command_rejected":
  4130. logger.error(
  4131. "Queue item %s: printer %d reported HMS %s (MQTT command verification "
  4132. "failed) — the print command was rejected, not lost. Failing the item "
  4133. "without retrying; enable Developer Mode on the printer and restart it (#2732)",
  4134. queue_item_id,
  4135. printer_id,
  4136. HMS_MQTT_VERIFY_FAILED,
  4137. )
  4138. await scheduler._notify_dispatch_gave_up(
  4139. queue_item_id,
  4140. printer_id,
  4141. created_by_id,
  4142. reason="Printer rejected the print command (MQTT command verification failed)",
  4143. )
  4144. # Same reasoning as the landed_on_subtask path below: the file is on
  4145. # the printer and a forced reconnect would only add 0500_4003 to a
  4146. # problem that has nothing to do with the MQTT session (#1150).
  4147. return
  4148. if revert_outcome == "gave_up":
  4149. logger.error(
  4150. "Queue item %s: printer %d never started the print after %d dispatch "
  4151. "attempts (last one waited %.0fs) — marking the item failed instead of "
  4152. "re-uploading it again (#2555)",
  4153. queue_item_id,
  4154. printer_id,
  4155. DISPATCH_MAX_ATTEMPTS,
  4156. total_timeout,
  4157. )
  4158. await scheduler._notify_dispatch_gave_up(queue_item_id, printer_id, created_by_id)
  4159. elif revert_outcome == "reverted":
  4160. if landed_on_subtask:
  4161. logger.warning(
  4162. "Queue item %s: printer %d accepted project_file (subtask_id "
  4163. "advanced) but never transitioned to an active state within "
  4164. "%.0fs — printer wedged post-acceptance; reverted to 'pending' "
  4165. "for retry (#1678)",
  4166. queue_item_id,
  4167. printer_id,
  4168. total_timeout,
  4169. )
  4170. else:
  4171. logger.warning(
  4172. "Queue item %s: printer %d did not respond to print command within "
  4173. "%.0fs (state still %s, subtask_id still %s) — reverted to 'pending' "
  4174. "for retry (#967)",
  4175. queue_item_id,
  4176. printer_id,
  4177. timeout,
  4178. pre_state,
  4179. pre_subtask_id,
  4180. )
  4181. # Phase B was entered iff subtask_id advanced, which means the
  4182. # project_file landed on the printer. A forced reconnect at this point
  4183. # would interrupt the printer's parse and trigger 0500_4003 (#1150) —
  4184. # skip the recovery entirely.
  4185. if landed_on_subtask:
  4186. return
  4187. # Phase A timeout path: if the printer's gcode_file changed since
  4188. # pre-dispatch, the project_file command landed and the printer is
  4189. # parsing — a forced reconnect mid-parse triggers 0500_4003 (#1150).
  4190. # If gcode_file is unchanged, the publish was silently swallowed
  4191. # (#887/#936) and force_reconnect recovery is what we want.
  4192. client = printer_manager.get_client(printer_id)
  4193. current_gcode_file = getattr(last_status, "gcode_file", None) if last_status else None
  4194. publish_landed = current_gcode_file is not None and current_gcode_file != pre_gcode_file
  4195. if publish_landed:
  4196. logger.warning(
  4197. "Queue item %s: gcode_file changed to %r (was %r) — printer "
  4198. "received the command and is parsing slowly. Skipping forced "
  4199. "MQTT reconnect to avoid 0500_4003 mid-parse (#1150).",
  4200. queue_item_id,
  4201. current_gcode_file,
  4202. pre_gcode_file,
  4203. )
  4204. elif client and hasattr(client, "force_reconnect_stale_session"):
  4205. client.force_reconnect_stale_session(
  4206. f"queue print command unacknowledged after {timeout:.0f}s "
  4207. f"(state still {pre_state}, gcode_file {current_gcode_file!r})"
  4208. )
  4209. # Global scheduler instance
  4210. scheduler = PrintScheduler()