buildSDK/pre-commit
[roojs1] / buildSDK / pre-commit
1 #!/usr/bin/php
2 <?php
3
4 // install : ln -s buildSDK/pre-commit .git/hooks/
5
6 // the recomendation is to check if the current commit is same as the one on any of the files/directories that need monitoring.
7
8 register_shutdown_function ( 'unlock');
9 lock();
10
11 trigger_action('build_docs', array('Roo.js', 'Roo/', 'Array.js', 'Function.js', 'Date.js', 'String.js', 'Number.js'));
12
13 $core = trigger_action('compile_core', explode("\n", file_get_contents(__DIR__). 'dependancy_core.txt'));
14 $ui = trigger_action('compile_ui', explode("\n", file_get_contents(__DIR__). 'dependancy_ui.txt'));
15 trigger_action('compile_bootstrap', explode("\n", file_get_contents(__DIR__). 'dependancy_bootstrap.txt'));
16 trigger_action('compile_mailer', explode("\n", file_get_contents(__DIR__). 'dependancy_mailer.txt'));
17 trigger_action('compile_calendar', explode("\n", file_get_contents(__DIR__). 'dependancy_calendar.txt'));
18
19 trigger_action('compile_less', array('less'));
20 trigger_action('compile_scss', array('scss'));
21
22 if ($core || $ui) {
23     merge_files();
24 }
25
26 function lock()
27 {
28     static $tries = 0;
29     clearstatcache();
30     if (file_exists(".git/pre-commit-running")) {
31         if (file_exists(".git/pre-commit-pending")) {
32             exit;
33         }
34         file_put_contents(".git/pre-commit-pending","\n");
35         sleep(30); // wait 30 seconds
36         unlink(".git/pre-commit-pending");
37         $tries++;
38         if ($tries > 3) {
39             exit;
40         }
41     }
42     file_put_contents(".git/pre-commit-running","\n");
43 }
44 function unlock()
45 {
46     unlink(".git/pre-commit-running");
47 }
48
49
50 function changed_files()
51 {
52     static $output = array();
53     if (!empty($output)) {
54         return $output;
55     }
56     $return = 0;
57     exec('git rev-parse --verify HEAD 2> /dev/null', $output, $return);
58     if ($return != 0) {
59         exit;
60     }
61     
62     exec("git diff-index --cached --name-only 'HEAD'", $output);
63     return $output;
64 }
65
66
67 function trigger_action($fn, $files)
68 {
69     $changed = changed_files();
70     foreach(changed_files() as $cg) {
71         foreach($files as $f) {
72             if ($f == $cg) {
73                 $fn();
74                 return true;
75             }
76             if (substr($f, -1,1) == '/' && substr($cg,0, strlen($f)) == $f) {
77                 $fn();
78                 return true;    
79             }
80         }
81     }
82     return false;
83 }
84
85 function build_docs()
86 {
87     exec("roojspacker -i buildSDK/dependancy_core.txt  -i buildSDK/dependancy_ui.txt  " . 
88     "-i buildSDK/dependancy_bootstrap.txt -i buildSDK/dependancy_calendar.txt " .
89    "--doc-target=docs -D");
90 }
91 function compile_core()
92 {
93     exec("roojspacker -t roojs-core.js -T roojs-core-debug.js -i buildSDK/dependancy_core.txt ");
94 }
95
96 function compile_ui()
97 {
98     exec("roojspacker -t roojs-ui.js -T roojs-ui-debug.js -i buildSDK/dependancy_ui.txt");
99 }
100
101 function merge_files()
102 {
103     exec("cat      roojs-core.js  roojs-ui.js >  roojs-all.js");
104     exec("cat roojs-core-debug.js  roojs-ui-debug.js > roojs-debug.js");
105 }
106
107  
108 function compile_bootstrap()
109 {
110     exec("roojspacker -t roojs-bootstrap.js -T roojs-bootstrap-debug.js -i buildSDK/dependancy_bootstrap.txt");
111 }
112  
113 function compile_calendar()
114 {
115     exec("roojspacker -t roojs-calendar.js -T roojs-calendar-debug.js -i buildSDK/dependancy_calendar.txt");
116 }  
117   
118   
119 function compile_mailer()
120 {
121
122     exec("roojspacker -t roojs-mailer.js -T roojs-mailer-debug.js -i buildSDK/dependancy_mailer.txt");
123 }  
124  
125 function compile_docbook()
126 {
127     exec("roojspacker -t roojs-doc.js -T roojs-doc-debug.js -i buildSDK/dependancy_doc.txt");
128 }
129
130   
131
132 function compile_less()
133 {
134     exec("php buildSDK/less-bootstrap-complier.php");
135 }
136
137 function compile_scss()
138 {
139     exec("php buildSDK/scss-bootstrap.php");
140
141  
142
143
144
145  
146        
147