summaryrefslogtreecommitdiff
path: root/include/CommonAPI/SerializableArguments.hpp
blob: 5bd7a59944c9123a0f761f8c362e4054dc532ae3 (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
// Copyright (C) 2014-2020 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#if !defined (COMMONAPI_INTERNAL_COMPILATION)
#error "Only <CommonAPI/CommonAPI.hpp> can be included directly, this file may disappear or change contents."
#endif

#ifndef COMMONAPI_SERIALIZABLEARGUMENTS_HPP_
#define COMMONAPI_SERIALIZABLEARGUMENTS_HPP_

#include <CommonAPI/InputStream.hpp>
#include <CommonAPI/OutputStream.hpp>

namespace CommonAPI {

template<class In_, class Out_, typename... Arguments_>
struct SerializableArguments;

template<class In_, class Out_>
struct SerializableArguments<In_, Out_> {
    static bool serialize(OutputStream<Out_> &_output) {
        (void)_output;
        return true;
    }

    static bool deserialize(InputStream<In_> &_input) {
        (void)_input;
        return true;
    }
};

template<class In_, class Out_, typename ArgumentType_>
struct SerializableArguments<In_, Out_, ArgumentType_> {
    static bool serialize(OutputStream<Out_> &_output, const ArgumentType_ &_argument) {
        _output << _argument;
        return !_output.hasError();
    }

    static bool deserialize(InputStream<In_> &_input, ArgumentType_ &_argument) {
        _input >> _argument;
        return !_input.hasError();
    }
};

template <class In_, class Out_, typename ArgumentType_, typename ... Rest_>
struct SerializableArguments<In_, Out_, ArgumentType_, Rest_...> {
    static bool serialize(OutputStream<Out_> &_output, const ArgumentType_ &_argument, const Rest_&... _rest) {
        _output << _argument;
        return !_output.hasError() ?
                    SerializableArguments<In_, Out_, Rest_...>::serialize(_output, _rest...) : false;
    }

    static bool deserialize(InputStream<In_> &_input, ArgumentType_ &_argument, Rest_&... _rest) {
        _input >> _argument;
        return !_input.hasError() ?
                    SerializableArguments<In_, Out_, Rest_...>::deserialize(_input, _rest...) : false;
    }
};

} // namespace CommonAPI

#endif // COMMONAPI_SERIALIZABLE_ARGUMENTS_HPP_