KItinerary
6#ifndef KITINERARY_UPERDECODER_H
7#define KITINERARY_UPERDECODER_H
9#include "bitvectorview.h"
22 using size_type = BitVectorView::size_type;
24 size_type offset()
const;
25 void seek(size_type index);
64 template <std::
size_t N>
67 auto result = m_data.bitsetAt<N>(m_idx);
81 for (size_type i = 0; i < size; ++i) {
83 element.decode(*
this);
88 QList<int> readSequenceOfConstrainedWholeNumber(int64_t minimum, int64_t maximum);
89 QList<int> readSequenceOfUnconstrainedWholeNumber();
101 template <
typename T>
106 return static_cast<T
>(me.value(idx));
108 template <
typename T>
109 inline T readEnumeratedWithExtensionMarker()
112 setError(
"CHOICE with extension marker set not implemented.");
121 template <
typename... Ts>
125 setError(
"CHOICE with extension marker set not implemented.");
128 constexpr auto count =
sizeof...(Ts);
130 if (choiceIdx > (
int)count) {
134 return readChoiceElement<Ts...>(choiceIdx);
149 [[nodiscard]] uint64_t readObjectIdentifierComponent(size_type &numBytes);
151 template <
typename T,
typename T1,
typename... Ts>
152 inline QVariant readChoiceElement(
int choiceIdx)
154 if (choiceIdx == 0) {
155 return readChoiceElement<T>(choiceIdx);
157 return readChoiceElement<T1, Ts...>(choiceIdx - 1);
159 template <
typename T>
160 inline QVariant readChoiceElement([[maybe_unused]]
int choiceIdx)
162 assert(choiceIdx == 0);
168 BitVectorView m_data;
169 size_type m_idx = {};
Non-owning bit-level view for working with data that isn't byte-aligned.
QByteArray readObjectIdentifier()
Read an Object Identifier value.
QList< T > readSequenceOf()
Read a sequence-of field with unrestricted size.
T readEnumerated()
Read enumerated value.
int64_t readUnconstrainedWholeNumber()
Read unconstrained whole number.
void setError(const char *msg)
Put the decoder into the error state.
QString readUtf8String()
Read UTF-8 string.
QVariant readChoiceWithExtensionMarker()
Read a choice value.
QByteArray readOctetString()
Read unconstrained octet string (8 bit data).
bool readBoolean()
Read boolean value.
bool hasError() const
Reading at any point encountered an error.
QByteArray readIA5String()
Read an unconstrained IA5String (7 bit ASCII).
size_type readLengthDeterminant()
Read length determinant.
std::bitset< N > readBitset()
Read an.
int64_t readConstrainedWholeNumber(int64_t minimum, int64_t maximum)
Read constrained whole number from the current position.
Classes for reservation/travel data models, data extraction and data augmentation.
void push_back(parameter_type value)
void reserve(qsizetype size)
QVariant fromValue(T &&value)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 12:02:17 by
doxygen 1.13.2 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.