<?php

/*
 * This file is part of Alchemy\BinaryDriver.
 *
 * (c) Alchemy <info@alchemy.fr>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace BuddyBossPlatform\Alchemy\BinaryDriver;

use BuddyBossPlatform\Alchemy\BinaryDriver\Exception\ExecutionFailureException;
use BuddyBossPlatform\Psr\Log\LoggerInterface;
use SplObjectStorage;
use BuddyBossPlatform\Symfony\Component\Process\Exception\RuntimeException;
use BuddyBossPlatform\Symfony\Component\Process\Process;
class ProcessRunner implements ProcessRunnerInterface
{
    /** @var LoggerInterface */
    private $logger;
    /** @var string */
    private $name;
    public function __construct(LoggerInterface $logger, $name)
    {
        $this->logger = $logger;
        $this->name = $name;
    }
    /**
     * {@inheritdoc}
     *
     * @return ProcessRunner
     */
    public function setLogger(LoggerInterface $logger)
    {
        $this->logger = $logger;
        return $this;
    }
    /**
     * @return LoggerInterface
     */
    public function getLogger()
    {
        return $this->logger;
    }
    /**
     * {@inheritdoc}
     */
    public function run(Process $process, SplObjectStorage $listeners, $bypassErrors)
    {
        $this->logger->info(\sprintf('%s running command %s', $this->name, $process->getCommandLine()));
        try {
            $process->run($this->buildCallback($listeners));
        } catch (RuntimeException $e) {
            if (!$bypassErrors) {
                $this->doExecutionFailure($process->getCommandLine(), $process->getErrorOutput(), $e);
            }
        }
        if (!$bypassErrors && !$process->isSuccessful()) {
            $this->doExecutionFailure($process->getCommandLine(), $process->getErrorOutput());
        } elseif (!$process->isSuccessful()) {
            $this->logger->error($this->createErrorMessage($process->getCommandLine(), $process->getErrorOutput()));
            return;
        } else {
            $this->logger->info(\sprintf('%s executed command successfully', $this->name));
            return $process->getOutput();
        }
    }
    private function buildCallback(SplObjectStorage $listeners)
    {
        return function ($type, $data) use($listeners) {
            foreach ($listeners as $listener) {
                $listener->handle($type, $data);
            }
        };
    }
    private function doExecutionFailure($command, $errorOutput, \Exception $e = null)
    {
        $this->logger->error($this->createErrorMessage($command, $errorOutput));
        throw new ExecutionFailureException($this->name, $command, $errorOutput, $e ? $e->getCode() : 0, $e ?: null);
    }
    private function createErrorMessage($command, $errorOutput)
    {
        return \sprintf('%s failed to execute command %s: %s', $this->name, $command, $errorOutput);
    }
}
