diff options
author | Dmitri Pal <dpal@redhat.com> | 2009-08-25 16:54:01 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-09-08 19:25:16 -0400 |
commit | c5461b548d303e6e66e20048544814338b46efb5 (patch) | |
tree | ddf98cf7e498349739fb0c8e9612a0f962e14c41 /common/elapi/providers | |
parent | 7a9bee06e2bc5bcc75659e9a46bdffa870951d7a (diff) | |
download | sssd-c5461b548d303e6e66e20048544814338b46efb5.tar.gz sssd-c5461b548d303e6e66e20048544814338b46efb5.tar.bz2 sssd-c5461b548d303e6e66e20048544814338b46efb5.zip |
ELAPI sinks and providers
This patch drills down to the next level of ELAPI functionality.
I adds the creation and loading of the sinks. It also
implements a skeleton for the first low level provider
which will be capable of writing to a file.
The configuration ini file is extended to define
new configuration parameters and their meanings.
Diffstat (limited to 'common/elapi/providers')
-rw-r--r-- | common/elapi/providers/file/file_provider.c | 155 | ||||
-rw-r--r-- | common/elapi/providers/file/file_provider.h | 79 |
2 files changed, 234 insertions, 0 deletions
diff --git a/common/elapi/providers/file/file_provider.c b/common/elapi/providers/file/file_provider.c new file mode 100644 index 00000000..589ed5eb --- /dev/null +++ b/common/elapi/providers/file/file_provider.c @@ -0,0 +1,155 @@ +/* + ELAPI + + Module implements a provider for sinks based on file. + + 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/>. +*/ + +#define _GNU_SOURCE +#include <errno.h> /* for errors */ +#include <stdlib.h> /* for free() */ + +#include "file_provider.h" +#include "ini_config.h" +#include "trace.h" +#include "config.h" +/* FIXME: temporary for debugging */ +#include "collection_tools.h" + + +/* Function to read configuration */ +int file_read_cfg(struct file_prvdr_cfg *file_cfg, + char *name, + struct collection_item *ini_config) +{ + int error = EOK; + TRACE_FLOW_STRING("file_read_cfg", "Entry point"); + + /* FIXME: read configuration items */ + + TRACE_FLOW_STRING("file_read_cfg", "Exit"); + return error; +} + + +/* Function to create context */ +int file_create_ctx(struct file_prvdr_ctx **file_ctx, + char *name, + struct collection_item *ini_config) +{ + int error = EOK; + struct file_prvdr_ctx *ctx = NULL; + + TRACE_FLOW_STRING("file_create_ctx", "Entry point"); + + ctx = (struct file_prvdr_ctx *)malloc(sizeof(struct file_prvdr_ctx)); + if (ctx == NULL) { + TRACE_ERROR_NUMBER("Failed to allocate context", ENOMEM); + return ENOMEM; + } + + /* Init allocatable items */ + ctx->config.filename = NULL; + + /* Read configuration data */ + error = file_read_cfg(&(ctx->config), name, ini_config); + if (error) { + TRACE_ERROR_NUMBER("Error reading sink configuration", error); + free(ctx); + return error; + } + + *file_ctx = ctx; + + TRACE_FLOW_STRING("file_create_ctx", "Exit"); + return error; +} + + +/* File init function */ +int file_init(void **priv_ctx, + char *name, + struct collection_item *ini_config) +{ + int error = EOK; + TRACE_FLOW_STRING("file_init", "Entry point"); + + /* Start with creating context */ + error = file_create_ctx((struct file_prvdr_ctx **)priv_ctx, + name, + ini_config); + if (error) { + TRACE_ERROR_NUMBER("Failed to create context", error); + return error; + } + + /* Open file */ + /* FIXME: ... */ + + TRACE_FLOW_STRING("file_init", "Exit"); + return error; +} + +/* File close function */ +void file_close(void **priv_ctx) +{ + struct file_prvdr_ctx **ctx = NULL; + + TRACE_FLOW_STRING("file_close", "Entry point"); + + ctx = (struct file_prvdr_ctx **)priv_ctx; + + /* Close file */ + /* FIXME: ... */ + + /* If we allocated file name free it */ + if ((*ctx)->config.filename != NULL) { + TRACE_INFO_STRING("Freeing file name", (*ctx)->config.filename); + free((*ctx)->config.filename); + } + + /* Free and indicate that the context is freed */ + free(*ctx); + *ctx = NULL; + + TRACE_FLOW_STRING("file_close", "Exit"); +} + +/* File submit function */ +int file_submit(void *priv_ctx, struct collection_item *event) +{ + int error = EOK; + TRACE_FLOW_STRING("file_submit", "Entry point"); + + + /* FIXME: Placeholder for now */ + col_print_collection(event); + + TRACE_FLOW_STRING("file_sumbit", "Exit"); + return error; +} + + +/* This is the equivalent of the get info function */ +void file_ability(struct sink_cpb *cpb_block) +{ + TRACE_FLOW_STRING("file_ability", "Entry point"); + + cpb_block->init_cb = file_init; + cpb_block->submit_cb = file_submit; + cpb_block->close_cb = file_close; + + TRACE_FLOW_STRING("file_ability", "Exit"); +} diff --git a/common/elapi/providers/file/file_provider.h b/common/elapi/providers/file/file_provider.h new file mode 100644 index 00000000..218f69f5 --- /dev/null +++ b/common/elapi/providers/file/file_provider.h @@ -0,0 +1,79 @@ +/* + ELAPI + + Header file used internally by the "file" provider. + + 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_FILE_PROVIDER_H +#define ELAPI_FILE_PROVIDER_H + +#include <stdint.h> + +#include "elapi_sink.h" + +/* Structure that holds internal configuration of the file + * provider. + */ +struct file_prvdr_cfg { + char *filename; /* File name */ + uint32_t keepopen; /* Do we need to keep file open */ + uint32_t fsyncmode; /* How frequently data is fsynced */ + uint32_t outmode; /* Output mode */ + struct collection_item *set; /* Field set without leftovers symbol */ + uint32_t use_leftovers; /* Was there a leftover symbol */ + uint32_t jam_leftovers; /* leftovers should be serialized into one field */ + uint32_t mode_leftovers; /* Format for the leftover fields */ + uint32_t csvheader; /* Include csv header or not? */ + char csvqualifier; /* What is the qualifier? */ + char csvseparator; /* What is the separator? */ + uint32_t csvescape; /* Do we need to escape strings ? */ + char csvescchar; /* What is the escape character? */ +}; + +/* File context */ +struct file_prvdr_ctx { + struct file_prvdr_cfg config; /* Configuration */ + int outfile; /* File handle */ + /* FIXME - other things go here */ +}; + + + +/* Function to read configuration */ +int file_read_cfg(struct file_prvdr_cfg *file_cfg, + char *name, + struct collection_item *ini_config); + +/* Function to create context */ +int file_create_ctx(struct file_prvdr_ctx **file_ctx, + char *name, + struct collection_item *ini_config); + +/* File init function */ +int file_init(void **priv_ctx, + char *name, + struct collection_item *ini_config); + +/* File close function */ +void file_close(void **priv_ctx); + +/* File submit function */ +int file_submit(void *priv_ctx, struct collection_item *event); + +/* This is the equivalent of the get info function */ +void file_ability(struct sink_cpb *cpb_block); + +#endif |