minor
[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, clean del comm array");
178        while (($el = array_pop($user->comm)) != NULL) { 
179          log_rd2("clean element [".$el."]");
180        }
181        //        $user->step_inc(COMM_N + 1);
182        Room::save_data($room);
183        //        $new_step = $user->step;
184          
185        Room::unlock_data($sem);
186        ignore_user_abort(FALSE);
187     }
188   }
189       
190   if ($cur_step == -1) {
191     log_rd2("PRE-NEWSTAT: ".$user->stat);
192
193     if ($user->stat == 'room') {
194       log_rd("roomma ".$user->step);
195       $ret .= show_room(&$room, $user->step, &$user);
196
197       // TODO uncomment and test
198       /* NOTE the sets went common */
199       $new_stat =  $user->stat;
200       $new_subst = $user->subst;
201       $new_step =  $user->step;
202     }
203     /***************
204      *             *
205      *    TABLE    *
206      *             *
207      ***************/
208     else if ($user->stat == 'table') {
209       log_load("RESYNC");
210       return (page_sync($user->sess, "briskin5/index.php", $user->table, $user->table_token));
211     }
212     log_rd2("NEWSTAT: ".$user->stat);
213   }
214   else {
215     ignore_user_abort(TRUE);
216     $sem = Room::lock_data();
217     $room = &Room::load_data();
218     if (($user = &$room->get_user($sess, $idx)) == FALSE) {
219       Room::unlock_data($sem);
220       ignore_user_abort(FALSE);
221       return (unrecerror());
222     }
223     if ($cur_step < $user->step) {
224       do {
225         if ($cur_step + COMM_N < $user->step) {
226           if (($cur_stat != $user->stat)) {
227             $to_stat = $user->stat;
228             Room::unlock_data($sem);
229             ignore_user_abort(FALSE);
230             log_load("RESYNC");
231             return (page_sync($user->sess, ($to_stat == "table" ? "briskin5/index.php" : "index.php"), $user->table, $user->table_token));
232           }
233           log_rd2("lost history, refresh from scratch");
234           $new_step = -1;
235           break;
236         } 
237         for ($i = $cur_step ; $i < $user->step ; $i++) {
238           log_rd2("ADDED TO THE STREAM: ".$user->comm[$i % COMM_N]);
239           $ret .= $user->comm[$i % COMM_N];
240         }
241         $new_stat =  $user->stat;
242         $new_subst = $user->subst;
243         $new_step =  $user->step;
244       } while (0);
245       
246       if ($user->the_end == TRUE) {
247         log_rd2("LOGOUT BYE BYE!!");
248         log_auth($user->sess, "Explicit logout.");
249         $tmp_sess = $user->sess;
250         $user->sess = "";
251         step_unproxy($tmp_sess);
252         
253         $user->name = "";
254         $user->the_end = FALSE;
255         
256         if ($user->subst == 'sitdown') {
257           log_load("ROOM WAKEUP");
258           $room->room_wakeup(&$user);
259         }
260         else if ($user->subst == 'standup')
261           $room->room_outstandup(&$user);
262         else
263           log_rd2("LOGOUT FROM WHAT ???");
264           
265         Room::save_data($room);
266       }
267     }
268           
269     Room::unlock_data($sem);
270     ignore_user_abort(FALSE);
271   }
272
273   
274   return ($ret);
275 }
276
277 /*
278  *  MAIN
279  */
280
281 /*
282    FROM THE EXTERN 
283    sess
284    stat
285    step
286 */
287
288 $is_page_streaming =  ((stristr($HTTP_USER_AGENT, "linux") && 
289                         (stristr($HTTP_USER_AGENT, "firefox") || stristr($HTTP_USER_AGENT, "iceweasel"))) ? FALSE : TRUE);
290
291
292 header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
293 header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
294
295 if (!isset($myfrom))
296      $myfrom = "";
297 if (!isset($subst))
298      $subst = "";
299 log_rd2("FROM OUTSIDE - STAT: ".$stat." SUBST: ".$subst." STEP: ".$step." MYFROM: ".$myfrom. "IS_PAGE:" . $is_page_streaming);
300
301
302 $endtime = time() + STREAM_TIMEOUT;
303 $old_stat =  $stat;
304 $old_subst = $subst;
305 $old_step =  $ext_step = $step;
306
307 for ($i = 0 ; time() < $endtime ; $i++) {
308   // log_rd("PRE MAIN ".$step);;
309   if (($ret = maincheck($sess, $old_stat, $old_subst, $old_step, &$stat, &$subst, &$step)) != FALSE) {
310     echo '@BEGIN@';
311     // 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));
312     echo "$ret";
313     echo ' @END@'; 
314     log_send("IS_PAGE: ".($is_page_streaming == TRUE ? "TRUE" : "FALSE")."EXT_STEP: ".$ext_step." ENDTIME: [".$endtime."] ".$ret);
315     flush();
316     if ($is_page_streaming)
317       break;
318   }
319   $old_stat =  $stat;
320   $old_subst = $subst;
321   $old_step =  $step;
322   // log_rd("POST MAIN ".$step);;
323   usleep(400000);
324   if (($i % 5) == 0) {
325     // log_rd2("TIME: ".time());
326     echo '_';
327     flush();
328   }
329 }
330
331 ?>