aboutsummaryrefslogtreecommitdiff
path: root/goldap/filter_and.go
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2021-09-16 13:41:01 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2021-09-16 13:41:01 +0200
commit477d7014edc787ba9a977acd19fcbfc55531768b (patch)
treeac8b65be8634fa9526cd727da60893244d11e88a /goldap/filter_and.go
parenta53641e773730ba171df2602c8d199968d6e6447 (diff)
downloadbottin-477d7014edc787ba9a977acd19fcbfc55531768b.tar.gz
bottin-477d7014edc787ba9a977acd19fcbfc55531768b.zip
Vendor goldap
Diffstat (limited to 'goldap/filter_and.go')
-rw-r--r--goldap/filter_and.go54
1 files changed, 54 insertions, 0 deletions
diff --git a/goldap/filter_and.go b/goldap/filter_and.go
new file mode 100644
index 0000000..981284d
--- /dev/null
+++ b/goldap/filter_and.go
@@ -0,0 +1,54 @@
+package message
+
+import "fmt"
+
+// and [0] SET SIZE (1..MAX) OF filter Filter,
+
+func (filterAnd FilterAnd) getFilterTag() int {
+ return TagFilterAnd
+}
+
+func (filterAnd FilterAnd) size() (size int) {
+ for _, filter := range filterAnd {
+ size += filter.size()
+ }
+ size += sizeTagAndLength(TagFilterAnd, size)
+ return
+}
+
+func (filterAnd *FilterAnd) readComponents(bytes *Bytes) (err error) {
+ count := 0
+ for bytes.HasMoreData() {
+ count++
+ var filter Filter
+ filter, err = readFilter(bytes)
+ if err != nil {
+ err = LdapError{fmt.Sprintf("readComponents (filter %d):\n%s", count, err.Error())}
+ return
+ }
+ *filterAnd = append(*filterAnd, filter)
+ }
+ if len(*filterAnd) == 0 {
+ err = LdapError{"readComponents: expecting at least one Filter"}
+ return
+ }
+ return
+}
+
+func (filterAnd FilterAnd) write(bytes *Bytes) (size int) {
+
+ for i := len(filterAnd) - 1; i >= 0; i-- {
+ size += filterAnd[i].write(bytes)
+ }
+ size += bytes.WriteTagAndLength(classContextSpecific, isCompound, TagFilterAnd, size)
+ return
+}
+
+func readFilterAnd(bytes *Bytes) (filterand FilterAnd, err error) {
+ err = bytes.ReadSubBytes(classContextSpecific, TagFilterAnd, filterand.readComponents)
+ if err != nil {
+ err = LdapError{fmt.Sprintf("readFilterAnd:\n%s", err.Error())}
+ return
+ }
+ return
+}