Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndris Zeila <andris.zeila@zabbix.com>2013-07-26 17:54:13 +0400
committerAndris Zeila <andris.zeila@zabbix.com>2013-07-26 17:54:13 +0400
commit25b8f54472bd570a39af5f985fa98a1a9b608ebc (patch)
tree6f70a36ecee81fe5467aa67e9d9284ea8eec84eb /include/zbxregexp.h
parentbd07c1755a0dd1185750e88d83d51b8a8c337c62 (diff)
....I..... [ZBXNEXT-1837] added zbxregexp.h file
Diffstat (limited to 'include/zbxregexp.h')
-rw-r--r--include/zbxregexp.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/include/zbxregexp.h b/include/zbxregexp.h
new file mode 100644
index 00000000000..f5428bc9422
--- /dev/null
+++ b/include/zbxregexp.h
@@ -0,0 +1,49 @@
+/*
+** Zabbix
+** Copyright (C) 2001-2013 Zabbix SIA
+**
+** This program is free software; you can redistribute it and/or modify
+** it under the terms of the GNU General Public License as published by
+** the Free Software Foundation; either version 2 of the License, or
+** (at your option) any later version.
+**
+** 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. See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with this program; if not, write to the Free Software
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+**/
+#ifndef ZABBIX_ZBXREGEXP_H
+#define ZABBIX_ZBXREGEXP_H
+
+#include "zbxalgo.h"
+
+typedef struct
+{
+ char name[129];
+ char expression[256];
+ int expression_type;
+ char exp_delimiter;
+ unsigned char case_sensitive;
+}
+zbx_expression_t;
+
+/* regular expressions */
+char *zbx_regexp_match(const char *string, const char *pattern, int *len);
+char *zbx_iregexp_match(const char *string, const char *pattern, int *len);
+char *zbx_regexp_sub(const char *string, const char *pattern, const char *output_template);
+char *zbx_mregexp_sub(const char *string, const char *pattern, const char *output_template);
+
+void zbx_regexp_clean_expressions(zbx_vector_ptr_t *expressions);
+
+void add_regexp_ex(zbx_vector_ptr_t *regexps, const char *name, const char *expression, int expression_type,
+ char exp_delimiter, int case_sensitive);
+int regexp_match_ex(zbx_vector_ptr_t *regexps, const char *string, const char *pattern, int cs);
+int regexp_sub_ex(zbx_vector_ptr_t *regexps, const char *string, const char *pattern, int cs,
+ const char *output_template, char **output);
+
+
+#endif /* ZABBIX_ZBXREGEXP_H */