PHP Classes

File: src/eMacros/Runtime/Collection/ArrayPush.php

Recommend this page to a friend!
  Classes of Emmanuel Antico   eMacros   src/eMacros/Runtime/Collection/ArrayPush.php   Download  
File: src/eMacros/Runtime/Collection/ArrayPush.php
Role: Class source
Content type: text/plain
Description: Class source
Class: eMacros
PHP LISP language interpreter
Author: By
Last change:
Date: 10 years ago
Size: 1,745 bytes
 

Contents

Class file image Download
<?php
namespace eMacros\Runtime\Collection;

use
eMacros\Applicable;
use
eMacros\Scope;
use
eMacros\GenericList;
use
eMacros\Symbol;

class
ArrayPush implements Applicable {
   
/**
     * Pushes the given parameter onto the end of an array
     * Usage: (Array::push _arr 20 10)
     * Returns: int
     * (non-PHPdoc)
     * @see \eMacros\Applicable::apply()
     */
   
public function apply(Scope $scope, GenericList $arguments) {
       
$nargs = count($arguments);
       
        if (
$nargs == 0) {
            throw new \
BadFunctionCallException("ArrayPush: No target specified.");
        }
        elseif (
$nargs == 1) {
            throw new \
BadFunctionCallException("ArrayPush: No values specified.");
        }
       
       
$target = $arguments[0];
       
        if (!(
$target instanceof Symbol)) {
            throw new \
InvalidArgumentException(sprintf("ArrayPush: Expected symbol as first argument but %s was found instead.", substr(strtolower(strstr(get_class($arguments[0]), '\\')), 1)));
        }
       
       
$ref = $target->symbol;
       
        if (
is_array($scope->symbols[$ref]) || $scope->symbols[$ref] instanceof \ArrayObject) {
           
$args = array();
           
$it = $arguments->getIterator();
           
$it->rewind();
               
            for (
$it->next(); $it->valid(); $it->next()) {
               
$args[] = $it->current()->evaluate($scope);
            }
           
            if (
is_array($scope->symbols[$ref])) {
                foreach (
$args as $arg) {
                   
array_push($scope->symbols[$ref], $arg);
                }
            }
            else {
               
$arr = $scope->symbols[$ref]->getArrayCopy();
               
                foreach (
$args as $arg) {
                   
array_push($arr, $arg);
                }
               
               
$scope->symbols[$ref]->exchangeArray($arr);
            }
           
            return
count($scope->symbols[$ref]);
        }
       
        throw new \
InvalidArgumentException(sprintf("ArrayPush: Expected array as first argument but %s was found instead.", gettype($scope->symbols[$ref])));
    }
}
?>