Skip to content

Commit

Permalink
in_tail: Convert encodings before splitting lines
Browse files Browse the repository at this point in the history
Signed-off-by: Hiroshi Hatake <[email protected]>
  • Loading branch information
cosmo0920 committed Oct 10, 2024
1 parent f40ad15 commit 9205803
Showing 1 changed file with 36 additions and 26 deletions.
62 changes: 36 additions & 26 deletions plugins/in_tail/tail_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@ static int process_content(struct flb_tail_file *file, size_t *bytes)
size_t line_len;
char *repl_line;
size_t repl_line_len;
size_t original_len = 0;
time_t now = time(NULL);
struct flb_time out_time = {0};
struct flb_tail_config *ctx;
Expand All @@ -458,6 +459,25 @@ static int process_content(struct flb_tail_file *file, size_t *bytes)
/* reset last processed bytes */
file->last_processed_bytes = 0;

#ifdef FLB_HAVE_UNICODE_ENCODER
if (ctx->preferred_input_encoding != FLB_SIMDUTF_ENCODING_TYPE_UNSPECIFIED) {
original_len = end - data;
decoded = NULL;
ret = flb_simdutf_connector_convert_from_unicode(ctx->preferred_input_encoding,
data, end - data, &decoded, &decoded_len);
if (ret == FLB_SIMDUTF_CONNECTOR_CONVERT_OK) {
data = decoded;
end = data + decoded_len;
}
else if (ret == FLB_SIMDUTF_CONNECTOR_CONVERT_NOP) {
flb_plg_debug(ctx->ins, "nothing to convert encoding '%.*s'", end - data, data);
}
else {
flb_plg_error(ctx->ins, "encoding failed '%.*s'", end - data, data);
}
}
#endif

/* Skip null characters from the head (sometimes introduced by copy-truncate log rotation) */
while (data < end && *data == '\0') {
data++;
Expand Down Expand Up @@ -517,25 +537,6 @@ static int process_content(struct flb_tail_file *file, size_t *bytes)
line_len = len - crlf;
repl_line = NULL;

#ifdef FLB_HAVE_UNICODE_ENCODER
if (ctx->preferred_input_encoding != FLB_SIMDUTF_ENCODING_TYPE_UNSPECIFIED) {
decoded = NULL;
ret = flb_simdutf_connector_convert_from_unicode(ctx->preferred_input_encoding,
line, line_len, &decoded, &decoded_len);
if (ret == FLB_SIMDUTF_CONNECTOR_CONVERT_OK) {
line = decoded;
line_len = decoded_len;
}
else if (ret == FLB_SIMDUTF_CONNECTOR_CONVERT_NOP) {
flb_plg_debug(ctx->ins, "nothing to convert encoding '%.*s'", line_len, line);
}
else {
flb_plg_error(ctx->ins, "encoding failed '%.*s'", line_len, line);
goto go_next;
}
}
#endif

if (ctx->ml_ctx) {
ret = flb_ml_append_text(ctx->ml_ctx,
file->ml_stream_id,
Expand Down Expand Up @@ -628,18 +629,23 @@ static int process_content(struct flb_tail_file *file, size_t *bytes)
lines++;
file->parsed = 0;
file->last_processed_bytes += processed_bytes;
}

#ifdef FLB_HAVE_UNICODE_ENCODER
if (decoded) {
flb_free(decoded);
decoded = NULL;
}
#endif
if (decoded) {
flb_free(decoded);
decoded = NULL;
}
#endif
file->parsed = file->buf_len;

if (lines > 0) {
/* Append buffer content to a chunk */
*bytes = processed_bytes;
if (original_len > 0) {
*bytes = original_len;
} else {
*bytes = processed_bytes;
}

if (file->sl_log_event_encoder->output_length > 0) {
flb_input_log_append_records(ctx->ins,
Expand All @@ -656,7 +662,11 @@ static int process_content(struct flb_tail_file *file, size_t *bytes)
*bytes = file->buf_len;
}
else {
*bytes = processed_bytes;
if (original_len > 0) {
*bytes = original_len;
} else {
*bytes = processed_bytes;
}
}

if (ctx->ml_ctx) {
Expand Down

0 comments on commit 9205803

Please sign in to comment.