JsCompile.php
[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 *
9 * For general usage:
10 *  $x = new Pman_Core_JsCompile();
11 *  $x->pack('/path/to/files/', 'destination')
12 *  
13 */
14 require_once 'Pman.php';
15
16
17 class Pman_Core_JsCompile  extends Pman
18 {
19     var $cli = false;
20     function getAuth()
21     {
22         // command line only ATM
23         $this->cli = HTML_FlexyFramework::get()->cli;
24       //  var_dump($this->cli);
25         if ($this->cli) {
26             return true;
27         }
28         return  false;
29     }
30     
31     
32     function get($proj, $args)
33     {
34         if (empty($args)) {
35             die("missing action : eg. build or install");
36         }
37         // list of projects.
38         if (empty($args[1])) {
39             
40             $ar = $this->gatherProjects();
41              echo "SELECT Component to build\n";
42             print_r($ar);
43             exit;
44         } else {
45             $ar = array($args[1]); 
46             //$ar = $args;
47             //array_shift($ar);
48         }
49         
50         switch ($args[0]) {
51             case 'build':
52              
53                 foreach($ar as $p) {
54                     $this->build($p);
55                     //$this->install($p);
56                 }
57                 break;
58             case 'install' :     // needed for install on remote sites..
59                 die('not yet..');
60                 foreach($ar as $p) {
61                     $this->install($p);
62                 }
63                 break;
64         }
65         exit;
66     }
67     
68     
69     
70     function packScript($basedir, $files,  $output_path, $output_url)
71     {
72         // this outputs <script tags..>
73         // either for just the original files,
74         // or the compressed version.
75         // first expand files..
76         
77         $arfiles = array();
78         foreach($files as $f) {
79             if (!is_dir($basedir .'/' .$f)) {
80                 $arfiles[$basedir .'/' .$f] = filemtime($basedir .'/' .$f);
81                 continue;
82             }
83             foreach(glob($basedir .'/' .$f.'/*.js') as $fx) {
84                 $arfiles[$fx] = filemtime($fx);
85             }
86         }
87         
88         $output = md5(serialize($arfiles)) .'.js';
89         
90         if (!file_exists($output_path.'/'.$output)) {
91             $this->pack($arfiles,$output_path.'/'.$output);
92         }
93         
94         if (file_exists($output_path.'/'.$output)) {
95             
96             echo '<script type="text/javascript" src="'.$output_url.'/'. $output.'"></script>';
97             return;
98         }
99         foreach($arfiles as $f=>$t) {
100             echo '<script type="text/javascript" src="'.$f.'"></script>';
101             
102         }
103         
104         
105         
106         
107         
108         
109     }
110     
111     /**
112      * wrapper arroudn packer...
113      * @param {Array} map of $files => filemtime the files to pack
114      * @param {String} $output name fo file to output
115      *
116      */
117     function pack($files, $output)
118     {
119         
120          
121         $o = HTML_FlexyFramework::get()->Pman_Core;
122         
123         if (empty($o['jspacker']) || !file_exists($o['jspacker'].'/pack.js')) {
124             echo '<!-- jspacker not set -->';
125             return false;
126             
127         }
128         require_once 'System.php';
129         $seed= System::which('seed');
130         if (!$seed) {
131             echo '<!-- seed not installed -->';
132             return false;
133             
134         }
135         $targetm = file_exists($output) ? filemtime($output) : 0;
136         $max = 0;
137         $ofiles = array();
138         foreach($files as $f => $mt) {
139             $max = max($max,$mt);
140             $ofiles[] = escapeshellarg($f);
141         }
142         if ($max < $targetm)  {
143             return true;
144         }
145         if (!file_exists(dirname($output))) {
146             mkdir(dirname($output), 0755, true);
147         }
148         $eoutput = escapeshellarg($output);
149         $cmd = "$seed {$o['jspacker']}/pack.js  -o $eoutput " . implode($ofiles, ' ');
150         //echo "<PRE>$cmd\n";
151         //echo `$cmd`;
152         `$cmd`;
153         
154         
155         // we should do more checking.. return val etc..
156         if (file_exists($output) && ($max < filemtime($output) ) ) {
157             return true;
158         }
159         return false;
160         
161     }
162     
163     
164     /***
165      * build:
166      *
167      * @param {String} $proj name of Pman component to build
168      * runs pack.js -m {proj} -a $src/*.js
169      * 
170      *
171      */
172       
173     function build($proj) 
174     {
175         echo "Building $proj\n";
176        // var_dump($proj);
177         if (empty($proj)) {
178             $this->err = "no project";
179             if ($this->cli) echo $this->err;
180             return;
181         }
182         // first item in path is always the app start directory..
183         $src= array_shift(explode(PATH_SEPARATOR, ini_get('include_path'))) .'/Pman/'. $proj;
184         
185         
186         
187        //$tmp = ini_get('session.save_path')."/{$proj}_". posix_getuid(). '_'.md5($src);
188         
189         
190         require_once 'System.php';
191         $seed= System::which('seed');
192         if (!$seed) {
193             $this->err ="no seed installed";
194             if ($this->cli) echo $this->err;
195             return false;
196         }
197         
198         $o = HTML_FlexyFramework::get()->Pman_Core;
199         
200         if (empty($o['jspacker']) || !file_exists($o['jspacker'].'/pack.js')) {
201             $this->err ="no jstoolkit path set [Pman_Core][jspacker] to the
202                     introspection documentation directory where pack.js is located.";
203             if ($this->cli) echo $this->err;
204             return false;
205         }  
206         
207         // should we be more specirfic!??!?!?
208          
209         $cmd = "$seed {$o['jspacker']}/pack.js -m $proj  -a  $src/*.js";
210         echo "$cmd\n";
211         passthru($cmd);
212         // technically we should trash old compiled files.. 
213         // or we move towards a 'cache in session directory model..'
214         
215         
216         /*
217         
218         $ret = $tmp . '/'. $proj . '.js';
219         if ($this->cli) {
220             echo "BUILT:  $ret \n";
221             exit;
222         }
223         return $ret;
224         */
225         
226     }
227     // link {PROJECT}/compiled/{PROJECT}.js to _compiled_ folder to make it live.
228         
229     function install($proj) 
230     {
231        
232         $base = dirname(realpath($_SERVER["SCRIPT_FILENAME"]));
233         if (empty($base )) {
234             $base = getcwd();
235         }
236         var_dump($base .'/Pman/'. $proj.'/compiled/'.$proj .'.js');
237         $src =  realpath($base .'/Pman/'. $proj.'/compiled/'.$proj .'.js');
238         if (!$src) {
239             echo "SKIP : no js file $proj\n";
240             return;
241         }
242         if (!file_exists("$base/_compiled_")) {
243             mkdir ("$base/_compiled_", 0755, true);
244         }
245         $target = "$base/_compiled_/".$proj .'.js';
246         print_R(array($src,$target));
247         if (file_exists($target)) {
248             return; // already installed.
249         }
250         
251         symlink($src, $target);
252         
253         
254     }
255     
256     function gatherProjects() {
257         $src= array_shift(explode(PATH_SEPARATOR, ini_get('include_path'))) .'/Pman';
258         
259         $ret = array();
260         foreach(scandir($src) as $f) {
261             if (!strlen($f) || $f[0] == '.') {
262                 continue;
263             }
264             
265             $fp = "$src/$f";
266             if (!is_dir($fp)) {
267                 continue;
268             }
269             if ($f == 'templates') {
270                 continue;
271             }
272             $ret[] = $f;
273             
274             
275         }
276         return $ret;
277     }
278 }
279