experimental optimization added
[brisk.git] / web / index_rd.php
1 <?php
2 /*
3  *  brisk - index_rd.php
4  *
5  *  Copyright (C) 2006-2007 matteo.nastasi@milug.org
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details. You should have received a
16  * copy of the GNU General Public License along with this program; if
17  * not, write to the Free Software Foundation, Inc, 59 Temple Place -
18  * Suite 330, Boston, MA 02111-1307, USA.
19  *
20  * $Id$
21  *
22  */
23
24 require_once("Obj/brisk.phh");
25 require_once("briskin5/Obj/briskin5.phh");
26
27 log_load("index_rd.php");
28
29 $first_loop = TRUE;
30 $the_end = FALSE;
31
32 if (DEBUGGING == "local" && $_SERVER['REMOTE_ADDR'] != '127.0.0.1') {
33   echo "Debugging time!";
34   exit;
35 }
36
37 function shutta()
38 {
39   log_rd2("SHUTTA!".connection_status());
40 }
41
42
43 register_shutdown_function(shutta);
44
45 function unrecerror()
46 {
47   GLOBAL $is_page_streaming;
48
49   $is_page_streaming = TRUE;
50   log_rd2("UNREC_ERROR:".var_export(debug_backtrace()));
51   return (sprintf('the_end=true; window.onunload = null; document.location.assign("index.php");'));
52 }
53
54 function page_sync($sess, $page, $table_idx, $table_token)
55 {
56   GLOBAL $is_page_streaming;
57
58   log_rd2("page_sync:".var_export(debug_backtrace()));
59
60   $is_page_streaming = TRUE;
61
62   log_rd2("PAGE_SYNC");
63   return (sprintf('createCookie("table_idx", %d, 24*365, cookiepath); createCookie("table_token", "%s", 24*365, cookiepath); the_end=true; window.onunload = null; document.location.assign("%s");', $table_idx, $table_token, $page));
64 }
65
66
67
68
69 function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_subst, &$new_step)
70 {
71   GLOBAL $is_page_streaming, $first_loop;
72   
73   $ret = FALSE;
74   $room = FALSE;
75
76   // log_rd2("M");
77   /* Sync check (read only without modifications */
78   ignore_user_abort(TRUE);
79   if (($sem = Room::lock_data()) != FALSE) { 
80     // Aggiorna l'expire time lato server
81     if  ($first_loop == TRUE) {
82       log_only("F");
83       $room = &Room::load_data();
84       if (($user = &$room->get_user($sess, $idx)) == FALSE) {
85         Room::unlock_data($sem);
86         ignore_user_abort(FALSE);
87         return (unrecerror());
88       }
89       log_auth($sess, "update lacc");
90       $user->lacc = time();
91
92       log_main("pre garbage_manager TRE");
93       $room->garbage_manager(FALSE);
94       
95       Room::save_data($room);
96       $first_loop = FALSE;
97     }
98
99     log_lock("U");
100     Room::unlock_data($sem);
101     ignore_user_abort(FALSE);
102   }
103   else {
104     return (FALSE);
105   }
106     
107   if (($proxy_step = step_get($sess)) != FALSE) {
108     // log_rd2("Postget".$proxy_step."zizi");
109
110     if ($cur_step == $proxy_step) {
111       log_lock("P");
112       return (FALSE);
113     }
114     else {
115       log_only2("R");
116     }
117   }
118   else {
119       log_only2("R");
120   }
121
122   if ($room == FALSE) {
123     do {
124       ignore_user_abort(TRUE);
125       if (($sem = Room::lock_data()) == FALSE) 
126         break;
127       
128       log_lock("P");
129       if (($room = &Room::load_data()) == FALSE) 
130         break;
131     } while (0);
132     
133     if ($sem != FALSE)
134       Room::unlock_data($sem);
135     
136     ignore_user_abort(FALSE);
137     if ($room == FALSE) 
138       return (FALSE);
139   }
140   
141   if (($user = &$room->get_user($sess, $idx)) == FALSE) {
142     return (unrecerror());
143   }
144
145   /* Nothing changed, return. */
146   if ($cur_step == $user->step) 
147     return (FALSE);
148
149   log_rd2("do other ++".$cur_stat."++".$user->stat."++".$cur_step."++".$user->step);
150
151   if ($cur_step == -1) {
152     // FUNZIONE from_scratch DA QUI 
153     ignore_user_abort(TRUE);
154     $sem = Room::lock_data();
155     $room = &Room::load_data();
156     if (($user = &$room->get_user($sess, $idx)) == FALSE) {
157       Room::unlock_data($sem);
158       ignore_user_abort(FALSE);
159       return (unrecerror());
160     }
161     if ($user->the_end) { 
162       log_rd2("main_check: the end".var_export(debug_backtrace()));
163       $is_page_streaming = TRUE;
164     }
165
166     if ($user->trans_step != -1) {
167       log_rd2("TRANS USATO ".$user->trans_step);
168       $cur_step = $user->trans_step;
169       $user->trans_step = -1;
170
171
172       Room::save_data($room);
173       Room::unlock_data($sem);
174       ignore_user_abort(FALSE);
175     }
176     else {
177       log_rd2("TRANS NON ATTIVATO");
178       Room::unlock_data($sem);
179       ignore_user_abort(FALSE);
180     }
181   }
182       
183   if ($cur_step == -1) {
184     log_rd2("PRE-NEWSTAT: ".$user->stat);
185
186     if ($user->stat == 'room') {
187       log_rd("roomma ".$user->step);
188       $ret .= show_room(&$room, $user->step, &$user);
189
190       // TODO uncomment and test
191       // while (array_pop($user->comm) != NULL);
192       // $new_step = -1;
193       // $user->step_inc(COMM_N + 1);
194       // Room::save_data($room);
195       /* NOTE the sets went common */
196       $new_stat =  $user->stat;
197       $new_subst = $user->subst;
198       $new_step =  $user->step;
199     }
200     /***************
201      *             *
202      *    TABLE    *
203      *             *
204      ***************/
205     else if ($user->stat == 'table') {
206       log_load("RESYNC");
207       return (page_sync($user->sess, "briskin5/index.php", $user->table, $user->table_token));
208     }
209     log_rd2("NEWSTAT: ".$user->stat);
210   }
211   else {
212     ignore_user_abort(TRUE);
213     $sem = Room::lock_data();
214     $room = &Room::load_data();
215     if (($user = &$room->get_user($sess, $idx)) == FALSE) {
216       Room::unlock_data($sem);
217       ignore_user_abort(FALSE);
218       return (unrecerror());
219     }
220     if ($cur_step < $user->step) {
221       do {
222         if ($cur_step + COMM_N < $user->step) {
223           if (($cur_stat != $user->stat)) {
224             $to_stat = $user->stat;
225             Room::unlock_data($sem);
226             ignore_user_abort(FALSE);
227             log_load("RESYNC");
228             return (page_sync($user->sess, ($to_stat == "table" ? "briskin5/index.php" : "index.php"), $user->table, $user->table_token));
229           }
230           log_rd2("lost history, refresh from scratch");
231           $new_step = -1;
232           break;
233         } 
234         for ($i = $cur_step ; $i < $user->step ; $i++) {
235           log_rd2("ADDED TO THE STREAM: ".$user->comm[$i % COMM_N]);
236           $ret .= $user->comm[$i % COMM_N];
237         }
238         $new_stat =  $user->stat;
239         $new_subst = $user->subst;
240         $new_step =  $user->step;
241       } while (0);
242       
243       if ($user->the_end == TRUE) {
244         log_rd2("LOGOUT BYE BYE!!");
245         log_auth($user->sess, "Explicit logout.");
246         $tmp_sess = $user->sess;
247         $user->sess = "";
248         step_unproxy($tmp_sess);
249         
250         $user->name = "";
251         $user->the_end = FALSE;
252         
253         if ($user->subst == 'sitdown') {
254           log_load("ROOM WAKEUP");
255           $room->room_wakeup(&$user);
256         }
257         else if ($user->subst == 'standup')
258           $room->room_outstandup(&$user);
259         else
260           log_rd2("LOGOUT FROM WHAT ???");
261           
262         Room::save_data($room);
263       }
264     }
265           
266     Room::unlock_data($sem);
267     ignore_user_abort(FALSE);
268   }
269
270   
271   return ($ret);
272 }
273
274 /*
275  *  MAIN
276  */
277
278 /*
279    FROM THE EXTERN 
280    sess
281    stat
282    step
283 */
284
285 $is_page_streaming =  ((stristr($HTTP_USER_AGENT, "linux") && 
286                         (stristr($HTTP_USER_AGENT, "firefox") || stristr($HTTP_USER_AGENT, "iceweasel"))) ? FALSE : TRUE);
287
288
289 header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
290 header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
291
292 if (!isset($myfrom))
293      $myfrom = "";
294 if (!isset($subst))
295      $subst = "";
296 log_rd2("FROM OUTSIDE - STAT: ".$stat." SUBST: ".$subst." STEP: ".$step." MYFROM: ".$myfrom. "IS_PAGE:" . $is_page_streaming);
297
298
299 $endtime = time() + STREAM_TIMEOUT;
300 $old_stat =  $stat;
301 $old_subst = $subst;
302 $old_step =  $ext_step = $step;
303
304 for ($i = 0 ; time() < $endtime ; $i++) {
305   // log_rd("PRE MAIN ".$step);;
306   if (($ret = maincheck($sess, $old_stat, $old_subst, $old_step, &$stat, &$subst, &$step)) != FALSE) {
307     echo '@BEGIN@';
308     // 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));
309     echo "$ret";
310     echo ' @END@'; 
311     log_send("IS_PAGE: ".($is_page_streaming == TRUE ? "TRUE" : "FALSE")."EXT_STEP: ".$ext_step." ENDTIME: [".$endtime."] ".$ret);
312     flush();
313     if ($is_page_streaming)
314       break;
315   }
316   $old_stat =  $stat;
317   $old_subst = $subst;
318   $old_step =  $step;
319   // log_rd("POST MAIN ".$step);;
320   usleep(400000);
321   if (($i % 5) == 0) {
322     // log_rd2("TIME: ".time());
323     echo '_';
324     flush();
325   }
326 }
327
328 ?>