123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <?php
- /*
- * Copyright 2013 Johannes M. Schmitt <schmittjoh@gmail.com>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- namespace JMS\Serializer\Metadata;
- use JMS\Serializer\TypeParser;
- use Metadata\PropertyMetadata as BasePropertyMetadata;
- use JMS\Serializer\Exception\RuntimeException;
- class PropertyMetadata extends BasePropertyMetadata
- {
- const ACCESS_TYPE_PROPERTY = 'property';
- const ACCESS_TYPE_PUBLIC_METHOD = 'public_method';
- public $sinceVersion;
- public $untilVersion;
- public $groups;
- public $serializedName;
- public $type;
- public $xmlCollection = false;
- public $xmlCollectionInline = false;
- public $xmlEntryName;
- public $xmlKeyAttribute;
- public $xmlAttribute = false;
- public $xmlValue = false;
- public $xmlKeyValuePairs = false;
- public $getter;
- public $setter;
- public $inline = false;
- public $readOnly = false;
- public $xmlAttributeMap = false;
- public $maxDepth = null;
- private static $typeParser;
- public function setAccessor($type, $getter = null, $setter = null)
- {
- if (self::ACCESS_TYPE_PUBLIC_METHOD === $type) {
- $class = $this->reflection->getDeclaringClass();
- if (empty($getter)) {
- if ($class->hasMethod('get'.$this->name) && $class->getMethod('get'.$this->name)->isPublic()) {
- $getter = 'get'.$this->name;
- } elseif ($class->hasMethod('is'.$this->name) && $class->getMethod('is'.$this->name)->isPublic()) {
- $getter = 'is'.$this->name;
- } else {
- throw new RuntimeException(sprintf('There is neither a public %s method, nor a public %s method in class %s. Please specify which public method should be used for retrieving the value of the property %s.', 'get'.ucfirst($this->name), 'is'.ucfirst($this->name), $this->class, $this->name));
- }
- }
- if (empty($setter) && !$this->readOnly) {
- if ($class->hasMethod('set'.$this->name) && $class->getMethod('set'.$this->name)->isPublic()) {
- $setter = 'set'.$this->name;
- } else {
- throw new RuntimeException(sprintf('There is no public %s method in class %s. Please specify which public method should be used for setting the value of the property %s.', 'set'.ucfirst($this->name), $this->class, $this->name));
- }
- }
- }
- $this->getter = $getter;
- $this->setter = $setter;
- }
- public function getValue($obj)
- {
- if (null === $this->getter) {
- return parent::getValue($obj);
- }
- return $obj->{$this->getter}();
- }
- public function setType($type)
- {
- if (null === self::$typeParser) {
- self::$typeParser = new TypeParser();
- }
- $this->type = self::$typeParser->parse($type);
- }
- public function serialize()
- {
- return serialize(array(
- $this->sinceVersion,
- $this->untilVersion,
- $this->groups,
- $this->serializedName,
- $this->type,
- $this->xmlCollection,
- $this->xmlCollectionInline,
- $this->xmlEntryName,
- $this->xmlKeyAttribute,
- $this->xmlAttribute,
- $this->xmlValue,
- $this->xmlKeyValuePairs,
- $this->getter,
- $this->setter,
- $this->inline,
- $this->readOnly,
- $this->xmlAttributeMap,
- $this->maxDepth,
- parent::serialize(),
- ));
- }
- public function unserialize($str)
- {
- list(
- $this->sinceVersion,
- $this->untilVersion,
- $this->groups,
- $this->serializedName,
- $this->type,
- $this->xmlCollection,
- $this->xmlCollectionInline,
- $this->xmlEntryName,
- $this->xmlKeyAttribute,
- $this->xmlAttribute,
- $this->xmlValue,
- $this->xmlKeyValuePairs,
- $this->getter,
- $this->setter,
- $this->inline,
- $this->readOnly,
- $this->xmlAttributeMap,
- $this->maxDepth,
- $parentStr
- ) = unserialize($str);
- parent::unserialize($parentStr);
- }
- }
|