--- mqtt/inc/mqttd.h 2012/01/27 15:05:38 1.2 +++ mqtt/inc/mqttd.h 2012/04/24 08:06:08 1.2.2.5 @@ -8,12 +8,15 @@ struct tagStore { mqtt_subscr_t st_subscr; - TAILQ_ENTRY(tagStore) st_node; + SLIST_ENTRY(tagStore) st_node; }; struct tagSession { /* client session thread id */ pthread_t sess_tid; + pthread_mutex_t sess_mtx; + /* server dispatcher */ + mqtt_srv_t *sess_srv; /* client network settings */ int sess_sock; @@ -40,16 +43,30 @@ struct tagSession { } sess_will; /* Data Storage by QoS class */ - TAILQ_HEAD(qosStore, tagStore) sess_sndqueue; - + SLIST_HEAD(tStore, tagStore) sess_txque[MQTT_QOS_RESERVED]; TAILQ_ENTRY(tagSession) sess_node; }; typedef TAILQ_HEAD(, tagSession) sessions_t; +#define SESS_ELEM_LOCK(x) pthread_mutex_lock(&(x)->sess_mtx) +#define SESS_ELEM_UNLOCK(x) pthread_mutex_unlock(&(x)->sess_mtx) +#define SESS_LOCK pthread_mutex_lock(&mtx_sess) +#define SESS_UNLOCK pthread_mutex_unlock(&mtx_sess) +struct tagPub { + ait_val_t pub_name; + mqtt_msg_t pub_packet; + TAILQ_ENTRY(tagPub) pub_node; +}; +typedef TAILQ_HEAD(, tagPub) pubs_t; +#define PUB_LOCK pthread_mutex_lock(&mtx_pub) +#define PUB_UNLOCK pthread_mutex_unlock(&mtx_pub) + + extern sessions_t Sessions; +extern pubs_t Pubs; extern sched_root_task_t *root; -extern sl_config cfg; +extern cfg_root_t cfg; extern pthread_mutex_t mtx_sess, mtx_pub;