Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MODMED
modmedLog
Commits
f5cca0b1
Commit
f5cca0b1
authored
Jun 27, 2018
by
EXT Arnaud Clère
Browse files
staged files ommitted from previous commit
parent
c9c381b8
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
tests/QBind/QBind_impl.h
View file @
f5cca0b1
This diff is collapsed.
Click to expand it.
tests/QBind/QCbor_impl.h
View file @
f5cca0b1
/****************************************************************************
* **
* ** Copyright (C) 2017 MinMaxMedical.
* ** All rights reserved.
* ** Contact: MinMaxMedical <InCAS@MinMaxMedical.com>
* **
* ** This file is part of the modmedLog module.
* **
* ** $QT_BEGIN_LICENSE:BSD$
* ** You may use this file under the terms of the BSD license as follows:
* **
* ** "Redistribution and use in source and binary forms, with or without
* ** modification, are permitted provided that the following conditions are
* ** met:
* ** * Redistributions of source code must retain the above copyright
* ** notice, this list of conditions and the following disclaimer.
* ** * Redistributions in binary form must reproduce the above copyright
* ** notice, this list of conditions and the following disclaimer in
* ** the documentation and/or other materials provided with the
* ** distribution.
* ** * Neither the name of MinMaxMedical S.A.S. and its Subsidiary(-ies) nor
* ** the names of its contributors may be used to endorse or promote
* ** products derived from this software without specific prior written
* ** permission.
* **
* ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
* ** $QT_END_LICENSE$
* **
* ****************************************************************************/
#pragma once
#include <type_traits>
#include <QtCore/qiodevice.h>
#include <QtCore/qendian.h>
#include "QBind_impl.h"
namespace
cbor
{
//! CBOR Major types
//! Encoded in the high 3 bits of the descriptor byte
//! \see http://tools.ietf.org/html/rfc7049#section-2.1
enum
MajorTypes
{
TextStringType
=
3
,
ArrayType
=
4
,
SimpleTypesType
=
7
};
//! CBOR simple and floating point types
//! Encoded in the low 5 bits of the descriptor byte when the Major Type is 7.
enum
SimpleTypes
{
NullValue
=
22
,
SinglePrecisionFloat
=
26
,
DoublePrecisionFloat
=
27
,
Break
=
31
};
enum
{
SmallValueBitLength
=
5U
,
Value8Bit
=
24U
,
Value16Bit
=
25U
,
Value32Bit
=
26U
,
Value64Bit
=
27U
,
IndefiniteLength
=
31U
,
MajorTypeShift
=
SmallValueBitLength
,
};
enum
:
unsigned
char
{
BreakByte
=
(
unsigned
)
Break
|
(
SimpleTypesType
<<
MajorTypeShift
),
IndefiniteLengthArrayByte
=
IndefiniteLength
|
(
ArrayType
<<
MajorTypeShift
),
NullByte
=
NullValue
|
(
SimpleTypesType
<<
MajorTypeShift
)
};
enum
tag
{
Tag
=
192
,
DateTime
=
0
,
CborDocument
=
55799
,
};
}
// cbor
// //////////////////////////////////////////////////////////////////////////
// QBind<QCborWriter,T> support
class
QCborWriterImpl
;
class
QCborWriter
:
public
QScopedResult
<
QCborWriter
,
QCborWriterImpl
,
BindMode
::
Write
>
{
Q_DISABLE_COPY
(
QCborWriter
)
// but not swap
public:
Q_ENABLE_MOVE_DEFAULT
(
QCborWriter
)
QCborWriter
(
QIODevice
*
io
);
private:
friend
class
QCborWriterImpl
;
// uses method below
QCborWriter
(
QCborWriterImpl
*
outer
)
:
QScopedResult
(
outer
,
false
)
{}
};
class
QCborWriterImpl
{
QIODevice
*
io
;
int
levels
=
0
;
//!< minimal dynamic context to ensure well-formedness in case TResult is abandoned
public:
QCborWriterImpl
()
=
default
;
QCborWriterImpl
(
QIODevice
*
io
)
:
io
(
io
)
{
Q_ASSERT
(
io
);
}
~
QCborWriterImpl
()
{
while
(
levels
)
out
();
}
protected:
template
<
class
T_
>
friend
class
Val
;
// calls methods below
bool
sequence
()
{
levels
++
;
io
->
putChar
(
cbor
::
IndefiniteLengthArrayByte
);
return
true
;
}
bool
null
()
{
io
->
putChar
(
cbor
::
NullByte
);
return
true
;
}
bool
bind
(
const
char
*
s
)
{
putInteger
(
cbor
::
TextStringType
,
strlen
(
s
));
io
->
write
(
s
);
return
true
;
}
// Natively supported overloads
bool
bind
(
float
n
)
{
io
->
putChar
((
cbor
::
SimpleTypesType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
SinglePrecisionFloat
);
union
{
float
value
;
quint32
bits
;
}
number
;
number
.
value
=
n
;
char
bytes
[
sizeof
(
number
.
bits
)];
qToBigEndian
(
number
.
bits
,
bytes
);
io
->
write
(
bytes
,
sizeof
(
bytes
));
return
true
;
}
bool
bind
(
double
n
)
{
io
->
putChar
((
cbor
::
SimpleTypesType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
DoublePrecisionFloat
);
union
{
double
value
;
quint64
bits
;
}
number
;
number
.
value
=
n
;
char
bytes
[
sizeof
(
number
.
bits
)];
qToBigEndian
(
number
.
bits
,
bytes
);
io
->
write
(
bytes
,
sizeof
(
bytes
));
return
true
;
}
// Val<TResult> prevents QBind from getting out() of an outer Seq for instance
template
<
typename
T
>
bool
bind
(
const
T
&
t
)
{
return
QBind
<
QCborWriter
,
T
>::
bind
(
QCborWriter
(
this
).
value
(),
const_cast
<
T
&>
(
t
));
}
// t will not be modified anyway
template
<
typename
T
>
bool
bind
(
T
&
t
)
{
return
QBind
<
QCborWriter
,
T
>::
bind
(
QCborWriter
(
this
).
value
(),
t
);
}
template
<
typename
T
>
bool
bind
(
T
&&
t
)
{
return
QBind
<
QCborWriter
,
T
>::
bind
(
QCborWriter
(
this
).
value
(),
t
);
}
template
<
class
T_
>
friend
class
Seq
;
// calls methods below
bool
item
()
{
return
true
;
}
bool
out
()
{
io
->
putChar
(
cbor
::
BreakByte
);
levels
--
;
return
true
;
}
private:
void
putInteger
(
char
majorType
,
quint64
n
)
{
// See https://tools.ietf.org/html/rfc7049#section-2.2 if more performance is needed
if
(
n
<
24
)
{
io
->
putChar
((
majorType
<<
cbor
::
MajorTypeShift
)
|
n
);
}
else
{
char
bytes
[
8
];
if
(
n
<=
0xff
)
{
io
->
putChar
((
majorType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
Value8Bit
);
qToBigEndian
(
quint8
(
n
),
bytes
);
io
->
write
(
bytes
,
sizeof
(
quint8
));
}
else
if
(
n
<=
0xffff
)
{
io
->
putChar
((
majorType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
Value16Bit
);
qToBigEndian
(
quint16
(
n
),
bytes
);
io
->
write
(
bytes
,
sizeof
(
quint16
));
}
else
if
(
n
<=
0xffffffffL
)
{
io
->
putChar
((
majorType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
Value32Bit
);
qToBigEndian
(
quint32
(
n
),
bytes
);
io
->
write
(
bytes
,
sizeof
(
quint32
));
}
else
{
io
->
putChar
((
majorType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
Value64Bit
);
qToBigEndian
(
n
,
bytes
);
io
->
write
(
bytes
,
sizeof
(
quint64
));
}
}
}
};
QCborWriter
::
QCborWriter
(
QIODevice
*
io
)
:
QScopedResult
(
new
QCborWriterImpl
(
io
),
true
)
{}
/****************************************************************************
* **
* ** Copyright (C) 2017 MinMaxMedical.
* ** All rights reserved.
* ** Contact: MinMaxMedical <InCAS@MinMaxMedical.com>
* **
* ** This file is part of the modmedLog module.
* **
* ** $QT_BEGIN_LICENSE:BSD$
* ** You may use this file under the terms of the BSD license as follows:
* **
* ** "Redistribution and use in source and binary forms, with or without
* ** modification, are permitted provided that the following conditions are
* ** met:
* ** * Redistributions of source code must retain the above copyright
* ** notice, this list of conditions and the following disclaimer.
* ** * Redistributions in binary form must reproduce the above copyright
* ** notice, this list of conditions and the following disclaimer in
* ** the documentation and/or other materials provided with the
* ** distribution.
* ** * Neither the name of MinMaxMedical S.A.S. and its Subsidiary(-ies) nor
* ** the names of its contributors may be used to endorse or promote
* ** products derived from this software without specific prior written
* ** permission.
* **
* ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
* ** $QT_END_LICENSE$
* **
* ****************************************************************************/
#pragma once
#include <type_traits>
#include <QtCore/qiodevice.h>
#include <QtCore/qendian.h>
#include "QBind_impl.h"
namespace
cbor
{
//! CBOR Major types
//! Encoded in the high 3 bits of the descriptor byte
//! \see http://tools.ietf.org/html/rfc7049#section-2.1
enum
MajorTypes
{
TextStringType
=
3
,
ArrayType
=
4
,
SimpleTypesType
=
7
};
//! CBOR simple and floating point types
//! Encoded in the low 5 bits of the descriptor byte when the Major Type is 7.
enum
SimpleTypes
{
NullValue
=
22
,
SinglePrecisionFloat
=
26
,
DoublePrecisionFloat
=
27
,
Break
=
31
};
enum
{
SmallValueBitLength
=
5U
,
Value8Bit
=
24U
,
Value16Bit
=
25U
,
Value32Bit
=
26U
,
Value64Bit
=
27U
,
IndefiniteLength
=
31U
,
MajorTypeShift
=
SmallValueBitLength
,
};
enum
:
unsigned
char
{
BreakByte
=
(
unsigned
)
Break
|
(
SimpleTypesType
<<
MajorTypeShift
),
IndefiniteLengthArrayByte
=
IndefiniteLength
|
(
ArrayType
<<
MajorTypeShift
),
NullByte
=
NullValue
|
(
SimpleTypesType
<<
MajorTypeShift
)
};
enum
tag
{
Tag
=
192
,
DateTime
=
0
,
CborDocument
=
55799
,
};
}
// cbor
// //////////////////////////////////////////////////////////////////////////
// QBind<QCborWriter,T> support
class
QCborWriterImpl
;
class
QCborWriter
:
public
QScopedResult
<
QCborWriter
,
QCborWriterImpl
,
BindMode
::
Write
>
{
Q_DISABLE_COPY
(
QCborWriter
)
// but not swap
public:
Q_ENABLE_MOVE_DEFAULT
(
QCborWriter
)
QCborWriter
(
QIODevice
*
io
);
private:
friend
class
QCborWriterImpl
;
// uses method below
QCborWriter
(
QCborWriterImpl
*
outer
)
:
QScopedResult
(
outer
,
false
)
{}
};
class
QCborWriterImpl
{
QIODevice
*
io
;
int
levels
=
0
;
//!< minimal dynamic context to ensure well-formedness in case TResult is abandoned
public:
QCborWriterImpl
()
=
default
;
QCborWriterImpl
(
QIODevice
*
io
)
:
io
(
io
)
{
Q_ASSERT
(
io
);
}
~
QCborWriterImpl
()
{
while
(
levels
)
out
();
}
protected:
template
<
class
T_
>
friend
class
Val
;
// calls methods below
bool
sequence
()
{
levels
++
;
io
->
putChar
(
cbor
::
IndefiniteLengthArrayByte
);
return
true
;
}
bool
null
()
{
io
->
putChar
(
cbor
::
NullByte
);
return
true
;
}
bool
bind
(
const
char
*
s
)
{
putInteger
(
cbor
::
TextStringType
,
strlen
(
s
));
io
->
write
(
s
);
return
true
;
}
// Natively supported overloads
bool
bind
(
float
n
)
{
io
->
putChar
((
cbor
::
SimpleTypesType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
SinglePrecisionFloat
);
union
{
float
value
;
quint32
bits
;
}
number
;
number
.
value
=
n
;
char
bytes
[
sizeof
(
number
.
bits
)];
qToBigEndian
(
number
.
bits
,
bytes
);
io
->
write
(
bytes
,
sizeof
(
bytes
));
return
true
;
}
bool
bind
(
double
n
)
{
io
->
putChar
((
cbor
::
SimpleTypesType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
DoublePrecisionFloat
);
union
{
double
value
;
quint64
bits
;
}
number
;
number
.
value
=
n
;
char
bytes
[
sizeof
(
number
.
bits
)];
qToBigEndian
(
number
.
bits
,
bytes
);
io
->
write
(
bytes
,
sizeof
(
bytes
));
return
true
;
}
// Val<TResult> prevents QBind from getting out() of an outer Seq for instance
template
<
typename
T
>
bool
bind
(
const
T
&
t
)
{
return
QBind
<
QCborWriter
,
T
>::
bind
(
QCborWriter
(
this
).
value
(),
const_cast
<
T
&>
(
t
));
}
// t will not be modified anyway
template
<
typename
T
>
bool
bind
(
T
&
t
)
{
return
QBind
<
QCborWriter
,
T
>::
bind
(
QCborWriter
(
this
).
value
(),
t
);
}
template
<
typename
T
>
bool
bind
(
T
&&
t
)
{
return
QBind
<
QCborWriter
,
T
>::
bind
(
QCborWriter
(
this
).
value
(),
t
);
}
template
<
class
T_
>
friend
class
Seq
;
// calls methods below
bool
item
()
{
return
true
;
}
bool
out
()
{
io
->
putChar
(
cbor
::
BreakByte
);
levels
--
;
return
true
;
}
private:
void
putInteger
(
char
majorType
,
quint64
n
)
{
// See https://tools.ietf.org/html/rfc7049#section-2.2 if more performance is needed
if
(
n
<
24
)
{
io
->
putChar
((
majorType
<<
cbor
::
MajorTypeShift
)
|
n
);
}
else
{
char
bytes
[
8
];
if
(
n
<=
0xff
)
{
io
->
putChar
((
majorType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
Value8Bit
);
qToBigEndian
(
quint8
(
n
),
bytes
);
io
->
write
(
bytes
,
sizeof
(
quint8
));
}
else
if
(
n
<=
0xffff
)
{
io
->
putChar
((
majorType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
Value16Bit
);
qToBigEndian
(
quint16
(
n
),
bytes
);
io
->
write
(
bytes
,
sizeof
(
quint16
));
}
else
if
(
n
<=
0xffffffffL
)
{
io
->
putChar
((
majorType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
Value32Bit
);
qToBigEndian
(
quint32
(
n
),
bytes
);
io
->
write
(
bytes
,
sizeof
(
quint32
));
}
else
{
io
->
putChar
((
majorType
<<
cbor
::
MajorTypeShift
)
|
cbor
::
Value64Bit
);
qToBigEndian
(
n
,
bytes
);
io
->
write
(
bytes
,
sizeof
(
quint64
));
}
}
}
};
QCborWriter
::
QCborWriter
(
QIODevice
*
io
)
:
QScopedResult
(
new
QCborWriterImpl
(
io
),
true
)
{}
tests/QBind/QJson_impl.h
View file @
f5cca0b1
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment