some log_lock to log_main to clean log_lock entries and SHUTTA log more understandable
[brisk.git] / web / briskin5 / index_rd.php
1 <?php
2 /*
3  *  brisk - briskin5/index_rd.php
4  *
5  *  Copyright (C) 2006-2011 Matteo Nastasi
6  *                          mailto: nastasi@alternativeoutput.it 
7  *                                  matteo.nastasi@milug.org
8  *                          web: http://www.alternativeoutput.it
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * General Public License for more details. You should have received a
19  * copy of the GNU General Public License along with this program; if
20  * not, write to the Free Software Foundation, Inc, 59 Temple Place -
21  * Suite 330, Boston, MA 02111-1307, USA.
22  *
23  */
24
25 $G_base = "../";
26
27 require_once("../Obj/brisk.phh");
28 // require_once("../Obj/proxyscan.phh");
29 require_once("Obj/briskin5.phh");
30
31 $S_load_stat = array( 'U_first_loop' => 0,
32                       'U_heavy'      => 0,
33                       'R_garbage'    => 0,
34                       'R_minusone'   => 0,
35                       'R_the_end'    => 0 );
36
37 // Use of proxies isn't allowed.
38 // if (is_proxy()) {
39 //   sleep(5);
40 //   exit;
41 // }
42
43 log_load("LOAD: bin5/index_rd.php ".$QUERY_STRING);
44
45 $first_loop = TRUE;
46 $the_end = FALSE;
47
48 if (DEBUGGING == "local" && $_SERVER['REMOTE_ADDR'] != '127.0.0.1') {
49   echo "Debugging time!";
50   exit;
51 }
52
53 function shutta()
54 {
55   log_rd2("bin5 SHUTTA [".connection_status()."] !");
56 }
57
58 register_shutdown_function(shutta);
59
60 function unrecerror()
61 {
62   GLOBAL $is_page_streaming;
63
64   $is_page_streaming = TRUE;
65   log_rd2("UNREC_ERROR");
66   return (sprintf('the_end=true; window.onbeforeunload = null; window.onunload = null; document.location.assign("../index.php");'));
67 }
68
69 function page_sync($sess, $page)
70 {
71   GLOBAL $is_page_streaming;
72
73   $is_page_streaming = TRUE;
74   log_rd2("PAGE_SYNC");
75   return (sprintf('the_end=true; window.onbeforeunload = null; window.onunload = null; document.location.assign("%s");', $page));
76 }
77
78 function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_subst, &$new_step, $table_idx, $table_token)
79 {
80     GLOBAL $is_page_streaming, $first_loop, $S_load_stat;
81     
82     $ret = FALSE;
83     $bri = FALSE;
84     $user = FALSE;
85     $curtime = time();
86     
87     if (($proxy_step = Bin5_user::load_step($sess)) == FALSE) {
88         log_only2("R");
89         return (FALSE);
90     }
91     
92     // log_rd2("M");
93     /* Sync check (read only without modifications */
94     ignore_user_abort(TRUE);
95     if  ($first_loop == TRUE) {
96         if (($sem = Bin5::lock_data($table_idx)) != FALSE) { 
97             // Aggiorna l'expire time lato server
98             $S_load_stat['U_first_loop']++;
99
100             if (($user = Bin5_user::load_data($table_idx, $proxy_step['i'], $sess)) == FALSE) {
101                 Bin5::unlock_data();
102                 ignore_user_abort(FALSE);
103                 return (unrecerror());
104             }
105             $user->lacc = $curtime;
106
107             Bin5_user::save_data($user, $table_idx, $user->idx);
108             
109             if (Bin5::garbage_time_is_expired($curtime)) {
110                 log_only("F");
111                 
112                 $S_load_stat['R_garbage']++;
113                 if (($bri = Bin5::load_data($table_idx, $table_token)) == FALSE) {
114                     Bin5::unlock_data($sem);
115                     ignore_user_abort(FALSE);
116                     return (unrecerror());
117                 }
118                 
119                 $bri->garbage_manager(FALSE);
120                 
121                 Bin5::save_data($bri);
122                 unset($bri);
123             }
124             log_main("infolock: U");
125             Bin5::unlock_data($sem);
126             ignore_user_abort(FALSE);
127         } // if (($sem = Bin5::lock_data($table ...
128         else {
129             ignore_user_abort(FALSE);
130             
131             return ("sleep(gst,20000);|xhr_rd_abort(xhr_rd);");
132         }
133         
134         $first_loop = FALSE;
135     } // if  ($first_loop == TRUE) {
136     
137     if ($cur_step == $proxy_step['s']) {
138         log_main("infolock: P");
139         return (FALSE);
140     }
141     else {
142         log_only2("R");
143     }
144     
145     if ($user == FALSE) {
146         do {
147             ignore_user_abort(TRUE);
148             if (($sem = Bin5::lock_data($table_idx)) == FALSE) 
149                 break;
150             
151             log_main("infolock: P");
152             $S_load_stat['U_heavy']++;
153             if (($user = Bin5_user::load_data($table_idx, $proxy_step['i'], $sess)) == FALSE) {
154                 break;
155             }
156         } while (0);
157         
158         if ($sem != FALSE)
159             Bin5::unlock_data($sem);
160         
161         ignore_user_abort(FALSE);
162         if ($user == FALSE) 
163             return (unrecerror());
164     }
165     
166     /* Nothing changed, return. */
167     if ($cur_step == $user->step) 
168         return (FALSE);
169     
170     log_rd2("do other cur_stat[".$cur_stat."] user->stat[".$user->stat."] cur_step[".$cur_step."] user_step[".$user->step."]");
171
172     if ($cur_step == -1) {
173         /*
174          *  if $cur_step == -1 load the current state from the main struct
175          */
176         ignore_user_abort(TRUE);
177         $sem = Bin5::lock_data($table_idx);
178         $bri = Bin5::load_data($table_idx, $table_token);
179         $S_load_stat['R_minusone']++;
180         
181         /* unset the $user var to reload it from main structure */
182         unset($user);
183         if (($user = $bri->get_user($sess, $idx)) == FALSE) {
184             Bin5::unlock_data($sem);
185             ignore_user_abort(FALSE);
186             return (unrecerror());
187         }
188         if ($user->the_end) {
189             log_rd2("main_check: the end".var_export(debug_backtrace()));
190             $is_page_streaming = TRUE;
191         }
192         
193         if ($user->trans_step != -1) {
194             log_rd2("TRANS USATO ".$user->trans_step);
195             $cur_step = $user->trans_step;
196             $user->trans_step = -1;
197             
198             Bin5::save_data($bri);
199             Bin5::unlock_data($sem);
200             ignore_user_abort(FALSE);
201         }
202         else {
203             log_rd2("TRANS NON ATTIVATO");
204             
205             //       ARRAY_POP DISABLED
206             //       while (array_pop($user->comm) != NULL);
207             //       // $user->step_inc(COMM_N + 1);
208             //       Bin5::save_data($bri);
209             
210             Bin5::unlock_data($sem);
211             ignore_user_abort(FALSE);
212         }
213     }
214     
215     if ($cur_step == -1) {
216         log_rd2("PRE-NEWSTAT.");
217         
218         /***************
219          *             *
220          *    TABLE    *
221          *             *
222          ***************/
223         if ($user->stat == "table") {      
224             $ret = show_table(&$bri,&$user,$user->step,FALSE,FALSE);
225             
226             log_rd2("SENDED TO THE STREAM: ".$ret);
227         }
228         log_rd2("NEWSTAT: ".$user->stat);
229         
230         $new_stat =  $user->stat;
231         $new_subst = $user->subst;
232         $new_step =  $user->step;
233     }
234     else {
235         ignore_user_abort(TRUE);
236         $sem = Bin5::lock_data($table_idx);
237         // if (($user = &$bri->get_user($sess, $idx)) == FALSE) {
238         if (($user = Bin5_user::load_data($table_idx, $proxy_step['i'], $sess)) == FALSE) {
239             Bin5::unlock_data($sem);
240             ignore_user_abort(FALSE);
241             return (unrecerror());
242         }
243         if ($cur_step < $user->step) {
244             do {
245                 if ($cur_step + COMM_N < $user->step) {
246                     if (($cur_stat != $user->stat)) {
247                         $to_stat = $user->stat;
248                         Bin5::unlock_data($sem);
249                         ignore_user_abort(FALSE);
250                         return (page_sync($user->sess, $to_stat == "table" ? "index.php" : "../index.php"));
251                     }
252                     log_rd2("lost history, refresh from scratch");
253                     $new_step = -1;
254                     break;
255                 } 
256                 for ($i = $cur_step ; $i < $user->step ; $i++) {
257                     $ii = $i % COMM_N;
258                     log_wr("TRY RET ".$i."  COMM_N ".COMM_N."  II ".$ii);
259                     $ret .= $user->comm[$ii];
260                 }
261                 $new_stat =  $user->stat;
262                 $new_subst = $user->subst;
263                 $new_step =  $user->step;
264             } while (0);
265             
266             log_mop($user->step, 'bin::index_rd.php: after ret set');
267             
268             if ($user->the_end == TRUE) {
269                 log_rd2("LOGOUT BYE BYE!!");
270                 log_auth($user->sess, "Explicit logout.");
271                 
272                 $S_load_stat['R_the_end']++;
273                 $bri = Bin5::load_data($table_idx, $table_token);
274                 unset($user);
275                 if (($user = $bri->get_user($sess, $idx)) == FALSE) {
276                     Bin5::unlock_data($sem);
277                     ignore_user_abort(FALSE);
278                     return (unrecerror());
279                 }
280                 
281                 $tmp_sess = $user->sess;
282                 $user->sess = "";
283                 step_unproxy($tmp_sess);
284                 $user->name = "";
285                 $user->the_end = FALSE;
286                 
287                 if ($user->subst == 'sitdown')
288                     $bri->room_wakeup($user);
289                 else if ($user->subst == 'standup')
290                     $bri->room_outstandup($user);
291                 else
292                     log_rd2("LOGOUT FROM WHAT ???");
293                 
294                 Bin5::save_data($bri);
295             }
296         }
297         
298         Bin5::unlock_data($sem);
299         ignore_user_abort(FALSE);
300   }
301   
302   
303   return ($ret);
304 }
305
306 /*
307  *  MAIN
308  */
309
310 /*
311    FROM THE EXTERN 
312    sess
313    stat
314    step
315 */
316
317 $is_page_streaming =  (stristr($HTTP_USER_AGENT, "MSIE") || stristr($HTTP_USER_AGENT, "CHROME") ? TRUE : FALSE);
318
319 header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
320 header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
321 header('Content-type: application/xml; charset="utf-8"',true);
322 // header('Content-type: text/plain; charset="utf-8"',true);
323 // header('Content-type: text/html; charset="utf-8"',true);
324
325 if (!isset($myfrom))
326      $myfrom = "";
327 if (!isset($subst))
328      $subst = "";
329 log_rd2("FROM OUTSIDE - STAT: ".$stat." SUBST: ".$subst." STEP: ".$step." MYFROM: ".$myfrom. "IS_PAGE:" . $is_page_streaming."USER_AGENT:".$HTTP_USER_AGENT);
330
331
332 $endtime = time() + STREAM_TIMEOUT;
333 $old_stat =  $stat;
334 $old_subst = $subst;
335 $old_step =  $ext_step = $step;
336
337 for ($i = 0 ; time() < $endtime ; $i++) {
338   // log_rd("PRE MAIN ".$step);;
339   $pre_main = gettimeofday(TRUE);
340   if (($ret = maincheck($sess, $old_stat, $old_subst, $old_step, &$stat, &$subst, &$step, $table_idx, $table_token)) != FALSE) {
341     echo '@BEGIN@';
342     // log_rd2(sprintf("\nSESS: [%s]\nOLD_STAT: [%s] OLD_SUBST: [%s] OLD_STEP: [%s] \nSTAT: [%s] SUBST: [%s] STEP: [%s] \nCOMM: [%s]\n", $sess, $old_stat, $old_subst, $old_step, $stat, $subst, $step, $ret));
343     echo "$ret";
344     echo ' @END@'; 
345     log_send("EXT_STEP: ".$ext_step." ENDTIME: [".$endtime."] ".$ret);
346     flush();
347     log_mop(0, 'bin::index_rd.php: after flush (begin: '.sprintf("%f", $pre_main).')');
348     if ($is_page_streaming)
349       break;
350   }
351   $old_stat =  $stat;
352   $old_subst = $subst;
353   $old_step =  $step;
354   // log_rd("POST MAIN ".$step);;
355   usleep(400000);
356   if (($i % 10) == 0) {
357     // log_rd2("TIME: ".time());
358     echo '_';
359     flush();
360   }
361  }
362
363 $s = "[".$sess."] briskin5/index_rd.php stats: ";
364 foreach ($S_load_stat as $key => $value) {
365     $s .= sprintf("%s: %d - ", $key, $value);
366 }
367 log_crit($s);
368
369 ?>