Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 401] [Versions 311 and 402] [Versions 311 and 403]

   1  <?php
   2  /**
   3   * LICENSE
   4   *
   5   * This file is part of CFPropertyList.
   6   *
   7   * The PHP implementation of Apple's PropertyList can handle XML PropertyLists
   8   * as well as binary PropertyLists. It offers functionality to easily convert
   9   * data between worlds, e.g. recalculating timestamps from unix epoch to apple
  10   * epoch and vice versa. A feature to automagically create (guess) the plist
  11   * structure from a normal PHP data structure will help you dump your data to
  12   * plist in no time.
  13   *
  14   * Copyright (c) 2018 Teclib'
  15   *
  16   * Permission is hereby granted, free of charge, to any person obtaining a copy
  17   * of this software and associated documentation files (the "Software"), to deal
  18   * in the Software without restriction, including without limitation the rights
  19   * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  20   * copies of the Software, and to permit persons to whom the Software is
  21   * furnished to do so, subject to the following conditions:
  22   *
  23   * The above copyright notice and this permission notice shall be included in all
  24   * copies or substantial portions of the Software.
  25   *
  26   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  27   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  28   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  29   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  30   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  31   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  32   * SOFTWARE.
  33   *
  34   * ------------------------------------------------------------------------------
  35   * @author    Rodney Rehm <rodney.rehm@medialize.de>
  36   * @author    Christian Kruse <cjk@wwwtech.de>
  37   * @copyright Copyright © 2018 Teclib
  38   * @package   plist
  39   * @license   MIT
  40   * @link      https://github.com/TECLIB/CFPropertyList/
  41   * @link      http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists
  42   * ------------------------------------------------------------------------------
  43   */
  44  
  45  namespace CFPropertyList;
  46  
  47  use \DOMDocument;
  48  use \Iterator;
  49  use \ArrayAccess;
  50  
  51  /**
  52   * Array Type of CFPropertyList
  53   */
  54  class CFDictionary extends CFType implements Iterator
  55  {
  56     /**
  57      * Position of iterator {@link http://php.net/manual/en/class.iterator.php}
  58      * @var integer
  59      */
  60      protected $iteratorPosition = 0;
  61     /**
  62      * List of Keys for numerical iterator access {@link http://php.net/manual/en/class.iterator.php}
  63      * @var array
  64      */
  65      protected $iteratorKeys = null;
  66     /**
  67      * Create new CFType.
  68      * @param array $value Value of CFType
  69      */
  70      public function __construct($value = array())
  71      {
  72          $this->value = $value;
  73      }
  74     /**
  75      * Set the CFType's value
  76      * <b>Note:</b> this dummy does nothing
  77      * @return void
  78      */
  79      public function setValue($value)
  80      {
  81      }
  82     /**
  83      * Add CFType to collection.
  84      * @param string $key Key to add to collection
  85      * @param CFType $value CFType to add to collection, defaults to null which results in an empty {@link CFString}
  86      * @return void
  87      * @uses $value for adding $key $value pair
  88      */
  89      public function add($key, CFType $value = null)
  90      {
  91        // anything but CFType is null, null is an empty string - sad but true
  92          if (!$value) {
  93              $value = new CFString();
  94          }
  95          $this->value[$key] = $value;
  96      }
  97     /**
  98      * Get CFType from collection.
  99      * @param string $key Key of CFType to retrieve from collection
 100      * @return CFType CFType found at $key, null else
 101      * @uses $value for retrieving CFType of $key
 102      */
 103      public function get($key)
 104      {
 105          if (isset($this->value[$key])) {
 106              return $this->value[$key];
 107          }
 108          return null;
 109      }
 110     /**
 111      * Generic getter (magic)
 112      * @param integer $key Key of CFType to retrieve from collection
 113      * @return CFType CFType found at $key, null else
 114      * @link http://php.net/oop5.overloading
 115      * @uses get() to retrieve the key's value
 116      * @author Sean Coates <sean@php.net>
 117      */
 118      public function __get($key)
 119      {
 120          return $this->get($key);
 121      }
 122     /**
 123      * Remove CFType from collection.
 124      * @param string $key Key of CFType to removes from collection
 125      * @return CFType removed CFType, null else
 126      * @uses $value for removing CFType of $key
 127      */
 128      public function del($key)
 129      {
 130          if (isset($this->value[$key])) {
 131              unset($this->value[$key]);
 132          }
 133      }
 134     /************************************************************************************************
 135      *    S E R I A L I Z I N G
 136      ************************************************************************************************/
 137     /**
 138      * Get XML-Node.
 139      * @param DOMDocument $doc DOMDocument to create DOMNode in
 140      * @param string $nodeName For compatibility reasons; just ignore it
 141      * @return DOMNode &lt;dict&gt;-Element
 142      */
 143      public function toXML(DOMDocument $doc, $nodeName = "")
 144      {
 145          $node = $doc->createElement('dict');
 146          foreach ($this->value as $key => $value) {
 147              $node->appendChild($doc->createElement('key', $key));
 148              $node->appendChild($value->toXML($doc));
 149          }
 150          return $node;
 151      }
 152     /**
 153      * convert value to binary representation
 154      * @param CFBinaryPropertyList The binary property list object
 155      * @return The offset in the object table
 156      */
 157      public function toBinary(CFBinaryPropertyList &$bplist)
 158      {
 159          return $bplist->dictToBinary($this);
 160      }
 161     /**
 162      * Get CFType's value.
 163      * @return array primitive value
 164      * @uses $value for retrieving primitive of CFType
 165      */
 166      public function toArray()
 167      {
 168          $a = array();
 169          foreach ($this->value as $key => $value) {
 170              $a[$key] = $value->toArray();
 171          }
 172          return $a;
 173      }
 174     /************************************************************************************************
 175      *    I T E R A T O R   I N T E R F A C E
 176      ************************************************************************************************/
 177     /**
 178      * Rewind {@link $iteratorPosition} to first position (being 0)
 179      * @link http://php.net/manual/en/iterator.rewind.php
 180      * @return void
 181      * @uses $iteratorPosition set to 0
 182      * @uses $iteratorKeys store keys of {@link $value}
 183      */
 184      public function rewind()
 185      {
 186          $this->iteratorPosition = 0;
 187          $this->iteratorKeys = array_keys($this->value);
 188      }
 189     /**
 190      * Get Iterator's current {@link CFType} identified by {@link $iteratorPosition}
 191      * @link http://php.net/manual/en/iterator.current.php
 192      * @return CFType current Item
 193      * @uses $iteratorPosition identify current key
 194      * @uses $iteratorKeys identify current value
 195      */
 196      public function current()
 197      {
 198          return $this->value[$this->iteratorKeys[$this->iteratorPosition]];
 199      }
 200     /**
 201      * Get Iterator's current key identified by {@link $iteratorPosition}
 202      * @link http://php.net/manual/en/iterator.key.php
 203      * @return string key of the current Item
 204      * @uses $iteratorPosition identify current key
 205      * @uses $iteratorKeys identify current value
 206      */
 207      public function key()
 208      {
 209          return $this->iteratorKeys[$this->iteratorPosition];
 210      }
 211     /**
 212      * Increment {@link $iteratorPosition} to address next {@see CFType}
 213      * @link http://php.net/manual/en/iterator.next.php
 214      * @return void
 215      * @uses $iteratorPosition increment by 1
 216      */
 217      public function next()
 218      {
 219          $this->iteratorPosition++;
 220      }
 221     /**
 222      * Test if {@link $iteratorPosition} addresses a valid element of {@link $value}
 223      * @link http://php.net/manual/en/iterator.valid.php
 224      * @return boolean true if current position is valid, false else
 225      * @uses $iteratorPosition test if within {@link $iteratorKeys}
 226      * @uses $iteratorPosition test if within {@link $value}
 227      */
 228      public function valid()
 229      {
 230          return isset($this->iteratorKeys[$this->iteratorPosition]) && isset($this->value[$this->iteratorKeys[$this->iteratorPosition]]);
 231      }
 232  }