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