[maemo-commits] [maemo-commits] r16535 - in projects/haf/trunk/hildon-thumbnail: . daemon
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Thu Oct 30 13:40:53 EET 2008
- Previous message: [maemo-commits] r16534 - projects/haf/trunk/hildon-thumbnail/daemon
- Next message: [maemo-commits] r16537 - in projects/haf/trunk/apt: . debian
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: pvanhoof Date: 2008-10-30 13:40:52 +0200 (Thu, 30 Oct 2008) New Revision: 16535 Modified: projects/haf/trunk/hildon-thumbnail/ChangeLog projects/haf/trunk/hildon-thumbnail/daemon/utils.c Log: 2008-10-30 Philip Van Hoof <philip at codeminded.be> * daemon/utils.c: Stripping album and artist strings Modified: projects/haf/trunk/hildon-thumbnail/ChangeLog =================================================================== --- projects/haf/trunk/hildon-thumbnail/ChangeLog 2008-10-30 10:47:49 UTC (rev 16534) +++ projects/haf/trunk/hildon-thumbnail/ChangeLog 2008-10-30 11:40:52 UTC (rev 16535) @@ -1,5 +1,9 @@ 2008-10-30 Philip Van Hoof <philip at codeminded.be> + * daemon/utils.c: Stripping album and artist strings + +2008-10-30 Philip Van Hoof <philip at codeminded.be> + * daemon/utils.c: Local thumbnail art, and code cleaning up 2008-10-29 Philip Van Hoof <philip at codeminded.be> Modified: projects/haf/trunk/hildon-thumbnail/daemon/utils.c =================================================================== --- projects/haf/trunk/hildon-thumbnail/daemon/utils.c 2008-10-30 10:47:49 UTC (rev 16534) +++ projects/haf/trunk/hildon-thumbnail/daemon/utils.c 2008-10-30 11:40:52 UTC (rev 16535) @@ -137,6 +137,81 @@ } + +static gchar* +strip_characters (const gchar *original) +{ + const gchar *foo = "()[]<>{}_!@#$^&*+=|\\/\"'?~"; + guint osize = strlen (original); + gchar *retval = (gchar *) g_malloc0 (sizeof (gchar *) * osize); + guint i = 0, y = 0; + + while (i < osize) { + + /* Remove (anything) */ + + if (original[i] == '(') { + gchar *loc = strchr (original+i, ')'); + if (loc) { + i = loc - original + 1; + continue; + } + } + + /* Remove [anything] */ + + if (original[i] == '[') { + gchar *loc = strchr (original+i, ']'); + if (loc) { + i = loc - original + 1; + continue; + } + } + + /* Remove {anything} */ + + if (original[i] == '{') { + gchar *loc = strchr (original+i, '}'); + if (loc) { + i = loc - original + 1; + continue; + } + } + + /* Remove <anything> */ + + if (original[i] == '<') { + gchar *loc = strchr (original+i, '>'); + if (loc) { + i = loc - original + 1; + continue; + } + } + + /* Remove double whitespaces */ + + if ((y > 0) && + (original[i] == ' ' || original[i] == '\t') && + (retval[y-1] == ' ' || retval[y-1] == '\t')) { + i++; + continue; + } + + /* Remove strange characters */ + + if (!strchr (foo, original[i])) { + retval[y] = original[i]!='\t'?original[i]:' '; + y++; + } + + i++; + } + + retval[y] = 0; + + return retval; +} + void hildon_thumbnail_util_get_albumart_path (const gchar *a, const gchar *b, const gchar *prefix, gchar **path) { @@ -144,6 +219,7 @@ gchar *dir; gchar *str; gchar *down; + gchar *f_a = NULL, *f_b = NULL; *path = NULL; @@ -151,10 +227,20 @@ return; } - str = g_strconcat (a ? a : "", + if (a) + f_a = strip_characters (a); + + if (b) + f_b = strip_characters (b); + + str = g_strconcat (a ? f_a : "", " ", - b ? b : "", + b ? f_b : "", NULL); + + g_free (f_a); + g_free (f_b); + down = g_utf8_strdown (str, -1); g_free (str);
- Previous message: [maemo-commits] r16534 - projects/haf/trunk/hildon-thumbnail/daemon
- Next message: [maemo-commits] r16537 - in projects/haf/trunk/apt: . debian
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]