/** * Implements the loading of the class object * @throws Exception if the class is already generated(not null) */ protected function generateClass() { if ($this->class != null) { throw new Exception("The class has already been generated"); } $config = Generator::getInstance()->getConfig(); $class = new PhpClass($this->phpIdentifier, $config->getClassExists()); $constructorComment = new PhpDocComment(); $constructorComment->setAccess(PhpDocElementFactory::getPublicAccess()); $constructorSource = ''; $constructorParameters = ''; $accessors = array(); // Add member variables foreach ($this->members as $member) { $type = ''; try { $type = Validator::validateType($member->getType()); } catch (ValidationException $e) { $type .= 'Custom'; } $name = Validator::validateNamingConvention($member->getName()); $comment = new PhpDocComment(); $comment->setVar(PhpDocElementFactory::getVar($type, $name, '')); $comment->setAccess(PhpDocElementFactory::getPublicAccess()); $var = new PhpVariable('public', $name, 'null', $comment); $class->addVariable($var); if (!$member->getNillable()) { $constructorSource .= ' $this->' . $name . ' = $' . $name . ';' . PHP_EOL; $constructorComment->addParam(PhpDocElementFactory::getParam($type, $name, '')); $constructorComment->setAccess(PhpDocElementFactory::getPublicAccess()); $constructorParameters .= ', $' . $name; if ($config->getConstructorParamsDefaultToNull()) { $constructorParameters .= ' = null'; } if ($config->getCreateAccessors()) { $getterComment = new PhpDocComment(); $getterComment->setReturn(PhpDocElementFactory::getReturn($type, '')); $getter = new PhpFunction('public', 'get' . ucfirst($name), '', ' return $this->' . $name . ';' . PHP_EOL, $getterComment); $accessors[] = $getter; $setterComment = new PhpDocComment(); $setterComment->addParam(PhpDocElementFactory::getParam($type, $name, '')); $setter = new PhpFunction('public', 'set' . ucfirst($name), '$' . $name, ' $this->' . $name . ' = $' . $name . ';' . PHP_EOL, $setterComment); $accessors[] = $setter; } } } $constructorParameters = substr($constructorParameters, 2); // Remove first comma $function = new PhpFunction('public', '__construct', $constructorParameters, $constructorSource, $constructorComment); // Only add the constructor if type constructor is selected if ($config->getNoTypeConstructor() == false) { $class->addFunction($function); } foreach ($accessors as $accessor) { $class->addFunction($accessor); } $this->class = $class; }
/** * Return class properties from array with indent specified * * @param array $props Properties array * @param array $indent Indentation in tabs * * @return string */ public function getClassProperties($props, $indent = "\t") { $code = $indent . "\n"; foreach ($props as $prop) { if (!empty($prop['docs'])) { $code .= $indent . $this->getDocBlock($prop['docs'], $indent); } $code .= $indent . 'public $' . $prop['name'] . ";\n"; // Add getter and setters if (!isset($prop['docs']['var'])) { $typeHint = null; } else { $typeHint = self::validateTypeHint($prop['docs']['var']); } $newMember = $this->getVariable($typeHint, $prop['name'], true); $setterCommentObj = new PhpDocComment(); $setterCommentObj->addParam(PhpDocElementFactory::getParam($typeHint, $prop['name'], '')); $setterCommentObj->setReturn(PhpDocElementFactory::getReturn('$this', '')); $setterCode = $this->getSetterBody($prop['name'], $typeHint, $newMember); $setter = new PhpFunction('public', 'set' . ucfirst($prop['name']), $this->buildParametersString([$prop['name'] => $typeHint], true, $newMember->getNullable() && !empty($typeHint)), $setterCode, $setterCommentObj); $getterComment = new PhpDocComment(); $getterComment->setReturn(PhpDocElementFactory::getReturn($typeHint, '')); $getterCode = $this->getGetterBody($prop['name'], $typeHint); $getter = new PhpFunction('public', 'get' . $prop['name'], '', $getterCode, $getterComment); $code = $code . $getter->getSource() . $setter->getSource() . PHP_EOL; } return $code; }
/** * Generates the class if not already generated */ public function generateClass() { $config = Generator::getInstance()->getConfig(); // Add prefix and suffix $name = $config->getPrefix() . $this->identifier . $config->getSuffix(); // Generate a valid classname try { $name = Validator::validateClass($name); } catch (ValidationException $e) { $name .= 'Custom'; } // uppercase the name $name = ucfirst($name); // Create the class object $comment = new PhpDocComment($this->description); $this->class = new PhpClass($name, $config->getClassExists(), '\\SoapClient', $comment); // Create the constructor $comment = new PhpDocComment(); $comment->addParam(PhpDocElementFactory::getParam('array', 'options', 'A array of config values')); $comment->addParam(PhpDocElementFactory::getParam('string', 'wsdl', 'The wsdl file to use')); $comment->setAccess(PhpDocElementFactory::getPublicAccess()); $source = ' foreach (self::$classmap as $key => $value) { if (!isset($options[\'classmap\'][$key])) { $options[\'classmap\'][$key] = $value; } } ' . $this->generateServiceOptions($config) . ' parent::__construct($wsdl, $options);' . PHP_EOL; $function = new PhpFunction('public', '__construct', 'array $options = array(), $wsdl = \'' . $config->getInputFile() . '\'', $source, $comment); // Add the constructor $this->class->addFunction($function); // Generate the classmap $name = 'classmap'; $comment = new PhpDocComment(); $comment->setAccess(PhpDocElementFactory::getPrivateAccess()); $comment->setVar(PhpDocElementFactory::getVar('array', $name, 'The defined classes')); $init = 'array(' . PHP_EOL; foreach ($this->types as $type) { if ($type instanceof ComplexType) { $init .= " '" . $type->getIdentifier() . "' => '\\" . $config->getNamespaceName() . "\\" . $type->getPhpIdentifier() . "'," . PHP_EOL; } } $init = substr($init, 0, strrpos($init, ',')); $init .= ')'; $var = new PhpVariable('private static', $name, $init, $comment); // Add the classmap variable $this->class->addVariable($var); // Add all methods foreach ($this->operations as $operation) { $name = Validator::validateNamingConvention($operation->getName()); $comment = new PhpDocComment($operation->getDescription()); $comment->setAccess(PhpDocElementFactory::getPublicAccess()); $comment->setReturn(PhpDocElementFactory::getReturn($operation->getReturns(), '')); foreach ($operation->getParams() as $param => $hint) { $arr = $operation->getPhpDocParams($param, $this->types); $comment->addParam(PhpDocElementFactory::getParam($arr['type'], $arr['name'], $arr['desc'])); } $source = ' return $this->__soapCall(\'' . $name . '\', array(' . $operation->getParamStringNoTypeHints() . '));' . PHP_EOL; $paramStr = $operation->getParamString($this->types); $function = new PhpFunction('public', $name, $paramStr, $source, $comment); if ($this->class->functionExists($function->getIdentifier()) == false) { $this->class->addFunction($function); } } }