480{
482 return;
483 }
484
486
487 if (unit.custom_processor) {
488 unit.custom_processor(unit.root_buffer, processing_units);
489 return;
490 }
491
493
494
495
496
497
498 root_buffer->process_default();
499
500 unit.get_chain()->process(root_buffer);
501
503
504 if (auto chain = root_buffer->get_processing_chain()) {
505 chain->process_final(root_buffer);
506 }
507}
std::shared_ptr< BufferProcessingChain > m_global_processing_chain
Global processing chain applied to all tokens.
std::unique_ptr< TokenUnitManager > m_unit_manager
Token/unit storage and lifecycle.
std::unique_ptr< BufferAccessControl > m_access_control
Buffer and unit access operations.