/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Fluent Bit * ========== * Copyright (C) 2019 The Fluent Bit Authors * Copyright (C) 2015-2018 Treasure Data Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #define FLB_EXIT_FLUSH_COUNT 1 struct flb_exit { int is_running; int count; /* config */ int flush_count; }; static int cb_exit_init(struct flb_output_instance *ins, struct flb_config *config, void *data) { (void) config; (void) data; const char *tmp; struct flb_exit *ctx; ctx = flb_malloc(sizeof(struct flb_exit)); if (!ctx) { flb_errno(); return -1; } ctx->count = 0; ctx->is_running = FLB_TRUE; tmp = flb_output_get_property("flush_count", ins); if (tmp) { ctx->flush_count = atoi(tmp); } else { ctx->flush_count = FLB_EXIT_FLUSH_COUNT; } flb_output_set_context(ins, ctx); return 0; } static void cb_exit_flush(const void *data, size_t bytes, const char *tag, int tag_len, struct flb_input_instance *i_ins, void *out_context, struct flb_config *config) { (void) i_ins; (void) out_context; struct flb_exit *ctx = out_context; ctx->count++; if (ctx->is_running == FLB_TRUE && ctx->count >= ctx->flush_count) { flb_engine_exit(config); ctx->is_running = FLB_FALSE; } FLB_OUTPUT_RETURN(FLB_OK); } static int cb_exit_exit(void *data, struct flb_config *config) { struct flb_exit *ctx = data; (void) config; flb_free(ctx); return 0; } struct flb_output_plugin out_exit_plugin = { .name = "exit", .description = "Exit after a number of flushes (test purposes)", .cb_init = cb_exit_init, .cb_flush = cb_exit_flush, .cb_exit = cb_exit_exit, .flags = 0, };