changeset 365:addd05a425fe

collection_load(): improve headers parsing.
author zas_
date Mon, 14 Apr 2008 23:29:54 +0000
parents 4862e9a61f3d
children ce00494827e2
files src/collect-io.c
diffstat 1 files changed, 14 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/collect-io.c	Mon Apr 14 23:09:48 2008 +0000
+++ b/src/collect-io.c	Mon Apr 14 23:29:54 2008 +0000
@@ -59,6 +59,10 @@
 	gchar *pathl;
 	gint limit_failures = TRUE;
 	gint success = TRUE;
+	gint has_official_header = FALSE;
+	gint has_geometry_header = FALSE;
+	gint has_gqview_header   = FALSE;
+	gint need_header	 = TRUE;
 	guint total = 0;
 	guint fail = 0;
 	gboolean changed = FALSE;
@@ -112,6 +116,7 @@
 		/* Parse comments */
 		if (*p == '#')
 			{
+			if (!need_header) continue;
 			if (strncasecmp(p, GQ_COLLECTION_MARKER, strlen(GQ_COLLECTION_MARKER)) == 0)
 				{
 				/* Looks like an official collection, allow unchecked input.
@@ -119,24 +124,24 @@
 				 * which is needed for the collection manager to work.
 				 * Also unofficial files abort after too many invalid entries.
 				 */
+				has_official_header = TRUE;
 				limit_failures = FALSE;
 				}
 			else if (strncmp(p, "#geometry:", 10 ) == 0 &&
-			    scan_geometry(p + 10, &cd->window_x, &cd->window_y, &cd->window_w, &cd->window_h) )
+			         scan_geometry(p + 10, &cd->window_x, &cd->window_y, &cd->window_w, &cd->window_h))
 				{
+				has_geometry_header = TRUE;
 				cd->window_read = TRUE;
-				if (only_geometry)
-					{
-					fclose(f);
-					return TRUE;
-					}
+				if (only_geometry) break;
 				}
 			else if (strncasecmp(p, "#GQview collection", strlen("#GQview collection")) == 0)
 				{
 				/* As 2008/04/15 there is no difference between our collection file format
 				 * and GQview 2.1.5 collection file format so ignore failures as well. */
+				has_gqview_header = TRUE;
 				limit_failures = FALSE;
 				}
+			need_header = (!has_official_header && !has_gqview_header) || !has_geometry_header;
 			continue;
 			}
 
@@ -168,10 +173,11 @@
 			}
 		}
 
-	if (debug) printf("collection files: total = %d fail = %d\n", total, fail); 
+	if (debug) printf("collection files: total = %d fail = %d official=%d gqview=%d geometry=%d\n",
+			  total, fail, has_official_header, has_gqview_header, has_geometry_header); 
 
 	fclose(f);
-	if (only_geometry) return FALSE;
+	if (only_geometry) return has_geometry_header;
 
 	if (!flush)
 		{