Readloop remove special cases
[citadel.git] / webcit / mk_module_init.sh
index 257177d0ea4bfb4fc0d5a4f634a98d31104e8052..ae1cd375133a4c594c57fc073610fed36459eab6 100755 (executable)
@@ -34,6 +34,7 @@ rm -f $C_FILE $H_FILE
 # server lifetime:
 START_FUNCS=`grep ServerStartModule_ *.c |sed "s;.*:;;" |sort -u`
 INIT_FUNCS=`grep InitModule_ *.c |sed "s;.*:;;" |sort -u`
+INIT2_FUNCS=`grep InitModule2_ *.c |sed "s;.*:;;" |sort -u`
 FINALIZE_FUNCS=`grep FinalizeModule_ *.c |sed "s;.*:;;" |sort -u`
 SHUTDOWN_FUNCS=`grep ServerShutdownModule_ *.c |sed "s;.*:;;" |sort -u`
 
@@ -68,6 +69,7 @@ extern size_t nSizErrmsg;
  * server lifetime: 
  */
 void initialise_modules (void);
+void initialise2_modules (void);
 void start_modules (void);
 void shutdown_modules (void);
 
@@ -155,7 +157,7 @@ HOOKNAME=`echo $HOOK |sed "s;ServerStartModule_;;"`
 # Add this entry point to the .c file
 cat <<EOF >> $C_FILE
 #ifdef DBG_PRINNT_HOOKS_AT_START
-       lprintf (CTDL_INFO, "Starting $HOOKNAME\n");
+       syslog(CTDL_INFO, "Starting $HOOKNAME\n");
 #endif
        $HOOK();
 EOF
@@ -187,7 +189,7 @@ for HOOK in $INIT_FUNCS; do
 # Add this entry point to the .c file
     cat <<EOF >> $C_FILE
 #ifdef DBG_PRINNT_HOOKS_AT_START
-       lprintf (CTDL_INFO, "Initializing $HOOKNAME\n");
+       syslog(CTDL_INFO, "Initializing $HOOKNAME\n");
 #endif
        $HOOK();
 EOF
@@ -197,6 +199,36 @@ extern void $HOOK(void);
 EOF
 done
 
+#********************************************************************************
+# server module  ******** initialisation ********  second stage.
+#********************************************************************************
+cat <<EOF >> $H_FILE
+
+/* Server Init Hooks: */
+EOF
+
+cat <<EOF  >>$C_FILE
+}
+
+
+void initialise2_modules (void)
+{
+
+EOF
+for HOOK in $INIT2_FUNCS; do
+    HOOKNAME=`echo $HOOK |sed "s;InitModule2_;;"`
+# Add this entry point to the .c file
+    cat <<EOF >> $C_FILE
+#ifdef DBG_PRINNT_HOOKS_AT_START
+       syslog(CTDL_INFO, "Initializing $HOOKNAME\n");
+#endif
+       $HOOK();
+EOF
+# Add this entry point to the .h file
+    cat <<EOF >> $H_FILE
+extern void $HOOK(void);
+EOF
+done
 
 
 
@@ -220,7 +252,7 @@ HOOKNAME=`echo $HOOK |sed "s;ServerShutdownModule_;;"`
 # Add this entry point to the .c file
 cat <<EOF >> $C_FILE
 #ifdef DBG_PRINNT_HOOKS_AT_START
-       lprintf (CTDL_INFO, "Shutting down $HOOKNAME\n");
+       syslog(CTDL_INFO, "Shutting down $HOOKNAME\n");
 #endif
        $HOOK();
 EOF
@@ -253,7 +285,7 @@ HOOKNAME=`echo $HOOK |sed "s;SessionNewModule_;;"`
 # Add this entry point to the .c file
 cat <<EOF >> $C_FILE
 #ifdef DBG_PRINNT_HOOKS_AT_START
-       lprintf (CTDL_INFO, "Initializing $HOOKNAME\n");
+       syslog(CTDL_INFO, "Initializing $HOOKNAME\n");
 #endif
        $HOOK(sess);
 EOF
@@ -285,7 +317,7 @@ HOOKNAME=`echo $HOOK |sed "s;SessionAttachModule_;;"`
 # Add this entry point to the .c file
 cat <<EOF >> $C_FILE
 #ifdef DBG_PRINNT_HOOKS_AT_START
-       lprintf (CTDL_INFO, "Attaching Session; $HOOKNAME\n");
+       syslog(CTDL_INFO, "Attaching Session; $HOOKNAME\n");
 #endif
        $HOOK(sess);
 EOF
@@ -317,7 +349,7 @@ HOOKNAME=`echo $HOOK |sed "s;SessionDetachModule_;;"`
 # Add this entry point to the .c file
 cat <<EOF >> $C_FILE
 #ifdef DBG_PRINNT_HOOKS_AT_START
-       lprintf (CTDL_INFO, "Initializing $HOOKNAME\n");
+       syslog(CTDL_INFO, "Initializing $HOOKNAME\n");
 #endif
        $HOOK(sess);
 EOF
@@ -350,7 +382,7 @@ HOOKNAME=`echo $HOOK |sed "s;SessionDestroyModule_;;"`
 # Add this entry point to the .c file
 cat <<EOF >> $C_FILE
 #ifdef DBG_PRINNT_HOOKS_AT_START
-       lprintf (CTDL_INFO, "Initializing $HOOKNAME\n");
+       syslog(CTDL_INFO, "Initializing $HOOKNAME\n");
 #endif
        $HOOK(*sess);
 EOF
@@ -387,7 +419,7 @@ HOOKNAME=`echo $HOOK |sed "s;HttpNewModule_;;"`
 # Add this entry point to the .c file
 cat <<EOF >> $C_FILE
 #ifdef DBG_PRINNT_HOOKS_AT_START
-       lprintf (CTDL_INFO, "NEW $HOOKNAME\n");
+       syslog(CTDL_INFO, "NEW $HOOKNAME\n");
 #endif
        $HOOK(httpreq);
 EOF
@@ -415,7 +447,7 @@ HOOKNAME=`echo $HOOK |sed "s;HttpDetachModule_;;"`
 # Add this entry point to the .c file
 cat <<EOF >> $C_FILE
 #ifdef DBG_PRINNT_HOOKS_AT_START
-       lprintf (CTDL_INFO, "Detaching $HOOKNAME\n");
+       syslog(CTDL_INFO, "Detaching $HOOKNAME\n");
 #endif
        $HOOK(httpreq);
 EOF
@@ -444,7 +476,7 @@ HOOKNAME=`echo $HOOK |sed "s;HttpDestroyModule_;;"`
 # Add this entry point to the .c file
 cat <<EOF >> $C_FILE
 #ifdef DBG_PRINNT_HOOKS_AT_START
-       lprintf (CTDL_INFO, "Destructing $HOOKNAME\n");
+       syslog(CTDL_INFO, "Destructing $HOOKNAME\n");
 #endif
        $HOOK(httpreq);
 EOF