diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:23:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:23:53 +0000 |
commit | c000cad09d0b54c455c99271bfb996c2dfe13073 (patch) | |
tree | e47ca809ed512d7fb43ec3d555753b1b658e9819 /contrib/ldapc++/src/LDAPControlSet.h | |
parent | Initial commit. (diff) | |
download | openldap-c000cad09d0b54c455c99271bfb996c2dfe13073.tar.xz openldap-c000cad09d0b54c455c99271bfb996c2dfe13073.zip |
Adding upstream version 2.4.47+dfsg.upstream/2.4.47+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'contrib/ldapc++/src/LDAPControlSet.h')
-rw-r--r-- | contrib/ldapc++/src/LDAPControlSet.h | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/contrib/ldapc++/src/LDAPControlSet.h b/contrib/ldapc++/src/LDAPControlSet.h new file mode 100644 index 0000000..5949079 --- /dev/null +++ b/contrib/ldapc++/src/LDAPControlSet.h @@ -0,0 +1,89 @@ +// $OpenLDAP$ +/* + * Copyright 2000-2018 The OpenLDAP Foundation, All Rights Reserved. + * COPYING RESTRICTIONS APPLY, see COPYRIGHT file + */ + +#ifndef LDAP_CONTROL_SET_H +#define LDAP_CONTROL_SET_H + +#include <list> +#include <ldap.h> +#include <LDAPControl.h> + +typedef std::list<LDAPCtrl> CtrlList; + +/** + * This container class is used to store multiple LDAPCtrl-objects. + */ +class LDAPControlSet { + typedef CtrlList::const_iterator const_iterator; + public : + /** + * Constructs an empty std::list + */ + LDAPControlSet(); + + + /** + * Copy-constructor + */ + LDAPControlSet(const LDAPControlSet& cs); + + /** + * For internal use only + * + * This constructor creates a new LDAPControlSet for a + * 0-terminiated array of LDAPControl-structures as used by the + * C-API + * @param controls: pointer to a 0-terminated array of pointers to + * LDAPControll-structures + * @note: untested til now. Due to lack of server that return + * Controls + */ + LDAPControlSet(LDAPControl** controls); + + /** + * Destructor + */ + ~LDAPControlSet(); + + /** + * @return The number of LDAPCtrl-objects that are currently + * stored in this list. + */ + size_t size() const ; + + /** + * @return true if there are zero LDAPCtrl-objects currently + * stored in this list. + */ + bool empty() const; + + /** + * @return A iterator that points to the first element of the list. + */ + const_iterator begin() const; + + /** + * @return A iterator that points to the element after the last + * element of the list. + */ + const_iterator end() const; + + /** + * Adds one element to the end of the list. + * @param ctrl The Control to add to the list. + */ + void add(const LDAPCtrl& ctrl); + + /** + * Translates the list to a 0-terminated array of pointers to + * LDAPControl-structures as needed by the C-API + */ + LDAPControl** toLDAPControlArray()const ; + static void freeLDAPControlArray(LDAPControl **ctrl); + private : + CtrlList data; +} ; +#endif //LDAP_CONTROL_SET_H |