Libosmium  2.20.0
Fast and flexible C++ library for working with OpenStreetMap data
callback_buffer.hpp
Go to the documentation of this file.
1#ifndef OSMIUM_MEMORY_CALLBACK_BUFFER_HPP
2#define OSMIUM_MEMORY_CALLBACK_BUFFER_HPP
3
4/*
5
6This file is part of Osmium (https://osmcode.org/libosmium).
7
8Copyright 2013-2023 Jochen Topf <jochen@topf.org> and others (see README).
9
10Boost Software License - Version 1.0 - August 17th, 2003
11
12Permission is hereby granted, free of charge, to any person or organization
13obtaining a copy of the software and accompanying documentation covered by
14this license (the "Software") to use, reproduce, display, distribute,
15execute, and transmit the Software, and to prepare derivative works of the
16Software, and to permit third-parties to whom the Software is furnished to
17do so, all subject to the following:
18
19The copyright notices in the Software and this entire statement, including
20the above license grant, this restriction and the following disclaimer,
21must be included in all copies of the Software, in whole or in part, and
22all derivative works of the Software, unless such copies or derivative
23works are solely in the form of machine-executable object code generated by
24a source language processor.
25
26THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
29SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
30FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
31ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32DEALINGS IN THE SOFTWARE.
33
34*/
35
37
38#include <cstddef>
39#include <functional>
40#include <utility>
41
42namespace osmium {
43
44 namespace memory {
45
71
72 public:
73
75 using callback_func_type = std::function<void(osmium::memory::Buffer&&)>;
76
77 private:
78
79 enum {
80 default_initial_buffer_size = 1024UL * 1024UL
81 };
82
83 enum {
84 default_max_buffer_size = 800UL * 1024UL
85 };
86
87 osmium::memory::Buffer m_buffer;
89 std::size_t m_max_buffer_size;
91
92 public:
93
103 explicit CallbackBuffer(std::size_t initial_buffer_size = default_initial_buffer_size, std::size_t max_buffer_size = default_max_buffer_size) :
104 m_buffer(initial_buffer_size, osmium::memory::Buffer::auto_grow::yes),
105 m_initial_buffer_size(initial_buffer_size),
106 m_max_buffer_size(max_buffer_size),
107 m_callback(nullptr) {
108 }
109
120 explicit CallbackBuffer(callback_func_type callback, std::size_t initial_buffer_size = default_initial_buffer_size, std::size_t max_buffer_size = default_max_buffer_size) :
121 m_buffer(initial_buffer_size, osmium::memory::Buffer::auto_grow::yes),
122 m_initial_buffer_size(initial_buffer_size),
123 m_max_buffer_size(max_buffer_size),
124 m_callback(std::move(callback)) {
125 }
126
133 osmium::memory::Buffer& buffer() noexcept {
134 return m_buffer;
135 }
136
144 void set_callback(const callback_func_type& callback = nullptr) noexcept {
145 m_callback = callback;
146 }
147
156 void flush() {
157 if (m_callback && m_buffer.committed() > 0) {
158 m_callback(read());
159 }
160 }
161
171 if (m_buffer.committed() > m_max_buffer_size) {
172 flush();
173 }
174 }
175
181 osmium::memory::Buffer read() {
182 osmium::memory::Buffer new_buffer{m_initial_buffer_size, osmium::memory::Buffer::auto_grow::yes};
183 using std::swap;
184 swap(new_buffer, m_buffer);
185 return new_buffer;
186 }
187
188 }; // class CallbackBuffer
189
190 } // namespace memory
191
192} // namespace osmium
193
194#endif // OSMIUM_MEMORY_CALLBACK_BUFFER_HPP
Definition: callback_buffer.hpp:70
osmium::memory::Buffer & buffer() noexcept
Definition: callback_buffer.hpp:133
@ default_max_buffer_size
Definition: callback_buffer.hpp:84
CallbackBuffer(std::size_t initial_buffer_size=default_initial_buffer_size, std::size_t max_buffer_size=default_max_buffer_size)
Definition: callback_buffer.hpp:103
std::size_t m_max_buffer_size
Definition: callback_buffer.hpp:89
CallbackBuffer(callback_func_type callback, std::size_t initial_buffer_size=default_initial_buffer_size, std::size_t max_buffer_size=default_max_buffer_size)
Definition: callback_buffer.hpp:120
void set_callback(const callback_func_type &callback=nullptr) noexcept
Definition: callback_buffer.hpp:144
osmium::memory::Buffer read()
Definition: callback_buffer.hpp:181
std::function< void(osmium::memory::Buffer &&)> callback_func_type
The type for the callback function.
Definition: callback_buffer.hpp:75
osmium::memory::Buffer m_buffer
Definition: callback_buffer.hpp:87
void possibly_flush()
Definition: callback_buffer.hpp:170
void flush()
Definition: callback_buffer.hpp:156
@ default_initial_buffer_size
Definition: callback_buffer.hpp:80
callback_func_type m_callback
Definition: callback_buffer.hpp:90
std::size_t m_initial_buffer_size
Definition: callback_buffer.hpp:88
Namespace for everything in the Osmium library.
Definition: assembler.hpp:53
Definition: location.hpp:555