gst-libs/gst/tag/tags.c: Don't drop the last byte of image tags if they're not an...
[platform/upstream/gstreamer.git] / gst-libs / gst / tag / tags.c
1 /* GStreamer non-core tag registration and tag utility functions
2  * Copyright (C) 2005 Ross Burton <ross@burtonini.com>
3  * Copyright (C) 2006-2008 Tim-Philipp Müller <tim centricular net>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
24
25 #include <gst/gst-i18n-plugin.h>
26 #include <gst/base/gsttypefindhelper.h>
27 #include <gst/gst.h>
28 #include "tag.h"
29
30 #include <string.h>
31
32 /**
33  * SECTION:gsttag
34  * @short_description: additional tag definitions for plugins and applications
35  * @see_also: #GstTagList
36  * 
37  * <refsect2>
38  * <para>
39  * Contains additional standardized GStreamer tag definitions for plugins
40  * and applications, and functions to register them with the GStreamer
41  * tag system.
42  * </para>
43  * </refsect2>
44  */
45
46
47 static gpointer
48 gst_tag_register_tags_internal (gpointer unused)
49 {
50 #ifdef ENABLE_NLS
51   GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
52       LOCALEDIR);
53   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
54   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
55 #endif
56
57   /* musicbrainz tags */
58   gst_tag_register (GST_TAG_MUSICBRAINZ_TRACKID, GST_TAG_FLAG_META,
59       G_TYPE_STRING, _("track ID"), _("MusicBrainz track ID"), NULL);
60   gst_tag_register (GST_TAG_MUSICBRAINZ_ARTISTID, GST_TAG_FLAG_META,
61       G_TYPE_STRING, _("artist ID"), _("MusicBrainz artist ID"), NULL);
62   gst_tag_register (GST_TAG_MUSICBRAINZ_ALBUMID, GST_TAG_FLAG_META,
63       G_TYPE_STRING, _("album ID"), _("MusicBrainz album ID"), NULL);
64   gst_tag_register (GST_TAG_MUSICBRAINZ_ALBUMARTISTID, GST_TAG_FLAG_META,
65       G_TYPE_STRING,
66       _("album artist ID"), _("MusicBrainz album artist ID"), NULL);
67   gst_tag_register (GST_TAG_MUSICBRAINZ_TRMID, GST_TAG_FLAG_META,
68       G_TYPE_STRING, _("track TRM ID"), _("MusicBrainz TRM ID"), NULL);
69
70   /* CDDA tags */
71   gst_tag_register (GST_TAG_CDDA_CDDB_DISCID, GST_TAG_FLAG_META,
72       G_TYPE_STRING, "discid", "CDDB discid for metadata retrieval",
73       gst_tag_merge_use_first);
74
75   gst_tag_register (GST_TAG_CDDA_CDDB_DISCID_FULL, GST_TAG_FLAG_META,
76       G_TYPE_STRING, "discid full",
77       "CDDB discid for metadata retrieval (full)", gst_tag_merge_use_first);
78
79   gst_tag_register (GST_TAG_CDDA_MUSICBRAINZ_DISCID, GST_TAG_FLAG_META,
80       G_TYPE_STRING, "musicbrainz-discid",
81       "Musicbrainz discid for metadata retrieval", gst_tag_merge_use_first);
82
83   gst_tag_register (GST_TAG_CDDA_MUSICBRAINZ_DISCID_FULL, GST_TAG_FLAG_META,
84       G_TYPE_STRING, "musicbrainz-discid-full",
85       "Musicbrainz discid for metadata retrieval (full)",
86       gst_tag_merge_use_first);
87
88   return NULL;
89 }
90
91 /* FIXME 0.11: rename this to gst_tag_init() or gst_tag_register_tags() */
92 /**
93  * gst_tag_register_musicbrainz_tags
94  *
95  * Registers additional musicbrainz-specific tags with the GStreamer tag
96  * system. Plugins and applications that use these tags should call this
97  * function before using them. Can be called multiple times.
98  */
99 void
100 gst_tag_register_musicbrainz_tags (void)
101 {
102   static GOnce mb_once = G_ONCE_INIT;
103
104   g_once (&mb_once, gst_tag_register_tags_internal, NULL);
105 }
106
107 static void
108 register_tag_image_type_enum (GType * id)
109 {
110   static const GEnumValue image_types[] = {
111     {GST_TAG_IMAGE_TYPE_NONE, "GST_TAG_IMAGE_TYPE_NONE", "none"},
112     {GST_TAG_IMAGE_TYPE_UNDEFINED, "GST_TAG_IMAGE_TYPE_UNDEFINED", "undefined"},
113     {GST_TAG_IMAGE_TYPE_FRONT_COVER, "GST_TAG_IMAGE_TYPE_FRONT_COVER",
114         "front-cover"},
115     {GST_TAG_IMAGE_TYPE_BACK_COVER, "GST_TAG_IMAGE_TYPE_BACK_COVER",
116         "back-cover"},
117     {GST_TAG_IMAGE_TYPE_LEAFLET_PAGE, "GST_TAG_IMAGE_TYPE_LEAFLET_PAGE",
118         "leaflet-page"},
119     {GST_TAG_IMAGE_TYPE_MEDIUM, "GST_TAG_IMAGE_TYPE_MEDIUM", "medium"},
120     {GST_TAG_IMAGE_TYPE_LEAD_ARTIST, "GST_TAG_IMAGE_TYPE_LEAD_ARTIST",
121         "lead-artist"},
122     {GST_TAG_IMAGE_TYPE_ARTIST, "GST_TAG_IMAGE_TYPE_ARTIST", "artist"},
123     {GST_TAG_IMAGE_TYPE_CONDUCTOR, "GST_TAG_IMAGE_TYPE_CONDUCTOR", "conductor"},
124     {GST_TAG_IMAGE_TYPE_BAND_ORCHESTRA, "GST_TAG_IMAGE_TYPE_BAND_ORCHESTRA",
125         "band-orchestra"},
126     {GST_TAG_IMAGE_TYPE_COMPOSER, "GST_TAG_IMAGE_TYPE_COMPOSER", "composer"},
127     {GST_TAG_IMAGE_TYPE_LYRICIST, "GST_TAG_IMAGE_TYPE_LYRICIST", "lyricist"},
128     {GST_TAG_IMAGE_TYPE_RECORDING_LOCATION,
129           "GST_TAG_IMAGE_TYPE_RECORDING_LOCATION",
130         "recording-location"},
131     {GST_TAG_IMAGE_TYPE_DURING_RECORDING, "GST_TAG_IMAGE_TYPE_DURING_RECORDING",
132         "during-recording"},
133     {GST_TAG_IMAGE_TYPE_DURING_PERFORMANCE,
134           "GST_TAG_IMAGE_TYPE_DURING_PERFORMANCE",
135         "during-performance"},
136     {GST_TAG_IMAGE_TYPE_VIDEO_CAPTURE, "GST_TAG_IMAGE_TYPE_VIDEO_CAPTURE",
137         "video-capture"},
138     {GST_TAG_IMAGE_TYPE_FISH, "GST_TAG_IMAGE_TYPE_FISH", "fish"},
139     {GST_TAG_IMAGE_TYPE_ILLUSTRATION, "GST_TAG_IMAGE_TYPE_ILLUSTRATION",
140         "illustration"},
141     {GST_TAG_IMAGE_TYPE_BAND_ARTIST_LOGO, "GST_TAG_IMAGE_TYPE_BAND_ARTIST_LOGO",
142         "artist-logo"},
143     {GST_TAG_IMAGE_TYPE_PUBLISHER_STUDIO_LOGO,
144           "GST_TAG_IMAGE_TYPE_PUBLISHER_STUDIO_LOGO",
145         "publisher-studio-logo"},
146     {0, NULL, NULL}
147   };
148
149   *id = g_enum_register_static ("GstTagImageType", image_types);
150
151   /* work around thread-safety issue with class creation in GLib */
152   g_type_class_ref (*id);
153 }
154
155 GType
156 gst_tag_image_type_get_type (void)
157 {
158   static GType id;
159
160   static GOnce once = G_ONCE_INIT;
161
162   g_once (&once, (GThreadFunc) register_tag_image_type_enum, &id);
163   return id;
164 }
165
166 static inline gboolean
167 gst_tag_image_type_is_valid (GstTagImageType type)
168 {
169   GEnumClass *klass;
170
171   gboolean res;
172
173   klass = g_type_class_ref (gst_tag_image_type_get_type ());
174   res = (g_enum_get_value (klass, type) != NULL);
175   g_type_class_unref (klass);
176
177   return res;
178 }
179
180 /**
181  * gst_tag_parse_extended_comment:
182  * @ext_comment: an extended comment string, see #GST_TAG_EXTENDED_COMMENT
183  * @key: return location for the comment description key, or NULL
184  * @lang: return location for the comment ISO-639 language code, or NULL
185  * @value: return location for the actual comment string, or NULL
186  * @fail_if_no_key: whether to fail if strings are not in key=value form
187  *
188  * Convenience function to parse a GST_TAG_EXTENDED_COMMENT string and
189  * separate it into its components.
190  *
191  * If successful, @key, @lang and/or @value will be set to newly allocated
192  * strings that you need to free with g_free() when done. @key and @lang
193  * may also be set to NULL by this function if there is no key or no language
194  * code in the extended comment string.
195  *
196  * Returns: TRUE if the string could be parsed, otherwise FALSE
197  *
198  * Since: 0.10.10
199  */
200 gboolean
201 gst_tag_parse_extended_comment (const gchar * ext_comment, gchar ** key,
202     gchar ** lang, gchar ** value, gboolean fail_if_no_key)
203 {
204   const gchar *div, *bop, *bcl;
205
206   g_return_val_if_fail (ext_comment != NULL, FALSE);
207   g_return_val_if_fail (g_utf8_validate (ext_comment, -1, NULL), FALSE);
208
209   if (key)
210     *key = NULL;
211   if (lang)
212     *lang = NULL;
213
214   div = strchr (ext_comment, '=');
215   bop = strchr (ext_comment, '[');
216   bcl = strchr (ext_comment, ']');
217
218   if (div == NULL) {
219     if (fail_if_no_key)
220       return FALSE;
221     if (value)
222       *value = g_strdup (ext_comment);
223     return TRUE;
224   }
225
226   if (bop != NULL && bop < div) {
227     if (bcl < bop || bcl > div)
228       return FALSE;
229     if (key)
230       *key = g_strndup (ext_comment, bop - ext_comment);
231     if (lang)
232       *lang = g_strndup (bop + 1, bcl - bop - 1);
233   } else {
234     if (key)
235       *key = g_strndup (ext_comment, div - ext_comment);
236   }
237
238   if (value)
239     *value = g_strdup (div + 1);
240
241   return TRUE;
242 }
243
244 /**
245  * gst_tag_freeform_string_to_utf8:
246  * @data: string data
247  * @size: length of string data, or -1 if the string is NUL-terminated
248  * @env_vars: a NULL-terminated string array of environment variable names,
249  *            or NULL
250  *
251  * Convenience function to read a string with unknown character encoding. If
252  * the string is already in UTF-8 encoding, it will be returned right away.
253  * Otherwise, the environment will be searched for a number of environment
254  * variables (whose names are specified in the NULL-terminated string array
255  * @env_vars) containing a list of character encodings to try/use. If none
256  * are specified, the current locale will be tried. If that also doesn't work,
257  * ISO-8859-1 is assumed (which will almost always succeed).
258  *
259  * Returns: a newly-allocated string in UTF-8 encoding, or NULL
260  *
261  * Since: 0.10.13
262  */
263 gchar *
264 gst_tag_freeform_string_to_utf8 (const gchar * data, gint size,
265     const gchar ** env_vars)
266 {
267   const gchar *cur_loc = NULL;
268
269   gsize bytes_read;
270
271   gchar *utf8 = NULL;
272
273   g_return_val_if_fail (data != NULL, NULL);
274
275   if (size < 0)
276     size = strlen (data);
277
278   /* chop off trailing string terminators to make sure utf8_validate doesn't
279    * get to see them (since that would make the utf8 check fail) */
280   while (size > 0 && data[size - 1] == '\0')
281     --size;
282
283   /* Should we try the charsets specified
284    * via environment variables FIRST ? */
285   if (g_utf8_validate (data, size, NULL)) {
286     utf8 = g_strndup (data, size);
287     GST_LOG ("String '%s' is valid UTF-8 already", utf8);
288     goto beach;
289   }
290
291   while (env_vars && *env_vars != NULL) {
292     const gchar *env = NULL;
293
294     /* Try charsets specified via the environment */
295     env = g_getenv (*env_vars);
296     if (env != NULL && *env != '\0') {
297       gchar **c, **csets;
298
299       csets = g_strsplit (env, G_SEARCHPATH_SEPARATOR_S, -1);
300
301       for (c = csets; c && *c; ++c) {
302         GST_LOG ("Trying to convert freeform string to UTF-8 from '%s'", *c);
303         if ((utf8 =
304                 g_convert (data, size, "UTF-8", *c, &bytes_read, NULL, NULL))) {
305           if (bytes_read == size) {
306             g_strfreev (csets);
307             goto beach;
308           }
309           g_free (utf8);
310           utf8 = NULL;
311         }
312       }
313
314       g_strfreev (csets);
315     }
316     ++env_vars;
317   }
318
319   /* Try current locale (if not UTF-8) */
320   if (!g_get_charset (&cur_loc)) {
321     GST_LOG ("Trying to convert freeform string using locale ('%s')", cur_loc);
322     if ((utf8 = g_locale_to_utf8 (data, size, &bytes_read, NULL, NULL))) {
323       if (bytes_read == size) {
324         goto beach;
325       }
326       g_free (utf8);
327       utf8 = NULL;
328     }
329   }
330
331   /* Try ISO-8859-1 */
332   GST_LOG ("Trying to convert freeform string using ISO-8859-1 fallback");
333   utf8 = g_convert (data, size, "UTF-8", "ISO-8859-1", &bytes_read, NULL, NULL);
334   if (utf8 != NULL && bytes_read == size) {
335     goto beach;
336   }
337
338   g_free (utf8);
339   return NULL;
340
341 beach:
342
343   g_strchomp (utf8);
344   if (utf8 && utf8[0] != '\0') {
345     GST_LOG ("Returning '%s'", utf8);
346     return utf8;
347   }
348
349   g_free (utf8);
350   return NULL;
351 }
352
353 /**
354  * gst_tag_image_data_to_image_buffer:
355  * @image_data: the (encoded) image
356  * @image_data_len: the length of the encoded image data at @image_data
357  * @image_type: type of the image, or #GST_TAG_IMAGE_TYPE_UNDEFINED. Pass
358  *     #GST_TAG_IMAGE_TYPE_NONE if no image type should be set at all (e.g.
359  *     for preview images)
360  *
361  * Helper function for tag-reading plugins to create a #GstBuffer suitable to
362  * add to a #GstTagList as an image tag (such as #GST_TAG_IMAGE or
363  * #GST_TAG_PREVIEW_IMAGE) from the encoded image data and an (optional) image
364  * type.
365  *
366  * Background: cover art and other images in tags are usually stored as a
367  * blob of binary image data, often accompanied by a MIME type or some other
368  * content type string (e.g. 'png', 'jpeg', 'jpg'). Sometimes there is also an
369  * 'image type' to indicate what kind of image this is (e.g. front cover,
370  * back cover, artist, etc.). The image data may also be an URI to the image
371  * rather than the image itself.
372  *
373  * In GStreamer, image tags are #GstBuffer<!-- -->s containing the raw image
374  * data, with the buffer caps describing the content type of the image
375  * (e.g. image/jpeg, image/png, text/uri-list). The buffer caps may contain
376  * an additional 'image-type' field of #GST_TYPE_TAG_IMAGE_TYPE to describe
377  * the type of image (front cover, back cover etc.). #GST_TAG_PREVIEW_IMAGE
378  * tags should not carry an image type, their type is already indicated via
379  * the special tag name.
380  *
381  * This function will do various checks and typefind the encoded image
382  * data (we can't trust the declared mime type).
383  *
384  * Returns: a newly-allocated image buffer for use in tag lists, or NULL
385  *
386  * Since: 0.10.20
387  */
388 GstBuffer *
389 gst_tag_image_data_to_image_buffer (const guint8 * image_data,
390     guint image_data_len, GstTagImageType image_type)
391 {
392   const gchar *name;
393
394   GstBuffer *image;
395
396   GstCaps *caps;
397
398   g_return_val_if_fail (image_data != NULL, NULL);
399   g_return_val_if_fail (image_data_len > 0, NULL);
400   g_return_val_if_fail (gst_tag_image_type_is_valid (image_type), NULL);
401
402   GST_DEBUG ("image data len: %u bytes", image_data_len);
403
404   /* allocate space for a NUL terminator for an uri too */
405   image = gst_buffer_try_new_and_alloc (image_data_len + 1);
406   if (image == NULL) {
407     GST_WARNING ("failed to allocate buffer of %d for image", image_data_len);
408     return NULL;
409   }
410
411   memcpy (GST_BUFFER_DATA (image), image_data, image_data_len);
412   GST_BUFFER_DATA (image)[image_data_len] = '\0';
413   GST_BUFFER_SIZE (image) = image_data_len + 1;
414
415   /* Find GStreamer media type, can't trust declared type */
416   caps = gst_type_find_helper_for_buffer (NULL, image, NULL);
417
418   if (caps == NULL)
419     goto no_type;
420
421   GST_DEBUG ("Found GStreamer media type: %" GST_PTR_FORMAT, caps);
422
423   /* sanity check: make sure typefound/declared caps are either URI or image */
424   name = gst_structure_get_name (gst_caps_get_structure (caps, 0));
425
426   if (!g_str_has_prefix (name, "image/") &&
427       !g_str_has_prefix (name, "video/") &&
428       !g_str_equal (name, "text/uri-list")) {
429     GST_DEBUG ("Unexpected image type '%s', ignoring image frame", name);
430     goto error;
431   }
432
433   /* Decrease size by 1 if we don't have an URI list
434    * to keep the original size of the image
435    */
436   if (!g_str_equal (name, "text/uri-list"))
437     GST_BUFFER_SIZE (image) = image_data_len;
438
439   if (image_type != GST_TAG_IMAGE_TYPE_NONE) {
440     GST_LOG ("Setting image type: %d", image_type);
441     caps = gst_caps_make_writable (caps);
442     gst_caps_set_simple (caps, "image-type", GST_TYPE_TAG_IMAGE_TYPE,
443         image_type, NULL);
444   }
445
446   gst_buffer_set_caps (image, caps);
447   gst_caps_unref (caps);
448   return image;
449
450 /* ERRORS */
451 no_type:
452   {
453     GST_DEBUG ("Could not determine GStreamer media type, ignoring image");
454     /* fall through */
455   }
456 error:
457   {
458     if (image)
459       gst_buffer_unref (image);
460     if (caps)
461       gst_caps_unref (caps);
462     return NULL;
463   }
464 }