forked from syslog-ng/syslog-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
filterx: add a '+' operator skeleton that works on strings
Signed-off-by: Balazs Scheidler <[email protected]>
- Loading branch information
Showing
4 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#include "expr-plus.h" | ||
#include "object-string.h" | ||
#include "filterx-eval.h" | ||
#include "scratch-buffers.h" | ||
|
||
typedef struct FilterXOperatorPlus | ||
{ | ||
FilterXBinaryOp super; | ||
} FilterXOperatorPlus; | ||
|
||
static FilterXObject * | ||
_eval(FilterXExpr *s) | ||
{ | ||
FilterXOperatorPlus *self = (FilterXOperatorPlus *) s; | ||
|
||
FilterXObject *lhs_object = filterx_expr_eval(self->super.lhs); | ||
if (!lhs_object) | ||
{ | ||
return NULL; | ||
} | ||
|
||
FilterXObject *rhs_object = filterx_expr_eval(self->super.rhs); | ||
if (!rhs_object) | ||
{ | ||
filterx_object_unref(lhs_object); | ||
return NULL; | ||
} | ||
|
||
if (filterx_object_is_type(lhs_object, &FILTERX_TYPE_NAME(string)) && | ||
filterx_object_is_type(rhs_object, &FILTERX_TYPE_NAME(string))) | ||
{ | ||
gsize lhs_len, rhs_len; | ||
const gchar *lhs_value = filterx_string_get_value(lhs_object, &lhs_len); | ||
const gchar *rhs_value = filterx_string_get_value(rhs_object, &rhs_len); | ||
GString *buffer = scratch_buffers_alloc(); | ||
|
||
g_string_append_len(buffer, lhs_value, lhs_len); | ||
g_string_append_len(buffer, rhs_value, rhs_len); | ||
/* FIXME: support taking over the already allocated space */ | ||
return filterx_string_new(buffer->str, buffer->len); | ||
} | ||
|
||
filterx_eval_push_error("operator+ only works on strings", s, NULL); | ||
filterx_object_unref(lhs_object); | ||
filterx_object_unref(rhs_object); | ||
return NULL; | ||
} | ||
|
||
FilterXExpr * | ||
filterx_operator_plus_new(FilterXExpr *lhs, FilterXExpr *rhs) | ||
{ | ||
FilterXOperatorPlus *self = g_new0(FilterXOperatorPlus, 1); | ||
filterx_binary_op_init_instance(&self->super, lhs, rhs); | ||
self->super.super.eval = _eval; | ||
return &self->super.super; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#ifndef FILTERX_EXPR_PLUS_H_INCLUDED | ||
#define FILTERX_EXPR_PLUS_H_INCLUDED | ||
|
||
#include "filterx-expr.h" | ||
|
||
FilterXExpr *filterx_operator_plus_new(FilterXExpr *lhs, FilterXExpr *rhs); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters