123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592 |
- <?php
- /**
- * ARC2 SPARQLScript Processor
- *
- * @author Benjamin Nowack <bnowack@semsol.com>
- * @license http://arc.semsol.org/license
- * @package ARC2
- * @version 2010-11-16
- */
- ARC2::inc('Class');
- class ARC2_SPARQLScriptProcessor extends ARC2_Class {
- function __construct($a, &$caller) {
- parent::__construct($a, $caller);
- }
-
- function __init() {
- parent::__init();
- $this->max_operations = $this->v('sparqlscript_max_operations', 0, $this->a);
- $this->max_queries = $this->v('sparqlscript_max_queries', 0, $this->a);
- $this->return = 0;
- $this->script_hash = '';
- $this->env = array(
- 'endpoint' => '',
- 'vars' => array(),
- 'output' => '',
- 'operation_count' => 0,
- 'query_count' => 0,
- 'query_log' => array()
- );
- }
-
- function reset() {
- $this->__init();
- }
- /* */
-
- function processScript($s) {
- $this->script_hash = abs(crc32($s));
- $parser = $this->getParser();
- $parser->parse($s);
- $blocks = $parser->getScriptBlocks();
- if ($parser->getErrors()) return 0;
- foreach ($blocks as $block) {
- $this->processBlock($block);
- if ($this->return) return 0;
- if ($this->getErrors()) return 0;
- }
- }
- function getResult() {
- if ($this->return) {
- return $this->getVarValue('__return_value__');
- }
- else {
- return $this->env['output'];
- }
- }
- /* */
-
- function getParser() {
- ARC2::inc('SPARQLScriptParser');
- return new ARC2_SPARQLScriptParser($this->a, $this);
- }
-
- /* */
- function setVar($name, $val, $type = 'literal', $meta = '') {
- /* types: literal, var, rows, bool, doc, http_response, undefined, ? */
- $this->env['vars'][$name] = array(
- 'value_type' => $type,
- 'value' => $val,
- 'meta' => $meta ? $meta : array()
- );
- }
- function getVar($name) {
- return isset($this->env['vars'][$name]) ? $this->env['vars'][$name] : '';
- }
- function getVarValue($name) {
- return ($v = $this->getVar($name)) ? (isset($v['value']) ? $v['value'] : $v ) : '';
- }
- /* */
- function replacePlaceholders($val, $context = '', $return_string = 1, $loop = 0) {
- do {
- $old_val = $val;
- if (preg_match_all('/(\{(?:[^{}]+|(?R))*\})/', $val, $m)) {
- foreach ($m[1] as $match) {
- if (strpos($val, '$' . $match) === false) {/* just some container brackets, recurse */
- $val = str_replace($match, '{' . $this->replacePlaceholders(substr($match, 1, -1), $context, $return_string, $loop + 1) . '}', $val);
- }
- else {
- $ph = substr($match, 1, -1);
- $sub_val = $this->getPlaceholderValue($ph);
- if (is_array($sub_val)) {
- $sub_val = $this->getArraySerialization($sub_val, $context);
- }
- $val = str_replace('${' . $ph . '}', $sub_val, $val);
- }
- }
- }
- } while (($old_val != $val) && ($loop < 10));
- return $val;
- }
-
- function getPlaceholderValue($ph) {
- /* simple vars */
- if (isset($this->env['vars'][$ph])) {
- return $this->v('value', $this->env['vars'][$ph], $this->env['vars'][$ph]);
- }
- /* GET/POST */
- if (preg_match('/^(GET|POST)\.([^\.]+)(.*)$/', $ph, $m)) {
- $vals = strtoupper($m[1]) == 'GET' ? $_GET : $POST;
- $r = isset($vals[$m[2]]) ? $vals[$m[2]] : '';
- return $m[3] ? $this->getPropertyValue(array('value' => $r, 'value_type' => '?'), ltrim($m[3], '.')) : $r;
- }
- /* NOW */
- if (preg_match('/^NOW(.*)$/', $ph, $m)) {
- $rest = $m[1];
- /* may have sub-phs */
- $rest = $this->replacePlaceholders($rest);
- $r_struct = array(
- 'y' => date('Y'),
- 'mo' => date('m'),
- 'd' => date('d'),
- 'h' => date('H'),
- 'mi' => date('i'),
- 's' => date('s')
- );
- if (preg_match('/(\+|\-)\s*([0-9]+)(y|mo|d|h|mi|s)[a-z]*(.*)/is', trim($rest), $m2)) {
- eval('$r_struct[$m2[3]] ' . $m2[1] . '= (int)' . $m2[2] . ';');
- $rest = $m2[4];
- }
- $uts = mktime($r_struct['h'], $r_struct['mi'], $r_struct['s'], $r_struct['mo'], $r_struct['d'], $r_struct['y']);
- $uts -= date('Z', $uts); /* timezone offset */
- $r = date('Y-m-d\TH:i:s\Z', $uts);
- if (preg_match('/^\.(.+)$/', $rest, $m)) {
- return $this->getPropertyValue(array('value' => $r), $m[1]);
- }
- return $r;
- }
- /* property */
- if (preg_match('/^([^\.]+)\.(.+)$/', $ph, $m)) {
- list($var, $path) = array($m[1], $m[2]);
- if (isset($this->env['vars'][$var])) {
- return $this->getPropertyValue($this->env['vars'][$var], $path);
- }
- }
- return '';
- }
-
- function getPropertyValue($obj, $path) {
- $val = isset($obj['value']) ? $obj['value'] : $obj;
- $path = $this->replacePlaceholders($path, 'property_value', 0);
- /* reserved */
- if ($path == 'size') {
- if ($obj['value_type'] == 'rows') return count($val);
- if ($obj['value_type'] == 'literal') return strlen($val);
- }
- if (preg_match('/^replace\([\'\"](\/.*\/[a-z]*)[\'\"],\s*[\'\"](.*)[\'\"]\)$/is', $path, $m)) {
- return @preg_replace($m[1], str_replace('$', '\\', $m[2]), $val);
- }
- if (preg_match('/^match\([\'\"](\/.*\/[a-z]*)[\'\"]\)$/is', $path, $m)) {
- return @preg_match($m[1], $val, $m) ? $m : '';
- }
- if (preg_match('/^urlencode\([\'\"]?(get|post|.*)[\'\"]?\)$/is', $path, $m)) {
- return (strtolower($m[1]) == 'post') ? rawurlencode($val) : urlencode($val);
- }
- if (preg_match('/^toDataURI\([^\)]*\)$/is', $path, $m)) {
- return 'data:text/plain;charset=utf-8,' . rawurlencode($val);
- }
- if (preg_match('/^fromDataURI\([^\)]*\)$/is', $path, $m)) {
- return rawurldecode(str_replace('data:text/plain;charset=utf-8,', '', $val));
- }
- if (preg_match('/^toPrettyDate\([^\)]*\)$/is', $path, $m)) {
- $uts = strtotime(preg_replace('/(T|\+00\:00)/', ' ', $val));
- return date('D j M H:i', $uts);
- }
- if (preg_match('/^render\(([^\)]*)\)$/is', $path, $m)) {
- $src_format = trim($m[1], '"\'');
- return $this->render($val, $src_format);
- }
- /* struct */
- if (is_array($val)) {
- if (isset($val[$path])) return $val[$path];
- $exp_path = $this->expandPName($path);
- if (isset($val[$exp_path])) return $val[$exp_path];
- if (preg_match('/^([^\.]+)\.(.+)$/', $path, $m)) {
- list($var, $path) = array($m[1], $m[2]);
- if (isset($val[$var])) {
- return $this->getPropertyValue(array('value' => $val[$var]), $path);
- }
- /* qname */
- $exp_var = $this->expandPName($var);
- if (isset($val[$exp_var])) {
- return $this->getPropertyValue(array('value' => $val[$exp_var]), $path);
- }
- return '';
- }
- }
- /* meta */
- if (preg_match('/^\_/', $path) && isset($obj['meta']) && isset($obj['meta'][substr($path, 1)])) {
- return $obj['meta'][substr($path, 1)];
- }
- return '';
- }
- function render($val, $src_format = '') {
- if ($src_format) {
- $mthd = 'render' . $this->camelCase($src_format);
- if (method_exists($this, $mthd)) {
- return $this->$mthd($val);
- }
- else {
- return 'No rendering method found for "' . $src_format. '"';
- }
- }
- /* try RDF */
- return $this->getArraySerialization($val);
- }
-
- function renderObjects($os) {
- $r = '';
- foreach ($os as $o) {
- $r .= $r ? ', ' : '';
- $r .= $o['value'];
- }
- return $r;
- }
- /* */
-
- function getArraySerialization($v, $context) {
- $v_type = ARC2::getStructType($v);/* string|array|triples|index */
- $pf = ARC2::getPreferredFormat();
- /* string */
- if ($v_type == 'string') return $v;
- /* simple array (e.g. from SELECT) */
- if ($v_type == 'array') {
- return join(', ', $v);
- $m = method_exists($this, 'toLegacy' . $pf) ? 'toLegacy' . $pf : 'toLegacyXML';
- }
- /* rdf */
- if (($v_type == 'triples') || ($v_type == 'index')) {
- $m = method_exists($this, 'to' . $pf) ? 'to' . $pf : ($context == 'query' ? 'toNTriples' : 'toRDFXML');
- }
- /* else */
- return $this->$m($v);
- }
- /* */
- function processBlock($block) {
- if ($this->max_operations && ($this->env['operation_count'] >= $this->max_operations)) return $this->addError('Number of ' . $this->max_operations . ' allowed operations exceeded.');
- if ($this->return) return 0;
- $this->env['operation_count']++;
- $type = $block['type'];
- $m = 'process' . $this->camelCase($type) . 'Block';
- if (method_exists($this, $m)) {
- return $this->$m($block);
- }
- return $this->addError('Unsupported block type "' . $type . '"');
- }
- /* */
-
- function processEndpointDeclBlock($block) {
- $this->env['endpoint'] = $block['endpoint'];
- return $this->env;
- }
- /* */
- function processQueryBlock($block) {
- if ($this->max_queries && ($this->env['query_count'] >= $this->max_queries)) return $this->addError('Number of ' . $this->max_queries . ' allowed queries exceeded.');
- $this->env['query_count']++;
- $ep_uri = $this->replacePlaceholders($this->env['endpoint'], 'endpoint');
- /* q */
- $prologue = 'BASE <' . $block['base']. '>';
- $q = $this->replacePlaceholders($block['query'], 'query');
- /* prefixes */
- $ns = isset($this->a['ns']) ? array_merge($this->a['ns'], $block['prefixes']) : $block['prefixes'];
- $q = $prologue . "\n" . $this->completeQuery($q, $ns);
- $this->env['query_log'][] = '(' . $ep_uri . ') ' . $q;
- if ($store = $this->getStore($ep_uri)) {
- $sub_r = $this->v('is_remote', '', $store) ? $store->query($q, '', $ep_uri) : $store->query($q);
- /* ignore socket errors */
- if (($errs = $this->getErrors()) && preg_match('/socket/', $errs[0])) {
- $this->warnings[] = $errs[0];
- $this->errors = array();
- $sub_r = array();
- }
- return $sub_r;
- }
- else {
- return $this->addError("no store (" . $ep_uri . ")");
- }
- }
-
- function getStore($ep_uri) {
- /* local store */
- if ((!$ep_uri || $ep_uri == ARC2::getScriptURI()) && ($this->v('sparqlscript_default_endpoint', '', $this->a) == 'local')) {
- if (!isset($this->local_store)) $this->local_store = ARC2::getStore($this->a);/* @@todo error checking */
- return $this->local_store;
- }
- elseif ($ep_uri) {
- ARC2::inc('RemoteStore');
- $conf = array_merge($this->a, array('remote_store_endpoint' => $ep_uri, 'reader_timeout' => 10));
- return new ARC2_RemoteStore($conf, $this);
- }
- return 0;
- }
- /* */
- function processAssignmentBlock($block) {
- $sub_type = $block['sub_type'];
- $m = 'process' . $this->camelCase($sub_type) . 'AssignmentBlock';
- if (!method_exists($this, $m)) return $this->addError('Unknown method "' . $m . '"');
- return $this->$m($block);
- }
- function processQueryAssignmentBlock($block) {
- $qr = $this->processQueryBlock($block['query']);
- if ($this->getErrors() || !isset($qr['query_type'])) return 0;
- $qt = $qr['query_type'];
- $vts = array('ask' => 'bool', 'select' => 'rows', 'desribe' => 'doc', 'construct' => 'doc');
- $r = array(
- 'value_type' => isset($vts[$qt]) ? $vts[$qt] : $qt . ' result',
- 'value' => ($qt == 'select') ? $this->v('rows', array(), $qr['result']) : $qr['result'],
- );
- $this->env['vars'][$block['var']['value']] = $r;
- }
-
- function processStringAssignmentBlock($block) {
- $r = array('value_type' => 'literal', 'value' => $this->replacePlaceholders($block['string']['value']));
- $this->env['vars'][$block['var']['value']] = $r;
- }
-
- function processVarAssignmentBlock($block) {
- if (isset($this->env['vars'][$block['var2']['value']])) {
- $this->env['vars'][$block['var']['value']] = $this->env['vars'][$block['var2']['value']];
- }
- else {
- $this->env['vars'][$block['var']['value']] = array('value_type' => 'undefined', 'value' => '');
- }
- }
-
- function processPlaceholderAssignmentBlock($block) {
- $ph_val = $this->getPlaceholderValue($block['placeholder']['value']);
- $this->env['vars'][$block['var']['value']] = array('value_type' => 'undefined', 'value' => $ph_val);
- }
-
- function processVarMergeAssignmentBlock($block) {
- $val1 = isset($this->env['vars'][$block['var2']['value']]) ? $this->env['vars'][$block['var2']['value']] : array('value_type' => 'undefined', 'value' => '');
- $val2 = isset($this->env['vars'][$block['var3']['value']]) ? $this->env['vars'][$block['var3']['value']] : array('value_type' => 'undefined', 'value' => '');
- if (is_array($val1) && is_array($val2)) {
- $this->env['vars'][$block['var']['value']] = array('value_type' => $val2['value_type'], 'value' => array_merge($val1['value'], $val2['value']));
- }
- elseif (is_numeric($val1) && is_numeric($val2)) {
- $this->env['vars'][$block['var']['value']] = $val1 + $val2;
- }
- }
-
- function processFunctionCallAssignmentBlock($block) {
- $sub_r = $this->processFunctionCallBlock($block['function_call']);
- if ($this->getErrors()) return 0;
- $this->env['vars'][$block['var']['value']] = $sub_r;
- }
- /* */
- function processReturnBlock($block) {
- $sub_type = $block['sub_type'];
- $m = 'process' . $this->camelCase($sub_type) . 'AssignmentBlock';
- if (!method_exists($this, $m)) return $this->addError('Unknown method "' . $m . '"');
- $sub_r = $this->$m($block);
- $this->return = 1;
- return $sub_r;
- }
- /* */
-
- function processIfblockBlock($block) {
- if ($this->testCondition($block['condition'])) {
- $blocks = $block['blocks'];
- }
- else {
- $blocks = $block['else_blocks'];
- }
- foreach ($blocks as $block) {
- $sub_r = $this->processBlock($block);
- if ($this->getErrors()) return 0;
- }
- }
-
- function testCondition($cond) {
- $m = 'test' . $this->camelCase($cond['type']) . 'Condition';
- if (!method_exists($this, $m)) return $this->addError('Unknown method "' . $m . '"');
- return $this->$m($cond);
- }
- function testVarCondition($cond) {
- $r = 0;
- $vn = $cond['value'];
- if (isset($this->env['vars'][$vn])) $r = $this->env['vars'][$vn]['value'];
- $op = $this->v('operator', '', $cond);
- if ($op == '!') $r = !$r;
- return $r ? true : false;
- }
-
- function testPlaceholderCondition($cond) {
- $val = $this->getPlaceholderValue($cond['value']);
- $r = $val ? true : false;
- $op = $this->v('operator', '', $cond);
- if ($op == '!') $r = !$r;
- return $r;
- }
-
- function testExpressionCondition($cond) {
- $m = 'test' . $this->camelCase($cond['sub_type']) . 'ExpressionCondition';
- if (!method_exists($this, $m)) return $this->addError('Unknown method "' . $m . '"');
- return $this->$m($cond);
- }
-
- function testRelationalExpressionCondition($cond) {
- $op = $cond['operator'];
- if ($op == '=') $op = '==';
- $val1 = $this->getPatternValue($cond['patterns'][0]);
- $val2 = $this->getPatternValue($cond['patterns'][1]);
- eval('$result = ($val1 ' . $op . ' $val2) ? 1 : 0;');
- return $result;
- }
- function testAndExpressionCondition($cond) {
- foreach ($cond['patterns'] as $pattern) {
- if (!$this->testCondition($pattern)) return false;
- }
- return true;
- }
- function getPatternValue($pattern) {
- $m = 'get' . $this->camelCase($pattern['type']) . 'PatternValue';
- if (!method_exists($this, $m)) return '';
- return $this->$m($pattern);
- }
- function getLiteralPatternValue($pattern) {
- return $pattern['value'];
- }
-
- function getPlaceholderPatternValue($pattern) {
- return $this->getPlaceholderValue($pattern['value']);
- }
-
- /* */
-
- function processForblockBlock($block) {
- $set = $this->v($block['set'], array('value' => array()), $this->env['vars']);
- $entries = isset($set['value']) ? $set['value'] : $set;
- $iterator = $block['iterator'];
- $blocks = $block['blocks'];
- if (!is_array($entries)) return 0;
- $rc = count($entries);
- foreach ($entries as $i => $entry) {
- $val_type = $this->v('value_type', 'set', $set) . ' entry';
- $this->env['vars'][$iterator] = array(
- 'value' => $entry,
- 'value_type' => $val_type,
- 'meta' => array(
- 'pos' => $i,
- 'odd_even' => ($i % 2) ? 'even' : 'odd'
- )
- );
- foreach ($blocks as $block) {
- $this->processBlock($block);
- if ($this->getErrors()) return 0;
- }
- }
- }
-
- /* */
- function processLiteralBlock($block) {
- $this->env['output'] .= $this->replacePlaceholders($block['value'], 'output');
- }
- /* */
-
- function processFunctionCallBlock($block) {
- $uri = $this->replacePlaceholders($block['uri'], 'function_call');
- /* built-ins */
- if (strpos($uri, $this->a['ns']['sps']) === 0) {
- return $this->processBuiltinFunctionCallBlock($block);
- }
- /* remote functions */
- }
- function processBuiltinFunctionCallBlock($block) {
- $fnc_uri = $this->replacePlaceholders($block['uri'], 'function_call');
- $fnc_name = substr($fnc_uri, strlen($this->a['ns']['sps']));
- if (preg_match('/^(get|post)$/i', $fnc_name, $m)) {
- return $this->processHTTPCall($block, strtoupper($m[1]));
- }
- if ($fnc_name == 'eval') {
- return $this->processEvalCall($block);
- }
- }
- function processEvalCall($block) {
- if (!$block['args']) return 0;
- $arg = $block['args'][0];
- $script = '';
- if ($arg['type'] == 'placeholder') $script = $this->getPlaceholderValue($arg['value']);
- if ($arg['type'] == 'literal') $script = $arg['value'];
- if ($arg['type'] == 'var') $script = $this->getVarValue($arg['value']);
- //echo "\n" . $script . $arg['type'];
- $this->processScript($script);
- }
-
- function processHTTPCall($block, $mthd = 'GET') {
- ARC2::inc('Reader');
- $reader = new ARC2_Reader($this->a, $this);
- $url = $this->replacePlaceholders($block['args'][0]['value'], 'function_call');
- if ($mthd != 'GET') {
- $reader->setHTTPMethod($mthd);
- $reader->setCustomHeaders("Content-Type: application/x-www-form-urlencoded");
- }
- $to = $this->v('remote_call_timeout', 0, $this->a);
- $reader->activate($url, '', 0, $to);
- $format = $reader->getFormat();
- $resp = '';
- while ($d = $reader->readStream()) {
- $resp .= $d;
- }
- $reader->closeStream();
- unset($this->reader);
- return array('value_type' => 'http_response', 'value' => $resp);
- }
-
- /* */
-
- function extractVars($pattern, $input = '') {
- $vars = array();
- /* replace PHs, track ()s */
- $regex = $pattern;
- $vars = array();
- if (preg_match_all('/([\?\$]\{([^\}]+)\}|\([^\)]+\))/', $regex, $m)) {
- $matches = $m[1];
- $pre_vars = $m[2];
- foreach ($matches as $i => $match) {
- $vars[] = $pre_vars[$i];
- if ($pre_vars[$i]) {/* placeholder */
- $regex = str_replace($match, '(.+)', $regex);
- }
- else {/* parentheses, but may contain placeholders */
- $sub_regex = $match;
- while (preg_match('/([\?\$]\{([^\}]+)\})/', $sub_regex, $m)) {
- $sub_regex = str_replace($m[1], '(.+)', $sub_regex);
- $vars[] = $m[2];
- }
- $regex = str_replace($match, $sub_regex, $regex);
- }
- }
- /* eval regex */
- if (@preg_match('/' . $regex . '/is', $input, $m)) {
- $vals = $m;
- }
- else {
- return 0;
- }
- for ($i = 0; $i < count($vars); $i++) {
- if ($vars[$i]) {
- $this->setVar($vars[$i], isset($vals[$i + 1]) ? $vals[$i + 1] : '');
- }
- }
- return 1;
- }
- /* no placeholders */
- return ($pattern == $input) ? 1 : 0;
- }
-
- /* */
-
- }
|