summaryrefslogtreecommitdiff
path: root/qpid/java/amqp-1-0-common/src/main/java/org/apache/qpid/amqp_1_0/codec/CompoundTypeConstructor.java
blob: d80cbe5c02035e5762db9b66b1eed60383a867d0 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */
package org.apache.qpid.amqp_1_0.codec;

import org.apache.qpid.amqp_1_0.type.*;
import org.apache.qpid.amqp_1_0.type.transport.*;
import org.apache.qpid.amqp_1_0.type.transport.Error;

import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Formatter;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class CompoundTypeConstructor extends VariableWidthTypeConstructor
{
    private final CompoundTypeAssembler.Factory _assemblerFactory;

    public static final CompoundTypeAssembler.Factory LIST_ASSEMBLER_FACTORY =
            new CompoundTypeAssembler.Factory()
            {

                public CompoundTypeAssembler newInstance()
                {
                    return new ListAssembler();
                }
            };



    private static class ListAssembler implements CompoundTypeAssembler
    {
        private List _list;

        public void init(final int count) throws AmqpErrorException
        {
            _list = new ArrayList(count);
        }

        public void addItem(final Object obj) throws AmqpErrorException
        {
            _list.add(obj);
        }

        public Object complete() throws AmqpErrorException
        {
            return _list;
        }

        @Override
        public String toString()
        {
            return "ListAssembler{" +
                   "_list=" + _list +
                   '}';
        }
    }


    public static final CompoundTypeAssembler.Factory MAP_ASSEMBLER_FACTORY =
            new CompoundTypeAssembler.Factory()
            {

                public CompoundTypeAssembler newInstance()
                {
                    return new MapAssembler();
                }
            };

    private static class MapAssembler implements CompoundTypeAssembler
    {
        private Map _map;
        private Object _lastKey;
        private static final Object NOT_A_KEY = new Object();


        public void init(final int count) throws AmqpErrorException
        {
            // Can't have an odd number of elements in a map
            if((count & 0x1) == 1)
            {
                Error error = new Error();
                error.setCondition(AmqpError.DECODE_ERROR);
                Formatter formatter = new Formatter();
                formatter.format("map cannot have odd number of elements: %d", count);
                error.setDescription(formatter.toString());
                throw new AmqpErrorException(error);
            }
            _map = new HashMap(count);
            _lastKey = NOT_A_KEY;
        }

        public void addItem(final Object obj) throws AmqpErrorException
        {
            if(_lastKey != NOT_A_KEY)
            {
                if(_map.put(_lastKey, obj) != null)
                {
                    Error error = new Error();
                    error.setCondition(AmqpError.DECODE_ERROR);
                    Formatter formatter = new Formatter();
                    formatter.format("map cannot have duplicate keys: %s has values (%s, %s)", _lastKey, _map.get(_lastKey), obj);
                    error.setDescription(formatter.toString());

                    throw new AmqpErrorException(error);
                }
                _lastKey = NOT_A_KEY;
            }
            else
            {
                _lastKey = obj;
            }

        }

        public Object complete() throws AmqpErrorException
        {
            return _map;
        }
    }


    public static CompoundTypeConstructor getInstance(int i,
                                                      CompoundTypeAssembler.Factory assemblerFactory)
    {
        return new CompoundTypeConstructor(i, assemblerFactory);
    }


    private CompoundTypeConstructor(int size,
                                    final CompoundTypeAssembler.Factory assemblerFactory)
    {
        super(size);
        _assemblerFactory = assemblerFactory;
    }

    @Override
    public Object construct(final ByteBuffer in, boolean isCopy, ValueHandler delegate) throws AmqpErrorException
    {
        int size;
        int count;

        if(getSize() == 1)
        {
            size = in.get() & 0xFF;
            count = in.get() & 0xFF;
        }
        else
        {
            size = in.getInt();
            count = in.getInt();
        }

        ByteBuffer data;

        ByteBuffer inDup = in.slice();
        inDup.limit(size-getSize());

        CompoundTypeAssembler assembler = _assemblerFactory.newInstance();

        assembler.init(count);

        for(int i = 0; i < count; i++)
        {
            assembler.addItem(delegate.parse(in));
        }

        return assembler.complete();

    }


}