• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

evolvedbinary / elemental / 982

29 Apr 2025 08:34PM UTC coverage: 56.409% (+0.007%) from 56.402%
982

push

circleci

adamretter
[feature] Improve README.md badges

28451 of 55847 branches covered (50.94%)

Branch coverage included in aggregate %.

77468 of 131924 relevant lines covered (58.72%)

0.59 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

96.0
/exist-core/src/main/java/org/exist/util/serializer/AttrList.java
1
/*
2
 * Elemental
3
 * Copyright (C) 2024, Evolved Binary Ltd
4
 *
5
 * admin@evolvedbinary.com
6
 * https://www.evolvedbinary.com | https://www.elemental.xyz
7
 *
8
 * Use of this software is governed by the Business Source License 1.1
9
 * included in the LICENSE file and at www.mariadb.com/bsl11.
10
 *
11
 * Change Date: 2028-04-27
12
 *
13
 * On the date above, in accordance with the Business Source License, use
14
 * of this software will be governed by the Apache License, Version 2.0.
15
 *
16
 * Additional Use Grant: Production use of the Licensed Work for a permitted
17
 * purpose. A Permitted Purpose is any purpose other than a Competing Use.
18
 * A Competing Use means making the Software available to others in a commercial
19
 * product or service that: substitutes for the Software; substitutes for any
20
 * other product or service we offer using the Software that exists as of the
21
 * date we make the Software available; or offers the same or substantially
22
 * similar functionality as the Software.
23
 *
24
 * NOTE: Parts of this file contain code from 'The eXist-db Authors'.
25
 *       The original license header is included below.
26
 *
27
 * =====================================================================
28
 *
29
 * eXist-db Open Source Native XML Database
30
 * Copyright (C) 2001 The eXist-db Authors
31
 *
32
 * info@exist-db.org
33
 * http://www.exist-db.org
34
 *
35
 * This library is free software; you can redistribute it and/or
36
 * modify it under the terms of the GNU Lesser General Public
37
 * License as published by the Free Software Foundation; either
38
 * version 2.1 of the License, or (at your option) any later version.
39
 *
40
 * This library is distributed in the hope that it will be useful,
41
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
42
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
43
 * Lesser General Public License for more details.
44
 *
45
 * You should have received a copy of the GNU Lesser General Public
46
 * License along with this library; if not, write to the Free Software
47
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
48
 */
49
package org.exist.util.serializer;
50

51
import org.exist.dom.persistent.AttrImpl;
52
import org.exist.dom.QName;
53
import org.exist.numbering.NodeId;
54

55
/**
56
 * Represents a list of attributes. Each attribute is defined by
57
 * a {@link org.exist.dom.QName} and a value. Instances
58
 * of this class can be passed to 
59
 * {@link org.exist.util.serializer.Receiver#startElement(QName, AttrList)}.
60
 *
61
 * @author <a href="mailto:adam@evolvedbinary.com">Adam Retter</a>
62
 * @author wolf
63
 */
64
public class AttrList {
65

66
    private NodeId[] nodeIds;
67
        private QName[] names;
68
        private String[] values;
69
        private int[] type;
70
        private int size = 0;
1✔
71

72
        public AttrList(final int length) {
1✔
73
                nodeIds = new NodeId[length];
1✔
74
                names = new QName[length];
1✔
75
                values = new String[length];
1✔
76
                type = new int[length];
1✔
77
        }
1✔
78

79
        public AttrList() {
80
                this(4);
1✔
81
        }
1✔
82

83
    public void addAttribute(QName name, String value) {
84
        addAttribute(name, value, AttrImpl.CDATA);
1✔
85
    }
1✔
86

87
    public void addAttribute(QName name, String value, int attrType) {
88
        addAttribute(name, value, attrType, null);
1✔
89
    }
1✔
90
    
91
    public void addAttribute(QName name, String value, int attrType, NodeId nodeId) {
92
                ensureCapacity();
1✔
93
        nodeIds[size] = nodeId;
1✔
94
                names[size] = name;
1✔
95
                values[size] = value;
1✔
96
        type[size] = attrType;
1✔
97
        size++;
1✔
98
        }
1✔
99
        
100
        public int getLength() {
101
                return size;
1✔
102
        }
103
        
104
        public QName getQName(int pos) {
105
                return names[pos];
1✔
106
        }
107

108
    public NodeId getNodeId(int pos) {
109
        return nodeIds[pos];
×
110
    }
111
    
112
        public String getValue(int pos) {
113
                return values[pos];
1✔
114
        }
115
        
116
        public String getValue(QName name) {
117
                for(int i = 0; i < size; i++) {
1✔
118
                        if(names[i].equals(name))
1✔
119
                                {return values[i];}
1✔
120
                }
121
                return null;
1✔
122
        }
123

124
    public int getType(int pos) {
125
        return type[pos];
×
126
    }
127
    
128
    private void ensureCapacity() {
129
                if(size == names.length) {
1✔
130
                        // resize
131
                        final int newSize = names.length * 3 / 2;
1✔
132
            NodeId[] tnodeIds = new NodeId[newSize];
1✔
133
            System.arraycopy(nodeIds, 0, tnodeIds, 0, nodeIds.length);
1✔
134

135
                        QName[] tnames = new QName[newSize];
1✔
136
                        System.arraycopy(names, 0, tnames, 0, names.length);
1✔
137
                        
138
                        String[] tvalues = new String[newSize];
1✔
139
                        System.arraycopy(values, 0, tvalues, 0, values.length);
1✔
140

141
            int[] ttype = new int[newSize];
1✔
142
            System.arraycopy(type, 0, ttype, 0, type.length);
1✔
143

144
            nodeIds = tnodeIds;
1✔
145
            names = tnames;
1✔
146
                        values = tvalues;
1✔
147
            type = ttype;
1✔
148
        }
149
        }
1✔
150
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc