]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/capture/nfqueue/nfqueue.h
More std::jthread
[stg.git] / projects / stargazer / plugins / capture / nfqueue / nfqueue.h
1 /*
2  *    This program is free software; you can redistribute it and/or modify
3  *    it under the terms of the GNU General Public License as published by
4  *    the Free Software Foundation; either version 2 of the License, or
5  *    (at your option) any later version.
6  *
7  *    This program is distributed in the hope that it will be useful,
8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *    GNU General Public License for more details.
11  *
12  *    You should have received a copy of the GNU General Public License
13  *    along with this program; if not, write to the Free Software
14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15  */
16
17 /*
18 * Author : Maxim Mamontov <faust@stargazer.dp.ua>
19 */
20
21 #pragma once
22
23 #include "stg/plugin.h"
24 #include "stg/module_settings.h"
25 #include "stg/logger.h"
26
27 #include <string>
28 #include <vector>
29 #pragma GCC diagnostic push
30 #pragma GCC diagnostic ignored "-Wshadow"
31 #include <jthread.hpp>
32 #pragma GCC diagnostic pop
33
34 namespace STG
35 {
36
37 struct Users;
38 struct Tariffs;
39 struct Admins;
40 struct TraffCounter;
41 struct Settings;
42 struct RawPacket;
43
44 }
45
46 struct nfq_handle;
47 struct nfq_q_handle;
48
49 class NFQ_CAP : public STG::Plugin {
50 public:
51     NFQ_CAP();
52
53     void                SetTraffcounter(STG::TraffCounter * tc) override { traffCnt = tc; }
54
55     int                 Start() override;
56     int                 Stop() override;
57     int                 Reload(const STG::ModuleSettings & /*ms*/) override { return 0; }
58     bool                IsRunning() override { return isRunning; }
59
60     void                SetSettings(const STG::ModuleSettings & s) override { settings = s; }
61     int                 ParseSettings() override;
62
63     const std::string & GetStrError() const override { return errorStr; }
64     std::string         GetVersion() const override;
65     uint16_t            GetStartPosition() const override { return 40; }
66     uint16_t            GetStopPosition() const override { return 40; }
67
68     void                Process(const STG::RawPacket & packet);
69
70 private:
71     NFQ_CAP(const NFQ_CAP & rvalue);
72     NFQ_CAP & operator=(const NFQ_CAP & rvalue);
73
74     void                Run(std::stop_token token);
75
76     mutable std::string errorStr;
77
78     std::jthread        m_thread;
79     bool                isRunning;
80     STG::ModuleSettings     settings;
81
82     size_t              queueNumber;
83
84     struct nfq_handle * nfqHandle;
85     struct nfq_q_handle * queueHandle;
86
87     STG::TraffCounter *      traffCnt;
88
89     STG::PluginLogger       logger;
90 };