2014-11-10 16:53:08 -05:00
|
|
|
|
|
|
|
#ifndef __CACHE_H__
|
|
|
|
#define __CACHE_H__
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBEVENT2
|
|
|
|
# include <event2/event.h>
|
|
|
|
# include <event2/buffer.h>
|
|
|
|
#else
|
|
|
|
# include <event.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------------- DAAP cache API --------------------------- */
|
|
|
|
|
|
|
|
void
|
|
|
|
cache_daap_trigger(void);
|
|
|
|
|
|
|
|
int
|
|
|
|
cache_daap_get(const char *query, struct evbuffer *evbuf);
|
|
|
|
|
|
|
|
void
|
|
|
|
cache_daap_add(const char *query, const char *ua, int msec);
|
|
|
|
|
|
|
|
int
|
|
|
|
cache_daap_threshold(void);
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------------- Artwork cache API --------------------------- */
|
|
|
|
|
2014-12-27 10:48:12 -05:00
|
|
|
#define CACHE_ARTWORK_GROUP 0
|
|
|
|
#define CACHE_ARTWORK_INDIVIDUAL 1
|
|
|
|
|
2014-11-10 16:53:08 -05:00
|
|
|
int
|
|
|
|
cache_artwork_ping(char *path, time_t mtime);
|
|
|
|
|
|
|
|
int
|
|
|
|
cache_artwork_delete_by_path(char *path);
|
|
|
|
|
|
|
|
int
|
|
|
|
cache_artwork_purge_cruft(time_t ref);
|
|
|
|
|
|
|
|
int
|
2015-01-02 18:31:48 -05:00
|
|
|
cache_artwork_add(int type, int64_t persistentid, int max_w, int max_h, int format, char *filename, struct evbuffer *evbuf);
|
2014-11-10 16:53:08 -05:00
|
|
|
|
|
|
|
int
|
2015-01-02 18:31:48 -05:00
|
|
|
cache_artwork_get(int type, int64_t persistentid, int max_w, int max_h, int *cached, int *format, struct evbuffer *evbuf);
|
2014-11-10 16:53:08 -05:00
|
|
|
|
2015-04-18 16:55:00 -04:00
|
|
|
int
|
|
|
|
cache_artwork_stash(struct evbuffer *evbuf, char *path, int format);
|
|
|
|
|
|
|
|
int
|
|
|
|
cache_artwork_read(struct evbuffer *evbuf, char *path, int *format);
|
2014-11-10 16:53:08 -05:00
|
|
|
|
|
|
|
/* ---------------------------- Cache API --------------------------- */
|
|
|
|
|
|
|
|
int
|
|
|
|
cache_init(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
cache_deinit(void);
|
|
|
|
|
|
|
|
#endif /* !__CACHE_H__ */
|