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>2019-10-01 10:34:19 +0300
committerAndris Zeila <andris.zeila@zabbix.com>2019-10-01 10:34:57 +0300
commitece5d29e4bc4825132b86d2d35f481845a6269d2 (patch)
tree241b470c87f6efe941bb090735c7a37537625e87 /src/libs/zbxembed/zabbix.c
parenta2653044be13b230bb3b0b73d50b3870965c1b25 (diff)
.......PS. [ZBXNEXT-5386] changed script logging from zabbix_log function to Zabbix.Log
Diffstat (limited to 'src/libs/zbxembed/zabbix.c')
-rw-r--r--src/libs/zbxembed/zabbix.c110
1 files changed, 110 insertions, 0 deletions
diff --git a/src/libs/zbxembed/zabbix.c b/src/libs/zbxembed/zabbix.c
new file mode 100644
index 00000000000..21791f12b45
--- /dev/null
+++ b/src/libs/zbxembed/zabbix.c
@@ -0,0 +1,110 @@
+/*
+** Zabbix
+** Copyright (C) 2001-2019 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 envied 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.
+**/
+
+#include "common.h"
+#include "log.h"
+#include "zbxjson.h"
+#include "zbxembed.h"
+#include "embed.h"
+#include "duktape.h"
+#include "zabbix.h"
+
+/******************************************************************************
+ * *
+ * Function: es_zabbix_dtor *
+ * *
+ * Purpose: Curlzabbix destructor *
+ * *
+ ******************************************************************************/
+duk_ret_t es_zabbix_dtor(duk_context *ctx)
+{
+ ZBX_UNUSED(ctx);
+ return 0;
+}
+
+/******************************************************************************
+ * *
+ * Function: es_zabbix_ctor *
+ * *
+ * Purpose: Curlzabbix constructor *
+ * *
+ ******************************************************************************/
+static duk_ret_t es_zabbix_ctor(duk_context *ctx)
+{
+ if (!duk_is_constructor_call(ctx))
+ return DUK_RET_TYPE_ERROR;
+
+ duk_push_this(ctx);
+
+ duk_push_c_function(ctx, es_zabbix_dtor, 1);
+ duk_set_finalizer(ctx, -2);
+ return 0;
+}
+
+/******************************************************************************
+ * *
+ * Function: es_zabbix_status *
+ * *
+ * Purpose: Curlzabbix.Status method *
+ * *
+ ******************************************************************************/
+duk_ret_t es_zabbix_log(duk_context *ctx)
+{
+ zabbix_log(duk_to_int(ctx, 0), "%s", duk_to_string(ctx, 1));
+ return 0;
+}
+
+static const duk_function_list_entry zabbix_methods[] = {
+ {"Log", es_zabbix_log, 2},
+ {NULL, NULL, 0}
+};
+
+static int es_zabbix_create_object(duk_context *ctx)
+{
+ duk_push_c_function(ctx, es_zabbix_ctor, 0);
+ duk_push_object(ctx);
+
+ duk_put_function_list(ctx, -1, zabbix_methods);
+
+ if (1 != duk_put_prop_string(ctx, -2, "prototype"))
+ return FAIL;
+
+ duk_new(ctx, 0);
+ duk_put_global_string(ctx, "Zabbix");
+
+ return SUCCEED;
+}
+
+int zbx_es_init_zabbix(zbx_es_t *es, char **error)
+{
+ if (0 != setjmp(es->env->loc))
+ {
+ *error = zbx_strdup(*error, es->env->error);
+ return FAIL;
+ }
+
+ if (FAIL == es_zabbix_create_object(es->env->ctx))
+ {
+ *error = zbx_strdup(*error, duk_safe_to_string(es->env->ctx, -1));
+ duk_pop(es->env->ctx);
+ return FAIL;
+ }
+
+ return SUCCEED;
+}