Beispiel #1
0
 public function setAttributes(Rserve_REXP_List $attr)
 {
     parent::setAttributes($attr);
     $lev = $this->getAttribute('levels');
     if ($lev) {
         $lev = $lev->getValues();
         $levels = array();
         $i = 0;
         foreach ($lev as $l) {
             ++$i;
             $levels[$i] = (string) $l;
             // force string for convinience
         }
         $this->levels = $levels;
     }
 }
Beispiel #2
0
 public static function parseREXP($buf, $offset, &$attr = NULL)
 {
     $r = $buf;
     $i = $offset;
     // some simple parsing - just skip attributes and assume short responses
     $ra = int8($r, $i);
     $rl = int24($r, $i + 1);
     $i += 4;
     $offset = $eoa = $i + $rl;
     if (($ra & 64) == 64) {
         throw new Exception('Long packets are not supported (yet).');
     }
     if ($ra > self::XT_HAS_ATTR) {
         $ra &= ~self::XT_HAS_ATTR;
         $al = int24($r, $i + 1);
         $attr = self::parseREXP($buf, $i);
         $i += $al + 4;
     }
     switch ($ra) {
         case self::XT_NULL:
             $a = new Rserve_REXP_Null();
             break;
         case self::XT_VECTOR:
             // generic vector
             $v = array();
             while ($i < $eoa) {
                 $v[] = self::parseREXP($buf, $i);
             }
             $a = new Rserve_REXP_GenericVector();
             $a->setValues($v);
             break;
         case self::XT_SYMNAME:
             // symbol
             $oi = $i;
             while ($i < $eoa && ord($r[$i]) != 0) {
                 $i++;
             }
             $v = substr($buf, $oi, $i - $oi);
             $a = new Rserve_REXP_Symbol();
             $a->setValue($v);
             break;
         case self::XT_LIST_NOTAG:
         case self::XT_LANG_NOTAG:
             // pairlist w/o tags
             $v = array();
             while ($i < $eoa) {
                 $v[] = self::parseREXP($buf, $i);
             }
             $clasz = $ra == self::XT_LIST_NOTAG ? 'Rserve_REXP_List' : 'Rserve_REXP_Language';
             $a = new $clasz();
             $a->setValues($a);
             break;
         case self::XT_LIST_TAG:
         case self::XT_LANG_TAG:
             // pairlist with tags
             $clasz = $ra == self::XT_LIST_TAG ? 'Rserve_REXP_List' : 'Rserve_REXP_Language';
             $v = array();
             $names = array();
             while ($i < $eoa) {
                 $v[] = self::parseREXP($buf, $i);
                 $names[] = self::parseREXP($buf, $i);
             }
             $a = new $clasz();
             $a->setValues($v);
             $a->setNames($names);
             break;
         case self::XT_ARRAY_INT:
             // integer array
             $v = array();
             while ($i < $eoa) {
                 $v[] = int32($r, $i);
                 $i += 4;
             }
             $a = new Rserve_REXP_Integer();
             $a->setValues($v);
             break;
         case self::XT_ARRAY_DOUBLE:
             // double array
             $v = array();
             while ($i < $eoa) {
                 $v[] = flt64($r, $i);
                 $i += 8;
             }
             $a = new Rserve_REXP_Double();
             $a->setValues($v);
             break;
         case self::XT_ARRAY_STR:
             // string array
             $v = array();
             $oi = $i;
             while ($i < $eoa) {
                 if (ord($r[$i]) == 0) {
                     $v[] = substr($r, $oi, $i - $oi);
                     $oi = $i + 1;
                 }
                 $i++;
             }
             $a = new Rserve_REXP_String();
             $a->setValues($v);
             break;
         case self::XT_ARRAY_BOOL:
             // boolean vector
             $n = int32($r, $i);
             $i += 4;
             $k = 0;
             $vv = array();
             while ($k < $n) {
                 $v = int8($r, $i++);
                 $vv[$k] = $v == 1 ? TRUE : ($v == 0 ? FALSE : NULL);
                 $k++;
             }
             $a = new Rserve_REXP_Logical();
             $a->setValues($vv);
             break;
         case self::XT_RAW:
             // raw vector
             $len = int32($r, $i);
             $i += 4;
             $v = substr($r, $i, $len);
             $a = new Rserve_REXP_Raw();
             $a->setValue($v);
             break;
         case self::XT_ARRAY_CPLX:
             $a = FALSE;
             break;
         case 48:
             // unimplemented type in Rserve
             $uit = int32($r, $i);
             // echo "Note: result contains type #$uit unsupported by Rserve.<br/>";
             $a = NULL;
             break;
         default:
             echo 'Warning: type ' . $ra . ' is currently not implemented in the PHP client.';
             $a = FALSE;
     }
     if ($attr && is_object($a)) {
         $a->setAttributes($attr);
     }
     return $a;
 }