Login   Register  
PHP Classes
elePHPant
Icontem

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

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Emmanuel Antico  >  eMacros  >  src/eMacros/Runtime/Collection/ArrayUnshift.php  >  Download  
File: src/eMacros/Runtime/Collection/ArrayUnshift.php
Role: Class source
Content type: text/plain
Description: Class source
Class: eMacros
PHP LISP language interpreter
Author: By
Last change:
Date: 2014-01-13 05:23
Size: 1,789 bytes
 

Contents

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

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

class 
ArrayUnshift implements Applicable {
    
/**
     * Prepends passed elements to the front of the array
     * Usage: (Array::unshift _arr "apple" "raspberry")
     * Returns: int
     * (non-PHPdoc)
     * @see \eMacros\Applicable::apply()
     */
    
public function apply(Scope $scopeGenericList $arguments) {
        
$nargs count($arguments);
        
        if (
$nargs == 0) {
            throw new \
BadFunctionCallException("ArrayUnshift: No target specified.");
        }
        elseif (
$nargs == 1) {
            throw new \
BadFunctionCallException("ArrayUnshift: No values specified.");
        }
        
        
$target $arguments[0];
        
        if (!(
$target instanceof Symbol)) {
            throw new \
InvalidArgumentException(sprintf("ArrayUnshift: Expected symbol as first argument but %s was found instead."substr(strtolower(strstr(get_class($arguments[0]), '\\')), 1)));
        }
        
        
$ref $target->symbol;
        
        
$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 (
array_reverse($args) as $arg) {
                
array_unshift($scope->symbols[$ref], $arg);
            }
                
            return 
count($scope->symbols[$ref]);
        }
        elseif (
$scope->symbols[$ref] instanceof \ArrayObject) {            
            
$arr $scope->symbols[$ref]->getArrayCopy();
            
            foreach (
array_reverse($args) as $arg) {
                
array_unshift($arr$arg);
            }
            
            
$scope->symbols[$ref]->exchangeArray($arr);
            return 
count($scope->symbols[$ref]);
        }
        
        throw new \
InvalidArgumentException(sprintf("ArrayUnshift: Expected array as first argument but %s was found instead."gettype($scope->symbols[$ref])));
    }
}
?>