1 2 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
/*
* Copyright (c) 2023 Attila Szakacs
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "random-choice-generator.hpp"
#include "compat/cpp-start.h"
#include "string-list.h"
#include "compat/cpp-end.h"
#include <unistd.h>
#define get_SourceDriver(s) (((RandomChoiceGeneratorSourceDriver *) (s))->cpp)
#define get_SourceWorker(s) (((RandomChoiceGeneratorSourceWorker *) (s))->cpp)
using namespace syslogng::examples::random_choice_generator;
/* C++ Implementations */
SourceDriver::SourceDriver(RandomChoiceGeneratorSourceDriver *s)
: super(s)
{
}
void
SourceDriver::set_choices(GList *choices_)
{
for (GList *elem = g_list_first(choices_); elem; elem = elem->next)
{
const gchar *choice = (const gchar *) elem->data;
choices.push_back(choice);
}
string_list_free(choices_);
}
void
SourceDriver::set_freq(gdouble freq_)
{
freq = freq_;
}
void
SourceDriver::request_exit()
{
exit_requested = true;
}
void
SourceDriver::format_stats_key(StatsClusterKeyBuilder *kb)
{
stats_cluster_key_builder_add_legacy_label(kb, stats_cluster_label("driver", "random-choice-generator"));
}
gboolean
SourceDriver::init()
{
if (choices.size() == 0)
{
msg_error("random-choice-generator: choices() option is mandatory",
log_pipe_location_tag(&super->super.super.super.super));
return FALSE;
}
return log_threaded_source_driver_init_method(&super->super.super.super.super);
}
gboolean
SourceDriver::deinit()
{
return log_threaded_source_driver_deinit_method(&super->super.super.super.super);
}
SourceWorker::SourceWorker(RandomChoiceGeneratorSourceWorker *s, SourceDriver &d)
: super(s), driver(d)
{
}
void
SourceWorker::run()
{
while (!driver.exit_requested)
{
std::string random_choice = driver.choices[rand() % driver.choices.size()];
LogMessage *msg = log_msg_new_empty();
log_msg_set_value(msg, LM_V_MESSAGE, random_choice.c_str(), -1);
log_threaded_source_worker_blocking_post(&super->super, msg);
usleep((useconds_t)(driver.freq * 1000));
}
}
void
SourceWorker::request_exit()
{
driver.request_exit();
}
/* C Wrappers */
void
random_choice_generator_set_choices(LogDriver *s, GList *choices)
{
get_SourceDriver(s)->set_choices(choices);
}
void
random_choice_generator_set_freq(LogDriver *s, gdouble freq)
{
get_SourceDriver(s)->set_freq(freq);
}
static void
_worker_run(LogThreadedSourceWorker *s)
{
get_SourceWorker(s)->run();
}
static void
_worker_request_exit(LogThreadedSourceWorker *s)
{
get_SourceWorker(s)->request_exit();
}
static void
_format_stats_key(LogThreadedSourceDriver *s, StatsClusterKeyBuilder *kb)
{
get_SourceDriver(s)->format_stats_key(kb);
}
static gboolean
_init(LogPipe *s)
{
return get_SourceDriver(s)->init();
}
static gboolean
_deinit(LogPipe *s)
{
return get_SourceDriver(s)->deinit();
}
static void
_free(LogPipe *s)
{
delete get_SourceDriver(s);
log_threaded_source_driver_free_method(s);
}
static void
_worker_free(LogPipe *s)
{
delete get_SourceWorker(s);
log_threaded_source_worker_free(s);
}
static LogThreadedSourceWorker *
_construct_worker(LogThreadedSourceDriver *s, gint worker_index)
{
RandomChoiceGeneratorSourceWorker *worker = g_new0(RandomChoiceGeneratorSourceWorker, 1);
log_threaded_source_worker_init_instance(&worker->super, s, worker_index);
worker->cpp = new SourceWorker(worker, *get_SourceDriver(s));
worker->super.run = _worker_run;
worker->super.request_exit = _worker_request_exit;
worker->super.super.super.free_fn = _worker_free;
return &worker->super;
}
LogDriver *
random_choice_generator_sd_new(GlobalConfig *cfg)
{
RandomChoiceGeneratorSourceDriver *s = g_new0(RandomChoiceGeneratorSourceDriver, 1);
log_threaded_source_driver_init_instance(&s->super, cfg);
s->cpp = new SourceDriver(s);
s->super.super.super.super.init = _init;
s->super.super.super.super.deinit = _deinit;
s->super.super.super.super.free_fn = _free;
s->super.format_stats_key = _format_stats_key;
s->super.worker_construct = _construct_worker;
return &s->super.super.super;
}
|