ges-project: Surface a meaningful error when no suitable formatter.
[platform/upstream/gstreamer.git] / ges / ges-project.c
1 /* GStreamer Editing Services
2  *
3  * Copyright (C) <2012> Thibault Saunier <thibault.saunier@collabora.com>
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  * SECTION: gesproject
22  * @short_description: A GESAsset that is used to manage projects
23  *
24  * The #GESProject is used to control a set of #GESAsset and is a
25  * #GESAsset with #GES_TYPE_TIMELINE as @extractable_type itself. That
26  * means that you can extract #GESTimeline from a project as followed:
27  *
28  * |[
29  *  GESProject *project;
30  *  GESTimeline *timeline;
31  *
32  *  project = ges_project_new ("file:///path/to/a/valid/project/uri");
33  *
34  *  // Here you can connect to the various signal to get more infos about
35  *  // what is happening and recover from errors if possible
36  *  ...
37  *
38  *  timeline = ges_asset_extract (GES_ASSET (project));
39  * ]|
40  *
41  * The #GESProject class offers a higher level API to handle #GESAsset-s.
42  * It lets you request new asset, and it informs you about new assets through
43  * a set of signals. Also it handles problem such as missing files/missing
44  * #GstElement and lets you try to recover from those.
45  */
46 #include "ges.h"
47 #include "ges-internal.h"
48
49 static GPtrArray *new_paths = NULL;
50 static GHashTable *tried_uris = NULL;
51
52 /* TODO We should rely on both extractable_type and @id to identify
53  * a Asset, not only @id
54  */
55 G_DEFINE_TYPE (GESProject, ges_project, GES_TYPE_ASSET);
56
57 struct _GESProjectPrivate
58 {
59   GHashTable *assets;
60   /* Set of asset ID being loaded */
61   GHashTable *loading_assets;
62   GHashTable *loaded_with_error;
63   GESAsset *formatter_asset;
64
65   GList *formatters;
66
67   gchar *uri;
68
69   GList *encoding_profiles;
70 };
71
72 typedef struct EmitLoadedInIdle
73 {
74   GESProject *project;
75   GESTimeline *timeline;
76 } EmitLoadedInIdle;
77
78 enum
79 {
80   LOADED_SIGNAL,
81   ERROR_LOADING_ASSET,
82   ASSET_ADDED_SIGNAL,
83   ASSET_REMOVED_SIGNAL,
84   MISSING_URI_SIGNAL,
85   LAST_SIGNAL
86 };
87
88 static guint _signals[LAST_SIGNAL] = { 0 };
89
90 static guint nb_projects = 0;
91
92 enum
93 {
94   PROP_0,
95   PROP_URI,
96   PROP_LAST,
97 };
98
99 static GParamSpec *_properties[LAST_SIGNAL] = { 0 };
100
101 static gboolean
102 _emit_loaded_in_idle (EmitLoadedInIdle * data)
103 {
104   g_signal_emit (data->project, _signals[LOADED_SIGNAL], 0, data->timeline);
105
106   gst_object_unref (data->project);
107   gst_object_unref (data->timeline);
108   g_slice_free (EmitLoadedInIdle, data);
109
110   return FALSE;
111 }
112
113 static void
114 ges_project_add_formatter (GESProject * project, GESFormatter * formatter)
115 {
116   GESProjectPrivate *priv = GES_PROJECT (project)->priv;
117
118   ges_formatter_set_project (formatter, project);
119   priv->formatters = g_list_append (priv->formatters, formatter);
120
121   gst_object_ref_sink (formatter);
122 }
123
124 static void
125 ges_project_remove_formatter (GESProject * project, GESFormatter * formatter)
126 {
127   GList *tmp;
128   GESProjectPrivate *priv = GES_PROJECT (project)->priv;
129
130   for (tmp = priv->formatters; tmp; tmp = tmp->next) {
131     if (tmp->data == formatter) {
132       gst_object_unref (formatter);
133       priv->formatters = g_list_delete_link (priv->formatters, tmp);
134
135       return;
136     }
137   }
138 }
139
140 static void
141 ges_project_set_uri (GESProject * project, const gchar * uri)
142 {
143   GESProjectPrivate *priv;
144
145   g_return_if_fail (GES_IS_PROJECT (project));
146
147   priv = project->priv;
148   if (priv->uri) {
149     GST_WARNING_OBJECT (project, "Trying to rest URI, this is prohibited");
150
151     return;
152   }
153
154   if (uri == NULL) {
155     GST_LOG_OBJECT (project, "Uri should not be NULL");
156     return;
157   }
158
159   priv->uri = g_strdup (uri);
160
161   /* We use that URI as ID */
162   ges_asset_set_id (GES_ASSET (project), uri);
163
164   return;
165 }
166
167 static gboolean
168 _load_project (GESProject * project, GESTimeline * timeline, GError ** error)
169 {
170   GError *lerr = NULL;
171   GESProjectPrivate *priv;
172   GESFormatter *formatter;
173
174   priv = GES_PROJECT (project)->priv;
175
176   if (priv->uri == NULL) {
177     EmitLoadedInIdle *data = g_slice_new (EmitLoadedInIdle);
178
179     GST_LOG_OBJECT (project, "%s, Loading an empty timeline %s"
180         " as no URI set yet", GST_OBJECT_NAME (timeline),
181         ges_asset_get_id (GES_ASSET (project)));
182
183     data->timeline = gst_object_ref (timeline);
184     data->project = gst_object_ref (project);
185
186     /* Make sure the signal is emitted after the functions ends */
187     g_idle_add ((GSourceFunc) _emit_loaded_in_idle, data);
188     return TRUE;
189   }
190
191   if (priv->formatter_asset == NULL)
192     priv->formatter_asset = _find_formatter_asset_for_id (priv->uri);
193
194   if (priv->formatter_asset == NULL) {
195     lerr = g_error_new (GES_ERROR, 0, "Could not find a suitable formatter");
196     goto failed;
197   }
198
199   formatter = GES_FORMATTER (ges_asset_extract (priv->formatter_asset, &lerr));
200   if (lerr) {
201     GST_WARNING_OBJECT (project, "Could not create the formatter: %s",
202         (*error)->message);
203
204     goto failed;
205   }
206
207   ges_project_add_formatter (GES_PROJECT (project), formatter);
208   ges_formatter_load_from_uri (formatter, timeline, priv->uri, &lerr);
209   if (lerr) {
210     GST_WARNING_OBJECT (project, "Could not load the timeline,"
211         " returning: %s", lerr->message);
212     goto failed;
213   }
214
215   return TRUE;
216
217 failed:
218   if (lerr)
219     g_propagate_error (error, lerr);
220   return FALSE;
221 }
222
223 static gboolean
224 _uri_missing_accumulator (GSignalInvocationHint * ihint, GValue * return_accu,
225     const GValue * handler_return, gpointer data)
226 {
227   const gchar *ret = g_value_get_string (handler_return);
228
229   if (ret) {
230     if (!gst_uri_is_valid (ret)) {
231       GST_INFO ("The uri %s was not valid, can not work with it!", ret);
232       return TRUE;
233     }
234
235     g_value_set_string (return_accu, ret);
236     return FALSE;
237   }
238
239   return TRUE;
240 }
241
242 /* GESAsset vmethod implementation */
243 static GESExtractable *
244 ges_project_extract (GESAsset * project, GError ** error)
245 {
246   GESTimeline *timeline = g_object_new (GES_TYPE_TIMELINE, NULL);
247
248   ges_extractable_set_asset (GES_EXTRACTABLE (timeline), GES_ASSET (project));
249   if (_load_project (GES_PROJECT (project), timeline, error))
250     return GES_EXTRACTABLE (timeline);
251
252   gst_object_unref (timeline);
253   return NULL;
254 }
255
256 static void
257 _add_media_new_paths_recursing (const gchar * value)
258 {
259   GFileInfo *info;
260   GFileEnumerator *fenum;
261   GFile *file = g_file_new_for_uri (value);
262
263   if (!(fenum = g_file_enumerate_children (file,
264               "standard::*", G_FILE_QUERY_INFO_NONE, NULL, NULL))) {
265     GST_INFO ("%s is not a folder", value);
266
267     goto done;
268   }
269
270   GST_INFO ("Adding folder: %s", value);
271   g_ptr_array_add (new_paths, g_strdup (value));
272   for (info = g_file_enumerator_next_file (fenum, NULL, NULL);
273       info; info = g_file_enumerator_next_file (fenum, NULL, NULL)) {
274
275     if (g_file_info_get_file_type (info) == G_FILE_TYPE_DIRECTORY) {
276       GFile *f = g_file_enumerator_get_child (fenum, info);
277       gchar *uri = g_file_get_uri (f);
278
279       _add_media_new_paths_recursing (uri);
280       gst_object_unref (f);
281       g_free (uri);
282     }
283   }
284
285 done:
286   gst_object_unref (file);
287   if (fenum)
288     gst_object_unref (fenum);
289 }
290
291 gboolean
292 ges_add_missing_uri_relocation_uri (const gchar * uri, gboolean recurse)
293 {
294   g_return_val_if_fail (gst_uri_is_valid (uri), FALSE);
295
296   if (new_paths == NULL)
297     new_paths = g_ptr_array_new_with_free_func (g_free);
298
299   if (recurse)
300     _add_media_new_paths_recursing (uri);
301   else
302     g_ptr_array_add (new_paths, g_strdup (uri));
303
304   return TRUE;
305 }
306
307 static gchar *
308 ges_missing_uri_default (GESProject * self, GError * error,
309     GESAsset * wrong_asset)
310 {
311   guint i;
312   const gchar *old_uri = ges_asset_get_id (wrong_asset);
313
314   if (new_paths == NULL)
315     return NULL;
316
317   if (tried_uris == NULL)
318     tried_uris = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
319
320   for (i = 0; i < new_paths->len; i++) {
321     gchar *basename, *res;
322
323     basename = g_path_get_basename (old_uri);
324     res = g_build_filename (new_paths->pdata[i], basename, NULL);
325     g_free (basename);
326
327     if (g_strcmp0 (old_uri, res) == 0) {
328       g_hash_table_add (tried_uris, res);
329     } else if (g_hash_table_lookup (tried_uris, res)) {
330       GST_DEBUG_OBJECT (self, "File already tried: %s", res);
331       g_free (res);
332     } else {
333       g_hash_table_add (tried_uris, g_strdup (res));
334       GST_DEBUG_OBJECT (self, "Trying: %s\n", res);
335       return res;
336     }
337   }
338
339   return NULL;
340 }
341
342 static void
343 ges_uri_assets_validate_uri (const gchar * nid)
344 {
345   if (tried_uris)
346     g_hash_table_remove (tried_uris, nid);
347 }
348
349 /* GObject vmethod implementation */
350 static void
351 _dispose (GObject * object)
352 {
353   GList *tmp;
354   GESProjectPrivate *priv = GES_PROJECT (object)->priv;
355
356   if (priv->assets)
357     g_hash_table_unref (priv->assets);
358   if (priv->loading_assets)
359     g_hash_table_unref (priv->loading_assets);
360   if (priv->loaded_with_error)
361     g_hash_table_unref (priv->loaded_with_error);
362   if (priv->formatter_asset)
363     gst_object_unref (priv->formatter_asset);
364
365   for (tmp = priv->formatters; tmp; tmp = tmp->next)
366     ges_project_remove_formatter (GES_PROJECT (object), tmp->data);;
367
368   G_OBJECT_CLASS (ges_project_parent_class)->dispose (object);
369 }
370
371 static void
372 _finalize (GObject * object)
373 {
374   GESProjectPrivate *priv = GES_PROJECT (object)->priv;
375
376   if (priv->uri)
377     g_free (priv->uri);
378
379   G_OBJECT_CLASS (ges_project_parent_class)->finalize (object);
380 }
381
382 static void
383 _get_property (GESProject * project, guint property_id,
384     GValue * value, GParamSpec * pspec)
385 {
386   GESProjectPrivate *priv = project->priv;
387
388   switch (property_id) {
389     case PROP_URI:
390       g_value_set_string (value, priv->uri);
391       break;
392     default:
393       G_OBJECT_WARN_INVALID_PROPERTY_ID (project, property_id, pspec);
394   }
395 }
396
397 static void
398 _set_property (GESProject * project, guint property_id,
399     const GValue * value, GParamSpec * pspec)
400 {
401   switch (property_id) {
402     case PROP_URI:
403       project->priv->uri = g_value_dup_string (value);
404       break;
405     default:
406       G_OBJECT_WARN_INVALID_PROPERTY_ID (project, property_id, pspec);
407   }
408 }
409
410 static void
411 ges_project_class_init (GESProjectClass * klass)
412 {
413   GObjectClass *object_class = G_OBJECT_CLASS (klass);
414
415   g_type_class_add_private (klass, sizeof (GESProjectPrivate));
416
417   klass->asset_added = NULL;
418   klass->missing_uri = ges_missing_uri_default;
419   klass->loading_error = NULL;
420   klass->asset_removed = NULL;
421   object_class->get_property = (GObjectGetPropertyFunc) _get_property;
422   object_class->set_property = (GObjectSetPropertyFunc) _set_property;
423
424   /**
425    * GESProject::uri:
426    *
427    * The location of the project to use.
428    */
429   _properties[PROP_URI] = g_param_spec_string ("uri", "URI",
430       "uri of the project", NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY);
431
432   g_object_class_install_properties (object_class, PROP_LAST, _properties);
433
434   /**
435    * GESProject::asset-added:
436    * @formatter: the #GESProject
437    * @asset: The #GESAsset that has been added to @project
438    */
439   _signals[ASSET_ADDED_SIGNAL] =
440       g_signal_new ("asset-added", G_TYPE_FROM_CLASS (klass),
441       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GESProjectClass, asset_added),
442       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1, GES_TYPE_ASSET);
443
444   /**
445    * GESProject::asset-removed:
446    * @formatter: the #GESProject
447    * @asset: The #GESAsset that has been removed from @project
448    */
449   _signals[ASSET_REMOVED_SIGNAL] =
450       g_signal_new ("asset-removed", G_TYPE_FROM_CLASS (klass),
451       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GESProjectClass, asset_removed),
452       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1, GES_TYPE_ASSET);
453
454   /**
455    * GESProject::loaded:
456    * @project: the #GESProject that is done loading a project.
457    * @timeline: The #GESTimeline that complete loading
458    */
459   _signals[LOADED_SIGNAL] =
460       g_signal_new ("loaded", G_TYPE_FROM_CLASS (klass),
461       G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GESProjectClass, loaded),
462       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE,
463       1, GES_TYPE_TIMELINE);
464
465   /**
466    * GESProject::missing-uri:
467    * @project: the #GESProject reporting that a file has moved
468    * @error: The error that happened
469    * @wrong_asset: The asset with the wrong ID, you should us it and its content
470    * only to find out what the new location is.
471    *
472    * |[
473    * static gchar
474    * source_moved_cb (GESProject *project, GError *error, GESAsset *asset_with_error)
475    * {
476    *   return g_strdup ("file:///the/new/uri.ogg");
477    * }
478    *
479    * static int
480    * main (int argc, gchar ** argv)
481    * {
482    *   GESTimeline *timeline;
483    *   GESProject *project = ges_project_new ("file:///some/uri.xges");
484    *
485    *   g_signal_connect (project, "missing-uri", source_moved_cb, NULL);
486    *   timeline = ges_asset_extract (GES_ASSET (project));
487    * }
488    * ]|
489    *
490    * Returns: (transfer full) (allow-none): The new URI of @wrong_asset
491    */
492   _signals[MISSING_URI_SIGNAL] =
493       g_signal_new ("missing-uri", G_TYPE_FROM_CLASS (klass),
494       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GESProjectClass, missing_uri),
495       _uri_missing_accumulator, NULL, g_cclosure_marshal_generic,
496       G_TYPE_STRING, 2, G_TYPE_ERROR, GES_TYPE_ASSET);
497
498   /**
499    * GESProject::error-loading-asset:
500    * @project: the #GESProject on which a problem happend when creted a #GESAsset
501    * @error: The #GError defining the error that accured, might be %NULL
502    * @id: The @id of the asset that failed loading
503    * @extractable_type: The @extractable_type of the asset that
504    * failed loading
505    *
506    * Informs you that a #GESAsset could not be created. In case of
507    * missing GStreamer plugins, the error will be set to #GST_CORE_ERROR
508    * #GST_CORE_ERROR_MISSING_PLUGIN
509    */
510   _signals[ERROR_LOADING_ASSET] =
511       g_signal_new ("error-loading-asset", G_TYPE_FROM_CLASS (klass),
512       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GESProjectClass, loading_error),
513       NULL, NULL, g_cclosure_marshal_generic,
514       G_TYPE_NONE, 3, G_TYPE_ERROR, G_TYPE_STRING, G_TYPE_GTYPE);
515
516   object_class->dispose = _dispose;
517   object_class->finalize = _finalize;
518
519   GES_ASSET_CLASS (klass)->extract = ges_project_extract;
520 }
521
522 static void
523 ges_project_init (GESProject * project)
524 {
525   GESProjectPrivate *priv = project->priv =
526       G_TYPE_INSTANCE_GET_PRIVATE (project,
527       GES_TYPE_PROJECT, GESProjectPrivate);
528
529   priv->uri = NULL;
530   priv->formatters = NULL;
531   priv->formatter_asset = NULL;
532   priv->encoding_profiles = NULL;
533   priv->assets = g_hash_table_new_full (g_str_hash, g_str_equal,
534       g_free, gst_object_unref);
535   priv->loading_assets = g_hash_table_new_full (g_str_hash, g_str_equal,
536       g_free, gst_object_unref);
537   priv->loaded_with_error = g_hash_table_new_full (g_str_hash, g_str_equal,
538       g_free, NULL);
539 }
540
541 static void
542 _send_error_loading_asset (GESProject * project, GESAsset * asset,
543     GError * error)
544 {
545   const gchar *id = ges_asset_get_id (asset);
546
547   GST_DEBUG_OBJECT (project, "Sending error loading asset for %s", id);
548   g_hash_table_remove (project->priv->loading_assets, id);
549   g_hash_table_add (project->priv->loaded_with_error, g_strdup (id));
550   g_signal_emit (project, _signals[ERROR_LOADING_ASSET], 0, error, id,
551       ges_asset_get_extractable_type (asset));
552 }
553
554 gchar *
555 ges_project_try_updating_id (GESProject * project, GESAsset * asset,
556     GError * error)
557 {
558   gchar *new_id = NULL;
559   const gchar *id;
560
561   g_return_val_if_fail (GES_IS_PROJECT (project), NULL);
562   g_return_val_if_fail (GES_IS_ASSET (asset), NULL);
563   g_return_val_if_fail (error, NULL);
564
565   id = ges_asset_get_id (asset);
566   GST_DEBUG_OBJECT (project, "Try to proxy %s", id);
567   if (ges_asset_request_id_update (asset, &new_id, error) == FALSE) {
568     GST_DEBUG_OBJECT (project, "Type: %s can not be proxied for id: %s "
569         "and error: %s", g_type_name (G_OBJECT_TYPE (asset)), id,
570         error->message);
571     _send_error_loading_asset (project, asset, error);
572
573     return NULL;
574   }
575
576   if (new_id == NULL) {
577     GST_DEBUG_OBJECT (project, "Sending 'missing-uri' signal for %s", id);
578     g_signal_emit (project, _signals[MISSING_URI_SIGNAL], 0, error, asset,
579         &new_id);
580   }
581
582   if (new_id) {
583     GST_DEBUG_OBJECT (project, "new id found: %s", new_id);
584     if (!ges_asset_set_proxy (asset, new_id)) {
585       g_free (new_id);
586       new_id = NULL;
587     }
588   } else {
589     GST_DEBUG_OBJECT (project, "No new id found for %s", id);
590   }
591
592   g_hash_table_remove (project->priv->loading_assets, id);
593
594   if (new_id == NULL)
595     _send_error_loading_asset (project, asset, error);
596
597
598   return new_id;
599 }
600
601 static void
602 new_asset_cb (GESAsset * source, GAsyncResult * res, GESProject * project)
603 {
604   GError *error = NULL;
605   gchar *possible_id = NULL;
606   GESAsset *asset = ges_asset_request_finish (res, &error);
607
608   if (error) {
609     possible_id = ges_project_try_updating_id (project, source, error);
610
611     if (possible_id == NULL)
612       return;
613
614     ges_project_create_asset (project, possible_id,
615         ges_asset_get_extractable_type (source));
616
617     g_free (possible_id);
618     g_error_free (error);
619     return;
620   }
621
622   ges_project_add_asset (project, asset);
623   if (asset)
624     gst_object_unref (asset);
625 }
626
627 /**
628  * ges_project_set_loaded:
629  * @project: The #GESProject from which to emit the "project-loaded" signal
630  *
631  * Emits the "loaded" signal. This method should be called by sublasses when
632  * the project is fully loaded.
633  *
634  * Returns: %TRUE if the signale could be emitted %FALSE otherwize
635  */
636 gboolean
637 ges_project_set_loaded (GESProject * project, GESFormatter * formatter)
638 {
639   GST_INFO_OBJECT (project, "Emit project loaded");
640   if (GST_STATE (formatter->timeline) < GST_STATE_PAUSED) {
641     timeline_fill_gaps (formatter->timeline);
642   } else {
643     ges_timeline_commit (formatter->timeline);
644   }
645
646   g_signal_emit (project, _signals[LOADED_SIGNAL], 0, formatter->timeline);
647
648   /* We are now done with that formatter */
649   ges_project_remove_formatter (project, formatter);
650   return TRUE;
651 }
652
653 void
654 ges_project_add_loading_asset (GESProject * project, GType extractable_type,
655     const gchar * id)
656 {
657   GESAsset *asset;
658
659   if ((asset = ges_asset_cache_lookup (extractable_type, id)))
660     g_hash_table_insert (project->priv->loading_assets, g_strdup (id),
661         gst_object_ref (asset));
662 }
663
664 /**************************************
665  *                                    *
666  *         API Implementation         *
667  *                                    *
668  **************************************/
669
670 /**
671  * ges_project_create_asset:
672  * @project: A #GESProject
673  * @id: (allow-none): The id of the asset to create and add to @project
674  * @extractable_type: The #GType of the asset to create
675  *
676  * Create and add a #GESAsset to @project. You should connect to the
677  * "asset-added" signal to get the asset when it finally gets added to
678  * @project
679  *
680  * Returns: %TRUE if the asset started to be added %FALSE it was already
681  * in the project
682  */
683 gboolean
684 ges_project_create_asset (GESProject * project, const gchar * id,
685     GType extractable_type)
686 {
687   g_return_val_if_fail (GES_IS_PROJECT (project), FALSE);
688   g_return_val_if_fail (g_type_is_a (extractable_type, GES_TYPE_EXTRACTABLE),
689       FALSE);
690
691   if (id == NULL)
692     id = g_type_name (extractable_type);
693
694   if (g_hash_table_lookup (project->priv->assets, id) ||
695       g_hash_table_lookup (project->priv->loading_assets, id) ||
696       g_hash_table_lookup (project->priv->loaded_with_error, id))
697     return FALSE;
698
699   /* TODO Add a GCancellable somewhere in our API */
700   ges_asset_request_async (extractable_type, id, NULL,
701       (GAsyncReadyCallback) new_asset_cb, project);
702   ges_project_add_loading_asset (project, extractable_type, id);
703
704   return TRUE;
705 }
706
707 /**
708  * ges_project_create_asset_sync:
709  * @project: A #GESProject
710  * @id: (allow-none): The id of the asset to create and add to @project
711  * @extractable_type: The #GType of the asset to create
712  * @error: A #GError to be set in case of error
713  *
714  * Create and add a #GESAsset to @project. You should connect to the
715  * "asset-added" signal to get the asset when it finally gets added to
716  * @project
717  *
718  * Returns: The newly created #GESAsset
719  */
720 GESAsset *
721 ges_project_create_asset_sync (GESProject * project, const gchar * id,
722     GType extractable_type, GError ** error)
723 {
724   GESAsset *asset;
725   gchar *possible_id = NULL;
726   gboolean retry = TRUE;
727
728   g_return_val_if_fail (GES_IS_PROJECT (project), FALSE);
729   g_return_val_if_fail (g_type_is_a (extractable_type, GES_TYPE_EXTRACTABLE),
730       FALSE);
731
732   if (id == NULL)
733     id = g_type_name (extractable_type);
734
735   if ((asset = g_hash_table_lookup (project->priv->assets, id)))
736     return asset;
737   else if (g_hash_table_lookup (project->priv->loading_assets, id) ||
738       g_hash_table_lookup (project->priv->loaded_with_error, id))
739     return NULL;
740
741   /* TODO Add a GCancellable somewhere in our API */
742   while (retry) {
743
744     if (g_type_is_a (extractable_type, GES_TYPE_URI_CLIP)) {
745       asset = GES_ASSET (ges_uri_clip_asset_request_sync (id, error));
746     } else {
747       asset = ges_asset_request (extractable_type, id, error);
748     }
749
750     if (asset) {
751       retry = FALSE;
752
753       if (possible_id) {
754         g_free (possible_id);
755         ges_uri_assets_validate_uri (id);
756       }
757
758       break;
759     } else {
760       GESAsset *tmpasset;
761
762       tmpasset = ges_asset_cache_lookup (extractable_type, id);
763       possible_id = ges_project_try_updating_id (project, tmpasset, *error);
764
765       if (possible_id == NULL)
766         return NULL;
767
768       if (error)
769         g_clear_error (error);
770
771       id = possible_id;
772     }
773   }
774
775   ges_project_add_asset (project, asset);
776
777   return asset;
778 }
779
780 /**
781  * ges_project_add_asset:
782  * @project: A #GESProject
783  * @asset: (transfer none): A #GESAsset to add to @project
784  *
785  * Adds a #Asset to @project, the project will keep a reference on
786  * @asset.
787  *
788  * Returns: %TRUE if the asset could be added %FALSE it was already
789  * in the project
790  */
791 gboolean
792 ges_project_add_asset (GESProject * project, GESAsset * asset)
793 {
794   g_return_val_if_fail (GES_IS_PROJECT (project), FALSE);
795
796   if (g_hash_table_lookup (project->priv->assets, ges_asset_get_id (asset)))
797     return TRUE;
798
799   g_hash_table_insert (project->priv->assets,
800       g_strdup (ges_asset_get_id (asset)), gst_object_ref (asset));
801
802   g_hash_table_remove (project->priv->loading_assets, ges_asset_get_id (asset));
803   GST_DEBUG_OBJECT (project, "Asset added: %s", ges_asset_get_id (asset));
804   g_signal_emit (project, _signals[ASSET_ADDED_SIGNAL], 0, asset);
805
806   return TRUE;
807 }
808
809 /**
810  * ges_project_remove_asset:
811  * @project: A #GESProject
812  * @asset: (transfer none): A #GESAsset to remove from @project
813  *
814  * remove a @asset to from @project.
815  *
816  * Returns: %TRUE if the asset could be removed %FALSE otherwise
817  */
818 gboolean
819 ges_project_remove_asset (GESProject * project, GESAsset * asset)
820 {
821   gboolean ret;
822
823   g_return_val_if_fail (GES_IS_PROJECT (project), FALSE);
824
825   ret = g_hash_table_remove (project->priv->assets, ges_asset_get_id (asset));
826   g_signal_emit (project, _signals[ASSET_REMOVED_SIGNAL], 0, asset);
827
828   return ret;
829 }
830
831 /**
832  * ges_project_get_asset:
833  * @project: A #GESProject
834  * @id: The id of the asset to retrieve
835  * @extractable_type: The extractable_type of the asset
836  * to retrieve from @object
837  *
838  * Returns: (transfer full) (allow-none): The #GESAsset with
839  * @id or %NULL if no asset with @id as an ID
840  */
841 GESAsset *
842 ges_project_get_asset (GESProject * project, const gchar * id,
843     GType extractable_type)
844 {
845   GESAsset *asset;
846
847   g_return_val_if_fail (GES_IS_PROJECT (project), NULL);
848   g_return_val_if_fail (g_type_is_a (extractable_type, GES_TYPE_EXTRACTABLE),
849       NULL);
850
851   asset = g_hash_table_lookup (project->priv->assets, id);
852
853   if (asset)
854     return gst_object_ref (asset);
855
856   return NULL;
857 }
858
859 /**
860  * ges_project_list_assets:
861  * @project: A #GESProject
862  * @filter: Type of assets to list, #GES_TYPE_EXTRACTABLE will list
863  * all assets
864  *
865  * List all @asset contained in @project filtering per extractable_type
866  * as defined by @filter. It copies the asset and thus will not be updated
867  * in time.
868  *
869  * Returns: (transfer full) (element-type GESAsset): The list of
870  * #GESAsset the object contains
871  */
872 GList *
873 ges_project_list_assets (GESProject * project, GType filter)
874 {
875   GList *ret = NULL;
876   GHashTableIter iter;
877   gpointer key, value;
878
879   g_return_val_if_fail (GES_IS_PROJECT (project), NULL);
880
881   g_hash_table_iter_init (&iter, project->priv->assets);
882   while (g_hash_table_iter_next (&iter, &key, &value)) {
883     if (g_type_is_a (ges_asset_get_extractable_type (GES_ASSET (value)),
884             filter))
885       ret = g_list_append (ret, gst_object_ref (value));
886   }
887
888   return ret;
889 }
890
891 /**
892  * ges_project_save:
893  * @project: A #GESProject to save
894  * @timeline: The #GESTimeline to save, it must have been extracted from @project
895  * @uri: The uri where to save @project and @timeline
896  * @formatter_asset: (allow-none): The formatter asset to use or %NULL. If %NULL,
897  * will try to save in the same format as the one from which the timeline as been loaded
898  * or default to the formatter with highest rank
899  * @overwrite: %TRUE to overwrite file if it exists
900  * @error: (out) (allow-none): An error to be set in case something wrong happens or %NULL
901  *
902  * Save the timeline of @project to @uri. You should make sure that @timeline
903  * is one of the timelines that have been extracted from @project
904  * (using ges_asset_extract (@project);)
905  *
906  * Returns: %TRUE if the project could be save, %FALSE otherwize
907  */
908 gboolean
909 ges_project_save (GESProject * project, GESTimeline * timeline,
910     const gchar * uri, GESAsset * formatter_asset, gboolean overwrite,
911     GError ** error)
912 {
913   GESAsset *tl_asset;
914   gboolean ret = TRUE;
915   GESFormatter *formatter = NULL;
916
917   g_return_val_if_fail (GES_IS_PROJECT (project), FALSE);
918   g_return_val_if_fail (formatter_asset == NULL ||
919       g_type_is_a (ges_asset_get_extractable_type (formatter_asset),
920           GES_TYPE_FORMATTER), FALSE);
921   g_return_val_if_fail ((error == NULL || *error == NULL), FALSE);
922
923   tl_asset = ges_extractable_get_asset (GES_EXTRACTABLE (timeline));
924   if (tl_asset == NULL && project->priv->uri == NULL) {
925     GESAsset *asset = ges_asset_cache_lookup (GES_TYPE_PROJECT, uri);
926
927     if (asset) {
928       GST_WARNING_OBJECT (project, "Trying to save project to %s but we already"
929           "have %" GST_PTR_FORMAT " for that uri, can not save", uri, asset);
930       goto out;
931     }
932
933     GST_DEBUG_OBJECT (project, "Timeline %" GST_PTR_FORMAT " has no asset"
934         " we have no uri set, so setting ourself as asset", timeline);
935
936     ges_extractable_set_asset (GES_EXTRACTABLE (timeline), GES_ASSET (project));
937   } else if (tl_asset != GES_ASSET (project)) {
938     GST_WARNING_OBJECT (project, "Timeline %" GST_PTR_FORMAT
939         " not created by this project can not save", timeline);
940
941     ret = FALSE;
942     goto out;
943   }
944
945   if (formatter_asset == NULL)
946     formatter_asset = gst_object_ref (ges_formatter_get_default ());
947
948   formatter = GES_FORMATTER (ges_asset_extract (formatter_asset, error));
949   if (formatter == NULL) {
950     GST_WARNING_OBJECT (project, "Could not create the formatter %p %s: %s",
951         formatter_asset, ges_asset_get_id (formatter_asset),
952         (error && *error) ? (*error)->message : "Unknown Error");
953
954     ret = FALSE;
955     goto out;
956   }
957
958   ges_project_add_formatter (project, formatter);
959   ret = ges_formatter_save_to_uri (formatter, timeline, uri, overwrite, error);
960   if (ret && project->priv->uri == NULL)
961     ges_project_set_uri (project, uri);
962
963 out:
964   if (formatter_asset)
965     gst_object_unref (formatter_asset);
966   ges_project_remove_formatter (project, formatter);
967
968   return ret;
969 }
970
971 /**
972  * ges_project_new:
973  * @uri: (allow-none): The uri to be set after creating the project.
974  *
975  * Creates a new #GESProject and sets its uri to @uri if provided. Note that
976  * if @uri is not valid or %NULL, the uri of the project will then be set
977  * the first time you save the project. If you then save the project to
978  * other locations, it will never be updated again and the first valid URI is
979  * the URI it will keep refering to.
980  *
981  * Returns: A newly created #GESProject
982  */
983 GESProject *
984 ges_project_new (const gchar * uri)
985 {
986   gchar *id = (gchar *) uri;
987   GESProject *project;
988
989   if (uri == NULL)
990     id = g_strdup_printf ("project-%i", nb_projects++);
991
992   project = GES_PROJECT (ges_asset_request (GES_TYPE_TIMELINE, id, NULL));
993
994   if (project && uri)
995     ges_project_set_uri (project, uri);
996
997   if (uri == NULL)
998     g_free (id);
999
1000   return project;
1001 }
1002
1003 /**
1004  * ges_project_load:
1005  * @project: A #GESProject that has an @uri set already
1006  * @timeline: A blank timeline to load @project into
1007  * @error: (out) (allow-none): An error to be set in case something wrong happens or %NULL
1008  *
1009  * Loads @project into @timeline
1010  *
1011  * Returns: %TRUE if the project could be loaded %FALSE otherwize.
1012  */
1013 gboolean
1014 ges_project_load (GESProject * project, GESTimeline * timeline, GError ** error)
1015 {
1016   g_return_val_if_fail (GES_IS_TIMELINE (timeline), FALSE);
1017   g_return_val_if_fail (GES_IS_PROJECT (project), FALSE);
1018   g_return_val_if_fail (ges_project_get_uri (project), FALSE);
1019   g_return_val_if_fail (timeline->tracks == NULL, FALSE);
1020
1021   if (!_load_project (project, timeline, error))
1022     return FALSE;
1023
1024   ges_extractable_set_asset (GES_EXTRACTABLE (timeline), GES_ASSET (project));
1025
1026   return TRUE;
1027 }
1028
1029 /**
1030  * ges_project_get_uri:
1031  * @project: A #GESProject
1032  *
1033  * Retrieve the uri that is currently set on @project
1034  *
1035  * Returns: The uri that is set on @project
1036  */
1037 gchar *
1038 ges_project_get_uri (GESProject * project)
1039 {
1040   GESProjectPrivate *priv;
1041
1042   g_return_val_if_fail (GES_IS_PROJECT (project), FALSE);
1043
1044   priv = project->priv;
1045   if (priv->uri)
1046     return g_strdup (priv->uri);
1047   return NULL;
1048 }
1049
1050 /**
1051  * ges_project_add_encoding_profile:
1052  * @project: A #GESProject
1053  * @profile: A #GstEncodingProfile to add to the project. If a profile with
1054  * the same name already exists, it will be replaced
1055  *
1056  * Adds @profile to the project. It lets you save in what format
1057  * the project has been renders and keep a reference to those formats.
1058  * Also, those formats will be saves to the project file when possible.
1059  *
1060  * Returns: %TRUE if @profile could be added, %FALSE otherwize
1061  */
1062 gboolean
1063 ges_project_add_encoding_profile (GESProject * project,
1064     GstEncodingProfile * profile)
1065 {
1066   GList *tmp;
1067   GESProjectPrivate *priv;
1068
1069   g_return_val_if_fail (GES_IS_PROJECT (project), FALSE);
1070   g_return_val_if_fail (GST_IS_ENCODING_PROFILE (profile), FALSE);
1071
1072   priv = project->priv;
1073   for (tmp = priv->encoding_profiles; tmp; tmp = tmp->next) {
1074     GstEncodingProfile *tmpprofile = GST_ENCODING_PROFILE (tmp->data);
1075
1076     if (g_strcmp0 (gst_encoding_profile_get_name (tmpprofile),
1077             gst_encoding_profile_get_name (profile)) == 0) {
1078       GST_INFO_OBJECT (project, "Already have profile: %s, replacing it",
1079           gst_encoding_profile_get_name (profile));
1080
1081       gst_object_unref (tmp->data);
1082       tmp->data = gst_object_ref (profile);
1083       return TRUE;
1084     }
1085   }
1086
1087   priv->encoding_profiles = g_list_prepend (priv->encoding_profiles,
1088       gst_object_ref (profile));
1089
1090   return TRUE;
1091 }
1092
1093 /**
1094  * ges_project_list_encoding_profiles:
1095  * @project: A #GESProject
1096  *
1097  * Lists the encoding profile that have been set to @project. The first one
1098  * is the latest added.
1099  *
1100  * Returns: (transfer none) (element-type GstPbutils.EncodingProfile) (allow-none): The
1101  * list of #GstEncodingProfile used in @project
1102  */
1103 const GList *
1104 ges_project_list_encoding_profiles (GESProject * project)
1105 {
1106   g_return_val_if_fail (GES_IS_PROJECT (project), FALSE);
1107
1108   return project->priv->encoding_profiles;
1109 }
1110
1111 /**
1112  * ges_project_get_loading_assets:
1113  * @project: A #GESProject
1114  *
1115  * Get the assets that are being loaded
1116  *
1117  * Returns: (transfer full) (element-type GES.Asset): A set of loading asset
1118  * that will be added to @project. Note that those Asset are *not* loaded yet,
1119  * and thus can not be used
1120  */
1121 GList *
1122 ges_project_get_loading_assets (GESProject * project)
1123 {
1124   GHashTableIter iter;
1125   gpointer key, value;
1126
1127   GList *ret = NULL;
1128
1129   g_return_val_if_fail (GES_IS_PROJECT (project), NULL);
1130
1131   g_hash_table_iter_init (&iter, project->priv->loading_assets);
1132   while (g_hash_table_iter_next (&iter, &key, &value))
1133     ret = g_list_prepend (ret, gst_object_ref (value));
1134
1135   return ret;
1136 }