decoder_allocators.hpp 4.33 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

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

53
    ~c_single_allocator () { std::free (_buf); }
54

55
    unsigned char *allocate () { return _buf; }
56 57 58

    void deallocate () {}

59
    std::size_t size () const { return _buf_size; }
Jens Auer's avatar
Jens Auer committed
60

61
    void resize (std::size_t new_size_) { _buf_size = new_size_; }
Jens Auer's avatar
Jens Auer committed
62

63
  private:
64 65
    std::size_t _buf_size;
    unsigned char *_buf;
Jens Auer's avatar
Jens Auer committed
66

67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    c_single_allocator (c_single_allocator const &);
    c_single_allocator &operator= (c_single_allocator const &);
};

// This allocator allocates a reference counted buffer which is used by v2_decoder_t
// 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:
    explicit shared_message_memory_allocator (std::size_t bufsize_);

    // Create an allocator for a maximum number of messages
    shared_message_memory_allocator (std::size_t bufsize_,
87
                                     std::size_t max_messages_);
88 89 90 91 92 93 94 95

    ~shared_message_memory_allocator ();

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

97 98
    // force deallocation of buffer.
    void deallocate ();
Jens Auer's avatar
Jens Auer committed
99

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

104
    void inc_ref ();
Jens Auer's avatar
Jens Auer committed
105

106
    static void call_dec_ref (void *, void *buffer_);
Jens Auer's avatar
Jens Auer committed
107

108
    std::size_t size () const;
Jens Auer's avatar
Jens Auer committed
109

110 111
    // Return pointer to the first message data byte.
    unsigned char *data ();
Jens Auer's avatar
Jens Auer committed
112

113
    // Return pointer to the first byte of the buffer.
114
    unsigned char *buffer () { return _buf; }
Jens Auer's avatar
Jens Auer committed
115

116
    void resize (std::size_t new_size_) { _buf_size = new_size_; }
Jens Auer's avatar
Jens Auer committed
117

118
    zmq::msg_t::content_t *provide_content () { return _msg_content; }
119

120
    void advance_content () { _msg_content++; }
Jens Auer's avatar
Jens Auer committed
121

122
  private:
123 124
    void clear ();

125 126 127 128 129
    unsigned char *_buf;
    std::size_t _buf_size;
    const std::size_t _max_size;
    zmq::msg_t::content_t *_msg_content;
    std::size_t _max_counters;
130
};
Jens Auer's avatar
Jens Auer committed
131
}
132 133

#endif