|
|
| version 1.2.2.40, 2012/06/29 08:47:28 | version 1.2.2.43, 2012/07/02 12:52:19 |
|---|---|
| Line 1 | Line 1 |
| #include "global.h" | #include "global.h" |
| #include "rtlm.h" | #include "rtlm.h" |
| #include "utils.h" | |
| #include "mqttd.h" | #include "mqttd.h" |
| #include "mqttd_calls.h" | #include "mqttd_calls.h" |
| #include "utils.h" | |
| static inline struct tagSession * | static inline struct tagSession * |
| Line 90 finiSession(struct tagSession *sess) | Line 90 finiSession(struct tagSession *sess) |
| io_free(store); | io_free(store); |
| } | } |
| if (sess->sess_will.msg) | if (sess->sess_will.flag) |
| free(sess->sess_will.msg); | pubWill(sess); |
| if (sess->sess_will.topic) | if (sess->sess_will.topic) |
| free(sess->sess_will.topic); | free(sess->sess_will.topic); |
| if (sess->sess_will.msg) | |
| free(sess->sess_will.msg); | |
| if (sess->sess_sock > STDERR_FILENO) | if (sess->sess_sock > STDERR_FILENO) |
| srv_Close(sess->sess_sock); | srv_Close(sess->sess_sock); |
| Line 179 dispatchSession(sched_task_t *task) | Line 182 dispatchSession(sched_task_t *task) |
| return NULL; | return NULL; |
| } | } |
| static int | |
| loadSubscribes(struct tagSession * __restrict sess, mqtt_subscr_t * __restrict subs) | |
| { | |
| register int i; | |
| struct tagStore *store; | |
| if (!subs) | |
| return -1; | |
| for (i = 0; subs[i].sub_topic.msg_base; i++) { | |
| store = io_malloc(sizeof(struct tagStore)); | |
| if (!store) { | |
| ioSYSERR(0); | |
| continue; | |
| } else { | |
| store->st_msgid = 0; | |
| mqtt_subCopy(&store->st_subscr, &subs[i]); | |
| } | |
| /* add to cache */ | |
| SLIST_INSERT_HEAD(&sess->sess_subscr, store, st_node); | |
| } | |
| return 0; | |
| } | |
| void * | void * |
| startSession(sched_task_t *task) | startSession(sched_task_t *task) |
| { | { |
| Line 189 startSession(sched_task_t *task) | Line 218 startSession(sched_task_t *task) |
| ait_val_t *v; | ait_val_t *v; |
| struct tagSession *s, *sess = NULL; | struct tagSession *s, *sess = NULL; |
| int ret, wlen; | int ret, wlen; |
| mqtt_subscr_t *subs; | |
| ioTRACE(4); | ioTRACE(4); |
| Line 274 startSession(sched_task_t *task) | Line 304 startSession(sched_task_t *task) |
| call.DeletePUB_subscribe(&cfg, pub, sess->sess_cid, "%", sess->sess_user, "%"); | call.DeletePUB_subscribe(&cfg, pub, sess->sess_cid, "%", sess->sess_user, "%"); |
| if (call.WipePUB_topic) | if (call.WipePUB_topic) |
| call.WipePUB_topic(&cfg, pub, sess->sess_cid, sess->sess_user, -1); | call.WipePUB_topic(&cfg, pub, sess->sess_cid, sess->sess_user, -1); |
| } else { | } else if (call.ReadPUB_subscribe) { |
| // TODO: read_sql subs and prepare publish | subs = call.ReadPUB_subscribe(&cfg, pub, sess->sess_cid, "%"); |
| loadSubscribes(sess, subs); | |
| mqtt_subFree(&subs); | |
| } | } |
| /* Start session task OK ... */ | /* Start session task OK ... */ |