check right process
[Pman.Core] / JsCompile.php
1 <?php
2
3 /**
4 * wrapper code around js builder...
5
6 *  -- we will use this later to compile on the fly...
7 *
8 *  -- updated to use roojspacker https://github.com/roojs/roojspacker
9 *
10 *
11 * For general usage:
12 *  $x = new Pman_Core_JsCompile();
13 *  $x->pack('/path/to/files/', 'destination')
14 *  
15 */
16 require_once 'Pman.php';
17
18
19 class Pman_Core_JsCompile  extends Pman
20 {
21     
22     static $cli_desc = "Wrapper around Javascript compression tools
23                         Runs the javascript compiler - merging all the JS files so the load faster.
24                         Note: cfg option Pman_Builder['jspacker'] must be set to location of jstoolkit code 
25 ";
26     
27     var $cli = false;
28     function getAuth()
29     {
30         // command line only ATM
31         $this->cli = HTML_FlexyFramework::get()->cli;
32       //  var_dump($this->cli);
33         if ($this->cli) {
34             return true;
35         }
36         return  false;
37     }
38     
39     
40     function get($proj, $args=array())
41     {
42         if (empty($args)) {
43             die("missing action : eg. build or install");
44         }
45         // list of projects.
46         if (empty($args[1])) {
47             
48             $ar = $this->gatherProjects();
49              echo "SELECT Component to build\n";
50             print_r($ar);
51             exit;
52         } else {
53             $ar = array($args[1]); 
54             //$ar = $args;
55             //array_shift($ar);
56         }
57         
58         switch ($args[0]) {
59             case 'build':
60              
61                 foreach($ar as $p) {
62                     $this->build($p);
63                     //$this->install($p);
64                 }
65                 break;
66             case 'install' :     // needed for install on remote sites..
67                 die('not yet..');
68                 foreach($ar as $p) {
69                     $this->install($p);
70                 }
71                 break;
72         }
73         exit;
74     }
75     /**
76      * packScript:
77      *
78      * @param {String} basedir absolute path to files
79      * @param {Array}  list of files (ontop of basedir) 
80      * @param {String} output url (path to basedir basically), or false
81      *                  to not compile
82      * 
83      *
84      */
85     
86     static function jsSort($a,$b)
87     {
88         $a = substr($a, 0, -3);
89         $b=  substr($b, 0, -3);
90         if ($a == $b) {
91             return 0;
92         }
93         return ($a > $b) ? +1 : -1;
94     }
95     
96     
97     function packScript($basedir, $files,  $output_url, $compile=true)
98     {
99         // this outputs <script tags..>
100         // either for just the original files,
101         // or the compressed version.
102         // first expand files..
103         
104         echo "<!-- compiling   $basedir  -->\n";
105         
106         $arfiles = array();
107         $ofiles = array();
108         foreach($files as $f) {
109              if (!file_exists($basedir .'/' .$f)) {
110                 continue;
111             }
112             if (!is_dir($basedir .'/' .$f)) {
113                 
114                 $arfiles[$basedir .'/' .$f] = filemtime($basedir .'/' .$f);
115                 $ofiles[] = $f;
116                 continue;
117             }
118             
119             foreach(glob($basedir .'/' .$f.'/*.js') as $fx) {
120                 
121                 $arfiles[$fx] = filemtime($fx);
122                 $ofiles [] = $f . '/'. basename($fx);
123             }
124         }
125         $tf = 
126         // sort exc. the .js
127         usort($ofiles,function($a,$b) { return Pman_Core_JsCompile::jsSort($a,$b); });
128         
129         //print_R($ofiles);
130         
131         $output = md5(serialize($arfiles)) .'.js';
132         
133         if ( $compile && !file_exists($basedir.'/_cache_/'.$output)) {
134             $this->pack($arfiles,$basedir.'/_cache_/'.$output);
135         }
136         
137         if ($compile && file_exists($basedir.'/_cache_/'.$output)) {
138             
139             echo '<script type="text/javascript" src="'.$output_url.'/_cache_/'. $output.'"></script>';
140             return;
141         }
142         foreach($ofiles as $f) {
143             echo '<script type="text/javascript" src="'.$output_url.'/'.$f.'"></script>'."\n";
144             
145         }
146           
147     }
148     
149     // this is depricated... - we can use the pear CSS library for this..
150     
151     function packCss($basedir, $files,   $output_url)
152     {
153         // this outputs <script tags..>
154         // either for just the original files,
155         // or the compressed version.
156         // first expand files..
157         
158         $arfiles = array();
159         $ofiles = array();
160         //print_R($files);
161         foreach($files as $f) {
162             if (!file_exists($basedir .'/' .$f)) {
163                 continue;
164             }
165             if (!is_dir($basedir .'/' .$f)) {
166                 $arfiles[$basedir .'/' .$f] = filemtime($basedir .'/' .$f);
167                 $ofiles[] = $f;
168                 continue;
169             }
170             foreach(glob($basedir .'/' .$f.'/*.css') as $fx) {
171                 $arfiles[$fx] = filemtime($fx);
172                 $ofiles [] = $f . '/'. basename($fx);
173             }
174         }
175         
176         $output = md5(serialize($arfiles)) .'.css';
177         
178         if (!file_exists($basedir.'/_cache_/'.$output)) {
179             $this->packCssCore($arfiles,$basedir.'/_cache_/'.$output);
180         }
181         //var_dump()$basedir. '/_cache_/'.$output);
182         if (file_exists($basedir. '/_cache_/'.$output)) {
183             echo '<link type="text/css" rel="stylesheet" media="screen" href="'.$output_url. '/_cache_/'. $output.'" />';
184             return;
185         }
186         foreach($ofiles as $f ) {
187             echo '<link type="text/css" rel="stylesheet" media="screen" href="'.$output_url.'/'.$f.'" />'."\n";
188              
189         }
190          
191         
192     }
193      /**
194      * wrapper arroudn packer...
195      * @param {Array} map of $files => filemtime the files to pack
196      * @param {String} $output name fo file to output
197      *
198      */
199     function packCssCore($files, $output)
200     {
201         
202
203         
204         echo '<!-- JSCOMPILE - should not be used for CSS packing ?? -->';
205         return false;
206         // if we did.. use this?
207         
208         //require_once 'HTML/CSS/Minify.php';
209         //$x = new HTML_CSS_Minify(substr($relpath,0,-1), $dir, $relfiles);
210             
211           //  file_put_contents($compiledir.'/'.$output , $x->minify( $this->baseURL.$asset));
212         
213         
214     }
215     /**
216      * wrapper arround packer...
217      * uses the translation module & puts index in __tra
218      * 
219      * @param {Array} map of $files => filemtime the files to pack
220      * @param {String} $output name fo file to output
221      *
222      */
223     
224     function pack($files, $output, $translation_base=false)
225     {
226         
227         if (empty($files)) {
228             return false;
229         }
230         
231         // if packer is running, then dont compile - just output onebyone...
232         
233         
234         require_once 'System.php';
235         $packer = System::which('roojspacker');
236         
237         
238         if (!$packer) {
239             echo '<!-- roojspacker is not installed -->';
240             return false;
241             
242         }
243         $targetm = file_exists($output) && filesize($output) ? filemtime($output) : 0;
244         $max = 0;
245         $ofiles = array();
246         foreach($files as $f => $mt) {
247             $max = max($max,$mt);
248             $ofiles[] = escapeshellarg($f);
249         }
250         if ($max < $targetm) {
251             echo '<!--  use cached compile. -->';
252             return true;
253         }
254         
255         
256         
257         $pg = System::which('pgrep');
258         $cmd = "$pg roojspacker";
259         $out = trim(`$cmd`);
260         if (strlen($out) > 0) {
261             echo '<!--  onther process is compiling compile. -->';
262             return false;
263         }
264          
265         
266         if (file_exists($output)) {
267             unlink($output);
268         }
269         
270          
271         if (!file_exists(dirname($output))) {
272             mkdir(dirname($output), 0755, true);
273         }
274         
275         usort($ofiles, function($a,$b)  { return strlen($a) > strlen($b) ? 1 : -1; });
276         
277         //$eoutput = " -k  -o " . escapeshellarg($output) ; // with whitespace..
278         $eoutput = "  -t " . escapeshellarg($output) ;
279           
280         // no support for translation any more?         
281         //if (  $translation_base) {
282         //    $toutput = " -t ". escapeshellarg(preg_replace('/\.js$/', '.__translation__.js', $output)) .
283         //            " -p " . escapeshellarg($translation_base) ;//." -k "; // this kills the compression.
284         //            
285         //}
286         
287     
288         $cmd = "$packer  $eoutput  -f " . implode(' -f ', $ofiles) . ' 2>&1';
289         //echo "<PRE>$cmd\n";
290         //echo `$cmd`;
291         
292          echo "<!-- Compile javascript
293           
294             " . htmlspecialchars($cmd) . "
295             
296             -->";
297             
298        // return false;
299         
300         $res = `$cmd`;
301         //exit;
302         file_put_contents($output.'.log', $cmd."\n\n". $res);
303         // since this only appears when we change.. it's ok to dump it out..
304         echo "<!-- Compiled javascript
305             " . htmlspecialchars($res) . "
306             -->";
307         clearstatcache();
308         // we should do more checking.. return val etc..
309         if (file_exists($output) && filesize($output) && ($max < filemtime($output) ) ) {
310             echo "<!-- file looks like its been generated -->\n";
311             return true;
312         }
313         echo '<script type="text/javascript"> alert('. json_encode("Error: Javascript Compile failed\n" . $res) .');</script>';
314      
315         
316         echo "<!-- JS COMPILE ERROR: packed file did not exist  -->";
317         return false;
318         
319     }
320     
321     
322     function packIsRunning()
323     {
324         require_once 'System.php';
325       
326         
327     }
328     
329     
330     // depricated verison using seed.
331     function packSeed($files, $output, $translation_base=false)
332     {
333         
334          
335         $o = HTML_FlexyFramework::get()->Pman_Core;
336         
337         if (empty($o['packseed']) || !file_exists($o['jspacker'].'/pack.js')) {
338             echo '<!-- JS COMPILE ERROR: option: Pman_Core[jspacker] not set to directory -->';
339             return false;
340             
341         }
342         require_once 'System.php';
343         $seed= System::which('seed');
344         $gjs = System::which('gjs');
345         
346         if (!$seed && !$gjs) {
347             echo '<!-- seed or gjs are  not installed -->';
348             return false;
349             
350         }
351         $targetm = file_exists($output) && filesize($output) ? filemtime($output) : 0;
352         $max = 0;
353         $ofiles = array();
354         foreach($files as $f => $mt) {
355             $max = max($max,$mt);
356             $ofiles[] = escapeshellarg($f);
357         }
358         if ($max < $targetm) {
359             echo '<!--  use cached compile. -->';
360             return true;
361         }
362         //var_dump($output);
363         if (!file_exists(dirname($output))) {
364             mkdir(dirname($output), 0755, true);
365         }
366         $lsort = create_function('$a,$b','return strlen($a) > strlen($b) ? 1 : -1;');
367         usort($ofiles, $lsort);
368         
369         //$eoutput = " -k  -o " . escapeshellarg($output) ; // with whitespace..
370         $eoutput = "  -o " . escapeshellarg($output) ;
371                    
372         if (  $translation_base) {
373             $toutput = " -t ". escapeshellarg(preg_replace('/\.js$/', '.__translation__.js', $output)) .
374                     " -p " . escapeshellarg($translation_base) ;//." -k "; // this kills the compression.
375                     
376         }
377         
378         
379         $cmd = ($seed ?
380              "$seed {$o['packseed']}/pack.js " :
381              "$gjs -I {$o['packseed']} -I {$o['packseed']}/JSDOC  {$o['packseed']}/pack.js -- -- " 
382               
383              ) . " $eoutput  $toutput " . implode($ofiles, ' ') . ' 2>&1';
384         //echo "<PRE>$cmd\n";
385         //echo `$cmd`;
386         
387          echo "<!-- Compile javascript
388           
389             " . htmlspecialchars($cmd) . "
390             
391             -->";
392             
393        // return false;
394         
395         $res = `$cmd`;
396         //exit;
397         file_put_contents($output.'.log', $cmd."\n\n". $res);
398         // since this only appears when we change.. it's ok to dump it out..
399         echo "<!-- Compiled javascript
400             " . htmlspecialchars($res) . "
401             -->";
402             
403         // we should do more checking.. return val etc..
404         if (file_exists($output) && ($max < filemtime($output) ) ) {
405             
406             return true;
407         }
408         
409          
410         echo "\n<!-- JS COMPILE ERROR: packed file did not exist  -->\n";
411         return false;
412         
413     }
414     
415     
416     /***
417      * build:
418      *
419      * @param {String} $proj name of Pman component to build
420      * runs pack.js -m {proj} -a $src/*.js
421      * 
422      *
423      */
424       
425     function build($proj) 
426     {
427         echo "Building $proj\n";
428        // var_dump($proj);
429         if (empty($proj)) {
430             $this->err = "no project";
431             if ($this->cli) echo $this->err;
432             return;
433         }
434         // first item in path is always the app start directory..
435         $src= array_shift(explode(PATH_SEPARATOR, ini_get('include_path'))) .'/Pman/'. $proj;
436         
437         
438         
439        //$tmp = ini_get('session.save_path')."/{$proj}_". posix_getuid(). '_'.md5($src);
440         
441         
442         require_once 'System.php';
443         $seed= System::which('seed');
444         if (!$seed) {
445             $this->err ="no seed installed";
446             if ($this->cli) echo $this->err;
447             return false;
448         }
449         
450         $o = HTML_FlexyFramework::get()->Pman_Core;
451         
452         if (empty($o['packseed']) || !file_exists($o['packseed'].'/pack.js')) {
453             $this->err ="no jstoolkit path set [Pman_Core][packseed] to the
454                     introspection documentation directory where pack.js is located.";
455             if ($this->cli) echo $this->err;
456             return false;
457         }  
458         
459         // should we be more specirfic!??!?!?
460          
461         $cmd = "$seed {$o['packseed']}/pack.js -m $proj  -a  $src/*.js";
462         echo "$cmd\n";
463         passthru($cmd);
464         // technically we should trash old compiled files.. 
465         // or we move towards a 'cache in session directory model..'
466         
467         
468         /*
469         
470         $ret = $tmp . '/'. $proj . '.js';
471         if ($this->cli) {
472             echo "BUILT:  $ret \n";
473             exit;
474         }
475         return $ret;
476         */
477         
478     }
479     // link {PROJECT}/compiled/{PROJECT}.js to _compiled_ folder to make it live.
480         
481     function install($proj) 
482     {
483        
484         $base = dirname(realpath($_SERVER["SCRIPT_FILENAME"]));
485         if (empty($base )) {
486             $base = getcwd();
487         }
488         var_dump($base .'/Pman/'. $proj.'/compiled/'.$proj .'.js');
489         $src =  realpath($base .'/Pman/'. $proj.'/compiled/'.$proj .'.js');
490         if (!$src) {
491             echo "SKIP : no js file $proj\n";
492             return;
493         }
494         if (!file_exists("$base/_compiled_")) {
495             mkdir ("$base/_compiled_", 0755, true);
496         }
497         $target = "$base/_compiled_/".$proj .'.js';
498         print_R(array($src,$target));
499         if (file_exists($target)) {
500             return; // already installed.
501         }
502         
503         symlink($src, $target);
504         
505         
506     }
507     
508     function gatherProjects() {
509         $src= array_shift(explode(PATH_SEPARATOR, ini_get('include_path'))) .'/Pman';
510         
511         $ret = array();
512         foreach(scandir($src) as $f) {
513             if (!strlen($f) || $f[0] == '.') {
514                 continue;
515             }
516             
517             $fp = "$src/$f";
518             if (!is_dir($fp)) {
519                 continue;
520             }
521             if ($f == 'templates') {
522                 continue;
523             }
524             $ret[] = $f;
525             
526             
527         }
528         return $ret;
529     }
530 }
531