1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
// $OpenLDAP$
/*
* Copyright 2000-2021 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#include "debug.h"
#include"LDAPResult.h"
#include"LDAPAsynConnection.h"
#include "LDAPRequest.h"
#include "LDAPException.h"
#include <cstdlib>
using namespace std;
LDAPResult::LDAPResult(const LDAPRequest *req, LDAPMessage *msg) :
LDAPMsg(msg){
if(msg != 0){
DEBUG(LDAP_DEBUG_CONSTRUCT,"LDAPResult::LDAPResult()" << endl);
const LDAPAsynConnection *con=req->getConnection();
char **refs=0;
LDAPControl** srvctrls=0;
char* matchedDN=0;
char* errMsg=0;
int err=ldap_parse_result(con->getSessionHandle(),msg,&m_resCode,
&matchedDN, &errMsg,&refs,&srvctrls,0);
if(err != LDAP_SUCCESS){
ber_memvfree((void**) refs);
ldap_controls_free(srvctrls);
throw LDAPException(err);
}else{
if (refs){
m_referrals=LDAPUrlList(refs);
ber_memvfree((void**) refs);
}
if (srvctrls){
m_srvControls = LDAPControlSet(srvctrls);
m_hasControls = true;
ldap_controls_free(srvctrls);
}else{
m_hasControls = false;
}
if(matchedDN != 0){
m_matchedDN=string(matchedDN);
free(matchedDN);
}
if(errMsg != 0){
m_errMsg=string(errMsg);
free(errMsg);
}
}
}
}
LDAPResult::LDAPResult(int type, int resultCode, const std::string &msg) :
LDAPMsg(type,0), m_resCode(resultCode), m_errMsg(msg)
{}
LDAPResult::~LDAPResult(){
DEBUG(LDAP_DEBUG_DESTROY,"LDAPResult::~LDAPResult()" << endl);
}
int LDAPResult::getResultCode() const{
DEBUG(LDAP_DEBUG_TRACE,"LDAPResult::getResultCode()" << endl);
return m_resCode;
}
string LDAPResult::resToString() const{
DEBUG(LDAP_DEBUG_TRACE,"LDAPResult::resToString()" << endl);
return string(ldap_err2string(m_resCode));
}
const string& LDAPResult::getErrMsg() const{
DEBUG(LDAP_DEBUG_TRACE,"LDAPResult::getErrMsg()" << endl);
return m_errMsg;
}
const string& LDAPResult::getMatchedDN() const{
DEBUG(LDAP_DEBUG_TRACE,"LDAPResult::getMatchedDN()" << endl);
return m_matchedDN;
}
const LDAPUrlList& LDAPResult::getReferralUrls() const{
DEBUG(LDAP_DEBUG_TRACE,"LDAPResult::getReferralUrl()" << endl);
return m_referrals;
}
ostream& operator<<(ostream &s,LDAPResult &l){
return s << "Result: " << l.m_resCode << ": "
<< ldap_err2string(l.m_resCode) << endl
<< "Matched: " << l.m_matchedDN << endl << "ErrMsg: " << l.m_errMsg;
}
|