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