Overview

Namespaces

  • NetBazzlineZfCliGenerator
    • Controller
      • Console
    • Service
      • ProcessPipe
        • Filter
        • Transformer

Classes

  • NetBazzlineZfCliGenerator\Controller\Console\IndexController
  • NetBazzlineZfCliGenerator\Controller\Console\IndexControllerFactory
  • NetBazzlineZfCliGenerator\Service\GenerateCliContentFactory
  • NetBazzlineZfCliGenerator\Service\GenerateConfigurationContentFactory
  • NetBazzlineZfCliGenerator\Service\ProcessPipe\Filter\RemoveColorsAndModuleHeadlines
  • NetBazzlineZfCliGenerator\Service\ProcessPipe\Filter\RemoveFirstLinesAndLastLine
  • NetBazzlineZfCliGenerator\Service\ProcessPipe\Filter\RemoveIndexDotPhpFromLines
  • NetBazzlineZfCliGenerator\Service\ProcessPipe\Transformer\DumpCliContent
  • NetBazzlineZfCliGenerator\Service\ProcessPipe\Transformer\DumpConfigurationContent
  • NetBazzlineZfCliGenerator\Service\ProcessPipe\Transformer\FetchApplicationOutput
  • NetBazzlineZfCliGenerator\Service\ProcessPipe\Transformer\ParseToConfiguration
  • 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: 
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2015-07-11 
 */

namespace NetBazzlineZfCliGenerator\Service\ProcessPipe\Transformer;

use Net\Bazzline\Component\ProcessPipe\ExecutableException;
use Net\Bazzline\Component\ProcessPipe\ExecutableInterface;

class DumpConfigurationContent implements ExecutableInterface
{
    /** @var int */
    private $timestamp;

    /**
     * @param int $timestamp
     */
    public function setTimestamp($timestamp)
    {
        $this->timestamp = $timestamp;
    }

    /**
     * @param mixed $input
     * @return mixed
     * @throws ExecutableException
     */
    public function execute($input = null)
    {
        if (!is_array($input)) {
            throw new ExecutableException(
                'input must be an array'
            );
        }

        if (empty($input)) {
            throw new ExecutableException(
                'empty input provided'
            );
        }

        $output = '<?php' . PHP_EOL;
        $output .= '/**' . PHP_EOL .
            ' * @author Net\Bazzline Zf Cli Generator' . PHP_EOL .
            ' * @since ' . date('Y-m-d H:i:s', $this->timestamp) . PHP_EOL .
            ' */' . PHP_EOL . PHP_EOL;
        $output .= 'return array(' . PHP_EOL;
        $output .= $this->dumpConfiguration($input, 'callApplication');
        $output .= ');';

        return $output;
    }

    /**
     * @param array $configuration
     * @param string $closureName
     * @param string $indention
     * @param int $level
     * @return string
     * @todo make closureName configurable
     */
    private function dumpConfiguration(array $configuration, $closureName, $indention = '    ', $level = 1)
    {
        $content        = '';
        $localIndention = str_repeat($indention, $level);
        end($configuration);
        $lastIndex      = key($configuration);

        foreach ($configuration as $index => $values) {
            if (empty($values)) {
                $content .= $localIndention . '\'' . $index . '\' => $' . $closureName;
            } else {
                $content .= $localIndention . '\'' . $index . '\' => array(' . PHP_EOL;
                $content .= $this->dumpConfiguration($values, $closureName, $indention, $level + 1);
                $content .= $localIndention . ')';
            }
            if ($index !== $lastIndex) {
                $content .= ',';
            }
            $content .= PHP_EOL;
        }

        return $content;
    }
}
PHP Command Line Generator Module for Zend Framework 2 by bazzline.net API documentation generated by ApiGen