X-Git-Url: https://git.wpitchoune.net/gitweb/?p=prss.git;a=blobdiff_plain;f=src%2Fttrss_ws.c;h=3aa49593dd7b6e868436f2d068e39b5c0807e2c8;hp=8ec1746a9589123ef73c8a08689ded9dd63f8132;hb=abb614f7f4fab4efb84c45b6abcc4f90861e5e98;hpb=f96659e59301af90fd058031486a98317b077caa diff --git a/src/ttrss_ws.c b/src/ttrss_ws.c index 8ec1746..3aa4959 100644 --- a/src/ttrss_ws.c +++ b/src/ttrss_ws.c @@ -17,9 +17,11 @@ * 02110-1301 USA */ +#include #include #include -#include + +#include #include @@ -28,6 +30,8 @@ #include "ttrss_ws.h" #include "url.h" +static pthread_mutex_t *lock; + static char *session_id; static char *session_url; static char *session_user; @@ -57,7 +61,7 @@ struct json_object *ws_request_new(const char *op) return rq; } -void ws_init(const char *url, const char *user, const char *pwd) +void ws_set_config(const char *url, const char *user, const char *pwd) { char *tmp; @@ -125,6 +129,8 @@ struct json_object *ws_execute(struct json_object *rq) struct json_object *result; log_debug("ws_execute()"); + pthread_mutex_lock(lock); + log_debug("ws_execute() lock"); err = NULL; result = execute(rq, &err); @@ -140,6 +146,11 @@ struct json_object *ws_execute(struct json_object *rq) free(err); } + log_debug("ws_execute() unlock"); + pthread_mutex_unlock(lock); + + log_debug("ws_execute()"); + return result; } @@ -192,17 +203,18 @@ char *ws_login() int ws_open_session() { - int version, result; + int /*version, */result; log_debug("ws_open_session()"); if (session_id) free(session_id); + session_id = NULL; session_id = ws_login(); if (session_id) { - version = ws_get_api_version(); + /*version = ws_get_api_version(); log_debug("API version= %d", version); if (version > 0) { @@ -211,7 +223,8 @@ int ws_open_session() free(session_id); session_id = NULL; result = 0; - } + }*/ + result = 1; } else { result = 0; } @@ -348,18 +361,26 @@ struct feed **ws_update_feeds(struct feed **feeds) return feeds; } -void ws_set_article_unread(int id, int unread) +struct json_object *ws_request_new_set_article_unread(int id, int unread) { - struct json_object *rp, *rq; - - - log_debug("ws_set_article_unread(%d,%d)", id, unread); + struct json_object *rq; rq = ws_request_new("updateArticle"); json_object_object_add(rq, "article_ids", json_object_new_int(id)); json_object_object_add(rq, "field", json_object_new_int(2)); json_object_object_add(rq, "mode", json_object_new_int(unread)); + return rq; +} + +void ws_set_article_unread(int id, int unread) +{ + struct json_object *rp, *rq; + + log_debug("ws_set_article_unread(%d,%d)", id, unread); + + rq = ws_request_new_set_article_unread(id, unread); + rp = ws_execute(rq); json_object_put(rq); @@ -369,3 +390,12 @@ void ws_set_article_unread(int id, int unread) log_debug("ws_set_article_unread(%d,%d) done", id, unread); } + +void ws_init() +{ + pthread_mutexattr_t attr; + + pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); + lock = malloc(sizeof(pthread_mutex_t)); + pthread_mutex_init(lock, &attr); +}