]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
Rework worker utilities.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Wed, 30 Apr 2014 11:45:17 +0000 (12:45 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Wed, 30 Apr 2014 11:45:38 +0000 (12:45 +0100)
src/libmime/CMakeLists.txt
src/libserver/CMakeLists.txt
src/libserver/worker_util.c [moved from src/libmime/worker_util.c with 100% similarity]
src/libserver/worker_util.h [new file with mode: 0644]
src/libutil/util.h
src/main.h

index 303b7a088bbc2058efe475c76959f80bb681f50c..e612dce192f62c6e94c5fe4ea1380ad0662e0672 100644 (file)
@@ -6,8 +6,7 @@ SET(LIBRSPAMDMIMESRC
                                message.c
                                protocol.c
                                smtp_utils.c
-                               smtp_proto.c
-                               worker_util.c)
+                               smtp_proto.c)
 
 # Librspamdmime
 ADD_LIBRARY(rspamd-mime ${LINK_TYPE} ${LIBRSPAMDMIMESRC})
index bd5df18b9e9aa5d7d79c2d5bdd52c4f09e093373..99a4debb2bf818920290625f615a9ce86827ab6a 100644 (file)
@@ -17,7 +17,9 @@ SET(LIBRSPAMDSERVERSRC
                                statfile_sync.c
                                symbols_cache.c
                                task.c
-                               url.c)
+                               url.c
+                               worker_util.c)
+
 SET(TOKENIZERSSRC  ../tokenizers/tokenizers.c
                                ../tokenizers/osb.c)
 
diff --git a/src/libserver/worker_util.h b/src/libserver/worker_util.h
new file mode 100644 (file)
index 0000000..d88b93a
--- /dev/null
@@ -0,0 +1,67 @@
+/* Copyright (c) 2014, Vsevolod Stakhov
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *       * Redistributions of source code must retain the above copyright
+ *         notice, this list of conditions and the following disclaimer.
+ *       * Redistributions in binary form must reproduce the above copyright
+ *         notice, this list of conditions and the following disclaimer in the
+ *         documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+#ifndef WORKER_UTIL_H_
+#define WORKER_UTIL_H_
+
+#include "config.h"
+#include "util.h"
+
+/**
+ * Return worker's control structure by its type
+ * @param type
+ * @return worker's control structure or NULL
+ */
+worker_t* get_worker_by_type (GQuark type);
+
+/**
+ * Set counter for a symbol
+ */
+double set_counter (const gchar *name, guint32 value);
+
+#ifndef HAVE_SA_SIGINFO
+typedef void (*rspamd_sig_handler_t) (gint);
+#else
+typedef void (*rspamd_sig_handler_t) (gint, siginfo_t *, void *);
+#endif
+
+struct rspamd_worker;
+
+/**
+ * Prepare worker's startup
+ * @param worker worker structure
+ * @param name name of the worker
+ * @param sig_handler handler of main signals
+ * @param accept_handler handler of accept event for listen sockets
+ * @return event base suitable for a worker
+ */
+struct event_base *
+prepare_worker (struct rspamd_worker *worker, const char *name,
+               void (*accept_handler)(int, short, void *));
+
+/**
+ * Stop accepting new connections for a worker
+ * @param worker
+ */
+void worker_stop_accept (struct rspamd_worker *worker);
+
+#endif /* WORKER_UTIL_H_ */
index 4359d4288b267787e5d494ed813c2e036b2570e5..dfa34a458e5fc267a65aafa6138fae03448a07c6 100644 (file)
@@ -259,13 +259,6 @@ gboolean rspamd_strtoul (const gchar *s, gsize len, gulong *value);
  */
 gint rspamd_fallocate (gint fd, off_t offset, off_t len);
 
-/**
- * Return worker's control structure by its type
- * @param type
- * @return worker's control structure or NULL
- */
-extern worker_t* get_worker_by_type (GQuark type);
-
 /**
  * Utils for working with threads to be compatible with all glib versions
  */
index 57a7907e598202d4b1dcb5bc82cb821e0735a2d0..d93c00e09c71e75231feb32cb395fca8ae0e438e 100644 (file)
@@ -22,6 +22,7 @@
 #include "roll_history.h"
 #include "http.h"
 #include "task.h"
+#include "worker_util.h"
 
 /* Default values */
 #define FIXED_CONFIG_FILE RSPAMD_CONFDIR "/rspamd.conf"
@@ -195,37 +196,6 @@ void register_custom_controller_command (const gchar *name, controller_func_t ha
  */
 extern struct rspamd_main *rspamd_main;
 
-/* Worker task manipulations */
-
-/**
- * Set counter for a symbol
- */
-double set_counter (const gchar *name, guint32 value);
-
-#ifndef HAVE_SA_SIGINFO
-typedef void (*rspamd_sig_handler_t) (gint);
-#else
-typedef void (*rspamd_sig_handler_t) (gint, siginfo_t *, void *);
-#endif
-
-/**
- * Prepare worker's startup
- * @param worker worker structure
- * @param name name of the worker
- * @param sig_handler handler of main signals
- * @param accept_handler handler of accept event for listen sockets
- * @return event base suitable for a worker
- */
-struct event_base *
-prepare_worker (struct rspamd_worker *worker, const char *name,
-               void (*accept_handler)(int, short, void *));
-
-/**
- * Stop accepting new connections for a worker
- * @param worker
- */
-void worker_stop_accept (struct rspamd_worker *worker);
-
 #endif
 
 /*