X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbriskin5%2FObj%2Fbriskin5.phh;h=94840679fe438ce82e2592f1dc7b025939191d3a;hb=6a7088b090b78123ccfaa3ba00e1ea81647b173c;hp=bd5252f91c9e2aa6b49e5b6ee51c2635578de7e5;hpb=65680887c5bd1afa00e4cddc2877f7bb1a3cd58c;p=brisk.git diff --git a/web/briskin5/Obj/briskin5.phh b/web/briskin5/Obj/briskin5.phh index bd5252f..9484067 100644 --- a/web/briskin5/Obj/briskin5.phh +++ b/web/briskin5/Obj/briskin5.phh @@ -581,7 +581,7 @@ class Bin5_user extends User { static function load_data($tab_id, $id, $sess) { - log_main("Bin5_user::load_data: tab_id [".$tab_id."] id [".$id."] sess [".($sess == FALSE ? "FALSE" : $sess)."] "); + log_load("Bin5_user::load_data: tab_id [".$tab_id."] id [".$id."] sess [".($sess == FALSE ? "FALSE" : $sess)."] "); do { if (($tok = @ftok(FTOK_PATH."/bin5/table".$tab_id."/user".$id, "B")) == -1) { @@ -761,7 +761,7 @@ class Bin5 { $this->table_idx = $table_idx; $this->table_token = $table_token; - Bin5::garbage_time_expire_set(0); + Bin5::garbage_time_expire_set($table_idx, 0); log_wr("Bin5 constructor end"); } @@ -800,7 +800,7 @@ class Bin5 { $ismod = FALSE; $curtime = time(); // externalized if ($force || $this->garbage_timeout < $curtime) { - if ($force || Bin5::garbage_time_is_expired($curtime)) { + if ($force || Bin5::garbage_time_is_expired($this->table_idx, $curtime)) { for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++) { $user_cur = $this->user[$i]; if ($user_cur->sess == "" || @@ -839,7 +839,7 @@ class Bin5 { log_rd2($user_cur->sess." GARBAGE UPDATED!"); // externalized $this->garbage_timeout = $curtime + GARBAGE_TIMEOUT; - Bin5::garbage_time_expire_set($curtime + GARBAGE_TIMEOUT); + Bin5::garbage_time_expire_set($this->table_idx, $curtime + GARBAGE_TIMEOUT); $ismod = TRUE; } @@ -992,7 +992,7 @@ class Bin5 { return ($ret); } - function lock_data($table_idx) + static function lock_data($is_exclusive, $table_idx) { GLOBAL $sess; @@ -1004,7 +1004,7 @@ class Bin5 { return (FALSE); } // WARNING monitor this step - if (($res = @sem_get($tok)) == FALSE) { + if (($res = @sem_get($tok, ($is_exclusive ? 1 : LOCK_SHARE_MAX) )) == FALSE) { return (FALSE); } if (sem_acquire($res)) { @@ -1019,7 +1019,7 @@ class Bin5 { } } - function unlock_data($res_vect) + static function unlock_data($res_vect) { GLOBAL $sess; @@ -1203,14 +1203,14 @@ class Bin5 { } - static function garbage_time_is_expired($tm) + static function garbage_time_is_expired($tab_id, $tm) { $ret = TRUE; $fp = FALSE; do { if (file_exists(BIN5_PROXY_PATH) == FALSE) mkdir(BIN5_PROXY_PATH, 0775, TRUE); - if (($fp = @fopen(BIN5_PROXY_PATH."/garbage_time.expired", 'rb')) == FALSE) + if (($fp = @fopen(BIN5_PROXY_PATH."/table".$tab_id."/garbage_time.expired", 'rb')) == FALSE) break; if (($s = fread($fp, 4)) == FALSE) break; @@ -1229,12 +1229,12 @@ class Bin5 { return ($ret); } - static function garbage_time_expire_set($tm) + static function garbage_time_expire_set($tab_id, $tm) { do { if (file_exists(BIN5_PROXY_PATH) == FALSE) mkdir(BIN5_PROXY_PATH, 0775, TRUE); - if (($fp = @fopen(BIN5_PROXY_PATH."/garbage_time.expired", 'wb')) == FALSE) + if (($fp = @fopen(BIN5_PROXY_PATH."/table".$tab_id."/garbage_time.expired", 'wb')) == FALSE) break; fwrite($fp, pack("L",$tm)); fclose($fp);