]> git.evergreen-ils.org Git - OpenSRF.git/blob - include/opensrf/osrf_message.h
592c039fd590ea3318abe7cbe5819d652ab94525
[OpenSRF.git] / include / opensrf / osrf_message.h
1 #ifndef osrf_message_h
2 #define osrf_message_h
3
4 /**
5         @file osrf_message.h
6         @brief Header for osrfMessage
7
8         An osrfMessage is the in-memory representation of a message between applications.
9
10         For transmission, one or more messages are encoded in a JSON array and wrapped in a
11         transport_message, which (together with its JSON cargo) is translated into XML as
12         a Jabber message.
13
14         There are five kinds of messages:
15         - CONNECT -- request to establish a stateful session.
16         - DISCONNECT -- ends a stateful session.
17         - REQUEST -- a remote procedure call.
18         - RESULT -- data returned by a remote procedure call.
19         - STATUS -- reports the success or failure of a requested operation.
20
21         Different kinds of messages use different combinations of the members of an osrfMessage.
22 */
23
24 #include <opensrf/string_array.h>
25 #include <opensrf/utils.h>
26 #include <opensrf/log.h>
27 #include <opensrf/osrf_json.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 #define OSRF_XML_NAMESPACE "http://open-ils.org/xml/namespaces/oils_v1"
34
35 #define OSRF_STATUS_CONTINUE             100
36
37 #define OSRF_STATUS_OK                   200
38 #define OSRF_STATUS_ACCEPTED             202
39 #define OSRF_STATUS_COMPLETE             205
40
41 #define OSRF_STATUS_REDIRECTED           307
42
43 #define OSRF_STATUS_BADREQUEST           400
44 #define OSRF_STATUS_UNAUTHORIZED         401
45 #define OSRF_STATUS_FORBIDDEN            403
46 #define OSRF_STATUS_NOTFOUND             404
47 #define OSRF_STATUS_NOTALLOWED           405
48 #define OSRF_STATUS_TIMEOUT              408
49 #define OSRF_STATUS_EXPFAILED            417
50
51 #define OSRF_STATUS_INTERNALSERVERERROR  500
52 #define OSRF_STATUS_NOTIMPLEMENTED       501
53 #define OSRF_STATUS_VERSIONNOTSUPPORTED  505
54
55
56 enum M_TYPE { CONNECT, REQUEST, RESULT, STATUS, DISCONNECT };
57
58 struct osrf_message_struct {
59
60         /** One of the four message types: CONNECT, REQUEST, RESULT, STATUS, or DISCONNECT. */
61         enum M_TYPE m_type;
62         
63         /** Used to keep track of which responses go with which requests. */
64         int thread_trace;
65         
66         /** Currently serves no discernible purpose, but may be useful someday. */
67         int protocol;
68
69         /** Used for STATUS or RESULT messages. */
70         char* status_name;
71
72         /** Used for STATUS or RESULT messages. */
73         char* status_text;
74
75         /** Used for STATUS or RESULT messages. */
76         int status_code;
77
78         /** Boolean: true for some kinds of error conditions. */
79         int is_exception;
80
81         /** Used for RESULT messages: contains the data returned by a remote procedure. */
82         jsonObject* _result_content;
83
84         /** For a REQUEST message: name of the remote procedure to call. */
85         char* method_name;
86
87         /** For a REQUEST message: parameters to pass to the remote procedure call. */
88         jsonObject* _params;
89
90         /** Pointer for linked lists.  Used only by calling code. */
91         struct osrf_message_struct* next;
92
93         /** Magical LOCALE hint. */
94         char* sender_locale;
95 };
96 typedef struct osrf_message_struct osrfMessage;
97
98 const char* osrf_message_set_locale( osrfMessage* msg, const char* locale );
99
100 const char* osrf_message_set_default_locale( const char* locale );
101
102 const char* osrf_message_get_last_locale(void);
103
104 osrfMessage* osrf_message_init( enum M_TYPE type, int thread_trace, int protocol );
105
106 void osrf_message_set_status_info( osrfMessage*,
107                 const char* status_name, const char* status_text, int status_code );
108
109 void osrf_message_set_result_content( osrfMessage*, const char* json_string );
110
111 void osrf_message_set_result( osrfMessage* msg, const jsonObject* obj );
112
113 void osrfMessageFree( osrfMessage* );
114
115 char* osrf_message_to_xml( osrfMessage* );
116
117 jsonObject* osrfMessageToJSON( const osrfMessage* msg );
118
119 char* osrf_message_serialize(const osrfMessage*);
120
121 osrfList* osrfMessageDeserialize( const char* string, osrfList* list );
122
123 int osrf_message_deserialize(const char* json, osrfMessage* msgs[], int count);
124
125 void osrf_message_set_params( osrfMessage* msg, const jsonObject* o );
126
127 void osrf_message_set_method( osrfMessage* msg, const char* method_name );
128
129 void osrf_message_add_object_param( osrfMessage* msg, const jsonObject* o );
130
131 void osrf_message_add_param( osrfMessage*, const char* param_string );
132
133 const jsonObject* osrfMessageGetResult( osrfMessage* msg );
134
135 char* osrfMessageSerializeBatch( osrfMessage* msgs [], int count );
136
137 #ifdef __cplusplus
138 }
139 #endif
140
141 #endif