summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/amqp_0_10/Holder.h
blob: 605d2e0ed54d317fc1ee90f0c53f2195fae8b50b (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
#ifndef QPID_AMQP_0_10_HOLDER_H
#define QPID_AMQP_0_10_HOLDER_H

/*
 *
 * 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/Blob.h"
#include "qpid/amqp_0_10/apply.h"

namespace qpid {
namespace amqp_0_10 {

using framing::in_place;

template <class Invokable> struct InvokeVisitor {
    typedef void result_type;
    Invokable& target;     
    InvokeVisitor(Invokable& i) : target(i) {}

    template <class Action>
    void operator()(const Action& action) { action.invoke(target); }
};

template <class DerivedHolder, class BaseHeld, size_t Size>
class Holder : public framing::Blob<Size, BaseHeld> {
    typedef framing::Blob<Size, BaseHeld> Base;

  public:
    
    Holder() {}
    template <class T> explicit Holder(const T& value) : Base(value) {}

    using Base::operator=;
    Holder& operator=(const BaseHeld& rhs);
    
    uint8_t getCode() const { return this->get()->getCode(); }
    uint8_t getClassCode() const { return this->get()->getClassCode(); }

    template <class Invokable> void invoke(Invokable& i) const {
        InvokeVisitor<Invokable> v(i);
        apply(v, *this->get());
    }
    
    template <class S> void encode(S& s) const {
        s(getClassCode())(getCode());
    }

    template <class S> void decode(S& s) {
        uint8_t code, classCode;
        s(classCode)(code);
        static_cast<DerivedHolder*>(this)->set(classCode, code);
    }

    template <class S> void serialize(S& s) {
        s.split(*this);
        qpid::amqp_0_10::apply(s, *this->get());
    }

    template <class T> T* getIf() {
        return (getClassCode()==T::CLASS_CODE && getCode()==T::CODE) ? static_cast<T*>(this->get()) : 0;
    }

    template <class T> const T* getIf() const {
        return (getClassCode()==T::CLASS_CODE && getCode()==T::CODE) ? static_cast<T*>(this->get()) : 0;
    }
    
  private:
    struct Assign : public ApplyFunctor<void> {
        Holder& holder;
        Assign(Holder& x) : holder(x) {}
        template <class T> void operator()(const T& rhs) { holder=rhs; }
    };
};

template <class D, class B, size_t S>
Holder<D,B,S>& Holder<D,B,S>::operator=(const B& rhs) {
    Assign assign(*this);
    qpid::amqp_0_10::apply(assign, rhs);
    return *this;
}



}} // namespace qpid::amqp_0_10

#endif  /*!QPID_AMQP_0_10_HOLDER_H*/