]> git.sur5r.net Git - openldap/blob - servers/slurpd/main.c
5e26628fcf6512c3793126518aed4f1711d51837
[openldap] / servers / slurpd / main.c
1 /*
2  * Copyright (c) 1996 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13
14 /* 
15  * main.c - main routine for slurpd.
16  */
17
18 #include "portable.h"
19
20 #include <ac/stdlib.h>
21
22 #include <stdio.h>
23
24 #include "slurp.h"
25 #include "globals.h"
26 #include "lutil.h"
27
28
29 int
30 main(
31     int         argc,
32     char        **argv
33 )
34 {
35 #ifdef NO_THREADS
36     /* Haven't yet written the non-threaded version */
37     fputs( "slurpd currently requires threads support\n", stderr );
38     return( 1 );
39 #else
40
41     int                 i;
42
43     /* initialize thread package */
44     ldap_pvt_thread_initialize();
45
46     /* 
47      * Create and initialize globals.  init_globals() also initializes
48      * the main replication queue.
49      */
50     if (( sglob = init_globals()) == NULL ) {
51         fprintf( stderr, "Out of memory initializing globals\n" );
52         exit( EXIT_FAILURE );
53     }
54
55     /*
56      * Process command-line args and fill in globals.
57      */
58     if ( doargs( argc, argv, sglob ) < 0 ) {
59         exit( EXIT_FAILURE );
60     }
61
62     /*
63      * Read slapd config file and initialize Re (per-replica) structs.
64      */
65     if ( slurpd_read_config( sglob->slapd_configfile ) < 0 ) {
66         fprintf( stderr,
67                 "Errors encountered while processing config file \"%s\"\n",
68                 sglob->slapd_configfile );
69         exit( EXIT_FAILURE );
70     }
71
72     /*
73      * Get any saved state information off the disk.
74      */
75     if ( sglob->st->st_read( sglob->st )) {
76         fprintf( stderr, "Malformed slurpd status file \"%s\"\n",
77                 sglob->slurpd_status_file, 0, 0 );
78         exit( EXIT_FAILURE );
79     }
80
81     /*
82      * All readonly data should now be initialized. 
83      * Check for any fatal error conditions before we get started
84      */
85      if ( sanity() < 0 ) {
86         exit( EXIT_FAILURE );
87     }
88
89     /*
90      * Detach from the controlling terminal
91      * unless the -d flag is given or in one-shot mode.
92      */
93     if ( ! (sglob->no_detach || sglob->one_shot_mode) )
94         lutil_detach( 0, 0 );
95
96     /*
97      * Start threads - one thread for each replica
98      */
99     for ( i = 0; sglob->replicas[ i ] != NULL; i++ ) {
100         start_replica_thread( sglob->replicas[ i ]);
101     }
102
103     /*
104      * Start the main file manager thread (in fm.c).
105      */
106     if ( ldap_pvt_thread_create( &(sglob->fm_tid),
107                 0, fm, (void *) NULL ) != 0 )
108         {
109         Debug( LDAP_DEBUG_ANY, "file manager ldap_pvt_thread_create failed\n",
110                 0, 0, 0 );
111         exit( EXIT_FAILURE );
112
113     }
114
115     /*
116      * Wait for the fm thread to finish.
117      */
118     ldap_pvt_thread_join( sglob->fm_tid, (void *) NULL );
119
120     /*
121      * Wait for the replica threads to finish.
122      */
123     for ( i = 0; sglob->replicas[ i ] != NULL; i++ ) {
124         ldap_pvt_thread_join( sglob->replicas[ i ]->ri_tid, (void *) NULL );
125     }
126
127         /* destroy the thread package */
128         ldap_pvt_thread_destroy();
129
130     Debug( LDAP_DEBUG_ANY, "slurpd: terminated.\n", 0, 0, 0 );
131         return 0;
132 #endif /* !NO_THREADS */
133 }