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