reset error before item normalize
[omnplay] / src / library.c
index 3152eca..7a12603 100644 (file)
 #include "ui.h"
 #include "timecode.h"
 
-static void omnplay_library_load_file(playlist_item_t* items, int *pcount, char* filename)
+playlist_item_t* omnplay_library_find(omnplay_instance_t* app, char* id)
 {
-    int i, c = 0;
+    int i;
+    playlist_item_t* item = NULL;
+
+    pthread_mutex_lock(&app->library.lock);
+
+    for(i = 0; i < app->library.count && !item; i++)
+        if(!strcasecmp(id, app->library.item[i].id))
+            item = &app->library.item[i];
+
+    pthread_mutex_unlock(&app->library.lock);
+
+    return item;
+};
+
+void omnplay_library_normalize_item(omnplay_instance_t* app, playlist_item_t* item)
+{
+    playlist_item_t* lib;
+
+    pthread_mutex_lock(&app->library.lock);
+
+    lib = omnplay_library_find(app, item->id);
+
+    item->error = 0;
+
+    if(lib)
+    {
+
+        if(!item->title[0])
+            strcpy(item->title, lib->title);
+
+        if(!item->dur)
+        {
+            item->dur = lib->dur;
+            item->in = lib->in;
+        };
+    }
+    else
+        item->error = PLAYLIST_ITEM_ERROR_LIB;
+
+    pthread_mutex_unlock(&app->library.lock);
+};
+
+void omnplay_library_sort(omnplay_instance_t* app)
+{
+    int i, j, m;
+    playlist_item_t item;
+
+    for(i = 0; i < app->library.count; i++)
+    {
+        /* find max */
+        for(j = i + 1, m = i; j < app->library.count; j++)
+            if(strcasecmp(app->library.item[j].id, app->library.item[m].id) < 0)
+                m = j;
+
+        if(m != i)
+        {
+            item = app->library.item[i];
+            app->library.item[i] = app->library.item[m];
+            app->library.item[m] = item;
+        };
+    };
+};
+
+int omnplay_library_load_file(playlist_item_t* items, int *pcount, char* filename)
+{
+    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 +113,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 +126,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 +148,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 +164,12 @@ 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);
+    };
+
+    omnplay_library_sort(app);
 
     pthread_mutex_unlock(&app->library.lock);
 
@@ -139,7 +214,7 @@ static void omnplay_get_content_cb(omnplay_instance_t* app, playlist_item_t* ite
 
 void omnplay_library_refresh(omnplay_instance_t* app)
 {
-    int count;
+    int count, i;
     playlist_item_t* items;
 
 
@@ -147,6 +222,25 @@ void omnplay_library_refresh(omnplay_instance_t* app)
 
     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;
+
+        omnplay_library_sort(app);
+
+        pthread_mutex_unlock(&app->library.lock);
+
+        omnplay_library_draw(app);
+    };
+
     free(items);
 };
 
@@ -168,11 +262,14 @@ 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,
+            4, FALSE,
+            5, "red",
             -1 );
     }
 
     pthread_mutex_unlock(&app->library.lock);
 };
+