fuse_kafka
src/fuse_kafka.c
Go to the documentation of this file.
00001 
00004 #include "version.h"
00005 #ifdef HAVE_CONFIG_H
00006 #include <config.h>
00007 #endif
00008 #define _GNU_SOURCE
00009 #include <stdio.h>
00010 #include <string.h>
00011 #include <unistd.h>
00012 #include <fcntl.h>
00013 #include <errno.h>
00014 #include <sys/time.h>
00015 #include <stdarg.h>
00016 #include <stdlib.h>
00017 #include "time_queue.c"
00018 #include <sys/stat.h>
00019 #ifndef MINGW_VER
00020 #include <sys/wait.h>
00021 #endif
00022 #include "dynamic_configuration.c"
00023 #include "input.h"
00026 #include "arguments.c"
00027 #include "trace.c"
00028 #include "output.h"
00029 #include "plugin.c"
00030 #include "input.h"
00031 // global variable used in atexit
00032 config conf;
00033 void configuration_clean()
00034 {
00035     free_fields_and_tags(&conf);
00036 }
00037 int my_input_setup(int argc, char** argv, int limit)
00038 {
00039     char* input = "overlay";
00040     if(conf.input_n > 0) input = conf.input[0];
00041     input_setup_t f = (input_setup_t) load_plugin_function(INPUT_PLUGIN_PREFIX, input, "input_setup_internal");
00042     if(f != NULL) return f(limit, argv, &conf);
00043     return 1;
00044 }
00045 int fuse_kafka_main(int argc, char *argv[])
00046 {
00047     trace_debug("fuse_kafka_main: starting");
00048     int i;
00049     int limit = get_limit(argc, argv);
00050     atexit(configuration_clean);
00051     memset(&conf, 0, sizeof(config));
00052     trace_debug("fuse_kafka_main:  calling parse_arguments(%d - %d - 1, %d + %d + 1, %d)", argc, limit, argv, limit, &conf);
00053     if(parse_arguments(argc - limit - 1, argv + limit + 1, &conf))
00054     {
00055         trace_debug("arguments parsed, input setup");
00056         my_input_setup(argc, argv, limit);
00057         trace_debug("input_setup done");
00058     }
00059 #ifndef MINGW_VER
00060     wait(NULL);
00061 #endif
00062     trace_debug("fuse_kafka_main: done");
00063     return 0;
00064 }
00065 char* cmd = NULL;
00066 #ifdef TEST
00067 #include "test.c"
00068 #else
00069 int main(int argc, char** argv)
00070 {
00071     trace_debug("main: calling fuse_kafka_main(%d, %d)", argc, argv);
00072     fuse_kafka_main(argc, argv);
00073 }
00074 #endif
 All Data Structures Files Functions Variables Defines