X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Findex_rd.php;h=d9031f56156766b80adec9db919e98d8e0e884d4;hb=a2924d2335ec5325dc322600fe373625575ac8e2;hp=b88ce9949d592e183c9e440013cc5359b021810f;hpb=29132d64781e139ce833dc27bc25683f54269e69;p=brisk.git diff --git a/web/index_rd.php b/web/index_rd.php index b88ce99..d9031f5 100644 --- a/web/index_rd.php +++ b/web/index_rd.php @@ -21,7 +21,7 @@ * */ -require_once("brisk.phh"); +require_once("Obj/brisk.phh"); log_load($sess, "LOAD: index_rd.php ".$QUERY_STRING); @@ -67,32 +67,32 @@ function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_su GLOBAL $is_page_streaming, $first_loop; $ret = FALSE; - $bri = FALSE; + $room = FALSE; - log_rd2($sess, "M"); + // log_rd2($sess, "M"); /* Sync check (read only without modifications */ ignore_user_abort(TRUE); - if (($sem = lock_data()) != FALSE) { + if (($sem = Room::lock_data()) != FALSE) { // Aggiorna l'expire time lato server if ($first_loop == TRUE) { log_only($sess, "F"); - $bri = &load_data(); - if (($user = &$bri->get_user($sess, $idx)) == FALSE) { - unlock_data($sem); + $room = &Room::load_data(); + if (($user = &$room->get_user($sess, $idx)) == FALSE) { + Room::unlock_data($sem); ignore_user_abort(FALSE); return (unrecerror()); } log_auth($sess, "update lacc"); $user->lacc = time(); - $bri->garbage_manager(FALSE); + // FIXME uncomment $room->garbage_manager(FALSE); - save_data($bri); + Room::save_data($room); $first_loop = FALSE; } log_only($sess, "U"); - unlock_data($sem); + Room::unlock_data($sem); ignore_user_abort(FALSE); } else { @@ -114,20 +114,26 @@ function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_su log_only2($sess, "R"); } - if ($bri == FALSE) { - ignore_user_abort(TRUE); - if (($sem = lock_data()) != FALSE) { + if ($room == FALSE) { + do { + ignore_user_abort(TRUE); + if (($sem = Room::lock_data()) == FALSE) + break; + log_only($sess, "P"); - $bri = &load_data(); - unlock_data($sem); - ignore_user_abort(FALSE); - } - else { + if (($room = &Room::load_data()) == FALSE) + break; + } while (0); + + if ($sem != FALSE) + Room::unlock_data($sem); + + ignore_user_abort(FALSE); + if ($room == FALSE) return (FALSE); - } } - if (($user = &$bri->get_user($sess, $idx)) == FALSE) { + if (($user = &$room->get_user($sess, $idx)) == FALSE) { return (unrecerror()); } @@ -140,10 +146,10 @@ function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_su if ($cur_step == -1) { // FUNZIONE from_scratch DA QUI ignore_user_abort(TRUE); - $sem = lock_data(); - $bri = &load_data(); - if (($user = &$bri->get_user($sess, $idx)) == FALSE) { - unlock_data($sem); + $sem = Room::lock_data(); + $room = &Room::load_data(); + if (($user = &$room->get_user($sess, $idx)) == FALSE) { + Room::unlock_data($sem); ignore_user_abort(FALSE); return (unrecerror()); } @@ -157,23 +163,28 @@ function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_su $user->trans_step = -1; - save_data($bri); - unlock_data($sem); + Room::save_data($room); + Room::unlock_data($sem); ignore_user_abort(FALSE); } else { log_rd2($sess, "TRANS NON ATTIVATO"); - unlock_data($sem); + Room::unlock_data($sem); ignore_user_abort(FALSE); } } if ($cur_step == -1) { - log_rd2($sess, "PRE-NEWSTAT."); + log_rd2($sess, "PRE-NEWSTAT: ".$user->stat); if ($user->stat == 'room') { log_rd($sess, "roomma"); - $ret .= show_room(&$bri, &$user); + $ret .= show_room(&$room, &$user); + + /* NOTE the sets went common */ + $new_stat = $user->stat; + $new_subst = $user->subst; + $new_step = $user->step; } /*************** * * @@ -181,22 +192,31 @@ function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_su * * ***************/ else if ($user->stat == 'table') { - $ret = show_table(&$bri,&$user,$user->step,FALSE,FALSE); + /* FIXME we need to decide what do in this case + + if ($user->subst != "shutdowned" && $user->subst != "shutdowner") + $ret = show_table(&$room,&$user,$user->step,FALSE,FALSE); log_rd2($sess, "SENDED TO THE STREAM: ".$ret); + + + $new_stat = $user->stat; + $new_subst = $user->subst; + $new_step = $user->step; + */ + log_rd2($sess, "ALL COMMENTED: ".$ret); + + } log_rd2($sess, "NEWSTAT: ".$user->stat); - $new_stat = $user->stat; - $new_subst = $user->subst; - $new_step = $user->step; } else { ignore_user_abort(TRUE); - $sem = lock_data(); - $bri = &load_data(); - if (($user = &$bri->get_user($sess, $idx)) == FALSE) { - unlock_data($sem); + $sem = Room::lock_data(); + $room = &Room::load_data(); + if (($user = &$room->get_user($sess, $idx)) == FALSE) { + Room::unlock_data($sem); ignore_user_abort(FALSE); return (unrecerror()); } @@ -205,8 +225,9 @@ function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_su if ($cur_step + COMM_N < $user->step) { if (($cur_stat != $user->stat)) { $to_stat = $user->stat; - unlock_data($sem); + Room::unlock_data($sem); ignore_user_abort(FALSE); + log_load($user->sess, "RESYNC"); return (page_sync($user->sess, $to_stat == "table" ? "table.php" : "index.php")); } log_rd2($sess, "lost history, refresh from scratch"); @@ -232,18 +253,20 @@ function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_su $user->name = ""; $user->the_end = FALSE; - if ($user->subst == 'sitdown') - $bri->room_wakeup(&$user); + if ($user->subst == 'sitdown') { + log_load($user->sess, "ROOM WAKEUP"); + $room->room_wakeup(&$user); + } else if ($user->subst == 'standup') - $bri->room_outstandup(&$user); + $room->room_outstandup(&$user); else log_rd2($sess, "LOGOUT FROM WHAT ???"); - save_data($bri); + Room::save_data($room); } } - unlock_data($sem); + Room::unlock_data($sem); ignore_user_abort(FALSE); } @@ -263,7 +286,7 @@ function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_su */ $is_page_streaming = ((stristr($HTTP_USER_AGENT, "linux") && - stristr($HTTP_USER_AGENT, "firefox")) ? FALSE : TRUE); + (stristr($HTTP_USER_AGENT, "firefox") || stristr($HTTP_USER_AGENT, "iceweasel"))) ? FALSE : TRUE); header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1