1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 12:27:52 +00:00

Document curl stuff better.

This commit is contained in:
Brenden Matthews 2009-07-20 12:02:53 -06:00
parent 739e47f9ec
commit 38015c6600
2 changed files with 47 additions and 11 deletions

View File

@ -33,11 +33,18 @@
#include <curl/types.h> #include <curl/types.h>
#include <curl/easy.h> #include <curl/easy.h>
/*
* The following code is the conky curl thread lib, which can be re-used to
* create any curl-based object (see weather and rss). Below is an
* implementation of a curl-only object ($curl) which can also be used as an
* example.
*/
typedef struct _ccurl_memory_t { typedef struct _ccurl_memory_t {
char *memory; char *memory;
size_t size; size_t size;
} ccurl_memory_t; } ccurl_memory_t;
/* finds a location based on uri in the list provided */
ccurl_location_t *ccurl_find_location(ccurl_location_t **locations_head, char *uri) ccurl_location_t *ccurl_find_location(ccurl_location_t **locations_head, char *uri)
{ {
ccurl_location_t *tail = *locations_head; ccurl_location_t *tail = *locations_head;
@ -68,6 +75,7 @@ ccurl_location_t *ccurl_find_location(ccurl_location_t **locations_head, char *u
return new; return new;
} }
/* iterates over the list provided, frees stuff (list item, uri, result) */
void ccurl_free_locations(ccurl_location_t **locations_head) void ccurl_free_locations(ccurl_location_t **locations_head)
{ {
ccurl_location_t *tail = *locations_head; ccurl_location_t *tail = *locations_head;
@ -83,6 +91,7 @@ void ccurl_free_locations(ccurl_location_t **locations_head)
*locations_head = 0; *locations_head = 0;
} }
/* callback used by curl for writing the received data */
size_t ccurl_write_memory_callback(void *ptr, size_t size, size_t nmemb, void *data) size_t ccurl_write_memory_callback(void *ptr, size_t size, size_t nmemb, void *data)
{ {
size_t realsize = size * nmemb; size_t realsize = size * nmemb;
@ -98,7 +107,7 @@ size_t ccurl_write_memory_callback(void *ptr, size_t size, size_t nmemb, void *d
} }
/* fetch our datums */
void ccurl_fetch_data(ccurl_location_t *curloc) void ccurl_fetch_data(ccurl_location_t *curloc)
{ {
CURL *curl = NULL; CURL *curl = NULL;
@ -126,13 +135,11 @@ void ccurl_fetch_data(ccurl_location_t *curloc)
timed_thread_unlock(curloc->p_timed_thread); timed_thread_unlock(curloc->p_timed_thread);
free(chunk.memory); free(chunk.memory);
} else { } else {
ERR("weather: no data from server"); ERR("curl: no data from server");
} }
curl_easy_cleanup(curl); curl_easy_cleanup(curl);
} }
return;
} }
void *ccurl_thread(void *) __attribute__((noreturn)); void *ccurl_thread(void *) __attribute__((noreturn));
@ -169,18 +176,27 @@ void *ccurl_thread(void *arg)
/* never reached */ /* never reached */
} }
/*
* This is where the $curl section begins.
*/
/* internal location pointer for use by $curl, no touchy */
static ccurl_location_t *ccurl_locations_head = 0; static ccurl_location_t *ccurl_locations_head = 0;
/* used to free data used by $curl */
void ccurl_free_info(void) void ccurl_free_info(void)
{ {
ccurl_free_locations(&ccurl_locations_head); ccurl_free_locations(&ccurl_locations_head);
} }
/* straight copy, used by $curl */
void ccurl_parse_data(void *result, const char *data) void ccurl_parse_data(void *result, const char *data)
{ {
strncpy(result, data, max_user_text); strncpy(result, data, max_user_text);
} }
/* prints result data to text buffer, used by $curl */
void ccurl_process_info(char *p, int p_max_size, char *uri, int interval) void ccurl_process_info(char *p, int p_max_size, char *uri, int interval)
{ {
ccurl_location_t *curloc = ccurl_find_location(&ccurl_locations_head, uri); ccurl_location_t *curloc = ccurl_find_location(&ccurl_locations_head, uri);
@ -190,7 +206,7 @@ void ccurl_process_info(char *p, int p_max_size, char *uri, int interval)
curloc->process_function = &ccurl_parse_data; curloc->process_function = &ccurl_parse_data;
ccurl_init_thread(curloc, interval); ccurl_init_thread(curloc, interval);
if (!curloc->p_timed_thread) { if (!curloc->p_timed_thread) {
ERR("error setting up weather thread"); ERR("error setting up curl thread");
} }
} }

View File

@ -26,12 +26,24 @@
#include "timed_thread.h" #include "timed_thread.h"
/* curl thread lib exports begin */
typedef struct _ccurl_location_t { typedef struct _ccurl_location_t {
char *uri; /* uri of location */ /* uri of location */
void *result; /* a pointer to some arbitrary data, will be freed by ccurl_free_info() if non-null */ char *uri;
timed_thread *p_timed_thread; /* internal thread pointer */ /* a pointer to some arbitrary data, will be freed by ccurl_free_info() if
void (*process_function)(void *, const char *); /* function to call when data is ready to be processed, the first argument will be the result pointer, and the second argument is an internal buffer that shouldn't be mangled */ * non-null */
struct _ccurl_location_t *next; /* internal list pointer */ void *result;
/* internal thread pointer, destroyed by timed_thread.c */
timed_thread *p_timed_thread;
/* function to call when data is ready to be processed, the first argument
* will be the result pointer, and the second argument is an internal
* buffer that shouldn't be mangled */
void (*process_function)(void *, const char *);
/* internal list pointer, don't mess with this unless you don't know any
* better */
struct _ccurl_location_t *next;
} ccurl_location_t; } ccurl_location_t;
/* find an existing location for the uri specified */ /* find an existing location for the uri specified */
@ -39,13 +51,21 @@ ccurl_location_t *ccurl_find_location(ccurl_location_t **locations_head, char *u
/* free all locations (as well as location->uri and location->result if /* free all locations (as well as location->uri and location->result if
* non-null) */ * non-null) */
void ccurl_free_locations(ccurl_location_t **locations_head); void ccurl_free_locations(ccurl_location_t **locations_head);
/* initiates a thread at the location specified using the interval in seconds */ /* initiates a curl thread at the location specified using the interval in
* seconds */
void ccurl_init_thread(ccurl_location_t *curloc, int interval); void ccurl_init_thread(ccurl_location_t *curloc, int interval);
/* curl thread lib exports end */
/* $curl exports begin */
/* for $curl, free internal list pointer */ /* for $curl, free internal list pointer */
void ccurl_free_info(void); void ccurl_free_info(void);
/* runs instance of $curl */ /* runs instance of $curl */
void ccurl_process_info(char *p, int p_max_size, char *uri, int interval); void ccurl_process_info(char *p, int p_max_size, char *uri, int interval);
/* $curl exports end */
#endif /* _CURL_THREAD_H_ */ #endif /* _CURL_THREAD_H_ */