0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034 #include <string.h>
0035 #include <stdio.h>
0036 #include <stdlib.h>
0037 #include <memory.h>
0038 #include <errno.h>
0039 #include <utlist.h>
0040
0041 #include <tperror.h>
0042 #include <ubf.h>
0043 #include <atmi.h>
0044 #include <typed_buf.h>
0045 #include <ndebug.h>
0046 #include <fdatatype.h>
0047 #include <userlog.h>
0048
0049
0050 #define JSON_DEFAULT_SIZE 512
0051
0052
0053
0054
0055
0056
0057
0058
0059
0060
0061
0062
0063
0064 expublic int JSON_prepare_outgoing (typed_buffer_descr_t *descr, char *idata, long ilen,
0065 char *obuf, long *olen, long flags)
0066 {
0067 int ret=EXSUCCEED;
0068 int str_used;
0069 char fn[]="JSON_prepare_outgoing";
0070
0071 str_used = strlen(idata)+1;
0072
0073
0074 if (NULL!=olen && *olen < str_used)
0075 {
0076 ndrx_TPset_error_fmt(TPEINVAL, "%s: Internal buffer space: %d, "
0077 "but requested: %d", fn, *olen, str_used);
0078 ret=EXFAIL;
0079 goto out;
0080 }
0081
0082 memcpy(obuf, idata, str_used);
0083
0084
0085 if (NULL!=olen)
0086 *olen = str_used;
0087
0088 out:
0089 return ret;
0090 }
0091
0092
0093
0094
0095
0096
0097
0098
0099 expublic int JSON_prepare_incoming (typed_buffer_descr_t *descr, char *rcv_data,
0100 long rcv_len, char **odata, long *olen, long flags)
0101 {
0102 int ret=EXSUCCEED;
0103 int rcv_buf_size;
0104 int existing_size;
0105
0106 char fn[]="JSON_prepare_incoming";
0107 buffer_obj_t *outbufobj=NULL;
0108
0109 NDRX_LOG(log_debug, "Entering %s", fn);
0110
0111 rcv_buf_size = strlen (rcv_data) + 1;
0112
0113
0114
0115 if (NULL==(outbufobj=ndrx_find_buffer(*odata)))
0116 {
0117 ndrx_TPset_error_fmt(TPEINVAL, "Output buffer %p is not allocated "
0118 "with tpalloc()!", *odata);
0119 ret=EXFAIL;
0120 goto out;
0121 }
0122
0123
0124 if (NULL!=outbufobj)
0125 {
0126
0127 if (flags & TPNOCHANGE && outbufobj->type_id!=BUF_TYPE_JSON)
0128 {
0129
0130 ndrx_TPset_error_fmt(TPEOTYPE, "Receiver expects %s but got %s buffer",
0131 G_buf_descr[BUF_TYPE_NULL].type,
0132 G_buf_descr[outbufobj->type_id].type
0133 );
0134 ret=EXFAIL;
0135 goto out;
0136 }
0137
0138
0139
0140
0141 if (outbufobj->type_id!=BUF_TYPE_JSON)
0142 {
0143 NDRX_LOG(log_info, "User buffer %s is different, "
0144 "free it up and re-allocate as JSON", G_buf_descr[outbufobj->type_id].type);
0145 ndrx_tpfree(*odata, outbufobj);
0146 *odata=NULL;
0147 }
0148 }
0149
0150
0151 if (NULL!=*odata)
0152 {
0153 NDRX_LOG(log_debug, "%s: Output buffer exists", fn);
0154
0155 existing_size = outbufobj->size;
0156
0157
0158 NDRX_LOG(log_debug, "%s: Output buffer size: %d, received %d", fn,
0159 existing_size, rcv_buf_size);
0160
0161 if (existing_size>=rcv_buf_size)
0162 {
0163
0164 NDRX_LOG(log_debug, "%s: Using existing buffer", fn);
0165 }
0166 else
0167 {
0168
0169 char *new_addr;
0170 NDRX_LOG(log_debug, "%s: Reallocating", fn);
0171
0172 if (NULL==(new_addr=ndrx_tprealloc(*odata, rcv_buf_size)))
0173 {
0174 NDRX_LOG(log_error, "%s: _tprealloc failed!", fn);
0175 ret=EXFAIL;
0176 goto out;
0177 }
0178
0179
0180 *odata = new_addr;
0181 }
0182 }
0183 else
0184 {
0185
0186 NDRX_LOG(log_debug, "%s: Incoming buffer where missing - "
0187 "allocating new!", fn);
0188
0189 *odata = ndrx_tpalloc(&G_buf_descr[BUF_TYPE_JSON], NULL, NULL, rcv_len);
0190
0191 if (NULL==*odata)
0192 {
0193
0194 NDRX_LOG(log_error, "Failed to allocat new buffer!");
0195 goto out;
0196 }
0197 }
0198
0199
0200 strcpy(*odata, rcv_data);
0201 if (NULL!=olen)
0202 {
0203 *olen = rcv_len;
0204 }
0205
0206 out:
0207 return ret;
0208 }
0209
0210
0211
0212
0213
0214
0215
0216
0217 expublic char * JSON_tpalloc (typed_buffer_descr_t *descr, char *subtype, long *len)
0218 {
0219 char *ret;
0220
0221 if (JSON_DEFAULT_SIZE>*len)
0222 {
0223 *len = JSON_DEFAULT_SIZE;
0224 }
0225
0226
0227 ret=(char *)NDRX_MALLOC(*len);
0228
0229 if (NULL!=ret)
0230 {
0231 ret[0] = EXEOS;
0232 }
0233 else
0234 {
0235 ndrx_TPset_error_fmt(TPEOS, "%s: Failed to allocate JSON buffer (len=%ld): %s",
0236 __func__, len, strerror(errno));
0237 }
0238
0239 out:
0240 return ret;
0241 }
0242
0243
0244
0245
0246
0247
0248
0249 expublic char * JSON_tprealloc(typed_buffer_descr_t *descr, char *cur_ptr, long len)
0250 {
0251 char *ret=NULL;
0252
0253 if (0==len)
0254 {
0255 len = JSON_DEFAULT_SIZE;
0256 }
0257
0258
0259 ret=(char *)NDRX_REALLOC(cur_ptr, len);
0260
0261 if (NULL==ret)
0262 {
0263 ndrx_TPset_error_fmt(TPEOS, "%s: Failed to reallocate JSON buffer (len=%ld): %s",
0264 __func__, len, strerror(errno));
0265 }
0266
0267 return ret;
0268 }
0269
0270
0271
0272
0273
0274
0275 expublic void JSON_tpfree(typed_buffer_descr_t *descr, char *buf)
0276 {
0277 NDRX_FREE(buf);
0278 }
0279
0280
0281
0282
0283
0284
0285
0286
0287
0288 expublic int JSON_test(typed_buffer_descr_t *descr, char *buf, BFLDLEN len, char *expr)
0289 {
0290 int ret=EXFALSE;
0291 regex_t re;
0292
0293 if (EXSUCCEED==(ret=regcomp(&re, expr, REG_EXTENDED | REG_NOSUB)))
0294 {
0295 if (EXSUCCEED==regexec(&re, buf, (size_t) 0, NULL, 0))
0296 {
0297 ret = EXTRUE;
0298 }
0299 regfree(&re);
0300 }
0301 else
0302 {
0303 NDRX_LOG(log_error, "Failed to compile regex event filter: [%s]", expr);
0304 userlog("Failed to compile regex event filter: [%s]", expr);
0305 }
0306
0307 return ret;
0308 }
0309
0310
0311