]> git.evergreen-ils.org Git - OpenSRF.git/blob - include/opensrf/osrf_app_session.h
963c84b070ee85dfb3a96a549a9ea980baf1939b
[OpenSRF.git] / include / opensrf / osrf_app_session.h
1 /**
2         @file osrf_app_session.h
3         @brief Header for osrfAppSession.
4 */
5
6 #ifndef OSRF_APP_SESSION_H
7 #define OSRF_APP_SESSION_H
8
9 #include "opensrf/transport_client.h"
10 #include "opensrf/osrf_message.h"
11 #include "opensrf/osrf_system.h"
12 #include "opensrf/string_array.h"
13 #include "opensrf/osrfConfig.h"
14 #include "opensrf/osrf_hash.h"
15 #include "opensrf/osrf_list.h"
16 #include "opensrf/osrf_json.h"
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 enum OSRF_SESSION_STATE { 
23         OSRF_SESSION_CONNECTING,
24         OSRF_SESSION_CONNECTED,
25         OSRF_SESSION_DISCONNECTED
26 };
27
28 enum OSRF_SESSION_TYPE {
29         OSRF_SESSION_SERVER,
30         OSRF_SESSION_CLIENT
31 };
32
33 struct osrf_app_request_struct;
34 typedef struct osrf_app_request_struct osrfAppRequest;
35
36 #define OSRF_REQUEST_HASH_SIZE 64
37
38 /**
39         @brief Representation of a session with another application.
40
41         An osrfAppSession is a list of lists.  It includes a list of osrfAppRequests
42         representing outstanding requests.  Each osrfAppRequest includes a list of
43         responses.
44 */
45 struct osrf_app_session_struct {
46
47         /** Our message passing object */
48         transport_client* transport_handle;
49
50         /** The original remote id of the remote service we're talking to */
51         char* orig_remote_id;
52         /** The current remote id of the remote service we're talking to */
53         char* remote_id;
54
55         /** Whom we're talking to if we're a client;
56                 what app we're serving if we're a server */
57         char* remote_service;
58
59         /** The current request thread_trace */
60         int thread_trace;
61         /** Our ID */
62         char* session_id;
63
64         /** Boolean; true if this session does not require connect messages.
65             Assigned a value depending on the compile-time macro ASSUME_STATELESS. */
66         int stateless;
67
68         /** The connect state */
69         enum OSRF_SESSION_STATE state;
70
71         /** SERVER or CLIENT */
72         enum OSRF_SESSION_TYPE type;
73
74         /** the current locale for this session. **/
75         char* session_locale;
76
77         /** let the user use the session to store their own session data. */
78         void* userData;
79
80         /** Callback function for freeing user's session data. */
81         void (*userDataFree) (void*);
82
83     int transport_error;
84
85         /** Hash table of pending requests. */
86         osrfAppRequest* request_hash[ OSRF_REQUEST_HASH_SIZE ];
87 };
88 typedef struct osrf_app_session_struct osrfAppSession;
89
90 // --------------------------------------------------------------------------
91 // PUBLIC API ***
92 // --------------------------------------------------------------------------
93
94 osrfAppSession* osrfAppSessionClientInit( const char* remote_service );
95
96 osrfAppSession* osrf_app_server_session_init(
97                 const char* session_id, const char* our_app, const char* remote_id );
98
99 char* osrf_app_session_set_locale( osrfAppSession*, const char* );
100
101 osrfAppSession* osrf_app_session_find_session( const char* session_id );
102
103 /* DEPRECATED; use osrfAppSessionSendRequest() instead. */
104 int osrfAppSessionMakeRequest(
105                 osrfAppSession* session, const jsonObject* params,
106                 const char* method_name, int protocol, osrfStringArray* param_strings);
107
108 int osrfAppSessionSendRequest(
109                  osrfAppSession* session, const jsonObject* params,
110                  const char* method_name, int protocol );
111
112 void osrf_app_session_set_complete( osrfAppSession* session, int request_id );
113
114 int osrf_app_session_request_complete( const osrfAppSession* session, int request_id );
115
116 osrfMessage* osrfAppSessionRequestRecv(
117                 osrfAppSession* session, int request_id, int timeout );
118
119 void osrf_app_session_request_finish( osrfAppSession* session, int request_id );
120
121 int osrf_app_session_request_resend( osrfAppSession*, int request_id );
122
123 void osrf_app_session_reset_remote( osrfAppSession* );
124
125 void osrf_app_session_set_remote( osrfAppSession* session, const char* remote_id );
126
127 void osrf_app_session_push_queue( osrfAppSession*, osrfMessage* msg );
128
129 int osrfAppSessionConnect( osrfAppSession* );
130
131 int osrf_app_session_disconnect( osrfAppSession* );
132
133 int osrf_app_session_queue_wait( osrfAppSession*, int timeout, int* recvd );
134
135 void osrfAppSessionFree( osrfAppSession* );
136
137 void osrf_app_session_request_reset_timeout( osrfAppSession* session, int req_id );
138
139 int osrfAppRequestRespond( osrfAppSession* ses, int requestId, const jsonObject* data );
140
141 int osrfAppRequestRespondComplete(
142                 osrfAppSession* ses, int requestId, const jsonObject* data );
143
144 int osrfAppSessionStatus( osrfAppSession* ses, int type,
145                 const char* name, int reqId, const char* message );
146
147 void osrfAppSessionCleanup( void );
148
149 #ifdef __cplusplus
150 }
151 #endif
152
153 #endif