diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2012-08-03 11:56:26 +0000 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2012-08-03 11:56:26 +0000 |
commit | 4c0cb2204e0924131aad564b99ef56d64659f1cd (patch) | |
tree | 7687b696dd5caecec2996bf663b612c348daab40 /poc/poc02-compiling-cake/src/php-weave/abstract_weaver.class.php | |
parent | 4c1215ca04bc682a5165363724a69f9a557304de (diff) | |
download | 2012-php-weave-4c0cb2204e0924131aad564b99ef56d64659f1cd.tar.gz 2012-php-weave-4c0cb2204e0924131aad564b99ef56d64659f1cd.tar.bz2 2012-php-weave-4c0cb2204e0924131aad564b99ef56d64659f1cd.zip |
Serialisation corrigée : json c'est une connerie... mais php embarque des fonctions de serialisation qui vont bien.
3m30 au parsing
30 secondes à la lecture de l'ensemble (118Mo sur disque, 800Mo en RAM)
Note : faut pas parser tous les tests case !!
Note2 : les gros blocs de commentaire de début de fichiers pourraient être sautés
git-svn-id: file:///var/svn/2012-php-weave/trunk@12 d972a294-176a-4cf9-8ea1-fcd5b0c30f5c
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 | 6 |
1 files changed, 3 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 f9eb513..1bc7bce 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 @@ -1,6 +1,6 @@ <?php require_once '../vendor/nikic/php-parser/lib/bootstrap.php'; -require_once 'json_serialiser.class.php'; +require_once 'php_serializer.class.php'; function dbg($indent, $text) { for($i=0;$i<$indent;$i++) echo "."; @@ -20,7 +20,7 @@ abstract class AbstractWeaver { $this->parser = new PHPParser_Parser(new PHPParser_Lexer); $this->nodeDumper = new PHPParser_NodeDumper; $this->prettyPrinter = new PHPParser_PrettyPrinter_Zend; - $this->serializer = new PHPParser_JSONSerialiser; + $this->serializer = new PHPParser_PHPSerializer; $this->unserializer = &$this->serializer; $this->ast_dump_before_walk=""; $this->ast_dump_after_walk=""; @@ -218,7 +218,7 @@ abstract class AbstractWeaver { } public function unserializeAST($src_filepath) { - return $this->serializer->unserialize($src_filepath); + return $this->serializer->unserialize(file_get_contents($src_filepath)); } public function findAllFiles($basepath, $regexMatch, $regexPrune, $already_found=array(), $level=0) { |