]> git.evergreen-ils.org Git - Evergreen.git/blob - OpenSRF/src/libstack/osrf_system.c
added the md5 server (opensrf.version)
[Evergreen.git] / OpenSRF / src / libstack / osrf_system.c
1 #include "osrf_system.h"
2 #include <signal.h>
3 #include "osrf_application.h"
4 #include "osrf_prefork.h"
5
6 void __osrfSystemSignalHandler( int sig );
7
8 transport_client* __osrfGlobalTransportClient;
9
10 transport_client* osrfSystemGetTransportClient() {
11         return __osrfGlobalTransportClient;
12 }
13
14 transport_client* osrf_system_get_transport_client() {
15         return __osrfGlobalTransportClient;
16 }
17
18 int osrf_system_bootstrap_client( char* config_file, char* contextnode ) {
19         return osrf_system_bootstrap_client_resc(config_file, contextnode, NULL);
20 }
21
22 int osrfSystemBootstrapClientResc( char* config_file, char* contextnode, char* resource ) {
23         return osrf_system_bootstrap_client_resc( config_file, contextnode, resource );
24 }
25
26
27 int _osrfSystemInitCache() {
28
29         jsonObject* cacheServers = osrf_settings_host_value_object("/cache/global/servers/server");
30         char* maxCache = osrf_settings_host_value("/cache/global/max_cache_time");
31
32         if( cacheServers && maxCache) {
33
34                 if( cacheServers->type == JSON_ARRAY ) {
35                         int i;
36                         char* servers[cacheServers->size];
37                         for( i = 0; i != cacheServers->size; i++ ) {
38                                 servers[i] = jsonObjectGetString( jsonObjectGetIndex(cacheServers, i) );
39                                 info_handler("Adding cache server %s", servers[i]);
40                         }
41                         osrfCacheInit( servers, cacheServers->size, atoi(maxCache) );
42
43                 } else {
44                         char* servers[] = { jsonObjectGetString(cacheServers) };                
45                         info_handler("Adding cache server %s", servers[0]);
46                         osrfCacheInit( servers, 1, atoi(maxCache) );
47                 }
48
49         } else {
50                 fatal_handler( "Missing config value for /cache/global/servers/server _or_ "
51                         "/cache/global/max_cache_time");
52         }
53
54         return 0;
55 }
56
57
58 int osrfSystemBootstrap( char* hostname, char* configfile, char* contextNode ) {
59         if( !(configfile && contextNode) ) return -1;
60
61         /* first we grab the settings */
62         if(!osrfSystemBootstrapClientResc(configfile, contextNode, "settings_grabber" )) {
63                 return fatal_handler("Unable to bootstrap");
64         }
65
66         osrf_settings_retrieve(hostname);
67         osrf_system_disconnect_client();
68
69         jsonObject* apps = osrf_settings_host_value_object("/activeapps/appname");
70         osrfStringArray* arr = osrfNewStringArray(8);
71         
72         _osrfSystemInitCache();
73
74         if(apps) {
75                 int i = 0;
76
77                 if(apps->type == JSON_STRING) {
78                         osrfStringArrayAdd(arr, jsonObjectGetString(apps));
79
80                 } else {
81                         jsonObject* app;
82                         while( (app = jsonObjectGetIndex(apps, i++)) ) 
83                                 osrfStringArrayAdd(arr, jsonObjectGetString(app));
84                 }
85
86                 char* appname = NULL;
87                 i = 0;
88                 while( (appname = osrfStringArrayGetString(arr, i++)) ) {
89
90                         char* libfile = osrf_settings_host_value("/apps/%s/implementation", appname);
91                         info_handler("Launching application %s with implementation %s", appname, libfile);
92         
93                         if(! (appname && libfile) ) {
94                                 warning_handler("Missing appname / libfile in settings config");
95                                 continue;
96                         }
97         
98                         int pid;
99         
100                         if( (pid = fork()) ) { 
101                                 // storage pid in local table for re-launching dead children...
102                                 info_handler("Launched application child %d", pid);
103
104                         } else {
105         
106                                 if( osrfAppRegisterApplication( appname, libfile ) == 0 ) 
107                                         osrf_prefork_run(appname);
108
109                                 debug_handler("Server exiting for app %s and library %s", appname, libfile );
110                                 exit(0);
111                         }
112                 }
113         }
114
115         /** daemonize me **/
116
117         /* let our children do their thing */
118         while(1) {
119                 signal(SIGCHLD, __osrfSystemSignalHandler);
120                 sleep(10000);
121         }
122         
123         return 0;
124 }
125
126 int osrf_system_bootstrap_client_resc( char* config_file, char* contextnode, char* resource ) {
127
128         if( !( config_file && contextnode ) && ! osrfConfigHasDefaultConfig() )
129                 return fatal_handler("No Config File Specified\n" );
130
131         if( config_file ) {
132                 osrfConfigCleanup();
133                 osrfConfig* cfg = osrfConfigInit( config_file, contextnode );
134                 osrfConfigSetDefaultConfig(cfg);
135         }
136
137
138         char* log_file          = osrfConfigGetValue( NULL, "/logfile");
139         char* log_level = osrfConfigGetValue( NULL, "/loglevel" );
140         osrfStringArray* arr = osrfNewStringArray(8);
141         osrfConfigGetValueList(NULL, arr, "/domains/domain");
142         char* username          = osrfConfigGetValue( NULL, "/username" );
143         char* password          = osrfConfigGetValue( NULL, "/passwd" );
144         char* port                      = osrfConfigGetValue( NULL, "/port" );
145         char* unixpath          = osrfConfigGetValue( NULL, "/unixpath" );
146
147         char* domain = osrfStringArrayGetString( arr, 0 ); /* just the first for now */
148         osrfStringArrayFree(arr);
149
150
151         int llevel = 0;
152         int iport = 0;
153         if(port) iport = atoi(port);
154         if(log_level) llevel = atoi(log_level);
155
156         log_init( llevel, log_file );
157
158         info_handler("Bootstrapping system with domain %s, port %d, and unixpath %s", domain, iport, unixpath );
159
160         transport_client* client = client_init( domain, iport, unixpath, 0 );
161
162         char* host = getenv("HOSTNAME");
163
164         if(!resource) resource = "";
165         int len = strlen(resource) + 256;
166         char buf[len];
167         memset(buf,0,len);
168         snprintf(buf, len - 1, "opensrf_%s_%s_%d", resource, host, getpid() );
169         
170         if(client_connect( client, username, password, buf, 10, AUTH_DIGEST )) {
171                 /* child nodes will leak the parents client... but we can't free
172                         it without disconnecting the parents client :( */
173                 __osrfGlobalTransportClient = client;
174         }
175
176         free(log_level);
177         free(log_file);
178         free(username);
179         free(password);
180         free(port);     
181         free(unixpath);
182
183         if(__osrfGlobalTransportClient)
184                 return 1;
185
186         return 0;
187 }
188
189 int osrf_system_disconnect_client() {
190         client_disconnect( __osrfGlobalTransportClient );
191         client_free( __osrfGlobalTransportClient );
192         __osrfGlobalTransportClient = NULL;
193         return 0;
194 }
195
196 int osrf_system_shutdown() {
197         osrfConfigCleanup();
198         osrf_system_disconnect_client();
199         osrf_settings_free_host_config(NULL);
200         log_free();
201         return 1;
202 }
203
204
205
206
207 void __osrfSystemSignalHandler( int sig ) {
208
209         pid_t pid;
210         int status;
211
212         while( (pid = waitpid(-1, &status, WNOHANG)) > 0) {
213                 warning_handler("We lost child %d", pid);
214         }
215
216         /** relaunch the server **/
217 }