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