]> git.evergreen-ils.org Git - OpenSRF.git/blob - include/opensrf/osrf_system.h
Tinkering with macros.
[OpenSRF.git] / include / opensrf / osrf_system.h
1 #ifndef OSRF_SYSTEM_H
2 #define OSRF_SYSTEM_H
3
4 #include <opensrf/transport_client.h>
5 #include <opensrf/utils.h>
6 #include <opensrf/log.h>
7 #include <opensrf/osrf_settings.h>
8 #include <opensrf/osrfConfig.h>
9 #include <opensrf/osrf_cache.h>
10
11
12
13 /** Connects to jabber.  Returns 1 on success, 0 on failure 
14         contextnode is the location in the config file where we collect config info
15 */
16
17
18 int osrf_system_bootstrap_client( char* config_file, char* contextnode );
19
20 /* bootstraps a client adding the given resource string to the host/pid, etc. resource string */
21 /**
22   Sets up the global connection.
23   @param configFile The OpenSRF bootstrap config file
24   @param contextNode The location in the config file where we'll find the necessary info
25   @param resource The login resource.  If NULL a default will be created
26   @return 1 on successs, 0 on failure.
27   */
28 int osrfSystemBootstrapClientResc( const char* configFile,
29                 const char* contextNode, const char* resource );
30
31 /**
32   Bootstrap the server.
33   @param hostname The name of this host.  This is the name that will be used to 
34         load the settings.
35   @param configfile The OpenSRF bootstrap config file
36   @param contextnode The config context
37   @return 0 on success, -1 on error
38   */
39 int osrfSystemBootstrap( const char* hostName, const char* configfile,
40                 const char* contextNode );
41
42 transport_client* osrfSystemGetTransportClient( void );
43
44 /* disconnects and destroys the current client connection */
45 int osrf_system_disconnect_client();
46 int osrf_system_shutdown( void ); 
47
48
49 /* this will clear the global transport client pointer without
50  * actually destroying the socket.  this is useful for allowing
51  * children to have their own socket, even though their parent
52  * already created a socket
53  */
54 void osrfSystemIgnoreTransportClient();
55
56
57 /** Initialize the cache connection */
58 int osrfSystemInitCache(void);
59
60 #endif