Overview

Namespaces

  • Net
    • Bazzline
      • Propel
        • Behavior
          • EntityInstantiator
  • None

Classes

  • AddToEntityInstantiatorBehavior
  • Net\Bazzline\Propel\Behavior\EntityInstantiator\AbstractEntity
  • Net\Bazzline\Propel\Behavior\EntityInstantiator\Configuration
  • Net\Bazzline\Propel\Behavior\EntityInstantiator\EntityCollection
  • Net\Bazzline\Propel\Behavior\EntityInstantiator\FileContentGenerator
  • Net\Bazzline\Propel\Behavior\EntityInstantiator\Manager
  • Net\Bazzline\Propel\Behavior\EntityInstantiator\ObjectEntity
  • Net\Bazzline\Propel\Behavior\EntityInstantiator\QueryEntity
  • 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: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 
<?php

namespace Net\Bazzline\Propel\Behavior\EntityInstantiator;

use InvalidArgumentException;
use RuntimeException;

class Manager
{
    /** @var Configuration */
    private $configuration;

    /** @var EntityCollection */
    private $collection;

    /** @var FileContentGenerator */
    private $generator;

    /** @var bool */
    private $generationIsDone;

    /** @var Manager */
    private static $instance;

    /**
     * @throws RuntimeException
     */
    public function __destruct()
    {
        if ($this->callGenerate()) {
            $this->generate();
        }
    }

    private function __clone() {}

    /**
     * @return Manager
     */
    public static function getInstance()
    {
        if (!(self::$instance instanceof Manager)) {
            self::$instance = new static();
            self::$instance->reset();
        }

        return self::$instance;
    }

    /**
     * @param AbstractEntity $entity
     * @throws InvalidArgumentException
     */
    public function add(AbstractEntity $entity)
    {
        $this->collection->add($entity);
    }

    /**
     * @param string $className
     * @param string $indention
     * @param string $pathToOutput
     * @param null|string $namespace
     * @param null|string $extends
     * @param null|string $defaultConnectionMode
     * @param null|string $defaultConnectionName
     * @param null|bool $useFullyQualifiedNames
     * @throws InvalidArgumentException
     */
    public function configure(
        $className,
        $indention,
        $pathToOutput,
        $namespace = null,
        $extends = null,
        $defaultConnectionMode = null,
        $defaultConnectionName = null,
        $useFullyQualifiedNames = null
    ) {
        $this->configuration->configure(
            $className,
            $indention,
            $pathToOutput,
            $namespace,
            $extends,
            $defaultConnectionMode,
            $defaultConnectionName,
            $useFullyQualifiedNames
        );
    }

    /**
     * @throws RuntimeException
     */
    public function generate()
    {
        //begin of dependencies
        $configuration  = $this->configuration;
        $generator      = $this->generator;
        $collection     = $this->collection;
        $fileName       = $configuration->getFilePathToOutput();
        //end of dependencies

        $this->throwRuntimeExceptionIfConfigurationIsNotDone();
        $content = $generator->generate(
            $collection,
            $configuration
        );
        $this->tryToWriteContentOrThrowRuntimeException(
            $fileName,
            $content
        );
        $this->generationIsDone = true;
    }

    /**
     * @return bool
     */
    public function isNotConfigured()
    {
        return $this->configuration->isNotConfigured();
    }

    public function reset()
    {
        $this->collection       = new EntityCollection();
        $this->configuration    = new Configuration();
        $this->generator        = new FileContentGenerator();
        $this->generationIsDone = false;
    }



    /**
     * @param string $fileName
     * @param string $content
     * @throws RuntimeException
     */
    private function tryToWriteContentOrThrowRuntimeException($fileName, $content)
    {
        $contentCouldBeNotWritten = (file_put_contents($fileName, $content) === false);

        if ($contentCouldBeNotWritten) {
            throw new RuntimeException(
                'could not write content to "' . $fileName . '"'
            );
        }
    }

    /**
     * @return bool
     */
    private function noGenerationWasDone()
    {
        return (!$this->generationIsDone);
    }

    /**
     * @return bool
     */
    private function callGenerate()
    {
        return ($this->configuration->isConfigured()
            && $this->noGenerationWasDone());
    }

    /**
     * @throws RuntimeException
     */
    private function throwRuntimeExceptionIfConfigurationIsNotDone()
    {
        if ($this->isNotConfigured()) {
            throw new RuntimeException(
                'you have to call configure first'
            );
        }
    }
}
PHP EntityInstantiator Propel Behavior by bazzline.net API documentation generated by ApiGen