/* * Copyright (c) 2020 YuQing <384681@qq.com> * * This program is free software: you can use, redistribute, and/or modify * it under the terms of the GNU Affero General Public License, version 3 * or later ("AGPL"), as published by the Free Software Foundation. * * 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. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ //sf_ordered_writer.h #ifndef _SF_ORDERED_WRITER_H_ #define _SF_ORDERED_WRITER_H_ #include "fastcommon/sorted_queue.h" #include "sf_file_writer.h" typedef struct sf_writer_version_entry { int64_t version; struct sf_writer_version_entry *next; } SFWriterVersionEntry; typedef struct sf_ordered_writer_buffer { int64_t version; BufferInfo bf; struct sf_ordered_writer_buffer *next; } SFOrderedWriterBuffer; typedef struct sf_orderd_writer_thread { struct { struct fast_mblock_man version; struct fast_mblock_man buffer; } allocators; struct { struct fc_queue version; struct sorted_queue buffer; } queues; char name[64]; volatile bool running; SFOrderedWriterBuffer waiting; //for less equal than object } SFOrderedWriterThread; typedef struct sf_ordered_writer_info { SFFileWriterInfo fw; SFBinlogBuffer binlog_buffer; SFOrderedWriterThread *thread; } SFOrderedWriterInfo; typedef struct sf_ordered_writer_context { SFOrderedWriterInfo writer; SFOrderedWriterThread thread; } SFOrderedWriterContext; #ifdef __cplusplus extern "C" { #endif int sf_ordered_writer_init_ex(SFOrderedWriterContext *context, const char *data_path, const char *subdir_name, const char *file_prefix, const int buffer_size, const int max_record_size, const int64_t file_rotate_size); #define sf_ordered_writer_init(context, data_path, \ subdir_name, buffer_size, max_record_size) \ sf_ordered_writer_init_ex(context, data_path, subdir_name, \ SF_BINLOG_FILE_PREFIX, buffer_size, max_record_size, \ SF_BINLOG_DEFAULT_ROTATE_SIZE) #define sf_ordered_writer_set_flags(ctx, flags) \ sf_file_writer_set_flags(&(ctx)->writer.fw, flags) #define sf_ordered_writer_get_last_version(ctx) \ sf_ordered_writer_get_last_version(&(ctx)->writer.fw) void sf_ordered_writer_finish(SFOrderedWriterContext *ctx); #define sf_ordered_writer_get_current_index(ctx) \ sf_file_writer_get_current_index(&(ctx)->writer.fw) #define sf_ordered_writer_get_current_position(ctx, position) \ sf_file_writer_get_current_position(&(ctx)->writer.fw, position) static inline int sf_ordered_writer_alloc_versions( SFOrderedWriterContext *ctx, const int count, struct fc_queue_info *chain) { return fc_queue_alloc_chain(&ctx->thread.queues.version, &ctx->thread.allocators.version, count, chain); } static inline void sf_ordered_writer_push_versions( SFOrderedWriterContext *ctx, struct fc_queue_info *chain) { fc_queue_push_queue_to_tail(&ctx->thread.queues.version, chain); } static inline SFOrderedWriterBuffer *sf_ordered_writer_alloc_buffer( SFOrderedWriterContext *ctx, const int64_t version) { SFOrderedWriterBuffer *buffer; buffer = (SFOrderedWriterBuffer *)fast_mblock_alloc_object( &ctx->thread.allocators.buffer); if (buffer != NULL) { buffer->version = version; } return buffer; } #define sf_ordered_writer_get_filepath(data_path, subdir_name, filename, size) \ sf_file_writer_get_filepath(data_path, subdir_name, filename, size) #define sf_ordered_writer_get_filename(data_path, \ subdir_name, binlog_index, filename, size) \ sf_file_writer_get_filename(data_path, subdir_name, \ binlog_index, filename, size) #define sf_ordered_writer_set_binlog_index(ctx, binlog_index) \ sf_file_writer_set_binlog_index(&(ctx)->writer.fw, binlog_index) #define sf_push_to_binlog_thread_queue(ctx, buffer) \ sorted_queue_push(&(ctx)->thread.queues.buffer, buffer) static inline void sf_push_to_binlog_write_queue(SFOrderedWriterContext *ctx, SFOrderedWriterBuffer *buffer) { sorted_queue_push(&ctx->thread.queues.buffer, buffer); } #ifdef __cplusplus } #endif #endif