File: batched_ack_tracker.c

package info (click to toggle)
syslog-ng 4.8.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,456 kB
  • sloc: ansic: 177,631; python: 13,035; cpp: 11,611; makefile: 7,012; sh: 5,147; java: 3,651; xml: 3,344; yacc: 1,377; lex: 599; perl: 193; awk: 190; objc: 162
file content (387 lines) | stat: -rw-r--r-- 9,939 bytes parent folder | download | duplicates (3)
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
/*
 * Copyright (c) 2020 One Identity
 * Copyright (c) 2020 Laszlo Budai
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; 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 "batched_ack_tracker.h"
#include "bookmark.h"
#include "syslog-ng.h"
#include "logsource.h"
#include "timeutils/misc.h"
#include <iv.h>
#include <iv_event.h>

typedef struct _BatchedAckRecord
{
  AckRecord super;
} BatchedAckRecord;

typedef struct _OnBatchAckedFunctor
{
  BatchedAckTrackerOnBatchAcked func;
  gpointer user_data;
} OnBatchAckedFunctor;

typedef struct _BatchedAckTracker
{
  AckTracker super;
  guint timeout;
  guint batch_size;
  OnBatchAckedFunctor on_batch_acked;
  BatchedAckRecord *pending_ack_record;
  GMutex acked_records_lock;
  gulong acked_records_num;
  GList *acked_records;
  struct iv_timer batch_timer;
  struct iv_event request_destroy;
  struct iv_event request_restart_timer;
  gboolean has_pending_request_restart_timer;
  GMutex pending_request_restart_timer_lock;
  gboolean watches_running;
} BatchedAckTracker;

static void
_ack_record_free(AckRecord *s)
{
  BatchedAckRecord *self = (BatchedAckRecord *) s;
  bookmark_destroy(&self->super.bookmark);

  g_free(self);
}

static void
_ack_batch(BatchedAckTracker *self, GList *ack_records)
{
  self->on_batch_acked.func(ack_records, self->on_batch_acked.user_data);
  g_list_free_full(ack_records, (GDestroyNotify) _ack_record_free);
}

static Bookmark *
_request_bookmark(AckTracker *s)
{
  BatchedAckTracker *self = (BatchedAckTracker *) s;
  if (!self->pending_ack_record)
    self->pending_ack_record = g_new0(BatchedAckRecord, 1);

  return &(self->pending_ack_record->super.bookmark);
}

static void
_assign_pending_ack_record_to_msg(BatchedAckTracker *self, LogMessage *msg)
{
  LogSource *source = self->super.source;
  log_pipe_ref((LogPipe *) source);
  self->pending_ack_record->super.bookmark.persist_state = source->super.cfg->state;
  self->pending_ack_record->super.tracker = &self->super;
  msg->ack_record = (AckRecord *) self->pending_ack_record;
}

static void
_track_msg(AckTracker *s, LogMessage *msg)
{
  BatchedAckTracker *self = (BatchedAckTracker *)s;
  _assign_pending_ack_record_to_msg(self, msg);
  self->pending_ack_record = NULL;
}

static GList *
_append_ack_record_to_batch(BatchedAckTracker *self, AckRecord *ack_record)
{
  GList *full_batch = NULL;
  g_mutex_lock(&self->acked_records_lock);
  {
    self->acked_records = g_list_prepend(self->acked_records, ack_record);
    ++self->acked_records_num;
    if (self->acked_records_num == self->batch_size)
      {
        full_batch = self->acked_records;
        self->acked_records = NULL;
        self->acked_records_num = 0;
      }
  }
  g_mutex_unlock(&self->acked_records_lock);

  return full_batch;
}

static void
_stop_batch_timer(BatchedAckTracker *self)
{
  if (iv_timer_registered(&self->batch_timer))
    iv_timer_unregister(&self->batch_timer);
}

static void
_start_batch_timer(BatchedAckTracker *self)
{
  if (self->timeout <= 0)
    return;

  iv_validate_now();
  self->batch_timer.expires = iv_now;
  timespec_add_msec(&self->batch_timer.expires, self->timeout);

  iv_timer_register(&self->batch_timer);
}

static void
_restart_batch_timer(BatchedAckTracker *self)
{
  _stop_batch_timer(self);
  _start_batch_timer(self);
}

static void
_batch_timeout(gpointer data)
{
  msg_trace("BatchedAckTracker::batch_timeout");
  BatchedAckTracker *self = (BatchedAckTracker *) data;
  GList *batch = NULL;
  g_mutex_lock(&self->acked_records_lock);
  {
    batch = self->acked_records;
    self->acked_records = NULL;
    self->acked_records_num = 0;
  }
  g_mutex_unlock(&self->acked_records_lock);
  if (batch)
    {
      _ack_batch(self, batch);
    }
  _start_batch_timer(self);
}

static void
_restart_timer_requested(gpointer data)
{
  BatchedAckTracker *self = (BatchedAckTracker *) data;
  g_mutex_lock(&self->pending_request_restart_timer_lock);
  {
    g_assert(self->has_pending_request_restart_timer);
    self->has_pending_request_restart_timer = FALSE;
    if (!log_pipe_unref(&self->super.source->super))
      _restart_batch_timer(self);
  }
  g_mutex_unlock(&self->pending_request_restart_timer_lock);
}

static void
_start_watches(BatchedAckTracker *self)
{
  if (!self->watches_running)
    {
      _start_batch_timer(self);
      self->watches_running = TRUE;
    }
}

static void
_stop_watches(BatchedAckTracker *self)
{
  if (self->watches_running)
    {
      _stop_batch_timer(self);
      self->watches_running = FALSE;
    }
}

static void
__free(AckTracker *s)
{
  msg_trace("BatchedAckTracker::free");
  BatchedAckTracker *self = (BatchedAckTracker *) s;
  g_mutex_clear(&self->acked_records_lock);

  self->has_pending_request_restart_timer = TRUE;
  _stop_watches(self);
  g_mutex_clear(&self->pending_request_restart_timer_lock);

  if (self->acked_records)
    _ack_batch(self, self->acked_records);

  if (self->pending_ack_record)
    _ack_record_free(&self->pending_ack_record->super);

  iv_event_unregister(&self->request_restart_timer);
  iv_event_unregister(&self->request_destroy);
  g_free(self);
}

static void
_destroy(gpointer data)
{
  BatchedAckTracker *self = (BatchedAckTracker *) data;
  __free(&self->super);
}

static void
_init_watches(BatchedAckTracker *self)
{
  IV_TIMER_INIT(&self->batch_timer);
  self->batch_timer.cookie = self;
  self->batch_timer.handler = _batch_timeout;

  IV_EVENT_INIT(&self->request_restart_timer);
  self->request_restart_timer.cookie = self;
  self->request_restart_timer.handler = _restart_timer_requested;

  IV_EVENT_INIT(&self->request_destroy);
  self->request_destroy.cookie = self;
  self->request_destroy.handler = _destroy;
}

static void
_request_batch_timer_restart(BatchedAckTracker *self)
{
  g_mutex_lock(&self->pending_request_restart_timer_lock);
  {
    if (!self->has_pending_request_restart_timer)
      {
        self->has_pending_request_restart_timer = TRUE;
        log_pipe_ref(&self->super.source->super);
        iv_event_post(&self->request_restart_timer);
      }
  }
  g_mutex_unlock(&self->pending_request_restart_timer_lock);
}

static void
_manage_msg_ack(AckTracker *s, LogMessage *msg, AckType ack_type)
{
  BatchedAckTracker *self = (BatchedAckTracker *) s;
  gboolean need_to_restart_batch_timer = FALSE;
  log_source_flow_control_adjust(self->super.source, 1);

  if (ack_type == AT_SUSPENDED)
    log_source_flow_control_suspend(self->super.source);

  if (ack_type != AT_ABORTED)
    {
      GList *full_batch = _append_ack_record_to_batch(self, msg->ack_record);
      if (full_batch)
        {
          _ack_batch(self, full_batch);
          need_to_restart_batch_timer = TRUE;
        }
    }
  else
    {
      _ack_record_free(msg->ack_record);
    }

  log_msg_unref(msg);
  if (!log_pipe_unref((LogPipe *)self->super.source) && need_to_restart_batch_timer)
    {
      _request_batch_timer_restart(self);
    }
}

static void
_free(AckTracker *s)
{
  msg_trace("BatchedAckTracker::request destroy");
  BatchedAckTracker *self = (BatchedAckTracker *) s;
  iv_event_post(&self->request_destroy);
}

static void
_ack_partial_batch(BatchedAckTracker *self)
{
  GList *partial_batch = NULL;
  g_mutex_lock(&self->acked_records_lock);
  {
    partial_batch = self->acked_records;
    self->acked_records = NULL;
    self->acked_records_num = 0;
  }
  g_mutex_unlock(&self->acked_records_lock);
  _ack_batch(self, partial_batch);
}

static gboolean
_init(AckTracker *s)
{
  BatchedAckTracker *self = (BatchedAckTracker *)s;
  _start_watches(self);

  return TRUE;
}

static void
_deinit(AckTracker *s)
{
  BatchedAckTracker *self = (BatchedAckTracker *) s;
  _stop_watches(self);
  _ack_partial_batch(self);
}

static void
_setup_callbacks(AckTracker *s)
{
  s->request_bookmark = _request_bookmark;
  s->track_msg = _track_msg;
  s->manage_msg_ack = _manage_msg_ack;
  s->free_fn = _free;
  s->init = _init;
  s->deinit = _deinit;
}

static void
_init_instance(AckTracker *s, LogSource *source, guint timeout, guint batch_size,
               BatchedAckTrackerOnBatchAcked cb, gpointer user_data)
{
  BatchedAckTracker *self = (BatchedAckTracker *) s;

  _setup_callbacks(s);

  s->source = source;
  source->ack_tracker = s;

  self->timeout = timeout;
  self->batch_size = batch_size;
  self->pending_ack_record = NULL;

  self->on_batch_acked.func = cb;
  self->on_batch_acked.user_data = user_data;

  g_mutex_init(&self->acked_records_lock);
  g_mutex_init(&self->pending_request_restart_timer_lock);
  _init_watches(self);
  iv_event_register(&self->request_restart_timer);
  iv_event_register(&self->request_destroy);
}

AckTracker *
batched_ack_tracker_new(LogSource *source, guint timeout, guint batch_size,
                        BatchedAckTrackerOnBatchAcked on_batch_acked, gpointer user_data)
{
  BatchedAckTracker *self = g_new0(BatchedAckTracker, 1);

  _init_instance(&self->super, source, timeout, batch_size, on_batch_acked, user_data);
  g_assert(batch_size > 0);
  /*
   * It is mandatory to process the batched ACKs
   * */
  g_assert(self->on_batch_acked.func != NULL);

  return &self->super;
}