X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Flibrary.c;h=5836cf7be2f082574f46613303a87ee33678d598;hb=6a5426081f08dd9119a2b34d384519b6bff9a5d6;hp=4e8695dcf1180fc02489dff914569aa99675e3a4;hpb=8a6207f6d27cdb27b9774e0c36e09e23e9ac6526;p=melted_gui diff --git a/src/library.c b/src/library.c index 4e8695d..5836cf7 100644 --- a/src/library.c +++ b/src/library.c @@ -32,11 +32,12 @@ #include "ui.h" #include "timecode.h" -static void omnplay_library_load_file(playlist_item_t* items, int *pcount, char* filename) +int omnplay_library_load_file(playlist_item_t* items, int *pcount, char* filename) { - int i, c = 0; + int i, c = 0, r = 0; FILE* f; char *l; + int limit = *pcount; playlist_item_t item; /* allocate space for strings and items */ @@ -47,7 +48,7 @@ static void omnplay_library_load_file(playlist_item_t* items, int *pcount, char* /* open and process file */ if((f = fopen(filename, "rt"))) { - while( !feof(f) ) + while( !feof(f) && c < (limit -1)) { char *s, *sp_r, *sp_b; @@ -60,7 +61,7 @@ static void omnplay_library_load_file(playlist_item_t* items, int *pcount, char* if( (s = strchr(l, '\r')) ) *s = 0; /* check for empty line */ - if(l[0] && l[0] != '#') + if(l[0] && l[0] != '#' && l[0] != '|') { memset(&item, 0, sizeof(playlist_item_t)); @@ -82,11 +83,15 @@ static void omnplay_library_load_file(playlist_item_t* items, int *pcount, char* fclose(f); } + else + r = -1; /* free data */ free(l); *pcount = c; + + return r; }; void omnplay_library_load(omnplay_instance_t* app) @@ -94,7 +99,10 @@ void omnplay_library_load(omnplay_instance_t* app) pthread_mutex_lock(&app->library.lock); if(app->library.filename[0]) + { + app->library.count = MAX_LIBRARY_ITEMS; omnplay_library_load_file(app->library.item, &app->library.count, app->library.filename); + }; pthread_mutex_unlock(&app->library.lock); @@ -132,8 +140,39 @@ void omnplay_library_save(omnplay_instance_t* app) pthread_mutex_unlock(&app->library.lock); }; +static void omnplay_get_content_cb(omnplay_instance_t* app, playlist_item_t* item, void* data) +{ + fprintf(stderr, "requested: id=[%s]\n", item->id); +}; + void omnplay_library_refresh(omnplay_instance_t* app) { + int count, i; + playlist_item_t* items; + + + items = (playlist_item_t*)malloc(sizeof(playlist_item_t) * MAX_LIBRARY_ITEMS); + + count = omnplay_get_content(app, items, MAX_LIBRARY_ITEMS, omnplay_get_content_cb, NULL); + + if(count > 0) + { + if(app->library.whois[0]) + omnplay_whois_list(app, items, &count); + + pthread_mutex_lock(&app->library.lock); + + for(i = 0; i < count; i++) + app->library.item[i] = items[i]; + + app->library.count = count; + + pthread_mutex_unlock(&app->library.lock); + + omnplay_library_draw(app); + }; + + free(items); }; void omnplay_library_draw(omnplay_instance_t* app) @@ -154,7 +193,7 @@ void omnplay_library_draw(omnplay_instance_t* app) gtk_list_store_set(list_store, &iter, 0, app->library.item[i].id, - 1, frames2tc(app->playlist.item[i].dur, 25.0, tc), + 1, frames2tc(app->library.item[i].dur, 25.0, tc), 2, app->library.item[i].title, 3, i, -1 );