print_scheduler.py 237 KB

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