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)
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 = serialize($arfiles) .'.js';
89         
90         if (!file_exists($output_path.'/'.$output)) {
91             $this->pack($arfiles,$output);
92         }
93         
94         print_r(sort(array_keys($arfiles));exit;
95         
96         
97         
98         
99         
100         
101     }
102     
103     /**
104      * wrapper arroudn packer...
105      * @param {Array} map of $files => filemtime the files to pack
106      * @param {String} $output name fo file to output
107      *
108      */
109     function pack($files, $output)
110     {
111         
112          
113         $o = HTML_FlexyFramework::get()->Pman_Core;
114         
115         if (empty($o['jspacker']) || !file_exists($o['jspacker'].'/pack.js')) {
116             echo '<!-- jspacker not set -->';
117             return false;
118             
119         }
120         require_once 'System.php';
121         $seed= System::which('seed');
122         if (!$seed) {
123             echo '<!-- seed not installed -->';
124             return false;
125             
126         }
127         $targetm = file_exists($output) ? filemtime($output) : 0;
128         $max = 0;
129         $ofiles = array();
130         foreach($files as $f => $mt) {
131             $max = max($max,$mt);
132             $ofiles[] = escapeshellarg($f);
133         }
134         if ($max < filemtime($output)) {
135             return true;
136         }
137         
138         $eoutput = escapeshellarg($f);
139         $cmd = "$seed {$o['jspacker']}/pack.js  -o $eoutput " . implode($files, ' ');
140         echo "$cmd\n";
141         echo `$cmd`;
142         exit;
143         
144         // we should do more checking.. return val etc..
145         if (file_exists($output) && ($max < filemtime($output) ) ) {
146             return $output;
147         }
148         return false;
149         
150     }
151     
152     
153     /***
154      * build:
155      *
156      * @param {String} $proj name of Pman component to build
157      * runs pack.js -m {proj} -a $src/*.js
158      * 
159      *
160      */
161       
162     function build($proj) 
163     {
164         echo "Building $proj\n";
165        // var_dump($proj);
166         if (empty($proj)) {
167             $this->err = "no project";
168             if ($this->cli) echo $this->err;
169             return;
170         }
171         // first item in path is always the app start directory..
172         $src= array_shift(explode(PATH_SEPARATOR, ini_get('include_path'))) .'/Pman/'. $proj;
173         
174         
175         
176        //$tmp = ini_get('session.save_path')."/{$proj}_". posix_getuid(). '_'.md5($src);
177         
178         
179         require_once 'System.php';
180         $seed= System::which('seed');
181         if (!$seed) {
182             $this->err ="no seed installed";
183             if ($this->cli) echo $this->err;
184             return false;
185         }
186         
187         $o = HTML_FlexyFramework::get()->Pman_Core;
188         
189         if (empty($o['jspacker']) || !file_exists($o['jspacker'].'/pack.js')) {
190             $this->err ="no jstoolkit path set [Pman_Core][jspacker] to the
191                     introspection documentation directory where pack.js is located.";
192             if ($this->cli) echo $this->err;
193             return false;
194         }  
195         
196         // should we be more specirfic!??!?!?
197          
198         $cmd = "$seed {$o['jspacker']}/pack.js -m $proj  -a  $src/*.js";
199         echo "$cmd\n";
200         passthru($cmd);
201         // technically we should trash old compiled files.. 
202         // or we move towards a 'cache in session directory model..'
203         
204         
205         /*
206         
207         $ret = $tmp . '/'. $proj . '.js';
208         if ($this->cli) {
209             echo "BUILT:  $ret \n";
210             exit;
211         }
212         return $ret;
213         */
214         
215     }
216     // link {PROJECT}/compiled/{PROJECT}.js to _compiled_ folder to make it live.
217         
218     function install($proj) 
219     {
220        
221         $base = dirname(realpath($_SERVER["SCRIPT_FILENAME"]));
222         if (empty($base )) {
223             $base = getcwd();
224         }
225         var_dump($base .'/Pman/'. $proj.'/compiled/'.$proj .'.js');
226         $src =  realpath($base .'/Pman/'. $proj.'/compiled/'.$proj .'.js');
227         if (!$src) {
228             echo "SKIP : no js file $proj\n";
229             return;
230         }
231         if (!file_exists("$base/_compiled_")) {
232             mkdir ("$base/_compiled_", 0755, true);
233         }
234         $target = "$base/_compiled_/".$proj .'.js';
235         print_R(array($src,$target));
236         if (file_exists($target)) {
237             return; // already installed.
238         }
239         
240         symlink($src, $target);
241         
242         
243     }
244     
245     function gatherProjects() {
246         $src= array_shift(explode(PATH_SEPARATOR, ini_get('include_path'))) .'/Pman';
247         
248         $ret = array();
249         foreach(scandir($src) as $f) {
250             if (!strlen($f) || $f[0] == '.') {
251                 continue;
252             }
253             
254             $fp = "$src/$f";
255             if (!is_dir($fp)) {
256                 continue;
257             }
258             if ($f == 'templates') {
259                 continue;
260             }
261             $ret[] = $f;
262             
263             
264         }
265         return $ret;
266     }
267 }
268