aboutsummaryrefslogtreecommitdiff
path: root/goldap/search_result_entry.go
blob: 05d8e10aba5c4ea3e2119dd4b49b5c6a52d2eccb (plain) (blame)
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
package message

import "fmt"

//
//        SearchResultEntry ::= [APPLICATION 4] SEQUENCE {
//             objectName      LDAPDN,
//             attributes      PartialAttributeList }
func readSearchResultEntry(bytes *Bytes) (searchresultentry SearchResultEntry, err error) {
	err = bytes.ReadSubBytes(classApplication, TagSearchResultEntry, searchresultentry.readComponents)
	if err != nil {
		err = LdapError{fmt.Sprintf("readSearchResultEntry:\n%s", err.Error())}
		return
	}
	return
}
func (searchresultentry *SearchResultEntry) readComponents(bytes *Bytes) (err error) {
	searchresultentry.objectName, err = readLDAPDN(bytes)
	if err != nil {
		err = LdapError{fmt.Sprintf("readComponents:\n%s", err.Error())}
		return
	}
	searchresultentry.attributes, err = readPartialAttributeList(bytes)
	if err != nil {
		err = LdapError{fmt.Sprintf("readComponents:\n%s", err.Error())}
		return
	}
	return
}

//
//        SearchResultEntry ::= [APPLICATION 4] SEQUENCE {
//             objectName      LDAPDN,
//             attributes      PartialAttributeList }
func (s SearchResultEntry) write(bytes *Bytes) (size int) {
	size += s.attributes.write(bytes)
	size += s.objectName.write(bytes)
	size += bytes.WriteTagAndLength(classApplication, isCompound, TagSearchResultEntry, size)
	return
}

//
//        SearchResultEntry ::= [APPLICATION 4] SEQUENCE {
//             objectName      LDAPDN,
//             attributes      PartialAttributeList }
func (s SearchResultEntry) size() (size int) {
	size += s.objectName.size()
	size += s.attributes.size()
	size += sizeTagAndLength(tagSequence, size)
	return
}
func (s *SearchResultEntry) SetObjectName(on string) {
	s.objectName = LDAPDN(on)
}
func (s *SearchResultEntry) AddAttribute(name AttributeDescription, values ...AttributeValue) {
	var ea = PartialAttribute{type_: name, vals: values}
	s.attributes.add(ea)
}