]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/fstrm_logger.hh
Merge pull request #9073 from pieterlexis/runtime-dirs-virtual-hosting
[thirdparty/pdns.git] / pdns / fstrm_logger.hh
CommitLineData
82a91ddf
CH
1/*
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22#pragma once
23#include "config.h"
24#include "remote_logger.hh"
25
26#ifdef HAVE_FSTRM
27
573f4ff0 28#include <unordered_map>
82a91ddf
CH
29#include <fstrm.h>
30#include <fstrm/iothr.h>
31#include <fstrm/unix_writer.h>
32#ifdef HAVE_FSTRM_TCP_WRITER_INIT
33#include <fstrm/tcp_writer.h>
34#endif
35
36class FrameStreamLogger : public RemoteLoggerInterface, boost::noncopyable
37{
38public:
573f4ff0 39 FrameStreamLogger(int family, const std::string& address, bool connect, const std::unordered_map<string,unsigned>& options = std::unordered_map<string,unsigned>());
414a03e1
RG
40 ~FrameStreamLogger();
41 void queueData(const std::string& data) override;
42 std::string toString() const override
82a91ddf 43 {
414a03e1 44 return "FrameStreamLogger to " + d_address + " (" + std::to_string(d_framesSent) + " frames sent, " + std::to_string(d_queueFullDrops) + " dropped, " + std::to_string(d_permanentFailures) + " permanent failures)";
82a91ddf 45 }
573f4ff0 46
82a91ddf 47private:
573f4ff0 48
82a91ddf
CH
49 const int d_family;
50 const std::string d_address;
51 struct fstrm_iothr_queue *d_ioqueue{nullptr};
52 struct fstrm_writer_options *d_fwopt{nullptr};
53 struct fstrm_unix_writer_options *d_uwopt{nullptr};
54#ifdef HAVE_FSTRM_TCP_WRITER_INIT
55 struct fstrm_tcp_writer_options *d_twopt{nullptr};
56#endif
57 struct fstrm_writer *d_writer{nullptr};
58 struct fstrm_iothr_options *d_iothropt{nullptr};
59 struct fstrm_iothr *d_iothr{nullptr};
414a03e1
RG
60 std::atomic<uint64_t> d_framesSent{0};
61 std::atomic<uint64_t> d_queueFullDrops{0};
62 std::atomic<uint64_t> d_permanentFailures{0};
82a91ddf
CH
63
64 void cleanup();
65};
66
10ba6d01
OM
67#else
68class FrameStreamLogger : public RemoteLoggerInterface, boost::noncopyable {};
82a91ddf 69#endif /* HAVE_FSTRM */