diff options
Diffstat (limited to 'poc/poc02-compiling-cake/src/php-weave/abstract_weaver.class.php')
-rw-r--r-- | poc/poc02-compiling-cake/src/php-weave/abstract_weaver.class.php | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/poc/poc02-compiling-cake/src/php-weave/abstract_weaver.class.php b/poc/poc02-compiling-cake/src/php-weave/abstract_weaver.class.php index 1bc7bce..117324d 100644 --- a/poc/poc02-compiling-cake/src/php-weave/abstract_weaver.class.php +++ b/poc/poc02-compiling-cake/src/php-weave/abstract_weaver.class.php @@ -120,14 +120,14 @@ abstract class AbstractWeaver { if ($k instanceof PHPParser_Node_Scalar_String && $v instanceof PHPParser_Node_Scalar_String) { $k=$k->value; $v=$v->value; - dbg(0,"Found '$k' => '$v'"); +// dbg(0,"Found '$k' => '$v'"); $constants[$k]=$v; } } else { - dbg(0,"Skipped funcall: " . $this->prettyPrinter->prettyPrint(array($stmt))); +// dbg(0,"Skipped funcall: " . $this->prettyPrinter->prettyPrint(array($stmt))); } } else { - dbg(0,"Skipped : " . get_class($stmt)); +// dbg(0,"Skipped : " . get_class($stmt)); } } return $constants; @@ -247,6 +247,21 @@ abstract class AbstractWeaver { return $found; } + public function parseAndCacheSourceTree($sourcetree_path, $cache_path, $regexMatch, $regexPrune, $env, $traverser=null) { + $filelist=$this->findAllFiles($sourcetree_path, $regexMatch, $regexPrune); + foreach ($filelist as $f) { + $cache_filepath=$cache_path . "/" . sha1($f) . "-" . substr(sha1(print_r($env,true)),-8,8) . ".ast"; + // If the cache is already up to date, skip parsing + if ( $stat_cache=@stat($cache_filepath) ) { + $stat_source=stat($f); + if ($stat_cache['mtime'] >= $stat_source['mtime'] ) continue; + } + + $ast=$this->parseAndWalk($f, $traverser, $env); + $this->serializeAST($ast, $f, $cache_filepath); + } + } + // Framework specific code abstract public function detectFramework($sourcetree_rootpath); abstract public function parseFrameworkConfig($fw_props); |