]> git.evergreen-ils.org Git - Evergreen.git/blob - OpenSRF/src/libstack/osrf_system.c
added caching and cache initialize routine to the bootstrap call
[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         return 0;
74
75         if(apps) {
76                 int i = 0;
77
78                 if(apps->type == JSON_STRING) {
79                         osrfStringArrayAdd(arr, jsonObjectGetString(apps));
80
81                 } else {
82                         jsonObject* app;
83                         while( (app = jsonObjectGetIndex(apps, i++)) ) 
84                                 osrfStringArrayAdd(arr, jsonObjectGetString(app));
85                 }
86
87                 char* appname = NULL;
88                 i = 0;
89                 while( (appname = osrfStringArrayGetString(arr, i++)) ) {
90
91                         char* libfile = osrf_settings_host_value("/apps/%s/implementation", appname);
92                         info_handler("Launching application %s with implementation %s", appname, libfile);
93         
94                         if(! (appname && libfile) ) {
95                                 warning_handler("Missing appname / libfile in settings config");
96                                 continue;
97                         }
98         
99                         int pid;
100         
101                         if( (pid = fork()) ) { 
102                                 // storage pid in local table for re-launching dead children...
103                                 info_handler("Launched application child %d", pid);
104
105                         } else {
106         
107                                 if( osrfAppRegisterApplication( appname, libfile ) == 0 ) 
108                                         osrf_prefork_run(appname);
109
110                                 debug_handler("Server exiting for app %s and library %s", appname, libfile );
111                                 exit(0);
112                         }
113                 }
114         }
115
116         /** daemonize me **/
117
118         /* let our children do their thing */
119         while(1) {
120                 signal(SIGCHLD, __osrfSystemSignalHandler);
121                 sleep(10000);
122         }
123         
124         return 0;
125 }
126
127 int osrf_system_bootstrap_client_resc( char* config_file, char* contextnode, char* resource ) {
128
129         if( !( config_file && contextnode ) && ! osrfConfigHasDefaultConfig() )
130                 return fatal_handler("No Config File Specified\n" );
131
132         if( config_file ) {
133                 osrfConfigCleanup();
134                 osrfConfig* cfg = osrfConfigInit( config_file, contextnode );
135                 osrfConfigSetDefaultConfig(cfg);
136         }
137
138
139         char* log_file          = osrfConfigGetValue( NULL, "/logfile");
140         char* log_level = osrfConfigGetValue( NULL, "/loglevel" );
141         osrfStringArray* arr = osrfNewStringArray(8);
142         osrfConfigGetValueList(NULL, arr, "/domains/domain");
143         char* username          = osrfConfigGetValue( NULL, "/username" );
144         char* password          = osrfConfigGetValue( NULL, "/passwd" );
145         char* port                      = osrfConfigGetValue( NULL, "/port" );
146         char* unixpath          = osrfConfigGetValue( NULL, "/unixpath" );
147
148         char* domain = osrfStringArrayGetString( arr, 0 ); /* just the first for now */
149         osrfStringArrayFree(arr);
150
151
152         int llevel = 0;
153         int iport = 0;
154         if(port) iport = atoi(port);
155         if(log_level) llevel = atoi(log_level);
156
157         log_init( llevel, log_file );
158
159         info_handler("Bootstrapping system with domain %s, port %d, and unixpath %s", domain, iport, unixpath );
160
161         transport_client* client = client_init( domain, iport, unixpath, 0 );
162
163         char* host = getenv("HOSTNAME");
164
165         if(!resource) resource = "";
166         int len = strlen(resource) + 256;
167         char buf[len];
168         memset(buf,0,len);
169         snprintf(buf, len - 1, "opensrf_%s_%s_%d", resource, host, getpid() );
170         
171         if(client_connect( client, username, password, buf, 10, AUTH_DIGEST )) {
172                 /* child nodes will leak the parents client... but we can't free
173                         it without disconnecting the parents client :( */
174                 __osrfGlobalTransportClient = client;
175         }
176
177         free(log_level);
178         free(log_file);
179         free(username);
180         free(password);
181         free(port);     
182         free(unixpath);
183
184         if(__osrfGlobalTransportClient)
185                 return 1;
186
187         return 0;
188 }
189
190 int osrf_system_disconnect_client() {
191         client_disconnect( __osrfGlobalTransportClient );
192         client_free( __osrfGlobalTransportClient );
193         __osrfGlobalTransportClient = NULL;
194         return 0;
195 }
196
197 int osrf_system_shutdown() {
198         osrfConfigCleanup();
199         osrf_system_disconnect_client();
200         osrf_settings_free_host_config(NULL);
201         log_free();
202         return 1;
203 }
204
205
206
207
208 void __osrfSystemSignalHandler( int sig ) {
209
210         pid_t pid;
211         int status;
212
213         while( (pid = waitpid(-1, &status, WNOHANG)) > 0) {
214                 warning_handler("We lost child %d", pid);
215         }
216
217         /** relaunch the server **/
218 }