summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7738ba3)
raw | patch | inline | side by side (parent: 7738ba3)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 Mar 2008 10:33:57 +0000 (10:33 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 Mar 2008 10:33:57 +0000 (10:33 +0000) |
-Added warning , if there is still unfetched data.
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@9342 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@9342 594d385d-05f5-0310-b6e9-bd551577e9d8
include/class_ldap.inc | patch | blob | history |
diff --git a/include/class_ldap.inc b/include/class_ldap.inc
index 0e1e909b5282c3e4e6ae12e96847863947321076..6ca1b49c58808a1e1ea00ba5516318969a396521 100644 (file)
--- a/include/class_ldap.inc
+++ b/include/class_ldap.inc
var $referrals= array();
var $max_ldap_query_time = 0; // 0, empty or negative values will disable this check
+ var $re = NULL;
+
function LDAP($binddn,$bindpw, $hostname, $follow_referral= FALSE, $tls= FALSE)
{
global $config;
return(ereg_replace("[^,]*[,]*[ ]*(.*)", "\\1", $basedn));
}
+
+ /* Checks if there is still unfetched data
+ */
+ function checkResult()
+ {
+ /* Check if we have started a search before */
+ if(is_resource(@ldap_first_entry($this->cid, $this->sr))){
+
+ /* Check if there are still unfetched elements */
+ if(is_resource(@ldap_next_entry($this->cid, $this->re))){
+ trigger_error("A new search was initiated while the an older search wasn't fetched completely.");
+ }
+ }
+ }
+
function search($filter, $attrs= array())
{
if($this->hascon){
if ($this->reconnect) $this->connect();
+ /* Check if there are still unfetched objects from last search
+ */
+ $this->checkResult();
+
$start = microtime();
-
$this->clearResult();
$this->sr = @ldap_search($this->cid, $this->fix($this->basedn), $filter, $attrs);
$this->error = @ldap_error($this->cid);
{
if($this->hascon){
if ($this->reconnect) $this->connect();
+
+ /* Check if there are still unfetched objects from last search
+ */
+ $this->checkResult();
+
$this->clearResult();
if ($basedn == "")
$basedn = $this->basedn;
{
if($this->hascon){
if ($this->reconnect) $this->connect();
+
+ /* Check if there are still unfetched objects from last search
+ */
+ $this->checkResult();
+
$start = microtime();
$this->clearResult();
$filter = "(objectclass=*)";