/* This file is part of Deadbeef Player source code http://deadbeef.sourceforge.net track metadata management Copyright (C) 2009-2013 Alexey Yakovenko This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Alexey Yakovenko waker@users.sourceforge.net */ #include #include #include "playlist.h" #include "deadbeef.h" #include "metacache.h" #define LOCK {pl_lock();} #define UNLOCK {pl_unlock();} void pl_add_meta (playItem_t *it, const char *key, const char *value) { if (!value || !*value) { return; } LOCK; // check if it's already set DB_metaInfo_t *normaltail = NULL; DB_metaInfo_t *propstart = NULL; DB_metaInfo_t *tail = NULL; DB_metaInfo_t *m = it->meta; while (m) { if (!strcasecmp (key, m->key)) { // duplicate key UNLOCK; return; } // find end of normal metadata if (!normaltail && (!m->next || m->key[0] == ':' || m->key[0] == '_' || m->key[0] == '!')) { normaltail = tail; propstart = m; if (key[0] != ':' && key[0] != '_' && key[0] != '!') { break; } } // find end of properties tail = m; m = m->next; } // add m = malloc (sizeof (DB_metaInfo_t)); memset (m, 0, sizeof (DB_metaInfo_t)); m->key = metacache_add_string (key); m->value = metacache_add_string (value); if (key[0] == ':' || key[0] == '_' || key[0] == '!') { if (tail) { tail->next = m; } else { it->meta = m; } } else { m->next = propstart; if (normaltail) { normaltail->next = m; } else { it->meta = m; } } UNLOCK; } void pl_append_meta (playItem_t *it, const char *key, const char *value) { pl_lock (); const char *old = pl_find_meta_raw (it, key); if (old && (!strcasecmp (key, "cuesheet") || !strcasecmp (key, "log"))) { pl_unlock (); return; } size_t newlen = strlen (value); if (!old) { pl_add_meta (it, key, value); } else { // check for duplicate data const char *str = old; size_t len; while (str) { char *next = strchr (str, '\n'); if (next) { len = next - str; next++; } else { len = strlen (str); } if (len == newlen && !memcmp (str, value, len)) { pl_unlock (); return; } str = next; } size_t sz = strlen (old) + newlen + 2; char out[sz]; snprintf (out, sz, "%s\n%s", old, value); pl_replace_meta (it, key, out); } pl_unlock (); } void pl_replace_meta (playItem_t *it, const char *key, const char *value) { LOCK; // check if it's already set DB_metaInfo_t *m = it->meta; while (m) { if (!strcasecmp (key, m->key)) { break; } m = m->next; } if (m) { metacache_remove_string (m->value); m->value = metacache_add_string (value); UNLOCK; return; } else { pl_add_meta (it, key, value); } UNLOCK; } void pl_set_meta_int (playItem_t *it, const char *key, int value) { char s[20]; snprintf (s, sizeof (s), "%d", value); pl_replace_meta (it, key, s); } void pl_set_meta_float (playItem_t *it, const char *key, float value) { char s[20]; snprintf (s, sizeof (s), "%f", value); pl_replace_meta (it, key, s); } void pl_delete_meta (playItem_t *it, const char *key) { pl_lock (); DB_metaInfo_t *prev = NULL; DB_metaInfo_t *m = it->meta; while (m) { if (!strcasecmp (key, m->key)) { if (prev) { prev->next = m->next; } else { it->meta = m->next; } metacache_remove_string (m->key); metacache_remove_string (m->value); free (m); break; } prev = m; m = m->next; } pl_unlock (); } const char * pl_find_meta (playItem_t *it, const char *key) { pl_ensure_lock (); DB_metaInfo_t *m = it->meta; if (key && key[0] == ':') { // try to find an override while (m) { if (m->key[0] == '!' && !strcasecmp (key+1, m->key+1)) { return m->value; } m = m->next; } } m = it->meta; while (m) { if (!strcasecmp (key, m->key)) { return m->value; } m = m->next; } return NULL; } const char * pl_find_meta_raw (playItem_t *it, const char *key) { pl_ensure_lock (); DB_metaInfo_t *m = it->meta; while (m) { if (!strcasecmp (key, m->key)) { return m->value; } m = m->next; } return NULL; } int pl_find_meta_int (playItem_t *it, const char *key, int def) { pl_lock (); const char *val = pl_find_meta (it, key); int res = val ? atoi (val) : def; pl_unlock (); return res; } float pl_find_meta_float (playItem_t *it, const char *key, float def) { pl_lock (); const char *val = pl_find_meta (it, key); float res = val ? atof (val) : def; pl_unlock (); return res; } DB_metaInfo_t * pl_get_metadata_head (playItem_t *it) { return it->meta; } void pl_delete_metadata (playItem_t *it, DB_metaInfo_t *meta) { pl_lock (); DB_metaInfo_t *prev = NULL; DB_metaInfo_t *m = it->meta; while (m) { if (m == meta) { if (prev) { prev->next = m->next; } else { it->meta = m->next; } metacache_remove_string (m->key); metacache_remove_string (m->value); free (m); break; } prev = m; m = m->next; } pl_unlock (); } void pl_delete_all_meta (playItem_t *it) { LOCK; DB_metaInfo_t *m = it->meta; DB_metaInfo_t *prev = NULL; while (m) { DB_metaInfo_t *next = m->next; if (m->key[0] == ':' || m->key[0] == '_' || m->key[0] == '!') { prev = m; } else { if (prev) { prev->next = next; } else { it->meta = next; } metacache_remove_string (m->key); metacache_remove_string (m->value); free (m); } m = next; } uint32_t f = pl_get_item_flags (it); f &= ~DDB_TAG_MASK; pl_set_item_flags (it, f); UNLOCK; } int pl_get_meta (playItem_t *it, const char *key, char *val, int size) { *val = 0; pl_lock (); const char *v = pl_find_meta (it, key); if (!v) { pl_unlock (); return 0; } strncpy (val, v, size); pl_unlock (); return 1; } int pl_get_meta_raw (playItem_t *it, const char *key, char *val, int size) { *val = 0; pl_lock (); const char *v = pl_find_meta_raw (it, key); if (!v) { pl_unlock (); return 0; } strncpy (val, v, size); pl_unlock (); return 1; } int pl_meta_exists (playItem_t *it, const char *key) { pl_lock (); const char *v = pl_find_meta (it, key); pl_unlock (); return v ? 1 : 0; }