Overview

Namespaces

  • Net
    • Bazzline
      • Component
        • ApacheServerStatusParser
          • DomainModel
          • Service
            • Builder
            • Content
              • Fetcher
              • Parser
              • Processor
              • Storage
            • StateMachine

Classes

  • Net\Bazzline\Component\ApacheServerStatusParser\DomainModel\Detail
  • Net\Bazzline\Component\ApacheServerStatusParser\DomainModel\Information
  • Net\Bazzline\Component\ApacheServerStatusParser\DomainModel\Scoreboard
  • Net\Bazzline\Component\ApacheServerStatusParser\DomainModel\Statistic
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Builder\AbstractStorageBuilder
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Builder\LocalStorageBuilder
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Builder\ParserBuilder
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Builder\ParserBuilderFactory
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Builder\RemoteStorageBuilder
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Fetcher\AbstractFetcher
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Fetcher\FileFetcher
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Fetcher\HttpFetcher
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Parser\DetailLineParser
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Parser\DetailListOfLineParser
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Parser\InformationListOfLineParser
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Parser\ScoreboardListOfLineParser
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Parser\StatisticListOfLineParser
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Processor\Processor
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Storage\DetailOnlyStorage
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Storage\FullStorage
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\StateMachine\SectionStateMachine

Interfaces

  • Net\Bazzline\Component\ApacheServerStatusParser\DomainModel\ReduceDataAbleToArrayInterface
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Builder\BuilderInterface
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Fetcher\FetcherInterface
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Parser\LineParserInterface
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Parser\ListOfLineParserInterface
  • Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Storage\StorageInterface
  • Overview
  • Namespace
  • Class
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2017-04-07
 */

namespace Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Parser;

use InvalidArgumentException;
use Net\Bazzline\Component\ApacheServerStatusParser\DomainModel\Detail;

class DetailListOfLineParser implements ListOfLineParserInterface
{
    /** @var DetailLineParser */
    private $detailLineParser;

    /**
     * DetailListOfLineParser constructor.
     *
     * @param DetailLineParser $detailLineParser
     */
    public function __construct(
        DetailLineParser $detailLineParser
    ) {
        $this->detailLineParser = $detailLineParser;
    }

    /**
     * @param string[] $listOfLine
     *
     * @return Detail[]
     * @throws InvalidArgumentException
     */
    public function parse(array $listOfLine)
    {
        //begin of dependencies
        $detailLineParser           = $this->detailLineParser;
        $listOfParsedDetailLines    = [];
        //end of dependencies

        //begin of business logic
        foreach ($listOfLine as $line) {
            try {
                $listOfParsedDetailLines[] = $detailLineParser->parse($line);
            } catch (InvalidArgumentException $invalidArgumentException) {
                //@todo
                //echo get_class($detailLineParser) . ' could not parse the following line:' . PHP_EOL;
                //echo '    ' . $line . PHP_EOL;
                //echo $invalidArgumentException->getMessage() . PHP_EOL;
            }
        }

        return $listOfParsedDetailLines;
        //end of business logic
    }
}
PHP Apache Status Parser by bazzline.net API documentation generated by ApiGen