blob: 38fe2822dd13ad1f6abe8d94b6f16d51a9232183 (
plain)
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
|
// $OpenLDAP$
/*
* Copyright 2003-2022 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#include "LDAPSchema.h"
#include <ctype.h>
#include <ldap.h>
#include "debug.h"
#include "StringList.h"
using namespace std;
LDAPSchema::LDAPSchema(){
DEBUG(LDAP_DEBUG_CONSTRUCT,
"LDAPSchema::LDAPSchema( )" << endl);
}
LDAPSchema::~LDAPSchema() {
DEBUG(LDAP_DEBUG_DESTROY,"LDAPSchema::~LDAPSchema()" << endl);
}
void LDAPSchema::setObjectClasses (const StringList &ocs) {
DEBUG(LDAP_DEBUG_TRACE,"LDAPSchema::setObjectClasses()" << endl);
// parse the stringlist and save it to global map...
StringList::const_iterator i,j;
for (i = ocs.begin(); i != ocs.end(); i++) {
LDAPObjClass oc ( (*i) );
StringList names = oc.getNames();
// there could be more names for one object...
for (j = names.begin(); j != names.end(); j++) {
string lc_name = *j;
string::iterator k;
for ( k = lc_name.begin(); k != lc_name.end(); k++ ) {
(*k) = tolower(*k);
}
object_classes [lc_name] = LDAPObjClass (oc);
}
}
}
void LDAPSchema::setAttributeTypes (const StringList &ats) {
DEBUG(LDAP_DEBUG_TRACE,"LDAPSchema::setAttributeTypes()" << endl);
// parse the stringlist and save it to global map...
StringList::const_iterator i,j;
for (i = ats.begin(); i != ats.end(); i++) {
LDAPAttrType at ( (*i) );
StringList names = at.getNames();
// there could be more names for one object...
for (j = names.begin(); j != names.end(); j++) {
string lc_name = *j;
string::iterator k;
for ( k = lc_name.begin(); k != lc_name.end(); k++ ) {
(*k) = tolower(*k);
}
attr_types [lc_name] = LDAPAttrType (at);
}
}
}
LDAPObjClass LDAPSchema::getObjectClassByName (string name) {
string lc_name = name;
string::iterator k;
for ( k = lc_name.begin(); k != lc_name.end(); k++ ) {
(*k) = tolower(*k);
}
return object_classes [lc_name];
}
LDAPAttrType LDAPSchema::getAttributeTypeByName (string name) {
string lc_name = name;
string::iterator k;
for ( k = lc_name.begin(); k != lc_name.end(); k++ ) {
(*k) = tolower(*k);
}
return attr_types [lc_name];
}
|