Kea 3.1.5
d2_queue_mgr.h
Go to the documentation of this file.
1// Copyright (C) 2013-2025 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7#ifndef D2_QUEUE_MGR_H
8#define D2_QUEUE_MGR_H
9
11
12#include <asiolink/io_service.h>
13#include <dhcp_ddns/ncr_io.h>
14#include <dhcp_ddns/ncr_msg.h>
16
17#include <deque>
18
19#include <boost/noncopyable.hpp>
20
21namespace isc {
22namespace d2 {
23
26typedef std::deque<dhcp_ddns::NameChangeRequestPtr> RequestQueue;
27
30public:
31 D2QueueMgrError(const char* file, size_t line, const char* what) :
32 isc::Exception(file, line, what) { }
33};
34
39public:
40 D2QueueMgrReceiveError(const char* file, size_t line, const char* what) :
41 isc::Exception(file, line, what) { }
42};
43
47public:
48 D2QueueMgrQueueFull(const char* file, size_t line, const char* what) :
49 isc::Exception(file, line, what) { }
50};
51
54public:
55 D2QueueMgrQueueEmpty(const char* file, size_t line, const char* what) :
56 isc::Exception(file, line, what) { }
57};
58
61public:
62 D2QueueMgrInvalidIndex(const char* file, size_t line, const char* what) :
63 isc::Exception(file, line, what) { }
64};
65
131 boost::noncopyable {
132public:
136 static const size_t MAX_QUEUE_DEFAULT = 1024;
137
148
154 static std::string const& stateToText(State const& state) {
155 static std::vector<std::string> const text_vector {
156 "NOT_INITTED",
157 "INITTED",
158 "RUNNING",
159 "STOPPING",
160 "STOPPED_QUEUE_FULL",
161 "STOPPED_RECV_ERROR",
162 "STOPPED",
163 };
164 static std::string const unknown("UNKNOWN");
165 return (state < text_vector.size() ? text_vector[state] : unknown);
166 }
167
181 const size_t max_queue_size = MAX_QUEUE_DEFAULT);
182
184 virtual ~D2QueueMgr();
185
197 void initUDPListener(const isc::asiolink::IOAddress& ip_address,
198 const uint32_t port,
199 const dhcp_ddns::NameChangeFormat format,
200 const bool reuse_address = false);
201
209 void startListening();
210
238 virtual void operator()(const dhcp_ddns::NameChangeListener::Result result,
240
253 void stopListening(const State target_stop_state = STOPPED);
254
262 void removeListener();
263
265 size_t getQueueSize() const {
266 return (ncr_queue_.size());
267 };
268
270 size_t getMaxQueueSize() const {
271 return (max_queue_size_);
272 }
273
281 void setMaxQueueSize(const size_t max_queue_size);
282
285 return (mgr_state_);
286 }
287
298
309 const dhcp_ddns::NameChangeRequestPtr& peekAt(const size_t index) const;
310
318 void dequeueAt(const size_t index);
319
323 void dequeue();
324
329
331 void clearQueue();
332
333 private:
338 void updateStopState();
339
341 asiolink::IOServicePtr io_service_;
342
344 size_t max_queue_size_;
345
347 RequestQueue ncr_queue_;
348
350 boost::shared_ptr<dhcp_ddns::NameChangeListener> listener_;
351
353 State mgr_state_;
354
356 State target_stop_state_;
357};
358
360typedef boost::shared_ptr<D2QueueMgr> D2QueueMgrPtr;
361
362} // namespace isc::d2
363} // namespace isc
364
365#endif
This is a base class for exceptions thrown from the DNS library module.
Exception(const char *file, size_t line, const char *what)
Constructor for a given type for exceptions with file name and file line number.
virtual const char * what() const
Returns a C-style character string of the cause of the exception.
D2QueueMgrError(const char *file, size_t line, const char *what)
D2QueueMgrInvalidIndex(const char *file, size_t line, const char *what)
D2QueueMgrQueueEmpty(const char *file, size_t line, const char *what)
D2QueueMgrQueueFull(const char *file, size_t line, const char *what)
D2QueueMgrReceiveError(const char *file, size_t line, const char *what)
const dhcp_ddns::NameChangeRequestPtr & peek() const
Returns the entry at the front of the queue.
D2QueueMgr(asiolink::IOServicePtr &io_service, const size_t max_queue_size=MAX_QUEUE_DEFAULT)
Constructor.
State
Defines the list of possible states for D2QueueMgr.
virtual ~D2QueueMgr()
Destructor.
size_t getMaxQueueSize() const
Returns the maximum number of entries allowed in the queue.
State getMgrState() const
Returns the current state.
static const size_t MAX_QUEUE_DEFAULT
Maximum number of entries allowed in the request queue.
void dequeue()
Removes the entry at the front of the queue.
const dhcp_ddns::NameChangeRequestPtr & peekAt(const size_t index) const
Returns the entry at a given position in the queue.
static std::string const & stateToText(State const &state)
Convert enum to string.
void removeListener()
Deletes the current listener.
void enqueue(dhcp_ddns::NameChangeRequestPtr &ncr)
Adds a request to the end of the queue.
void startListening()
Starts actively listening for requests.
void setMaxQueueSize(const size_t max_queue_size)
Sets the maximum number of entries allowed in the queue.
size_t getQueueSize() const
Returns the number of entries in the queue.
virtual void operator()(const dhcp_ddns::NameChangeListener::Result result, dhcp_ddns::NameChangeRequestPtr &ncr)
Function operator implementing the NCR receive callback.
void clearQueue()
Removes all entries from the queue.
void initUDPListener(const isc::asiolink::IOAddress &ip_address, const uint32_t port, const dhcp_ddns::NameChangeFormat format, const bool reuse_address=false)
Initializes the listener as a UDP listener.
void dequeueAt(const size_t index)
Removes the entry at a given position in the queue.
void stopListening(const State target_stop_state=STOPPED)
Stops listening for requests.
Abstract class for defining application layer receive callbacks.
Definition ncr_io.h:183
Result
Defines the outcome of an asynchronous NCR receive.
Definition ncr_io.h:171
Defines a State within the State Model.
Definition state_model.h:61
std::deque< dhcp_ddns::NameChangeRequestPtr > RequestQueue
Defines a queue of requests.
boost::shared_ptr< D2QueueMgr > D2QueueMgrPtr
Defines a pointer for manager instances.
NameChangeFormat
Defines the list of data wire formats supported.
Definition ncr_msg.h:59
boost::shared_ptr< NameChangeRequest > NameChangeRequestPtr
Defines a pointer to a NameChangeRequest.
Definition ncr_msg.h:241
Defines the logger used by the top-level component of kea-lfc.
This file defines abstract classes for exchanging NameChangeRequests.
This file provides the classes needed to embody, compose, and decompose DNS update requests that are ...