HEX
Server: Apache
System: Linux wp02.tdr-lab.com 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
User: kusanagi (1001)
PHP: 7.4.23
Disabled: NONE
Upload Files
File: //usr/share/hhvm/hack/hacklib/containers/helper_traits/hacklib_constSetLike.php
<?php
/**
 * Copyright (c) 2014, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the "hack" directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 *
 */

namespace HH {
  require_once(__DIR__.SEP.'..'.SEP.'hacklib_iterator.php');
  require_once(__DIR__.SEP.'hacklib_commonContainerMethods.php');

  trait HACKLIB_ConstSetLike {
    use HACKLIB_iteratable;
    use HACKLIB_CommonContainerMethods;
    //this is where we actually store elements
    private $container;

    private static function hacklib_makeKey($k) {
      if (is_int($k)) {
        return $k;
      }
      if (is_string($k)) {
        return "_".$k;
      }

      throw new \InvalidArgumentException(\sprintf(
        'Only integer values and string values may be used with Sets, got %s',
        is_object($k) ? get_class($k) : gettype($k)
      ));
    }

    private static function hacklib_unmakeKey($k_actual) {
      if (is_string($k_actual)) {
        //cast to string because substr returns false if $k_actual = "_"
        return (string) substr($k_actual, 1);
      } else {
        return $k_actual;
      }
    }

    protected function hacklib_init_t($it = null) {
      if (is_array($it) || $it instanceof \Traversable) {
        $a = array();
        foreach ($it as $v) {
          $k_actual = self::hacklib_makeKey($v);
          $a[$k_actual] = $v;
        }
        $this->container = $a;
      } elseif (is_null($it)) {
        $this->container = array();
      }

      throw new \InvalidArgumentException(\sprintf(
        'Parameter must be an array or an instance of Traversable, got %s',
        is_object($it) ? get_class($it) : gettype($it)
      ));
    }

    /**
     * Checks if the key is present in the map.
     * Returns the result AND the converted key for further
     * uses.
     */
    protected function hacklib_containsKey($k) {
      $k_actual = self::hacklib_makeKey($k);
      return array(array_key_exists($k_actual, $this->container), $k_actual);
    }

    /**
     * Returns true if the ImmSet is empty, false otherwise.
     */
    public function isEmpty() {
      return $this->count() == 0;
    }

    /**
     * Returns the number of elements in this ImmSet.
     */
    public function count() {
      return count($this->container);
    }

    /**
     * Returns true if the specified value is present in the ImmSet, returns
     * false otherwise.
     */
    public function contains($k) {
      return $this->hacklib_containsKey($k)[0];
    }

    /**
     *  identical to containsKey, implemented for ArrayAccess
     */
    public function offsetExists($offset) {
      return $this->hacklib_containsKey($offset)[0];
    }

    /**
     * implemented for ArrayAccess
     */
    public function offsetGet($offset) {
      list($contains, $k_actual) = $this->hacklib_containsKey($offset);
      if ($contains) {
        return $this->container[$k_actual];
      }
      if (is_int($offset)) {
        throw new \OutOfBoundsException("Integer key $offset is not defined");
      } else {
        if (strlen($offset) > 100) {
          $offset = "\"".substr($k, 0, 100)."\""." (truncated)";
        } else {
          $offset = "\"$offset\"";
        }
        throw new \OutOfBoundsException("String key $offset is not defined");
      }
    }

    /**
     * Returns an array containing the values from this ImmSet.
     */
    public function toArray() {
      $arr = array();
      foreach ($this as $k => $v) {
        if(isset($arr[$k])) {
          $type = join('', array_slice(explode('\\', __CLASS__), -1));
          trigger_error("$type::toArray() for a ".lcfirst($type).
            " containing both int($k) and string('$k')", E_USER_WARNING);
        }
        $arr[$k]= $v;
      }
      return $arr;
    }

    public static function fromItems($items) {
      return new self($items);
    }

    public static function fromArrays() {
      $args = func_get_args();
      $a = array();
      foreach ($args as $arg) {
        if (is_array($arg)) {
          foreach ($arg as $v) {
            $k_actual = self::hacklib_makeKey($v);
            $a[$k_actual] = $v;
          }
        } else {
          throw new \InvalidArgumentException(\sprintf(
            'Parameters must be arrays but got %s',
            is_object($arg) ? get_class($arg) : gettype($arg)
          ));
        }
      }
      $o = new self();
      $o->hacklib_setContainer($a);
      return $o;
    }

    /**
     * Returns a ConstSetLike built from the keys of the specified container.
     */
    public static function fromKeysOf($it) {
      if (is_array($it)) {
        return new self(array_keys($it));
      }
      if ($it instanceof \HH\KeyedIterable) {
        return new self($it->keys());
      }
      if (is_null($it)) {
        return new self();
      } else {
        throw new \InvalidArgumentException(\sprintf(
          'Parameter must be a container (array or collection) but got %s',
          is_object($it) ? get_class($it) : gettype($it)
        ));
      }
    }

    public function immutable() {
      return $this->toImmSet();
    }

    public function items() {
      return new \LazyIterableView($this);
    }

    /**
     * used by HACKLIB_iteratable.
     * returns the key and value at given index
     */
    protected function hacklib_getKeyAndValue($i) {
      $value = current(array_slice($this->container, $i, 1, true));
      return array($value, $value);
    }

    /**
     * used by HACKLIB_iteratable.
     * returns an iterator of the appropriate type
     */
    protected function hacklib_createNewIterator() {
      return new \SetIterator();
    }

    public function __debugInfo() {
      $a = array();
      foreach ($this->container as $key => $value) {
        if (is_string($key)) {
          $key = substr($key, 1);
        }
        $a[$key] = $value;
      }
      return $a;
    }
  }
}