| 1 |  |  | <?php | 
            
                                                                                                            
                            
            
                                    
            
            
                | 2 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 3 |  |  | namespace Darkilliant\ProcessBundle\ProcessNotifier; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 4 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 5 |  |  | use Darkilliant\ProcessBundle\Console\ProgressBar; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 6 |  |  | use Darkilliant\ProcessBundle\State\ProcessState; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 7 |  |  | use Darkilliant\ProcessBundle\Step\IterableStepInterface; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 8 |  |  | use Darkilliant\ProcessBundle\Step\StepInterface; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 9 |  |  | use Symfony\Component\Console\ConsoleEvents; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 10 |  |  | use Symfony\Component\Console\Event\ConsoleEvent; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 11 |  |  | use Symfony\Component\Console\Output\NullOutput; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 12 |  |  | use Symfony\Component\EventDispatcher\EventSubscriberInterface; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 13 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 14 |  |  | /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 15 |  |  |  * @internal | 
            
                                                                                                            
                            
            
                                    
            
            
                | 16 |  |  |  * Class ProgressBarProcessNotifier | 
            
                                                                                                            
                            
            
                                    
            
            
                | 17 |  |  |  */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 18 |  |  | class ProgressBarProcessNotifier implements EventSubscriberInterface, ProcessNotifierInterface | 
            
                                                                                                            
                            
            
                                    
            
            
                | 19 |  |  | { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 20 |  |  |     /** @var ProgressBar */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 21 |  |  |     private $progressBar; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 22 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 23 | 10 |  |     public function __construct(ProgressBar $progressBar) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 24 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 25 | 10 |  |         $this->progressBar = $progressBar; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 26 | 10 |  |         $this->progressBar->setOutput(new NullOutput()); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 27 | 10 |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 28 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 29 | 1 |  |     public static function getSubscribedEvents() | 
            
                                                                                                            
                            
            
                                    
            
            
                | 30 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 31 |  |  |         return [ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 32 | 1 |  |             ConsoleEvents::COMMAND => ['onCommand', 255], | 
            
                                                                                                            
                            
            
                                    
            
            
                | 33 |  |  |         ]; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 34 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 35 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 36 | 1 |  |     public function onCommand(ConsoleEvent $event) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 37 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 38 | 1 |  |         $this->progressBar->setOutput($event->getOutput()); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 39 | 1 |  |     } | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 40 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 41 | 6 |  |     public function onStartProcess(ProcessState $state, StepInterface $step) | 
            
                                                                        
                            
            
                                    
            
            
                | 42 |  |  |     { | 
            
                                                                        
                            
            
                                    
            
            
                | 43 | 6 |  |         return; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 44 | 1 |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 45 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 46 |  |  |     public function onStartIterableProcess(ProcessState $state, StepInterface $step) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 47 | 5 |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 48 | 1 |  |         if (!$step instanceof IterableStepInterface) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 49 |  |  |             return null; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 50 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 51 | 4 |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 52 |  |  |         if (!$state->getOptions()['progress_bar']) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 53 | 4 |  |             return null; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 54 | 1 |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 55 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 56 |  |  |         $count = $step->count($state); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 57 | 3 |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 58 | 3 |  |         if (!$count) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 59 |  |  |             return null; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 60 | 2 |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 61 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 62 | 2 |  |         $this->progressBar->create($count, get_class($step)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 63 | 1 |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 64 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 65 |  |  |     public function onUpdateIterableProcess(ProcessState $state, StepInterface $step) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 66 | 1 |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 67 | 1 |  |         if (!$step instanceof IterableStepInterface) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 68 |  |  |             return null; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 69 | 2 |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 70 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 71 | 2 |  |         if (!$state->getOptions()['progress_bar']) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 72 | 1 |  |             return; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 73 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 74 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 75 | 1 |  |         $this->progressBar->setProgress($step->getProgress($state)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 76 | 1 |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 77 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 78 |  |  |     public function onEndProcess(ProcessState $state, StepInterface $step) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 79 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 80 |  |  |         if (!$step instanceof IterableStepInterface) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 81 |  |  |             return null; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 82 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 83 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 84 |  |  |         if (!$state->getOptions()['progress_bar']) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 85 |  |  |             return; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 86 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 87 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 88 |  |  |         $this->progressBar->finish(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 89 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 90 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 91 |  |  |     public function onExecutedProcess(ProcessState $state, StepInterface $step) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 92 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 93 |  |  |     } | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 94 |  |  | } | 
            
                                                        
            
                                    
            
            
                | 95 |  |  |  |