print_scheduler.py 243 KB

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