mirror of
https://github.com/falcosecurity/falco.git
synced 2025-10-21 19:44:57 +00:00
Use the sinsp_evt_formatter_cache added in https://github.com/draios/sysdig/pull/771 instead of a local cache. This simplifies the lua side quite a bit, as it only needs to call format_output(), and clean up everything via free_formatters() in output_cleanup(). On the C side, use a sinsp_evt_formatter object and use it in format_event().
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
/*
|
|
Copyright (C) 2016 Draios inc.
|
|
|
|
This file is part of falco.
|
|
|
|
falco is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License version 2 as
|
|
published by the Free Software Foundation.
|
|
|
|
falco 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 falco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "sinsp.h"
|
|
|
|
extern "C" {
|
|
#include "lua.h"
|
|
#include "lualib.h"
|
|
#include "lauxlib.h"
|
|
}
|
|
|
|
class sinsp_evt_formatter;
|
|
|
|
class falco_formats
|
|
{
|
|
public:
|
|
static void init(sinsp* inspector, lua_State *ls, bool json_output);
|
|
|
|
// formatter = falco.formatter(format_string)
|
|
static int formatter(lua_State *ls);
|
|
|
|
// falco.free_formatter(formatter)
|
|
static int free_formatter(lua_State *ls);
|
|
|
|
// falco.free_formatters()
|
|
static int free_formatters(lua_State *ls);
|
|
|
|
// formatted_string = falco.format_event(evt, formatter)
|
|
static int format_event(lua_State *ls);
|
|
|
|
static sinsp* s_inspector;
|
|
static sinsp_evt_formatter_cache *s_formatters;
|
|
static bool s_json_output;
|
|
};
|