mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
"- fixed error prefenting updating of locks
- added constant do enable debuging of locks"
This commit is contained in:
parent
f37ef23f77
commit
2ff75cfb5e
@ -596,6 +596,7 @@ class egw_vfs extends vfs_stream_wrapper
|
||||
if (isset($options['name_preg']) && !preg_match($options['name_preg'],$stat['name']) ||
|
||||
isset($options['path_preg']) && !preg_match($options['path_preg'],$path))
|
||||
{
|
||||
//echo "<p>!preg_match('{$options['name_preg']}','{$stat['name']}')</p>\n";
|
||||
return; // wrong name or path
|
||||
}
|
||||
if (isset($options['gid']) && $stat['gid'] != $options['gid'] ||
|
||||
@ -1171,6 +1172,12 @@ class egw_vfs extends vfs_stream_wrapper
|
||||
*/
|
||||
static protected $lock_cache;
|
||||
|
||||
/**
|
||||
* Log (to error log) all calls to lock(), unlock() or checkLock()
|
||||
*
|
||||
*/
|
||||
const LOCK_DEBUG = false;
|
||||
|
||||
/**
|
||||
* lock a ressource/path
|
||||
*
|
||||
@ -1204,7 +1211,7 @@ class egw_vfs extends vfs_stream_wrapper
|
||||
if (($ret = (boolean)($row = self::$db->select(self::LOCK_TABLE,array('lock_owner','lock_exclusive','lock_write'),array(
|
||||
'lock_path' => $path,
|
||||
'lock_token' => $token,
|
||||
)))))
|
||||
),__LINE__,__FILE__)->fetch())))
|
||||
{
|
||||
$owner = $row['lock_owner'];
|
||||
$scope = egw_db::from_bool($row['lock_exclusive']) ? 'exclusive' : 'shared';
|
||||
@ -1214,8 +1221,8 @@ class egw_vfs extends vfs_stream_wrapper
|
||||
'lock_expires' => $timeout,
|
||||
'lock_modified' => time(),
|
||||
),array(
|
||||
'path' => $path,
|
||||
'token' => $token,
|
||||
'lock_path' => $path,
|
||||
'lock_token' => $token,
|
||||
),__LINE__,__FILE__);
|
||||
}
|
||||
}
|
||||
@ -1253,7 +1260,7 @@ class egw_vfs extends vfs_stream_wrapper
|
||||
$ret = false; // there's already a lock
|
||||
}
|
||||
}
|
||||
//error_log(__METHOD__."($path,$token,$timeout,$owner,$scope,$type,$update,$check_writable) returns ".($ret ? 'true' : 'false'));
|
||||
if (self::LOCK_DEBUG) error_log(__METHOD__."($path,$token,$timeout,$owner,$scope,$type,update=$update,check_writable=$check_writable) returns ".($ret ? 'true' : 'false'));
|
||||
return $ret;
|
||||
}
|
||||
|
||||
@ -1280,7 +1287,7 @@ class egw_vfs extends vfs_stream_wrapper
|
||||
// remove the lock from the cache too
|
||||
unset(self::$lock_cache[$path]);
|
||||
}
|
||||
//error_log(__METHOD__."($path,$token,$check_writable) returns ".($ret ? 'true' : 'false'));
|
||||
if (self::LOCK_DEBUG) error_log(__METHOD__."($path,$token,$check_writable) returns ".($ret ? 'true' : 'false'));
|
||||
return $ret;
|
||||
}
|
||||
|
||||
@ -1294,7 +1301,7 @@ class egw_vfs extends vfs_stream_wrapper
|
||||
{
|
||||
if (isset(self::$lock_cache[$path]))
|
||||
{
|
||||
//error_log(__METHOD__."($path) returns from CACHE ".str_replace(array("\n",' '),'',print_r(self::$lock_cache[$path],true)));
|
||||
if (self::LOCK_DEBUG) error_log(__METHOD__."($path) returns from CACHE ".str_replace(array("\n",' '),'',print_r(self::$lock_cache[$path],true)));
|
||||
return self::$lock_cache[$path];
|
||||
}
|
||||
$where = 'lock_path='.self::$db->quote($path);
|
||||
@ -1315,10 +1322,10 @@ class egw_vfs extends vfs_stream_wrapper
|
||||
'lock_token' => $result['token'],
|
||||
),__LINE__,__FILE__);
|
||||
|
||||
//error_log(__METHOD__."($path) lock is expired at ".date('Y-m-d H:i:s',$result['expires'])." --> removed");
|
||||
if (self::LOCK_DEBUG) error_log(__METHOD__."($path) lock is expired at ".date('Y-m-d H:i:s',$result['expires'])." --> removed");
|
||||
$result = false;
|
||||
}
|
||||
//error_log(__METHOD__."($path) returns ".($result?array2string($result):'false'));
|
||||
if (self::LOCK_DEBUG) error_log(__METHOD__."($path) returns ".($result?array2string($result):'false'));
|
||||
return self::$lock_cache[$path] = $result;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user