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:  58:  59:  60:  61:  62:  63:  64:  65:  66:  67:  68:  69:  70:  71:  72:  73:  74:  75:  76:  77:  78:  79:  80:  81:  82:  83:  84:  85:  86:  87:  88:  89:  90:  91:  92:  93:  94:  95:  96:  97:  98:  99: 100: 101: 102: 103: 104: 
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2017-04-11
 */

namespace Net\Bazzline\Component\ApacheServerStatusParser\Service\Builder;

use JonasRudolph\PHPComponents\StringUtility\Implementation\StringUtility;
use Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Fetcher\FetcherInterface;
use Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Processor\Processor;
use Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Storage\DetailOnlyStorage;
use Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Storage\FullStorage;
use Net\Bazzline\Component\ApacheServerStatusParser\Service\Content\Storage\StorageInterface;
use Net\Bazzline\Component\ApacheServerStatusParser\Service\StateMachine\SectionStateMachine;
use RuntimeException;

abstract class AbstractStorageBuilder implements BuilderInterface
{
    const PARSE_MODE_ALL            = 'all';
    const PARSE_MODE_DETAIL_ONLY    = 'detail_only';

    /** @var Processor */
    protected $processor;

    /** @var string */
    protected $selectedParseMode;

    public function selectParseModeAllUpfront()
    {
        $this->selectedParseMode = self::PARSE_MODE_ALL;
    }

    public function selectParseModeDetailOnlyUpfront()
    {
        $this->selectedParseMode = self::PARSE_MODE_DETAIL_ONLY;
    }

    /**
     * @throws RuntimeException
     */
    public function build()
    {
        //begin of dependencies
        $fetcher        = $this->buildFetcher();
        $stateMachine   = new SectionStateMachine();
        $stringUtility  = new StringUtility();
        //end of dependencies

        //begin of business logic
        if ($this->isParseModeAllSelected()) {
            $storage = new FullStorage($stringUtility);
        } else if ($this->isParseModeDetailOnly()) {
            $storage = new DetailOnlyStorage($stringUtility);
        } else {
            throw new RuntimeException(
                'no parse mode set'
            );
        }

        $processor = new Processor(
            $stateMachine,
            $stringUtility,
            $storage
        );

        foreach ($fetcher->fetch() as $line) {
            $processor->process($line);
        }

        $this->processor = $processor;
        //end of business logic
    }

    /**
     * @return StorageInterface
     */
    public function andGetStorageAfterTheBuild()
    {
        return $this->processor->getStorage();
    }

    /**
     * @return FetcherInterface
     */
    abstract protected function buildFetcher();

    /**
     * @return bool
     */
    protected function isParseModeAllSelected()
    {
        return ($this->selectedParseMode === self::PARSE_MODE_ALL);
    }

    /**
     * @return bool
     */
    protected function isParseModeDetailOnly()
    {
        return ($this->selectedParseMode === self::PARSE_MODE_DETAIL_ONLY);
    }
}
PHP Apache Status Parser by bazzline.net API documentation generated by ApiGen