encodebin: fix new profile unref
[platform/upstream/gstreamer.git] / gst-libs / gst / pbutils / encoding-target.c
1 /* GStreamer encoding profile registry
2  * Copyright (C) 2010 Edward Hervey <edward.hervey@collabora.co.uk>
3  *           (C) 2010 Nokia Corporation
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 <locale.h>
26 #include <string.h>
27 #include "encoding-target.h"
28
29 /*
30  * File format
31  *
32  * GKeyFile style.
33  *
34  * [GStreamer Encoding Target]
35  * name : <name>
36  * category : <category>
37  * description : <description> #translatable
38  *
39  * [profile-<profile1name>]
40  * name : <name>
41  * description : <description> #optional
42  * format : <format>
43  * preset : <preset>
44  *
45  * [streamprofile-<id>]
46  * parent : <encodingprofile.name>[,<encodingprofile.name>..]
47  * type : <type> # "audio", "video", "text"
48  * format : <format>
49  * preset : <preset>
50  * restriction : <restriction>
51  * presence : <presence>
52  * pass : <pass>
53  * variableframerate : <variableframerate>
54  *  */
55
56 /*
57  * Location of profile files
58  *
59  * $GST_DATADIR/gstreamer-GST_MAJORMINOR/encoding-profile
60  * $HOME/gstreamer-GST_MAJORMINOR/encoding-profile
61  *
62  * Naming convention
63  *   $(target.category)/$(target.name).gep
64  *
65  * Naming restrictions:
66  *  lowercase ASCII letter for the first character
67  *  Same for all other characters + numerics + hyphens
68  */
69
70
71 #define GST_ENCODING_TARGET_HEADER "GStreamer Encoding Target"
72 #define GST_ENCODING_TARGET_DIRECTORY "encoding-profiles"
73 #define GST_ENCODING_TARGET_SUFFIX ".gep"
74
75 struct _GstEncodingTarget
76 {
77   GObject parent;
78
79   gchar *name;
80   gchar *category;
81   gchar *description;
82   GList *profiles;
83
84   /*< private > */
85   gchar *keyfile;
86 };
87
88 G_DEFINE_TYPE (GstEncodingTarget, gst_encoding_target, G_TYPE_OBJECT);
89
90 static void
91 gst_encoding_target_init (GstEncodingTarget * target)
92 {
93   /* Nothing to initialize */
94 }
95
96 static void
97 gst_encoding_target_finalize (GObject * object)
98 {
99   GstEncodingTarget *target = (GstEncodingTarget *) object;
100
101   GST_DEBUG ("Finalizing");
102
103   if (target->name)
104     g_free (target->name);
105   if (target->category)
106     g_free (target->category);
107   if (target->description)
108     g_free (target->description);
109
110   g_list_foreach (target->profiles, (GFunc) g_object_unref, NULL);
111   g_list_free (target->profiles);
112 }
113
114 static void
115 gst_encoding_target_class_init (GObjectClass * klass)
116 {
117   klass->finalize = gst_encoding_target_finalize;
118 }
119
120 /**
121  * gst_encoding_target_get_name:
122  * @target: a #GstEncodingTarget
123  *
124  * Since: 0.10.32
125  *
126  * Returns: (transfer none): The name of the @target.
127  */
128 const gchar *
129 gst_encoding_target_get_name (GstEncodingTarget * target)
130 {
131   return target->name;
132 }
133
134 /**
135  * gst_encoding_target_get_category:
136  * @target: a #GstEncodingTarget
137  *
138  * Since: 0.10.32
139  *
140  * Returns: (transfer none): The category of the @target. For example:
141  * #GST_ENCODING_CATEGORY_DEVICE.
142  */
143 const gchar *
144 gst_encoding_target_get_category (GstEncodingTarget * target)
145 {
146   return target->category;
147 }
148
149 /**
150  * gst_encoding_target_get_description:
151  * @target: a #GstEncodingTarget
152  *
153  * Since: 0.10.32
154  *
155  * Returns: (transfer none): The description of the @target.
156  */
157 const gchar *
158 gst_encoding_target_get_description (GstEncodingTarget * target)
159 {
160   return target->description;
161 }
162
163 /**
164  * gst_encoding_target_get_profiles:
165  * @target: a #GstEncodingTarget
166  *
167  * Since: 0.10.32
168  *
169  * Returns: (transfer none) (element-type Gst.EncodingProfile): A list of
170  * #GstEncodingProfile(s) this @target handles.
171  */
172 const GList *
173 gst_encoding_target_get_profiles (GstEncodingTarget * target)
174 {
175   return target->profiles;
176 }
177
178 /**
179  * gst_encoding_target_get_profile:
180  * @target: a #GstEncodingTarget
181  * @name: the name of the profile to retrieve
182  *
183  * Since: 0.10.32
184  *
185  * Returns: (transfer full): The matching #GstEncodingProfile, or %NULL.
186  */
187 GstEncodingProfile *
188 gst_encoding_target_get_profile (GstEncodingTarget * target, const gchar * name)
189 {
190   GList *tmp;
191
192   g_return_val_if_fail (GST_IS_ENCODING_TARGET (target), NULL);
193   g_return_val_if_fail (name != NULL, NULL);
194
195   for (tmp = target->profiles; tmp; tmp = tmp->next) {
196     GstEncodingProfile *tprof = (GstEncodingProfile *) tmp->data;
197
198     if (!g_strcmp0 (gst_encoding_profile_get_name (tprof), name)) {
199       gst_encoding_profile_ref (tprof);
200       return tprof;
201     }
202   }
203
204   return NULL;
205 }
206
207 static inline gboolean
208 validate_name (const gchar * name)
209 {
210   guint i, len;
211
212   len = strlen (name);
213   if (len == 0)
214     return FALSE;
215
216   /* First character can only be a lower case ASCII character */
217   if (!g_ascii_isalpha (name[0]) || !g_ascii_islower (name[0]))
218     return FALSE;
219
220   /* All following characters can only by:
221    * either a lower case ASCII character
222    * or an hyphen
223    * or a numeric */
224   for (i = 1; i < len; i++) {
225     /* if uppercase ASCII letter, return */
226     if (g_ascii_isupper (name[i]))
227       return FALSE;
228     /* if a digit, continue */
229     if (g_ascii_isdigit (name[i]))
230       continue;
231     /* if an hyphen, continue */
232     if (name[i] == '-')
233       continue;
234     /* remaining should only be ascii letters */
235     if (!g_ascii_isalpha (name[i]))
236       return FALSE;
237   }
238
239   return TRUE;
240 }
241
242 /**
243  * gst_encoding_target_new:
244  * @name: The name of the target.
245  * @category: (transfer none): The name of the category to which this @target
246  * belongs. For example: #GST_ENCODING_CATEGORY_DEVICE.
247  * @description: (transfer none): A description of #GstEncodingTarget in the
248  * current locale.
249  * @profiles: (transfer none) (element-type Gst.EncodingProfile): A #GList of
250  * #GstEncodingProfile.
251  *
252  * Creates a new #GstEncodingTarget.
253  *
254  * The name and category can only consist of lowercase ASCII letters for the
255  * first character, followed by either lowercase ASCII letters, digits or
256  * hyphens ('-').
257  *
258  * The @category <emphasis>should</emphasis> be one of the existing
259  * well-defined categories, like #GST_ENCODING_CATEGORY_DEVICE, but it
260  * <emphasis>can</emphasis> be a application or user specific category if
261  * needed.
262  *
263  * Since: 0.10.32
264  *
265  * Returns: (transfer full): The newly created #GstEncodingTarget or %NULL if
266  * there was an error.
267  */
268
269 GstEncodingTarget *
270 gst_encoding_target_new (const gchar * name, const gchar * category,
271     const gchar * description, const GList * profiles)
272 {
273   GstEncodingTarget *res;
274
275   g_return_val_if_fail (name != NULL, NULL);
276   g_return_val_if_fail (category != NULL, NULL);
277   g_return_val_if_fail (description != NULL, NULL);
278
279   /* Validate name */
280   if (!validate_name (name))
281     goto invalid_name;
282   if (!validate_name (category))
283     goto invalid_category;
284
285   res = (GstEncodingTarget *) g_object_new (GST_TYPE_ENCODING_TARGET, NULL);
286   res->name = g_strdup (name);
287   res->category = g_strdup (category);
288   res->description = g_strdup (description);
289
290   while (profiles) {
291     GstEncodingProfile *prof = (GstEncodingProfile *) profiles->data;
292
293     res->profiles =
294         g_list_append (res->profiles, gst_encoding_profile_ref (prof));
295     profiles = profiles->next;
296   }
297
298   return res;
299
300 invalid_name:
301   {
302     GST_ERROR ("Invalid name for encoding target : '%s'", name);
303     return NULL;
304   }
305
306 invalid_category:
307   {
308     GST_ERROR ("Invalid name for encoding category : '%s'", category);
309     return NULL;
310   }
311 }
312
313 /**
314  * gst_encoding_target_add_profile:
315  * @target: the #GstEncodingTarget to add a profile to
316  * @profile: (transfer full): the #GstEncodingProfile to add
317  *
318  * Adds the given @profile to the @target. Each added profile must have
319  * a unique name within the profile.
320  *
321  * The @target will steal a reference to the @profile. If you wish to use
322  * the profile after calling this method, you should increase its reference
323  * count.
324  *
325  * Since: 0.10.32
326  *
327  * Returns: %TRUE if the profile was added, else %FALSE.
328  **/
329
330 gboolean
331 gst_encoding_target_add_profile (GstEncodingTarget * target,
332     GstEncodingProfile * profile)
333 {
334   GList *tmp;
335
336   g_return_val_if_fail (GST_IS_ENCODING_TARGET (target), FALSE);
337   g_return_val_if_fail (GST_IS_ENCODING_PROFILE (profile), FALSE);
338
339   /* Make sure profile isn't already controlled by this target */
340   for (tmp = target->profiles; tmp; tmp = tmp->next) {
341     GstEncodingProfile *prof = (GstEncodingProfile *) tmp->data;
342
343     if (!g_strcmp0 (gst_encoding_profile_get_name (profile),
344             gst_encoding_profile_get_name (prof))) {
345       GST_WARNING ("Profile already present in target");
346       return FALSE;
347     }
348   }
349
350   target->profiles = g_list_append (target->profiles, profile);
351
352   return TRUE;
353 }
354
355 static gboolean
356 serialize_stream_profiles (GKeyFile * out, GstEncodingProfile * sprof,
357     const gchar * profilename, guint id)
358 {
359   gchar *sprofgroupname;
360   gchar *tmpc;
361   const GstCaps *format, *restriction;
362   const gchar *preset, *name, *description;
363
364   sprofgroupname = g_strdup_printf ("streamprofile-%s-%d", profilename, id);
365
366   /* Write the parent profile */
367   g_key_file_set_value (out, sprofgroupname, "parent", profilename);
368
369   g_key_file_set_value (out, sprofgroupname, "type",
370       gst_encoding_profile_get_type_nick (sprof));
371
372   format = gst_encoding_profile_get_format (sprof);
373   if (format) {
374     tmpc = gst_caps_to_string (format);
375     g_key_file_set_value (out, sprofgroupname, "format", tmpc);
376     g_free (tmpc);
377   }
378
379   name = gst_encoding_profile_get_name (sprof);
380   if (name)
381     g_key_file_set_string (out, sprofgroupname, "name", name);
382
383   description = gst_encoding_profile_get_description (sprof);
384   if (description)
385     g_key_file_set_string (out, sprofgroupname, "description", description);
386
387   preset = gst_encoding_profile_get_preset (sprof);
388   if (preset)
389     g_key_file_set_string (out, sprofgroupname, "preset", preset);
390
391   restriction = gst_encoding_profile_get_restriction (sprof);
392   if (restriction) {
393     tmpc = gst_caps_to_string (restriction);
394     g_key_file_set_value (out, sprofgroupname, "restriction", tmpc);
395     g_free (tmpc);
396   }
397   g_key_file_set_integer (out, sprofgroupname, "presence",
398       gst_encoding_profile_get_presence (sprof));
399
400   if (GST_IS_ENCODING_VIDEO_PROFILE (sprof)) {
401     GstEncodingVideoProfile *vp = (GstEncodingVideoProfile *) sprof;
402
403     g_key_file_set_integer (out, sprofgroupname, "pass",
404         gst_encoding_video_profile_get_pass (vp));
405     g_key_file_set_boolean (out, sprofgroupname, "variableframerate",
406         gst_encoding_video_profile_get_variableframerate (vp));
407   }
408
409   g_free (sprofgroupname);
410   return TRUE;
411 }
412
413 static gchar *
414 get_locale (void)
415 {
416   const char *loc = NULL;
417   gchar *ret;
418
419 #ifdef ENABLE_NLS
420 #if defined(LC_MESSAGES)
421   loc = setlocale (LC_MESSAGES, NULL);
422   GST_LOG ("LC_MESSAGES: %s", GST_STR_NULL (loc));
423 #elif defined(LC_ALL)
424   loc = setlocale (LC_ALL, NULL);
425   GST_LOG ("LC_ALL: %s", GST_STR_NULL (loc));
426 #else
427   GST_LOG ("Neither LC_ALL nor LC_MESSAGES defined");
428 #endif
429 #else /* !ENABLE_NLS */
430   GST_LOG ("i18n disabled");
431 #endif
432
433   if (loc == NULL || g_ascii_strncasecmp (loc, "en", 2) == 0)
434     return NULL;
435
436   /* en_GB.UTF-8 => en */
437   ret = g_ascii_strdown (loc, -1);
438   ret = g_strcanon (ret, "abcdefghijklmnopqrstuvwxyz", '\0');
439   GST_LOG ("using locale: %s", ret);
440   return ret;
441 }
442
443 /* Serialize the top-level profiles
444  * Note: They don't have to be containerprofiles */
445 static gboolean
446 serialize_encoding_profile (GKeyFile * out, GstEncodingProfile * prof)
447 {
448   gchar *profgroupname;
449   const GList *tmp;
450   guint i;
451   const gchar *profname, *profdesc, *profpreset, *proftype;
452   const GstCaps *profformat, *profrestriction;
453
454   profname = gst_encoding_profile_get_name (prof);
455   profdesc = gst_encoding_profile_get_description (prof);
456   profformat = gst_encoding_profile_get_format (prof);
457   profpreset = gst_encoding_profile_get_preset (prof);
458   proftype = gst_encoding_profile_get_type_nick (prof);
459   profrestriction = gst_encoding_profile_get_restriction (prof);
460
461   profgroupname = g_strdup_printf ("profile-%s", profname);
462
463   g_key_file_set_string (out, profgroupname, "name", profname);
464
465   g_key_file_set_value (out, profgroupname, "type",
466       gst_encoding_profile_get_type_nick (prof));
467
468   if (profdesc) {
469     gchar *locale;
470
471     locale = get_locale ();
472     if (locale != NULL) {
473       g_key_file_set_locale_string (out, profgroupname, "description",
474           locale, profdesc);
475       g_free (locale);
476     } else {
477       g_key_file_set_string (out, profgroupname, "description", profdesc);
478     }
479   }
480   if (profformat) {
481     gchar *tmpc = gst_caps_to_string (profformat);
482     g_key_file_set_string (out, profgroupname, "format", tmpc);
483     g_free (tmpc);
484   }
485   if (profpreset)
486     g_key_file_set_string (out, profgroupname, "preset", profpreset);
487
488   /* stream profiles */
489   if (GST_IS_ENCODING_CONTAINER_PROFILE (prof)) {
490     for (tmp =
491         gst_encoding_container_profile_get_profiles
492         (GST_ENCODING_CONTAINER_PROFILE (prof)), i = 0; tmp;
493         tmp = tmp->next, i++) {
494       GstEncodingProfile *sprof = (GstEncodingProfile *) tmp->data;
495
496       if (!serialize_stream_profiles (out, sprof, profname, i))
497         return FALSE;
498     }
499   }
500   g_free (profgroupname);
501   return TRUE;
502 }
503
504 static gboolean
505 serialize_target (GKeyFile * out, GstEncodingTarget * target)
506 {
507   GList *tmp;
508
509   g_key_file_set_string (out, GST_ENCODING_TARGET_HEADER, "name", target->name);
510   g_key_file_set_string (out, GST_ENCODING_TARGET_HEADER, "category",
511       target->category);
512   g_key_file_set_string (out, GST_ENCODING_TARGET_HEADER, "description",
513       target->description);
514
515   for (tmp = target->profiles; tmp; tmp = tmp->next) {
516     GstEncodingProfile *prof = (GstEncodingProfile *) tmp->data;
517     if (!serialize_encoding_profile (out, prof))
518       return FALSE;
519   }
520
521   return TRUE;
522 }
523
524 /**
525  * parse_encoding_profile:
526  * @in: a #GKeyFile
527  * @parentprofilename: the parent profile name (including 'profile-' or 'streamprofile-' header)
528  * @profilename: the profile name group to parse
529  * @nbgroups: the number of top-level groups
530  * @groups: the top-level groups
531  */
532 static GstEncodingProfile *
533 parse_encoding_profile (GKeyFile * in, gchar * parentprofilename,
534     gchar * profilename, gsize nbgroups, gchar ** groups)
535 {
536   GstEncodingProfile *sprof = NULL;
537   gchar **parent;
538   gchar *proftype, *format, *preset, *restriction, *pname, *description;
539   GstCaps *formatcaps = NULL;
540   GstCaps *restrictioncaps = NULL;
541   gboolean variableframerate;
542   gint pass, presence;
543   gsize i, nbencprofiles;
544
545   GST_DEBUG ("parentprofilename : %s , profilename : %s",
546       parentprofilename, profilename);
547
548   if (parentprofilename) {
549     gboolean found = FALSE;
550
551     parent =
552         g_key_file_get_string_list (in, profilename, "parent",
553         &nbencprofiles, NULL);
554     if (!parent || !nbencprofiles) {
555       return NULL;
556     }
557
558     /* Check if this streamprofile is used in <profilename> */
559     for (i = 0; i < nbencprofiles; i++) {
560       if (!g_strcmp0 (parent[i], parentprofilename)) {
561         found = TRUE;
562         break;
563       }
564     }
565     g_strfreev (parent);
566
567     if (!found) {
568       GST_DEBUG ("Stream profile '%s' isn't used in profile '%s'",
569           profilename, parentprofilename);
570       return NULL;
571     }
572   }
573
574   pname = g_key_file_get_value (in, profilename, "name", NULL);
575
576   /* First try to get localized description */
577   {
578     gchar *locale;
579
580     locale = get_locale ();
581     if (locale != NULL) {
582       /* will try to fall back to untranslated string if no translation found */
583       description = g_key_file_get_locale_string (in, profilename,
584           "description", locale, NULL);
585       g_free (locale);
586     } else {
587       description =
588           g_key_file_get_string (in, profilename, "description", NULL);
589     }
590   }
591
592   /* Note: a missing description is normal for non-container profiles */
593   if (description == NULL) {
594     GST_LOG ("Missing 'description' field for streamprofile %s", profilename);
595   }
596
597   /* Parse the remaining fields */
598   proftype = g_key_file_get_value (in, profilename, "type", NULL);
599   if (!proftype) {
600     GST_WARNING ("Missing 'type' field for streamprofile %s", profilename);
601     return NULL;
602   }
603
604   format = g_key_file_get_value (in, profilename, "format", NULL);
605   if (format) {
606     formatcaps = gst_caps_from_string (format);
607     g_free (format);
608   }
609
610   preset = g_key_file_get_value (in, profilename, "preset", NULL);
611
612   restriction = g_key_file_get_value (in, profilename, "restriction", NULL);
613   if (restriction) {
614     restrictioncaps = gst_caps_from_string (restriction);
615     g_free (restriction);
616   }
617
618   presence = g_key_file_get_integer (in, profilename, "presence", NULL);
619   pass = g_key_file_get_integer (in, profilename, "pass", NULL);
620   variableframerate =
621       g_key_file_get_boolean (in, profilename, "variableframerate", NULL);
622
623   /* Build the streamprofile ! */
624   if (!g_strcmp0 (proftype, "container")) {
625     GstEncodingProfile *pprof;
626
627     sprof =
628         (GstEncodingProfile *) gst_encoding_container_profile_new (pname,
629         description, formatcaps, preset);
630     /* Now look for the stream profiles */
631     for (i = 0; i < nbgroups; i++) {
632       if (!g_ascii_strncasecmp (groups[i], "streamprofile-", 13)) {
633         pprof = parse_encoding_profile (in, pname, groups[i], nbgroups, groups);
634         if (pprof) {
635           gst_encoding_container_profile_add_profile (
636               (GstEncodingContainerProfile *) sprof, pprof);
637         }
638       }
639     }
640   } else if (!g_strcmp0 (proftype, "video")) {
641     sprof =
642         (GstEncodingProfile *) gst_encoding_video_profile_new (formatcaps,
643         preset, restrictioncaps, presence);
644     gst_encoding_video_profile_set_variableframerate ((GstEncodingVideoProfile
645             *) sprof, variableframerate);
646     gst_encoding_video_profile_set_pass ((GstEncodingVideoProfile *) sprof,
647         pass);
648   } else if (!g_strcmp0 (proftype, "audio")) {
649     sprof =
650         (GstEncodingProfile *) gst_encoding_audio_profile_new (formatcaps,
651         preset, restrictioncaps, presence);
652   } else
653     GST_ERROR ("Unknown profile format '%s'", proftype);
654
655   if (restrictioncaps)
656     gst_caps_unref (restrictioncaps);
657   if (formatcaps)
658     gst_caps_unref (formatcaps);
659
660   if (pname)
661     g_free (pname);
662   if (description)
663     g_free (description);
664   if (preset)
665     g_free (preset);
666   if (proftype)
667     g_free (proftype);
668
669   return sprof;
670 }
671
672 static GstEncodingTarget *
673 parse_keyfile (GKeyFile * in, gchar * targetname, gchar * categoryname,
674     gchar * description)
675 {
676   GstEncodingTarget *res = NULL;
677   GstEncodingProfile *prof;
678   gchar **groups;
679   gsize i, nbgroups;
680
681   res = gst_encoding_target_new (targetname, categoryname, description, NULL);
682
683   /* Figure out the various profiles */
684   groups = g_key_file_get_groups (in, &nbgroups);
685   for (i = 0; i < nbgroups; i++) {
686     if (!g_ascii_strncasecmp (groups[i], "profile-", 8)) {
687       prof = parse_encoding_profile (in, NULL, groups[i], nbgroups, groups);
688       if (prof)
689         gst_encoding_target_add_profile (res, prof);
690     }
691   }
692
693   g_strfreev (groups);
694
695   if (targetname)
696     g_free (targetname);
697   if (categoryname)
698     g_free (categoryname);
699   if (description)
700     g_free (description);
701
702   return res;
703 }
704
705 static GKeyFile *
706 load_file_and_read_header (const gchar * path, gchar ** targetname,
707     gchar ** categoryname, gchar ** description, GError ** error)
708 {
709   GKeyFile *in;
710   gboolean res;
711   GError *key_error = NULL;
712
713   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
714
715   in = g_key_file_new ();
716
717   GST_DEBUG ("path:%s", path);
718
719   res =
720       g_key_file_load_from_file (in, path,
721       G_KEY_FILE_KEEP_COMMENTS | G_KEY_FILE_KEEP_TRANSLATIONS, &key_error);
722   if (!res || key_error != NULL)
723     goto load_error;
724
725   key_error = NULL;
726   *targetname =
727       g_key_file_get_value (in, GST_ENCODING_TARGET_HEADER, "name", &key_error);
728   if (!*targetname)
729     goto empty_name;
730
731   *categoryname =
732       g_key_file_get_value (in, GST_ENCODING_TARGET_HEADER, "category", NULL);
733   *description =
734       g_key_file_get_value (in, GST_ENCODING_TARGET_HEADER, "description",
735       NULL);
736
737   return in;
738
739 load_error:
740   {
741     GST_WARNING ("Unable to read GstEncodingTarget file %s: %s",
742         path, key_error->message);
743     g_propagate_error (error, key_error);
744     g_key_file_free (in);
745     return NULL;
746   }
747
748 empty_name:
749   {
750     GST_WARNING ("Wrong header in file %s: %s", path, key_error->message);
751     g_propagate_error (error, key_error);
752     g_key_file_free (in);
753     return NULL;
754   }
755 }
756
757 /**
758  * gst_encoding_target_load_from_file:
759  * @filepath: The file location to load the #GstEncodingTarget from
760  * @error: If an error occured, this field will be filled in.
761  *
762  * Opens the provided file and returns the contained #GstEncodingTarget.
763  *
764  * Since: 0.10.32
765  *
766  * Returns: (transfer full): The #GstEncodingTarget contained in the file, else
767  * %NULL
768  */
769
770 GstEncodingTarget *
771 gst_encoding_target_load_from_file (const gchar * filepath, GError ** error)
772 {
773   GKeyFile *in;
774   gchar *targetname, *categoryname, *description;
775   GstEncodingTarget *res = NULL;
776
777   in = load_file_and_read_header (filepath, &targetname, &categoryname,
778       &description, error);
779   if (!in)
780     goto beach;
781
782   res = parse_keyfile (in, targetname, categoryname, description);
783
784   g_key_file_free (in);
785
786 beach:
787   return res;
788 }
789
790 /*
791  * returned list contents must be freed
792  */
793 static GList *
794 get_matching_filenames (gchar * path, gchar * filename)
795 {
796   GList *res = NULL;
797   GDir *topdir;
798   const gchar *subdirname;
799
800   topdir = g_dir_open (path, 0, NULL);
801   if (G_UNLIKELY (topdir == NULL))
802     return NULL;
803
804   while ((subdirname = g_dir_read_name (topdir))) {
805     gchar *ltmp = g_build_filename (path, subdirname, NULL);
806
807     if (g_file_test (ltmp, G_FILE_TEST_IS_DIR)) {
808       gchar *tmp = g_build_filename (path, subdirname, filename, NULL);
809       /* Test to see if we have a file named like that in that directory */
810       if (g_file_test (tmp, G_FILE_TEST_EXISTS))
811         res = g_list_append (res, tmp);
812       else
813         g_free (tmp);
814     }
815     g_free (ltmp);
816   }
817
818   g_dir_close (topdir);
819
820   return res;
821 }
822
823 static GstEncodingTarget *
824 gst_encoding_target_subload (gchar * path, const gchar * category,
825     gchar * lfilename, GError ** error)
826 {
827   GstEncodingTarget *target = NULL;
828
829   if (category) {
830     gchar *filename;
831
832     filename = g_build_filename (path, category, lfilename, NULL);
833     target = gst_encoding_target_load_from_file (filename, error);
834     g_free (filename);
835   } else {
836     GList *tmp, *tries = get_matching_filenames (path, lfilename);
837
838     /* Try to find a file named %s.gstprofile in any subdirectories */
839     for (tmp = tries; tmp; tmp = tmp->next) {
840       target = gst_encoding_target_load_from_file ((gchar *) tmp->data, NULL);
841       if (target)
842         break;
843     }
844     g_list_foreach (tries, (GFunc) g_free, NULL);
845     if (tries)
846       g_list_free (tries);
847   }
848
849   return target;
850 }
851
852 /**
853  * gst_encoding_target_load:
854  * @name: the name of the #GstEncodingTarget to load.
855  * @category: (allow-none): the name of the target category, like
856  * #GST_ENCODING_CATEGORY_DEVICE. Can be %NULL
857  * @error: If an error occured, this field will be filled in.
858  *
859  * Searches for the #GstEncodingTarget with the given name, loads it
860  * and returns it.
861  *
862  * If the category name is specified only targets from that category will be
863  * searched for.
864  *
865  * Since: 0.10.32
866  *
867  * Returns: (transfer full): The #GstEncodingTarget if available, else %NULL.
868  */
869 GstEncodingTarget *
870 gst_encoding_target_load (const gchar * name, const gchar * category,
871     GError ** error)
872 {
873   gchar *lfilename, *tldir;
874   GstEncodingTarget *target = NULL;
875
876   g_return_val_if_fail (name != NULL, NULL);
877
878   if (!validate_name (name))
879     goto invalid_name;
880
881   if (category && !validate_name (category))
882     goto invalid_category;
883
884   lfilename = g_strdup_printf ("%s" GST_ENCODING_TARGET_SUFFIX, name);
885
886   /* Try from local profiles */
887   tldir =
888       g_build_filename (g_get_home_dir (), ".gstreamer-" GST_MAJORMINOR,
889       GST_ENCODING_TARGET_DIRECTORY, NULL);
890   target = gst_encoding_target_subload (tldir, category, lfilename, error);
891   g_free (tldir);
892
893   if (target == NULL) {
894     /* Try from system-wide profiles */
895     tldir =
896         g_build_filename (GST_DATADIR, "gstreamer-" GST_MAJORMINOR,
897         GST_ENCODING_TARGET_DIRECTORY, NULL);
898     target = gst_encoding_target_subload (tldir, category, lfilename, error);
899     g_free (tldir);
900   }
901
902   g_free (lfilename);
903
904   return target;
905
906 invalid_name:
907   {
908     GST_ERROR ("Invalid name for encoding target : '%s'", name);
909     return NULL;
910   }
911 invalid_category:
912   {
913     GST_ERROR ("Invalid name for encoding category : '%s'", category);
914     return NULL;
915   }
916 }
917
918 /**
919  * gst_encoding_target_save_to_file:
920  * @target: a #GstEncodingTarget
921  * @filepath: the location to store the @target at.
922  * @error: If an error occured, this field will be filled in.
923  *
924  * Saves the @target to the provided file location.
925  *
926  * Since: 0.10.32
927  *
928  * Returns: %TRUE if the target was correctly saved, else %FALSE.
929  **/
930
931 gboolean
932 gst_encoding_target_save_to_file (GstEncodingTarget * target,
933     const gchar * filepath, GError ** error)
934 {
935   GKeyFile *out;
936   gchar *data;
937   gsize data_size;
938
939   g_return_val_if_fail (GST_IS_ENCODING_TARGET (target), FALSE);
940   g_return_val_if_fail (filepath != NULL, FALSE);
941
942   /* FIXME : Check filepath is valid and writable
943    * FIXME : Strip out profiles already present in system target */
944
945   /* Get unique name... */
946
947   /* Create output GKeyFile */
948   out = g_key_file_new ();
949
950   if (!serialize_target (out, target))
951     goto serialize_failure;
952
953   if (!(data = g_key_file_to_data (out, &data_size, error)))
954     goto convert_failed;
955
956   if (!g_file_set_contents (filepath, data, data_size, error))
957     goto write_failed;
958
959   g_key_file_free (out);
960   g_free (data);
961
962   return TRUE;
963
964 serialize_failure:
965   {
966     GST_ERROR ("Failure serializing target");
967     g_key_file_free (out);
968     return FALSE;
969   }
970
971 convert_failed:
972   {
973     GST_ERROR ("Failure converting keyfile: %s", (*error)->message);
974     g_key_file_free (out);
975     g_free (data);
976     return FALSE;
977   }
978
979 write_failed:
980   {
981     GST_ERROR ("Unable to write file %s: %s", filepath, (*error)->message);
982     g_key_file_free (out);
983     g_free (data);
984     return FALSE;
985   }
986 }
987
988 /**
989  * gst_encoding_target_save:
990  * @target: a #GstEncodingTarget
991  * @error: If an error occured, this field will be filled in.
992  *
993  * Saves the @target to a default user-local directory.
994  *
995  * Since: 0.10.32
996  *
997  * Returns: %TRUE if the target was correctly saved, else %FALSE.
998  **/
999
1000 gboolean
1001 gst_encoding_target_save (GstEncodingTarget * target, GError ** error)
1002 {
1003   gchar *filename;
1004   gchar *lfilename;
1005   gboolean res;
1006
1007   g_return_val_if_fail (GST_IS_ENCODING_TARGET (target), FALSE);
1008   g_return_val_if_fail (target->category != NULL, FALSE);
1009
1010   lfilename = g_strdup_printf ("%s" GST_ENCODING_TARGET_SUFFIX, target->name);
1011   filename =
1012       g_build_filename (g_get_home_dir (), ".gstreamer-" GST_MAJORMINOR,
1013       GST_ENCODING_TARGET_DIRECTORY, target->category, lfilename, NULL);
1014   g_free (lfilename);
1015
1016   res = gst_encoding_target_save_to_file (target, filename, error);
1017   g_free (filename);
1018
1019   return TRUE;
1020 }
1021
1022 static GList *
1023 get_categories (gchar * path)
1024 {
1025   GList *res = NULL;
1026   GDir *topdir;
1027   const gchar *subdirname;
1028
1029   topdir = g_dir_open (path, 0, NULL);
1030   if (G_UNLIKELY (topdir == NULL))
1031     return NULL;
1032
1033   while ((subdirname = g_dir_read_name (topdir))) {
1034     gchar *ltmp = g_build_filename (path, subdirname, NULL);
1035
1036     if (g_file_test (ltmp, G_FILE_TEST_IS_DIR)) {
1037       res = g_list_append (res, (gpointer) g_strdup (subdirname));
1038     }
1039     g_free (ltmp);
1040   }
1041
1042   g_dir_close (topdir);
1043
1044   return res;
1045 }
1046
1047 /**
1048  * gst_encoding_list_available_categories:
1049  *
1050  * Lists all #GstEncodingTarget categories present on disk.
1051  *
1052  * Returns: (transfer full) (element-type gchar*): A list
1053  * of #GstEncodingTarget categories.
1054  *
1055  * Since: 0.10.32
1056  */
1057 GList *
1058 gst_encoding_list_available_categories (void)
1059 {
1060   GList *res = NULL;
1061   GList *tmp1, *tmp2;
1062   gchar *topdir;
1063
1064   /* First try user-local categories */
1065   topdir = g_build_filename (g_get_home_dir (), ".gstreamer-" GST_MAJORMINOR,
1066       GST_ENCODING_TARGET_DIRECTORY, NULL);
1067   res = get_categories (topdir);
1068   g_free (topdir);
1069
1070   /* Extend with system-wide categories */
1071   topdir = g_build_filename (GST_DATADIR, "gstreamer-" GST_MAJORMINOR,
1072       GST_ENCODING_TARGET_DIRECTORY, NULL);
1073   tmp1 = get_categories (topdir);
1074   g_free (topdir);
1075
1076   for (tmp2 = tmp1; tmp2; tmp2 = tmp2->next) {
1077     gchar *name = (gchar *) tmp2->data;
1078     if (!g_list_find_custom (res, name, (GCompareFunc) g_strcmp0))
1079       res = g_list_append (res, (gpointer) name);
1080     else
1081       g_free (name);
1082   }
1083   g_free (tmp1);
1084
1085   return res;
1086 }
1087
1088 static inline GList *
1089 sub_get_all_targets (gchar * subdir)
1090 {
1091   GList *res = NULL;
1092   const gchar *filename;
1093   GDir *dir;
1094   GstEncodingTarget *target;
1095
1096   dir = g_dir_open (subdir, 0, NULL);
1097   if (G_UNLIKELY (dir == NULL))
1098     return NULL;
1099
1100   while ((filename = g_dir_read_name (dir))) {
1101     gchar *fullname;
1102
1103     /* Only try files ending with .gstprofile */
1104     if (!g_str_has_suffix (filename, GST_ENCODING_TARGET_SUFFIX))
1105       continue;
1106
1107     fullname = g_build_filename (subdir, filename, NULL);
1108     target = gst_encoding_target_load_from_file (fullname, NULL);
1109     if (target) {
1110       res = g_list_append (res, target);
1111     } else
1112       GST_WARNING ("Failed to get a target from %s", fullname);
1113     g_free (fullname);
1114   }
1115   g_dir_close (dir);
1116
1117   return res;
1118 }
1119
1120 static inline GList *
1121 get_all_targets (gchar * topdir, const gchar * categoryname)
1122 {
1123   GList *res = NULL;
1124
1125   if (categoryname) {
1126     gchar *subdir = g_build_filename (topdir, categoryname, NULL);
1127     /* Try to open the directory */
1128     res = sub_get_all_targets (subdir);
1129     g_free (subdir);
1130   } else {
1131     const gchar *subdirname;
1132     GDir *dir = g_dir_open (topdir, 0, NULL);
1133
1134     if (G_UNLIKELY (dir == NULL))
1135       return NULL;
1136
1137     while ((subdirname = g_dir_read_name (dir))) {
1138       gchar *ltmp = g_build_filename (topdir, subdirname, NULL);
1139
1140       if (g_file_test (ltmp, G_FILE_TEST_IS_DIR)) {
1141         res = g_list_concat (res, sub_get_all_targets (ltmp));
1142       }
1143       g_free (ltmp);
1144     }
1145     g_dir_close (dir);
1146   }
1147
1148   return res;
1149 }
1150
1151 static guint
1152 compare_targets (const GstEncodingTarget * ta, const GstEncodingTarget * tb)
1153 {
1154   if (!g_strcmp0 (ta->name, tb->name)
1155       && !g_strcmp0 (ta->category, tb->category))
1156     return -1;
1157
1158   return 0;
1159 }
1160
1161 /**
1162  * gst_encoding_list_all_targets:
1163  * @categoryname: (allow-none): The category, for ex: #GST_ENCODING_CATEGORY_DEVICE.
1164  * Can be %NULL.
1165  *
1166  * List all available #GstEncodingTarget for the specified category, or all categories
1167  * if @categoryname is %NULL.
1168  *
1169  * Returns: (transfer full) (element-type GstEncodingTarget): The list of #GstEncodingTarget
1170  *
1171  * Since: 0.10.32
1172  */
1173 GList *
1174 gst_encoding_list_all_targets (const gchar * categoryname)
1175 {
1176   GList *res;
1177   GList *tmp1, *tmp2;
1178   gchar *topdir;
1179
1180   /* Get user-locals */
1181   topdir = g_build_filename (g_get_home_dir (), ".gstreamer-" GST_MAJORMINOR,
1182       GST_ENCODING_TARGET_DIRECTORY, NULL);
1183   res = get_all_targets (topdir, categoryname);
1184   g_free (topdir);
1185
1186   /* Get system-wide */
1187   topdir = g_build_filename (GST_DATADIR, "gstreamer-" GST_MAJORMINOR,
1188       GST_ENCODING_TARGET_DIRECTORY, NULL);
1189   tmp1 = get_all_targets (topdir, categoryname);
1190   g_free (topdir);
1191
1192   /* Merge system-wide targets */
1193   /* FIXME : We should merge the system-wide profiles into the user-locals
1194    * instead of stopping at identical target names */
1195   for (tmp2 = tmp1; tmp2; tmp2 = tmp2->next) {
1196     GstEncodingTarget *target = (GstEncodingTarget *) tmp2->data;
1197     if (g_list_find_custom (res, target, (GCompareFunc) compare_targets))
1198       gst_encoding_target_unref (target);
1199     else
1200       res = g_list_append (res, target);
1201   }
1202   g_list_free (tmp1);
1203
1204   return res;
1205 }