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: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2017-03-26
 */

namespace Net\Bazzline\Component\ApacheServerStatusParser\DomainModel;

class Detail implements ReduceDataAbleToArrayInterface
{
    const REDUCED_DATA_TO_ARRAY_KEY_HTTP_METHOD         = 'http_method';
    const REDUCED_DATA_TO_ARRAY_KEY_IP_ADDRESS          = 'ip_address';
    const REDUCED_DATA_TO_ARRAY_KEY_PID                 = 'pid';
    const REDUCED_DATA_TO_ARRAY_KEY_STATUS              = 'status';
    const REDUCED_DATA_TO_ARRAY_KEY_URI_AUTHORITY       = 'uri_authority';
    const REDUCED_DATA_TO_ARRAY_KEY_URI_PATH_WITH_QUERY = 'uri_path_with_query';

    /** @var string */
    private $httpMethod;

    /** @var string */
    private $ipAddress;

    /** @var string */
    private $pid;

    /** @var string */
    private $status;

    /** @var string */
    private $uriAuthority;

    /** @var string */
    private $uriPathWithQuery;

    /**
     * Detail constructor.
     *
     * @param string $httpMethod
     * @param string $ipAddress
     * @param string $pid
     * @param string $status
     * @param string $uriAuthority
     * @param string $uriPathWithQuery
     */
    public function __construct(
        $httpMethod,
        $ipAddress,
        $pid,
        $status,
        $uriAuthority,
        $uriPathWithQuery
    ) {
        $this->httpMethod       = $httpMethod;
        $this->ipAddress        = $ipAddress;
        $this->pid              = $pid;
        $this->status           = $status;
        $this->uriAuthority     = $uriAuthority;
        $this->uriPathWithQuery = $uriPathWithQuery;
    }

    /**
     * @return string
     */
    public function httpMethod()
    {
        return $this->httpMethod;
    }

    /**
     * @return string
     */
    public function ipAddress()
    {
        return $this->ipAddress;
    }

    /**
     * @return string
     */
    public function pid()
    {
        return $this->pid;
    }

    /**
     * @return string
     */
    public function status()
    {
        return $this->status;
    }

    /**
     * @return string
     */
    public function uriAuthority()
    {
        return $this->uriAuthority;
    }

    /**
     * @return string
     */
    public function uriPathWithQuery()
    {
        return $this->uriPathWithQuery;
    }

    /**
     * @return array
     *  [
     *      'http_method'           : string,
     *      'ip_address'            : string,
     *      'pid'                   : string,
     *      'status'                : string,
     *      'uri_authority'         : string,
     *      'uri_path_with_query'   : string
     *  ]
     */
    public function reduceDataToArray()
    {
        return [
            self::REDUCED_DATA_TO_ARRAY_KEY_HTTP_METHOD          => $this->httpMethod,
            self::REDUCED_DATA_TO_ARRAY_KEY_IP_ADDRESS           => $this->ipAddress,
            self::REDUCED_DATA_TO_ARRAY_KEY_PID                  => $this->pid,
            self::REDUCED_DATA_TO_ARRAY_KEY_STATUS               => $this->status,
            self::REDUCED_DATA_TO_ARRAY_KEY_URI_AUTHORITY        => $this->uriAuthority,
            self::REDUCED_DATA_TO_ARRAY_KEY_URI_PATH_WITH_QUERY  => $this->uriPathWithQuery
        ];
    }
}
PHP Apache Status Parser by bazzline.net API documentation generated by ApiGen