Qpid Proton C++ 0.40.0
 
Loading...
Searching...
No Matches
type_id.hpp
Go to the documentation of this file.
1#ifndef PROTON_TYPE_ID_HPP
2#define PROTON_TYPE_ID_HPP
3
4/*
5 *
6 * Licensed to the Apache Software Foundation (ASF) under one
7 * or more contributor license agreements. See the NOTICE file
8 * distributed with this work for additional information
9 * regarding copyright ownership. The ASF licenses this file
10 * to you under the Apache License, Version 2.0 (the
11 * "License"); you may not use this file except in compliance
12 * with the License. You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing,
17 * software distributed under the License is distributed on an
18 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19 * KIND, either express or implied. See the License for the
20 * specific language governing permissions and limitations
21 * under the License.
22 *
23 */
24
27
28#include "./internal/export.hpp"
29
30#include <proton/codec.h>
31
32#include <string>
33
34namespace proton {
35
64
67
69PN_CPP_EXTERN std::ostream& operator<<(std::ostream&, type_id);
70
74
77inline bool type_id_is_signed_int(type_id t) { return t == BYTE || t == SHORT || t == INT || t == LONG; }
78inline bool type_id_is_unsigned_int(type_id t) { return t == UBYTE || t == USHORT || t == UINT || t == ULONG; }
79inline bool type_id_is_integral(type_id t) { return t == BOOLEAN || t == CHAR || t == TIMESTAMP || type_id_is_unsigned_int(t) || type_id_is_signed_int(t); }
80inline bool type_id_is_floating_point(type_id t) { return t == FLOAT || t == DOUBLE; }
81inline bool type_id_is_decimal(type_id t) { return t == DECIMAL32 || t == DECIMAL64 || t == DECIMAL128; }
82inline bool type_id_is_signed(type_id t) { return type_id_is_signed_int(t) || type_id_is_floating_point(t) || type_id_is_decimal(t); }
83inline bool type_id_is_string_like(type_id t) { return t == BINARY || t == STRING || t == SYMBOL; }
84inline bool type_id_is_container(type_id t) { return t == LIST || t == MAP || t == ARRAY || t == DESCRIBED; }
85
86inline bool type_id_is_null(type_id t) { return t == NULL_TYPE; }
87
88inline bool type_id_is_scalar(type_id t) {
89 return type_id_is_integral(t) ||
90 type_id_is_floating_point(t) ||
91 type_id_is_decimal(t) ||
92 type_id_is_string_like(t) ||
93 type_id_is_null(t) ||
94 t == TIMESTAMP ||
95 t == UUID;
96}
97
99
100} // proton
101
102#endif // PROTON_TYPE_ID_HPP
The main Proton namespace.
Definition annotation_key.hpp:33
std::string type_name(type_id)
Get the name of the AMQP type.
type_id
An identifier for AMQP types.
Definition type_id.hpp:37
@ ARRAY
A sequence of values of the same type.
Definition type_id.hpp:60
@ LIST
A sequence of values of mixed types.
Definition type_id.hpp:61
@ UBYTE
Unsigned 8-bit integer.
Definition type_id.hpp:40
@ DOUBLE
64-bit binary floating point.
Definition type_id.hpp:51
@ TIMESTAMP
Signed 64-bit milliseconds since the epoch.
Definition type_id.hpp:49
@ CHAR
32-bit unicode character.
Definition type_id.hpp:46
@ UINT
Unsigned 32-bit integer.
Definition type_id.hpp:44
@ MAP
A sequence of key-value pairs.
Definition type_id.hpp:62
@ ULONG
Unsigned 64-bit integer.
Definition type_id.hpp:47
@ DESCRIBED
A descriptor and a value.
Definition type_id.hpp:59
@ NULL_TYPE
The null type, contains no data.
Definition type_id.hpp:38
@ SHORT
Signed 16-bit integer.
Definition type_id.hpp:43
@ BOOLEAN
Boolean true or false.
Definition type_id.hpp:39
@ DECIMAL32
32-bit decimal floating point.
Definition type_id.hpp:52
@ DECIMAL64
64-bit decimal floating point.
Definition type_id.hpp:53
@ USHORT
Unsigned 16-bit integer.
Definition type_id.hpp:42
@ FLOAT
32-bit binary floating point.
Definition type_id.hpp:50
@ BYTE
Signed 8-bit integer.
Definition type_id.hpp:41
@ LONG
Signed 64-bit integer.
Definition type_id.hpp:48
@ UUID
16-byte UUID.
Definition type_id.hpp:55
@ DECIMAL128
128-bit decimal floating point.
Definition type_id.hpp:54
@ SYMBOL
Variable-length encoded string.
Definition type_id.hpp:58
@ BINARY
Variable-length sequence of bytes.
Definition type_id.hpp:56
@ STRING
Variable-length utf8-encoded string.
Definition type_id.hpp:57
@ INT
Signed 32-bit integer.
Definition type_id.hpp:45
std::ostream & operator<<(std::ostream &, const binary &)
Print a binary value.
void assert_type_equal(type_id want, type_id got)
Throw a conversion_error if want != got with a message including the names of the types.
T coerce(const annotation_key &x)
Get the binary value or throw conversion_error.
Definition annotation_key.hpp:83