]> git.evergreen-ils.org Git - OpenSRF.git/blob - include/opensrf/osrf_app_session.h
4c535ba1cd0f30b63615806439bfc5fc0c70b27d
[OpenSRF.git] / include / opensrf / osrf_app_session.h
1 #ifndef _OSRF_APP_SESSION
2 #define _OSRF_APP_SESSION
3
4 #include <opensrf/transport_client.h>
5 #include <opensrf/osrf_message.h>
6 #include <opensrf/osrf_system.h>
7 #include <opensrf/string_array.h>
8 #include <opensrf/osrfConfig.h>
9 #include <opensrf/osrf_hash.h>
10 #include <opensrf/osrf_list.h>
11
12 #include <opensrf/osrf_json.h>
13
14
15
16 #define DEF_RECV_TIMEOUT 6 /* receive timeout */
17 #define DEF_QUEUE_SIZE  
18
19 enum OSRF_SESSION_STATE { OSRF_SESSION_CONNECTING, OSRF_SESSION_CONNECTED, OSRF_SESSION_DISCONNECTED };
20 enum OSRF_SESSION_TYPE { OSRF_SESSION_SERVER, OSRF_SESSION_CLIENT };
21
22 /* entry point for data into the stack.  gets set in osrf_stack.c */
23 int (*osrf_stack_entry_point) (transport_client* client, int timeout, int* recvd );
24
25 struct osrf_app_request_struct {
26         /** Our controlling session */
27         struct osrf_app_session_struct* session;
28
29         /** our "id" */
30         int request_id;
31         /** True if we have received a 'request complete' message from our request */
32         int complete;
33         /** Our original request payload */
34         osrf_message* payload; 
35         /** List of responses to our request */
36         osrf_message* result;
37
38         /* if set to true, then a call that is waiting on a response, will reset the 
39                 timeout and set this variable back to false */
40         int reset_timeout;
41 };
42 typedef struct osrf_app_request_struct osrfAppRequest;
43
44 struct osrf_app_session_struct {
45
46         /** Our messag passing object */
47         transport_client* transport_handle;
48         /** Cache of active app_request objects */
49
50         //osrfAppRequest* request_queue;
51
52         osrfList* request_queue;
53
54         /** The original remote id of the remote service we're talking to */
55         char* orig_remote_id;
56         /** The current remote id of the remote service we're talking to */
57         char* remote_id;
58
59         /** Who we're talking to if we're a client.  
60                 what app we're serving if we're a server */
61         char* remote_service;
62
63         /** The current request thread_trace */
64         int thread_trace;
65         /** Our ID */
66         char* session_id;
67
68         /* true if this session does not require connect messages */
69         int stateless;
70
71         /** The connect state */
72         enum OSRF_SESSION_STATE state;
73
74         /** SERVER or CLIENT */
75         enum OSRF_SESSION_TYPE type;
76
77         /** the current locale for this session **/
78         char* session_locale;
79
80         /* let the user use the session to store their own session data */
81         void* userData;
82
83         void (*userDataFree) (void*);
84
85     int transport_error;
86 };
87 typedef struct osrf_app_session_struct osrfAppSession;
88
89
90
91 // -------------------------------------------------------------------------- 
92 // PUBLIC API ***
93 // -------------------------------------------------------------------------- 
94
95 /** Allocates a initializes a new app_session */
96 osrfAppSession* osrfAppSessionClientInit( const char* remote_service );
97
98 /** Allocates and initializes a new server session.  The global session cache
99   * is checked to see if this session already exists, if so, it's returned 
100   */
101 osrfAppSession* osrf_app_server_session_init(
102                 const char* session_id, const char* our_app, const char* remote_id );
103
104 /** sets the default locale for a session **/
105 char* osrf_app_session_set_locale( osrfAppSession*, const char* );
106
107 /** returns a session from the global session hash */
108 osrfAppSession* osrf_app_session_find_session( const char* session_id );
109
110 /** Builds a new app_request object with the given payload andn returns
111   * the id of the request.  This id is then used to perform work on the
112   * requeset.
113   */
114 int osrfAppSessionMakeRequest(
115                 osrfAppSession* session, const jsonObject* params,
116                 const char* method_name, int protocol, string_array* param_strings);
117
118 /** Sets the given request to complete state */
119 void osrf_app_session_set_complete( osrfAppSession* session, int request_id );
120
121 /** Returns true if the given request is complete */
122 int osrf_app_session_request_complete( const osrfAppSession* session, int request_id );
123
124 /** Does a recv call on the given request */
125 osrf_message* osrfAppSessionRequestRecv(
126                 osrfAppSession* session, int request_id, int timeout );
127
128 /** Removes the request from the request set and frees the reqest */
129 void osrf_app_session_request_finish( osrfAppSession* session, int request_id );
130
131 /** Resends the orginal request with the given request id */
132 int osrf_app_session_request_resend( osrfAppSession*, int request_id );
133
134 /** Resets the remote connection target to that of the original*/
135 void osrf_app_session_reset_remote( osrfAppSession* );
136
137 /** Sets the remote target to 'remote_id' */
138 void osrf_app_session_set_remote( osrfAppSession* session, const char* remote_id );
139
140 /** pushes the given message into the result list of the app_request
141   * whose request_id matches the messages thread_trace 
142   */
143 int osrf_app_session_push_queue( osrfAppSession*, osrf_message* msg );
144
145 /** Attempts to connect to the remote service. Returns 1 on successful 
146   * connection, 0 otherwise.
147   */
148 int osrf_app_session_connect( osrfAppSession* );
149 int osrfAppSessionConnect( osrfAppSession* );
150
151 /** Sends a disconnect message to the remote service.  No response is expected */
152 int osrf_app_session_disconnect( osrfAppSession* );
153
154 /**  Waits up to 'timeout' seconds for some data to arrive.
155   * Any data that arrives will be processed according to its
156   * payload and message type.  This method will return after
157   * any data has arrived.
158   */
159 int osrf_app_session_queue_wait( osrfAppSession*, int timeout, int* recvd );
160
161 /** Disconnects (if client), frees any attached app_reuqests, removes the session from the 
162   * global session cache and frees the session.  Needless to say, only call this when the
163   * session is completely done.
164   */
165 void osrfAppSessionFree( osrfAppSession* );
166
167 /* tells the request to reset it's wait timeout */
168 void osrf_app_session_request_reset_timeout( osrfAppSession* session, int req_id );
169
170 int osrfAppRequestRespond( osrfAppSession* ses, int requestId, const jsonObject* data );
171 int osrfAppRequestRespondComplete(
172                 osrfAppSession* ses, int requestId, const jsonObject* data ); 
173
174 int osrfAppSessionStatus( osrfAppSession* ses, int type,
175                 const char* name, int reqId, const char* message );
176
177 void osrfAppSessionCleanup();
178
179
180
181 #endif