decoder_allocators.hpp 4.71 KB
Newer Older
Jens Auer's avatar
Jens Auer committed
1
/*
2
    Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
Jens Auer's avatar
Jens Auer committed
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

    This file is part of libzmq, the ZeroMQ core engine in C++.

    libzmq is free software; you can redistribute it and/or modify it under
    the terms of the GNU Lesser General Public License (LGPL) as published
    by the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    As a special exception, the Contributors give you permission to link
    this library with independent modules to produce an executable,
    regardless of the license terms of these independent modules, and to
    copy and distribute the resulting executable under terms of your choice,
    provided that you also meet, for each linked independent module, the
    terms and conditions of the license of that module. An independent
    module is a module which is not derived from or based on this library.
    If you modify this library, you must extend this exception to your
    version of the library.

    libzmq is distributed in the hope that it will be useful, but WITHOUT
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
    License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

30 31
#ifndef __ZMQ_DECODER_ALLOCATORS_HPP_INCLUDED__
#define __ZMQ_DECODER_ALLOCATORS_HPP_INCLUDED__
Jens Auer's avatar
Jens Auer committed
32

33
#include <cstddef>
34
#include <cstdlib>
Jens Auer's avatar
Jens Auer committed
35 36

#include "atomic_counter.hpp"
37
#include "msg.hpp"
38
#include "err.hpp"
Jens Auer's avatar
Jens Auer committed
39 40 41 42 43 44 45

namespace zmq
{
    // Static buffer policy.
    class c_single_allocator
    {
    public:
46
        explicit c_single_allocator (std::size_t bufsize_) :
Jens Auer's avatar
Jens Auer committed
47
                bufsize(bufsize_),
48
                buf(static_cast <unsigned char*> (std::malloc (bufsize)))
Jens Auer's avatar
Jens Auer committed
49 50 51 52
        {
            alloc_assert (buf);
        }

53
        ~c_single_allocator ()
Jens Auer's avatar
Jens Auer committed
54
        {
55
            std::free (buf);
Jens Auer's avatar
Jens Auer committed
56 57
        }

58
        unsigned char* allocate ()
Jens Auer's avatar
Jens Auer committed
59 60 61 62
        {
            return buf;
        }

63
        void deallocate ()
Jens Auer's avatar
Jens Auer committed
64 65 66
        {
        }

67
        std::size_t size () const
Jens Auer's avatar
Jens Auer committed
68 69 70 71
        {
            return bufsize;
        }

72
        void resize (std::size_t new_size)
Jens Auer's avatar
Jens Auer committed
73 74 75 76
        {
            bufsize = new_size;
        }
    private:
77
        std::size_t bufsize;
Jens Auer's avatar
Jens Auer committed
78 79
        unsigned char* buf;

80 81
        c_single_allocator (c_single_allocator const&);
        c_single_allocator& operator = (c_single_allocator const&);
Jens Auer's avatar
Jens Auer committed
82 83
    };

84
    // This allocator allocates a reference counted buffer which is used by v2_decoder_t
Jens Auer's avatar
Jens Auer committed
85 86 87 88 89 90 91 92 93 94 95
    // to use zero-copy msg::init_data to create messages with memory from this buffer as
    // data storage.
    //
    // The buffer is allocated with a reference count of 1 to make sure that is is alive while
    // decoding messages. Otherwise, it is possible that e.g. the first message increases the count
    // from zero to one, gets passed to the user application, processed in the user thread and deleted
    // which would then deallocate the buffer. The drawback is that the buffer may be allocated longer
    // than necessary because it is only deleted when allocate is called the next time.
    class shared_message_memory_allocator
    {
    public:
96
        explicit shared_message_memory_allocator (std::size_t bufsize_);
Jens Auer's avatar
Jens Auer committed
97 98

        // Create an allocator for a maximum number of messages
99
        shared_message_memory_allocator (std::size_t bufsize_, std::size_t maxMessages);
Jens Auer's avatar
Jens Auer committed
100

101
        ~shared_message_memory_allocator ();
Jens Auer's avatar
Jens Auer committed
102 103 104 105

        // Allocate a new buffer
        //
        // This releases the current buffer to be bound to the lifetime of the messages
106
        // created on this buffer.
107
        unsigned char* allocate ();
Jens Auer's avatar
Jens Auer committed
108 109

        // force deallocation of buffer.
110
        void deallocate ();
Jens Auer's avatar
Jens Auer committed
111 112 113

        // Give up ownership of the buffer. The buffer's lifetime is now coupled to
        // the messages constructed on top of it.
114
        unsigned char* release ();
Jens Auer's avatar
Jens Auer committed
115

116
        void inc_ref ();
Jens Auer's avatar
Jens Auer committed
117

118
        static void call_dec_ref (void*, void* buffer);
Jens Auer's avatar
Jens Auer committed
119

120
        std::size_t size () const;
Jens Auer's avatar
Jens Auer committed
121 122

        // Return pointer to the first message data byte.
123
        unsigned char* data ();
Jens Auer's avatar
Jens Auer committed
124 125

        // Return pointer to the first byte of the buffer.
126
        unsigned char* buffer ()
Jens Auer's avatar
Jens Auer committed
127 128 129 130
        {
            return buf;
        }

131
        void resize (std::size_t new_size)
Jens Auer's avatar
Jens Auer committed
132 133 134 135
        {
            bufsize = new_size;
        }

136
        zmq::msg_t::content_t* provide_content ()
Jens Auer's avatar
Jens Auer committed
137
        {
138
            return msg_content;
139 140
        }

141
        void advance_content ()
142
        {
143
            msg_content++;
Jens Auer's avatar
Jens Auer committed
144 145 146 147
        }

    private:
        unsigned char* buf;
148 149
        std::size_t bufsize;
        std::size_t max_size;
150
        zmq::msg_t::content_t* msg_content;
151
        std::size_t maxCounters;
Jens Auer's avatar
Jens Auer committed
152 153
    };
}
154 155

#endif