blob: 03e681a51f5356d7192ba51b4d982060dc54ad49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/*
ELAPI
Common sink interface header.
Copyright (C) Dmitri Pal <dpal@redhat.com> 2009
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 3 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef ELAPI_SINK_H
#define ELAPI_SINK_H
#include <time.h>
#include "collection.h"
#define ELAPI_SINK_OK 0 /* Sink can be used for logging */
#define ELAPI_SINK_SUSPENDED 1 /* Sink is temporary disabled due to recoverable error */
#define ELAPI_SINK_DISABLED 2 /* Sink is explicitely disabled by the application */
#define ELAPI_SINK_PULSE 3 /* Sink is disabled for this one event */
#define SINK_LIB_NAME_SIZE 100
#define SINK_ENTRY_POINT "get_sink_info"
#define SINK_NAME_TEMPLATE "libelapi_sink_%s.so"
/* Log facility callbacks */
/* FIXME - the signatures need to take into the account async processing */
typedef int (*init_fn)(void **priv_ctx,
const char *name,
struct collection_item *ini_config,
const char *appname);
typedef int (*submit_fn)(void *priv_ctx, struct collection_item *event);
typedef void (*close_fn)(void **priv_ctx);
struct sink_cpb {
init_fn init_cb;
submit_fn submit_cb;
close_fn close_cb;
};
/* The only open function the sink can expose */
typedef void (*sink_cpb_fn)(struct sink_cpb *sink_cpb_block);
/* Standard capability function */
void get_sink_info(struct sink_cpb *cpb_block);
#endif
|