summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/framing/FieldTable.cpp
blob: 0a21bb2f359f589799df5e404a7362240ca5786c (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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/*
 *
 * 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.
 *
 */
#include "qpid/framing/FieldTable.h"
#include "qpid/framing/Array.h"
#include "qpid/framing/Buffer.h"
#include "qpid/framing/Endian.h"
#include "qpid/framing/FieldValue.h"
#include "qpid/Exception.h"
#include "qpid/framing/reply_exceptions.h"
#include <assert.h>

namespace qpid {
namespace framing {

FieldTable::FieldTable(const FieldTable& ft)
{
  *this = ft;
}

FieldTable& FieldTable::operator=(const FieldTable& ft)
{
  clear();
  values = ft.values;
  return *this;
}

FieldTable::~FieldTable() {}

uint32_t FieldTable::encodedSize() const {
    uint32_t len(4/*size field*/ + 4/*count field*/);
    for(ValueMap::const_iterator i = values.begin(); i != values.end(); ++i) {
        // shortstr_len_byte + key size + value size
	len += 1 + (i->first).size() + (i->second)->encodedSize();
    }
    return len;
}

uint32_t FieldTable::qmfEncodedSize() const {
    uint32_t len(4/*size field*/ + 4/*count field*/);
    for(ValueMap::const_iterator i = values.begin(); i != values.end(); ++i) {
        // shortstr_len_byte + key size + typecode
	len += 1 + (i->first).size() + 1;
        ValuePtr value(i->second);
        if (value->convertsTo<int>()) {
            len += 4;
        } else if (value->convertsTo<uint64_t>()) {
            len += 8;
        } else if (value->convertsTo<string>()) {
            len += 2 + value->get<string>().size();
        }
    }
    return len;
}

int FieldTable::count() const {
    return values.size();
}

namespace 
{
std::ostream& operator<<(std::ostream& out, const FieldTable::ValueMap::value_type& i) {
    return out << i.first << ":" << *i.second;
}
}

std::ostream& operator<<(std::ostream& out, const FieldTable& t) {
    out << "{";
    FieldTable::ValueMap::const_iterator i = t.begin();
    if (i != t.end()) out << *i++;
    while (i != t.end()) 
    {
        out << "," << *i++;
    }
    return out << "}";
}

void FieldTable::set(const std::string& name, const ValuePtr& value){
    values[name] = value;
}

void FieldTable::setString(const std::string& name, const std::string& value){
    values[name] = ValuePtr(new Str16Value(value));
}

void FieldTable::setInt(const std::string& name, const int value){
    values[name] = ValuePtr(new IntegerValue(value));
}

void FieldTable::setInt64(const std::string& name, const int64_t value){
    values[name] = ValuePtr(new Integer64Value(value));
}

void FieldTable::setTimestamp(const std::string& name, const uint64_t value){
    values[name] = ValuePtr(new TimeValue(value));
}

void FieldTable::setUInt64(const std::string& name, const uint64_t value){
    values[name] = ValuePtr(new Unsigned64Value(value));
}

void FieldTable::setTable(const std::string& name, const FieldTable& value)
{
    values[name] = ValuePtr(new FieldTableValue(value));
}
void FieldTable::setArray(const std::string& name, const Array& value)
{
    values[name] = ValuePtr(new ArrayValue(value));
}

void FieldTable::setFloat(const std::string& name, const float value){
    values[name] = ValuePtr(new FloatValue(value));
}

void FieldTable::setDouble(const std::string& name, double value){
    values[name] = ValuePtr(new DoubleValue(value));
}

FieldTable::ValuePtr FieldTable::get(const std::string& name) const
{
    ValuePtr value;
    ValueMap::const_iterator i = values.find(name);
    if ( i!=values.end() )
        value = i->second;
    return value;
}

namespace {
    template <class T> T default_value() { return T(); }
    template <> int default_value<int>() { return 0; }
    template <> uint64_t default_value<uint64_t>() { return 0; }
}

template <class T>
T getValue(const FieldTable::ValuePtr value)
{
    if (!value || !value->convertsTo<T>())
        return default_value<T>();

    return value->get<T>();
}

std::string FieldTable::getAsString(const std::string& name) const {
    return getValue<std::string>(get(name));
}

int FieldTable::getAsInt(const std::string& name) const {
    return getValue<int>(get(name));
}

uint64_t FieldTable::getAsUInt64(const std::string& name) const {
    return static_cast<uint64_t>( getValue<int64_t>(get(name)));
}

int64_t FieldTable::getAsInt64(const std::string& name) const {
    return getValue<int64_t>(get(name));
}

bool FieldTable::getTable(const std::string& name, FieldTable& value) const {
    return getEncodedValue<FieldTable>(get(name), value);
}

bool FieldTable::getArray(const std::string& name, Array& value) const {
    return getEncodedValue<Array>(get(name), value);
}

template <class T, int width, uint8_t typecode>
bool getRawFixedWidthValue(FieldTable::ValuePtr vptr, T& value) 
{
    if (vptr && vptr->getType() == typecode) {
        value = vptr->get<T>();
        return true;
    }
    return false;
}

bool FieldTable::getFloat(const std::string& name, float& value) const {    
    return getRawFixedWidthValue<float, 4, 0x23>(get(name), value);
}

bool FieldTable::getDouble(const std::string& name, double& value) const {    
    return getRawFixedWidthValue<double, 8, 0x33>(get(name), value);
}

//uint64_t FieldTable::getTimestamp(const std::string& name) const {
//    return getValue<uint64_t>(name);
//}

void FieldTable::encode(Buffer& buffer) const {
    buffer.putLong(encodedSize() - 4);
    buffer.putLong(values.size());
    for (ValueMap::const_iterator i = values.begin(); i!=values.end(); ++i) {
        buffer.putShortString(i->first);
    	i->second->encode(buffer);
    }
}

void FieldTable::decode(Buffer& buffer){
    clear();
    uint32_t len = buffer.getLong();
    if (len) {
        uint32_t available = buffer.available();
        if (available < len)
            throw IllegalArgumentException(QPID_MSG("Not enough data for field table."));
        uint32_t count = buffer.getLong();
        uint32_t leftover = available - len;
        while(buffer.available() > leftover && count--){
            std::string name;
            ValuePtr value(new FieldValue);
            
            buffer.getShortString(name);
            value->decode(buffer);
            values[name] = ValuePtr(value);
        }    
    }
}

#define QMF_TYPE_U8        1
#define QMF_TYPE_U16       2
#define QMF_TYPE_U32       3
#define QMF_TYPE_U64       4
#define QMF_TYPE_SSTR      6                   
#define QMF_TYPE_LSTR      7
#define QMF_TYPE_ABSTIME   8
#define QMF_TYPE_DELTATIME 9
#define QMF_TYPE_REF       10
#define QMF_TYPE_BOOL      11
#define QMF_TYPE_FLOAT     12
#define QMF_TYPE_DOUBLE    13
#define QMF_TYPE_UUID      14
#define QMF_TYPE_S8        16
#define QMF_TYPE_S16       17
#define QMF_TYPE_S32       18
#define QMF_TYPE_S64       19
#define QMF_TYPE_OBJECT    20
#define QMF_TYPE_MAP       15
#define QMF_TYPE_LIST      21
#define QMF_TYPE_ARRAY     22

void FieldTable::qmfEncode(Buffer& buffer) const {
    buffer.putLong(qmfEncodedSize() - 4);
    buffer.putLong(values.size());
    for (ValueMap::const_iterator i = values.begin(); i!=values.end(); ++i) {
        ValuePtr value(i->second);
        buffer.putShortString(i->first);
        if (value->convertsTo<int>()) {
            buffer.putOctet(QMF_TYPE_S32);
            buffer.putLong(value->get<int>());
        } else if (value->convertsTo<uint64_t>()) {
            buffer.putOctet(QMF_TYPE_U64);
            buffer.putLongLong(value->get<uint64_t>());
        } else if (value->convertsTo<string>()) {
            buffer.putOctet(QMF_TYPE_LSTR);
            buffer.putMediumString(value->get<string>());
        }
    }
}

void FieldTable::qmfDecode(Buffer& buffer) {
    clear();
    uint32_t len = buffer.getLong();
    if (len) {
        uint32_t available = buffer.available();
        if (available < len)
            throw IllegalArgumentException(QPID_MSG("Not enough data for  field table."));
        uint32_t count = buffer.getLong();
        uint32_t leftover = available - len;
        while(buffer.available() > leftover && count--) {
            std::string name;
            std::string sstr;
            std::string lstr;
            buffer.getShortString(name);
            uint8_t typecode = buffer.getOctet();
            switch (typecode) {
            case QMF_TYPE_U8:
                values[name] = ValuePtr(new IntegerValue(buffer.getOctet()));
                break;
            case QMF_TYPE_U16:
                values[name] = ValuePtr(new IntegerValue(buffer.getShort()));
                break;
            case QMF_TYPE_U32:
                values[name] = ValuePtr(new IntegerValue(buffer.getLong()));
                break;
            case QMF_TYPE_U64:
                values[name] = ValuePtr(new Unsigned64Value(buffer.getLongLong()));
                break;
            case QMF_TYPE_SSTR:
                buffer.getShortString(sstr);
                values[name] = ValuePtr(new Str16Value(sstr));
                break;
            case QMF_TYPE_LSTR:
                buffer.getMediumString(lstr);
                values[name] = ValuePtr(new Str16Value(lstr));
                break;
            case QMF_TYPE_ABSTIME:
                values[name] = ValuePtr(new Unsigned64Value(buffer.getLongLong()));
                break;
            case QMF_TYPE_DELTATIME:
                values[name] = ValuePtr(new Unsigned64Value(buffer.getLongLong()));
                break;
            case QMF_TYPE_BOOL:
                values[name] = ValuePtr(new IntegerValue(buffer.getOctet()));
                break;
            case QMF_TYPE_FLOAT:
                values[name] = ValuePtr(new FloatValue(buffer.getFloat()));
                break;
            case QMF_TYPE_DOUBLE:
                values[name] = ValuePtr(new DoubleValue(buffer.getDouble()));
                break;
            case QMF_TYPE_S8:
                values[name] = ValuePtr(new IntegerValue(buffer.getOctet()));
                break;
            case QMF_TYPE_S16:
                values[name] = ValuePtr(new IntegerValue(buffer.getShort()));
                break;
            case QMF_TYPE_S32:
                values[name] = ValuePtr(new IntegerValue(buffer.getLong()));
                break;
            case QMF_TYPE_S64:
                values[name] = ValuePtr(new Unsigned64Value(buffer.getLongLong()));
                break;
            case QMF_TYPE_REF:
            case QMF_TYPE_UUID:
            case QMF_TYPE_OBJECT:
            case QMF_TYPE_MAP:
            case QMF_TYPE_LIST:
            case QMF_TYPE_ARRAY:
                break;
            }
        }    
    }
}


bool FieldTable::operator==(const FieldTable& x) const {
    if (values.size() != x.values.size()) return false;
    for (ValueMap::const_iterator i =  values.begin(); i != values.end(); ++i) {
        ValueMap::const_iterator j = x.values.find(i->first);
        if (j == x.values.end()) return false;
        if (*(i->second) != *(j->second)) return false;
    }
    return true;
}

void FieldTable::erase(const std::string& name) 
{
    if (values.find(name) != values.end()) 
        values.erase(name);
}

std::pair<FieldTable::ValueMap::iterator, bool> FieldTable::insert(const ValueMap::value_type& value)
{
    return values.insert(value);
}

FieldTable::ValueMap::iterator FieldTable::insert(ValueMap::iterator position, const ValueMap::value_type& value)
{
    return values.insert(position, value);
}


}
}