/usr/include/glyr/cache.h is in libglyr-dev 1.0.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | /***********************************************************
* This file is part of glyr
* + a commnadline tool and library to download various sort of musicrelated metadata.
* + Copyright (C) [2011] [Christopher Pahl]
* + Hosted at: https://github.com/sahib/glyr
*
* glyr is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* glyr is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with glyr. If not, see <http://www.gnu.org/licenses/>.
**************************************************************/
#ifndef GLYR_CACHE_H
#define GLYR_CACHE_H
/**
* SECTION:cache
* @short_description: A fast SQLite cache for glyr's results
* @title: Cache
* @section_id:
* @stability: Stable
* @include: glyr/cache.h
*
* The Cache offers application authors to store the items found
* by glyr persistently in a DB-Cache and get them again once needed.
* Before usage it is necessary to open the DB via glyr_db_init(),
* which expects a folder where the DB will be stored, after this
* there are 4 operations you can use on the query:
* <itemizedlist>
* <listitem>
* <para>
* Lookup by a Query (glyr_db_lookup())
* </para>
* </listitem>
* <listitem>
* <para>
* Delete by a Query (glyr_db_delete())
* </para>
* </listitem>
* <listitem>
* <para>
* Insert (glyr_db_insert())
* </para>
* </listitem>
* <listitem>
* <para>
* Iterate (glyr_db_foreach())
* </para>
* </listitem>
* </itemizedlist>
*
*
* If you want to insert "own" caches, e.g. to indicate that some artist wasn't found you could use
* the following piece of code:
* <informalexample>
* <programlisting>
// Create a new "dummy" cache
GlyrMemCache * ct = glyr_db_make_dummy();
// Query with filled in artist, album, title, type,
// and opened db
glyr_db_insert(db,&q,ct);
glyr_cache_free(ct);
* </programlisting>
* </informalexample>
*/
#include "types.h"
#ifdef __cplusplus
extern "C"
{
#endif
typedef int (*glyr_foreach_callback) (GlyrQuery * q, GlyrMemCache * item, void * userptr);
/* The Name of the SQL File */
#define GLYR_DB_FILENAME "metadata.db"
/**
* glyr_db_init:
* @root_path: Folder to create DB in
*
* Allocates a new database object, and create a SQLite database
* at the given path. The filename is in #GLYR_DB_FILENAME
* You can now use insert,delete, edit and lookup on it.
*
* Returns: A newly allocated GlyrDatabase, free with glyr_db_destroy
*/
GlyrDatabase * glyr_db_init (const char * root_path);
/**
* glyr_db_destroy:
* @db_object: A database connection
*
* Close the connection and free all associated memory.
* You may not use it anymore.
*/
void glyr_db_destroy (GlyrDatabase * db_object);
/**
* glyr_db_lookup:
* @db: A database connection
* @query: Define what to search for
*
* The artist,album,title and type field are used to query
* the database.
*
* If you used glyr_opt_lookup_db() to bind the DB to a query,
* You may use glyr_get() as an alternative for this method.
* If your specify "local" in glyr_opt_from() only the DB is searched.
*
* Other query-fields honored by glyr_db_lookup():
* <itemizedlist>
* <listitem>
* <para>
* glyr_opt_download() - If false URLs to images are searched, true for real images.
* </para>
* </listitem>
* <listitem>
* <para>
* glyr_opt_from() - What provider the item came from.
* </para>
* </listitem>
* <listitem>
* <para>
* glyr_opt_number() - How many items to return at max.
* </para>
* </listitem>
* </itemizedlist>
*
* Returns: A newly allocated #GlyrMemCache or NULL if nothing found
*/
GlyrMemCache * glyr_db_lookup (GlyrDatabase * db, GlyrQuery * query);
/**
* glyr_db_insert:
* @db: A database connection
* @q: The query that was used to retrieve the @cache
* @cache: The cache to insert.
*
* The cache wil be inserted to the db @db, @q is used to determine the artist, album, title and type.
*/
void glyr_db_insert (GlyrDatabase * db, GlyrQuery * q, GlyrMemCache * cache);
/**
* glyr_db_delete:
* @db: The Database
* @query: Define what item shall be deleted.
*
* The database is searched for the artist, album, title and type specified in @query.
* If items in the DB match they will deleted.
*
* Other query-fields honored by glyr_db_delete():
* <itemizedlist>
* <listitem>
* <para>
* glyr_opt_download() - If false URLs to images are searched, true for real images.
* </para>
* </listitem>
* <listitem>
* <para>
* glyr_opt_from() - What provider the item came from.
* </para>
* </listitem>
* <listitem>
* <para>
* glyr_opt_number() - How many items to delete at a max.
* </para>
* </listitem>
* </itemizedlist>
* Returns: The number of deleted items.
*/
int glyr_db_delete (GlyrDatabase * db, GlyrQuery * query);
/**
* glyr_db_edit:
* @db: The Database
* @query: The query with set artist,album, type etc.
* @edited: The edited cache.
*
* A simple convenience function to delete caches according to the settings specified in @query,
* (Same rules as in glyr_db_delete() apply here).
* After deleting the cache @edited in inserted. If @edited is a doubly linked list (next pointer is not NULL),
* then all items in the list are inserted.
*
* You could have written it yourself like this:
* <informalexample>
* <programlisting>
* int glyr_db_edit(GlyrDatabase * db, GlyrQuery * query, GlyrMemCache * edited)
* {
* int result = 0;
* if(db && query)
* {
* result = glyr_db_delete(db,query);
* if(result != 0)
* {
* for(GlyrMemCache * elem = edited; elem; elem = elem->next)
* {
* glyr_db_insert(db,query,edited);
* }
* }
* }
* return result;
* }
* </programlisting>
* </informalexample>
*
* Returns: The number of replaced caches
*/
int glyr_db_edit (GlyrDatabase * db, GlyrQuery * query, GlyrMemCache * edited);
/**
* glyr_db_replace:
* @db: The Database
* @md5sum: The md5sum of the cache you want to edit.
* @query: The query with set artist,album, type etc.
* @data: The edited cache.
*
* Simple convenience function to edit caches in the Database.
* Best understood by example:
* <informalexample>
* <programlisting>
* // If you have a cache called 'c', that's already
* // In the Database:
* // Save the old checksum, edit it, update the database.
* unsigned char old_md5sum[16] = {0};
* memcpy(old_md5sum,c->md5sum,16);
* glyr_cache_set_data(c,g_strdup("Changed the data - muahahah"),-1);
* c->rating = 4200;
* glyr_db_replace(s->local_db, old_md5sum, s, c);
* </programlisting>
* </informalexample>
*
* Some caveats:
* <itemizedlist>
* <listitem>
* <para>
* You may insert a cache several times, if the source url (cache->dsrc) is different,
* but with the same checksum. If you call glyr_db_replace() once more, the caches
* with the double md5sum get deleted and replaced by the new one.
* </para>
* </listitem>
* </itemizedlist>
*/
void glyr_db_replace (GlyrDatabase * db, unsigned char * md5sum, GlyrQuery * query, GlyrMemCache * data);
/**
* glyr_db_foreach:
* @db: A database connection
* @cb: The callback to call on each item.
* @userptr: A pointer to pass as second argument to the callback.
*
* Iterate over all items in the database.
* Callback may not be null. If callback returns a number != 0,
* iteration aborts.
*
* Callback parameters:
*
* 1) The artist / album / title / type that was used to get this cache is stored in 'query', other fields are not filled.
*
* 2) The actual cache completely filled.
*
* 3) The userpointer you passed as 3rd argument to glyr_db_foreach()
*
* This is useful if you want to have statistics or such.
*
*/
void glyr_db_foreach (GlyrDatabase * db, glyr_foreach_callback cb, void * userptr);
/**
* glyr_db_make_dummy:
*
* The idea behind this function is to create a dummy entry for the cache, e.g. to indicate a certain item
* was not found. In this case you create a dummy with a 'rating' of -1 and push it into the DB.
* If one does a lookup (via glyr_get() or glyr_db_lookup()) then this cache will be returned, one is able
* to check if the item was not found before.
*
* Returns: A newly allocated cache, use glyr_cache_free() to free it.
*/
GlyrMemCache * glyr_db_make_dummy (void);
#ifdef __cplusplus
}
#endif
#endif
|