First THREADED backport attempt, focusing on adding locks and making sure the API...
[platform/upstream/gstreamer.git] / gst / gstindex.c
1 /* GStreamer
2  * Copyright (C) 2001 RidgeRun (http://www.ridgerun.com/)
3  * Written by Erik Walthinsen <omega@ridgerun.com>
4  *
5  * gstindex.c: Index for mappings and other data
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include "gst_private.h"
24
25 #include "gstinfo.h"
26 #include "gstregistrypool.h"
27 #include "gstpad.h"
28 #include "gstindex.h"
29 #include "gstmarshal.h"
30
31 /* Index signals and args */
32 enum
33 {
34   ENTRY_ADDED,
35   LAST_SIGNAL
36 };
37
38 enum
39 {
40   ARG_0,
41   ARG_RESOLVER
42       /* FILL ME */
43 };
44
45 static void gst_index_class_init (GstIndexClass * klass);
46 static void gst_index_init (GstIndex * index);
47
48 static void gst_index_set_property (GObject * object, guint prop_id,
49     const GValue * value, GParamSpec * pspec);
50 static void gst_index_get_property (GObject * object, guint prop_id,
51     GValue * value, GParamSpec * pspec);
52
53 static GstIndexGroup *gst_index_group_new (guint groupnum);
54
55 static gboolean gst_index_path_resolver (GstIndex * index, GstObject * writer,
56     gchar ** writer_string, gpointer data);
57 static gboolean gst_index_gtype_resolver (GstIndex * index, GstObject * writer,
58     gchar ** writer_string, gpointer data);
59 static void gst_index_add_entry (GstIndex * index, GstIndexEntry * entry);
60
61 static GstObject *parent_class = NULL;
62 static guint gst_index_signals[LAST_SIGNAL] = { 0 };
63
64 typedef struct
65 {
66   GstIndexResolverMethod method;
67   GstIndexResolver resolver;
68   gpointer user_data;
69 }
70 ResolverEntry;
71
72 static const ResolverEntry resolvers[] = {
73   {GST_INDEX_RESOLVER_CUSTOM, NULL, NULL},
74   {GST_INDEX_RESOLVER_GTYPE, gst_index_gtype_resolver, NULL},
75   {GST_INDEX_RESOLVER_PATH, gst_index_path_resolver, NULL},
76 };
77
78 #define GST_TYPE_INDEX_RESOLVER (gst_index_resolver_get_type())
79 static GType
80 gst_index_resolver_get_type (void)
81 {
82   static GType index_resolver_type = 0;
83   static GEnumValue index_resolver[] = {
84     {GST_INDEX_RESOLVER_CUSTOM, "GST_INDEX_RESOLVER_CUSTOM",
85         "Use a custom resolver"},
86     {GST_INDEX_RESOLVER_GTYPE, "GST_INDEX_RESOLVER_GTYPE",
87         "Resolve an object to its GType[.padname]"},
88     {GST_INDEX_RESOLVER_PATH, "GST_INDEX_RESOLVER_PATH",
89         "Resolve an object to its path in the pipeline"},
90     {0, NULL, NULL},
91   };
92
93   if (!index_resolver_type) {
94     index_resolver_type =
95         g_enum_register_static ("GstIndexResolver", index_resolver);
96   }
97   return index_resolver_type;
98 }
99
100 GType
101 gst_index_entry_get_type (void)
102 {
103   static GType index_entry_type = 0;
104
105   if (!index_entry_type) {
106     index_entry_type = g_boxed_type_register_static ("GstIndexEntry",
107         (GBoxedCopyFunc) gst_index_entry_copy,
108         (GBoxedFreeFunc) gst_index_entry_free);
109   }
110   return index_entry_type;
111 }
112
113
114 GType
115 gst_index_get_type (void)
116 {
117   static GType index_type = 0;
118
119   if (!index_type) {
120     static const GTypeInfo index_info = {
121       sizeof (GstIndexClass),
122       NULL,
123       NULL,
124       (GClassInitFunc) gst_index_class_init,
125       NULL,
126       NULL,
127       sizeof (GstIndex),
128       0,
129       (GInstanceInitFunc) gst_index_init,
130       NULL
131     };
132
133     index_type =
134         g_type_register_static (GST_TYPE_OBJECT, "GstIndex", &index_info, 0);
135   }
136   return index_type;
137 }
138
139 static void
140 gst_index_class_init (GstIndexClass * klass)
141 {
142   GObjectClass *gobject_class;
143   GstElementClass *gstelement_class;
144
145   gobject_class = (GObjectClass *) klass;
146   gstelement_class = (GstElementClass *) klass;
147
148   parent_class = g_type_class_ref (GST_TYPE_OBJECT);
149
150   gst_index_signals[ENTRY_ADDED] =
151       g_signal_new ("entry-added", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
152       G_STRUCT_OFFSET (GstIndexClass, entry_added), NULL, NULL,
153       gst_marshal_VOID__BOXED, G_TYPE_NONE, 1, GST_TYPE_INDEX_ENTRY);
154
155   gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_index_set_property);
156   gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_index_get_property);
157
158   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_RESOLVER,
159       g_param_spec_enum ("resolver", "Resolver",
160           "Select a predefined object to string mapper",
161           GST_TYPE_INDEX_RESOLVER, GST_INDEX_RESOLVER_PATH, G_PARAM_READWRITE));
162 }
163
164 static void
165 gst_index_init (GstIndex * index)
166 {
167   index->curgroup = gst_index_group_new (0);
168   index->maxgroup = 0;
169   index->groups = g_list_prepend (NULL, index->curgroup);
170
171   index->writers = g_hash_table_new (NULL, NULL);
172   index->last_id = 0;
173
174   index->method = GST_INDEX_RESOLVER_PATH;
175   index->resolver = resolvers[index->method].resolver;
176   index->resolver_user_data = resolvers[index->method].user_data;
177
178   GST_FLAG_SET (index, GST_INDEX_WRITABLE);
179   GST_FLAG_SET (index, GST_INDEX_READABLE);
180
181   GST_DEBUG ("created new index");
182 }
183
184 static void
185 gst_index_set_property (GObject * object, guint prop_id,
186     const GValue * value, GParamSpec * pspec)
187 {
188   GstIndex *index;
189
190   index = GST_INDEX (object);
191
192   switch (prop_id) {
193     case ARG_RESOLVER:
194       index->method = g_value_get_enum (value);
195       index->resolver = resolvers[index->method].resolver;
196       index->resolver_user_data = resolvers[index->method].user_data;
197       break;
198     default:
199       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
200       break;
201   }
202 }
203
204 static void
205 gst_index_get_property (GObject * object, guint prop_id,
206     GValue * value, GParamSpec * pspec)
207 {
208   GstIndex *index;
209
210   index = GST_INDEX (object);
211
212   switch (prop_id) {
213     case ARG_RESOLVER:
214       g_value_set_enum (value, index->method);
215       break;
216     default:
217       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
218       break;
219   }
220 }
221
222 static GstIndexGroup *
223 gst_index_group_new (guint groupnum)
224 {
225   GstIndexGroup *indexgroup = g_new (GstIndexGroup, 1);
226
227   indexgroup->groupnum = groupnum;
228   indexgroup->entries = NULL;
229   indexgroup->certainty = GST_INDEX_UNKNOWN;
230   indexgroup->peergroup = -1;
231
232   GST_DEBUG ("created new index group %d", groupnum);
233
234   return indexgroup;
235 }
236
237 /**
238  * gst_index_new:
239  *
240  * Create a new tileindex object
241  *
242  * Returns: a new index object
243  */
244 GstIndex *
245 gst_index_new (void)
246 {
247   GstIndex *index;
248
249   index = g_object_new (gst_index_get_type (), NULL);
250
251   return index;
252 }
253
254 /**
255  * gst_index_commit:
256  * @index: the index to commit
257  * @id: the writer that commited the index
258  *
259  * Tell the index that the writer with the given id is done
260  * with this index and is not going to write any more entries
261  * to it.
262  */
263 void
264 gst_index_commit (GstIndex * index, gint id)
265 {
266   GstIndexClass *iclass;
267
268   iclass = GST_INDEX_GET_CLASS (index);
269
270   if (iclass->commit)
271     iclass->commit (index, id);
272 }
273
274
275 /**
276  * gst_index_get_group:
277  * @index: the index to get the current group from
278  *
279  * Get the id of the current group.
280  *
281  * Returns: the id of the current group.
282  */
283 gint
284 gst_index_get_group (GstIndex * index)
285 {
286   return index->curgroup->groupnum;
287 }
288
289 /**
290  * gst_index_new_group:
291  * @index: the index to create the new group in
292  *
293  * Create a new group for the given index. It will be
294  * set as the current group.
295  *
296  * Returns: the id of the newly created group.
297  */
298 gint
299 gst_index_new_group (GstIndex * index)
300 {
301   index->curgroup = gst_index_group_new (++index->maxgroup);
302   index->groups = g_list_append (index->groups, index->curgroup);
303   GST_DEBUG ("created new group %d in index", index->maxgroup);
304   return index->maxgroup;
305 }
306
307 /**
308  * gst_index_set_group:
309  * @index: the index to set the new group in
310  * @groupnum: the groupnumber to set
311  *
312  * Set the current groupnumber to the given argument.
313  *
314  * Returns: TRUE if the operation succeeded, FALSE if the group
315  * did not exist.
316  */
317 gboolean
318 gst_index_set_group (GstIndex * index, gint groupnum)
319 {
320   GList *list;
321   GstIndexGroup *indexgroup;
322
323   /* first check for null change */
324   if (groupnum == index->curgroup->groupnum)
325     return TRUE;
326
327   /* else search for the proper group */
328   list = index->groups;
329   while (list) {
330     indexgroup = (GstIndexGroup *) (list->data);
331     list = g_list_next (list);
332     if (indexgroup->groupnum == groupnum) {
333       index->curgroup = indexgroup;
334       GST_DEBUG ("switched to index group %d", indexgroup->groupnum);
335       return TRUE;
336     }
337   }
338
339   /* couldn't find the group in question */
340   GST_DEBUG ("couldn't find index group %d", groupnum);
341   return FALSE;
342 }
343
344 /**
345  * gst_index_set_certainty:
346  * @index: the index to set the certainty on
347  * @certainty: the certainty to set
348  *
349  * Set the certainty of the given index.
350  */
351 void
352 gst_index_set_certainty (GstIndex * index, GstIndexCertainty certainty)
353 {
354   index->curgroup->certainty = certainty;
355 }
356
357 /**
358  * gst_index_get_certainty:
359  * @index: the index to get the certainty of
360  *
361  * Get the certainty of the given index.
362  *
363  * Returns: the certainty of the index.
364  */
365 GstIndexCertainty
366 gst_index_get_certainty (GstIndex * index)
367 {
368   return index->curgroup->certainty;
369 }
370
371 /**
372  * gst_index_set_filter:
373  * @index: the index to register the filter on
374  * @filter: the filter to register
375  * @user_data: data passed to the filter function
376  *
377  * Lets the app register a custom filter function so that
378  * it can select what entries should be stored in the index.
379  */
380 void
381 gst_index_set_filter (GstIndex * index,
382     GstIndexFilter filter, gpointer user_data)
383 {
384   g_return_if_fail (GST_IS_INDEX (index));
385
386   index->filter = filter;
387   index->filter_user_data = user_data;
388 }
389
390 /**
391  * gst_index_set_resolver:
392  * @index: the index to register the resolver on
393  * @resolver: the resolver to register
394  * @user_data: data passed to the resolver function
395  *
396  * Lets the app register a custom function to map index
397  * ids to writer descriptions.
398  */
399 void
400 gst_index_set_resolver (GstIndex * index,
401     GstIndexResolver resolver, gpointer user_data)
402 {
403   g_return_if_fail (GST_IS_INDEX (index));
404
405   index->resolver = resolver;
406   index->resolver_user_data = user_data;
407   index->method = GST_INDEX_RESOLVER_CUSTOM;
408 }
409
410 /**
411  * gst_index_entry_copy:
412  * @entry: the entry to copy
413  *
414  * Copies an entry and returns the result.
415  *
416  * Returns: a newly allocated #GstIndexEntry.
417  */
418 GstIndexEntry *
419 gst_index_entry_copy (GstIndexEntry * entry)
420 {
421   return g_memdup (entry, sizeof (*entry));
422 }
423
424 /**
425  * gst_index_entry_free:
426  * @entry: the entry to free
427  *
428  * Free the memory used by the given entry.
429  */
430 void
431 gst_index_entry_free (GstIndexEntry * entry)
432 {
433   g_free (entry);
434 }
435
436 /**
437  * gst_index_add_format:
438  * @index: the index to add the entry to
439  * @id: the id of the index writer
440  * @format: the format to add to the index
441  *
442  * Adds a format entry into the index. This function is
443  * used to map dynamic GstFormat ids to their original
444  * format key.
445  *
446  * Returns: a pointer to the newly added entry in the index.
447  */
448 GstIndexEntry *
449 gst_index_add_format (GstIndex * index, gint id, GstFormat format)
450 {
451   GstIndexEntry *entry;
452   const GstFormatDefinition *def;
453
454   g_return_val_if_fail (GST_IS_INDEX (index), NULL);
455   g_return_val_if_fail (format != 0, NULL);
456
457   if (!GST_INDEX_IS_WRITABLE (index) || id == -1)
458     return NULL;
459
460   entry = g_new0 (GstIndexEntry, 1);
461   entry->type = GST_INDEX_ENTRY_FORMAT;
462   entry->id = id;
463   entry->data.format.format = format;
464
465   def = gst_format_get_details (format);
466   entry->data.format.key = def->nick;
467
468   gst_index_add_entry (index, entry);
469
470   return entry;
471 }
472
473 /**
474  * gst_index_add_id:
475  * @index: the index to add the entry to
476  * @id: the id of the index writer
477  * @description: the description of the index writer
478  *
479  * Add an id entry into the index.
480  *
481  * Returns: a pointer to the newly added entry in the index.
482  */
483 GstIndexEntry *
484 gst_index_add_id (GstIndex * index, gint id, gchar * description)
485 {
486   GstIndexEntry *entry;
487
488   g_return_val_if_fail (GST_IS_INDEX (index), NULL);
489   g_return_val_if_fail (description != NULL, NULL);
490
491   if (!GST_INDEX_IS_WRITABLE (index) || id == -1)
492     return NULL;
493
494   entry = g_new0 (GstIndexEntry, 1);
495   entry->type = GST_INDEX_ENTRY_ID;
496   entry->id = id;
497   entry->data.id.description = description;
498
499   gst_index_add_entry (index, entry);
500
501   return entry;
502 }
503
504 static gboolean
505 gst_index_path_resolver (GstIndex * index, GstObject * writer,
506     gchar ** writer_string, gpointer data)
507 {
508   *writer_string = gst_object_get_path_string (writer);
509
510   return TRUE;
511 }
512
513 static gboolean
514 gst_index_gtype_resolver (GstIndex * index, GstObject * writer,
515     gchar ** writer_string, gpointer data)
516 {
517   if (GST_IS_PAD (writer)) {
518     GstElement *element =
519         (GstElement *) gst_object_get_parent (GST_OBJECT (writer));
520
521     *writer_string = g_strdup_printf ("%s.%s",
522         g_type_name (G_OBJECT_TYPE (element)), gst_object_get_name (writer));
523   } else {
524     *writer_string =
525         g_strdup_printf ("%s", g_type_name (G_OBJECT_TYPE (writer)));
526   }
527
528   return TRUE;
529 }
530
531 /**
532  * gst_index_get_writer_id:
533  * @index: the index to get a unique write id for
534  * @writer: the GstObject to allocate an id for
535  * @id: a pointer to a gint to hold the id
536  *
537  * Before entries can be added to the index, a writer
538  * should obtain a unique id. The methods to add new entries
539  * to the index require this id as an argument. 
540  *
541  * The application can implement a custom function to map the writer object 
542  * to a string. That string will be used to register or look up an id
543  * in the index.
544  *
545  * Returns: TRUE if the writer would be mapped to an id.
546  */
547 gboolean
548 gst_index_get_writer_id (GstIndex * index, GstObject * writer, gint * id)
549 {
550   gchar *writer_string = NULL;
551   GstIndexEntry *entry;
552   GstIndexClass *iclass;
553   gboolean success = FALSE;
554
555   g_return_val_if_fail (GST_IS_INDEX (index), FALSE);
556   g_return_val_if_fail (GST_IS_OBJECT (writer), FALSE);
557   g_return_val_if_fail (id, FALSE);
558
559   *id = -1;
560
561   /* first try to get a previously cached id */
562   entry = g_hash_table_lookup (index->writers, writer);
563   if (entry == NULL) {
564
565     iclass = GST_INDEX_GET_CLASS (index);
566
567     /* let the app make a string */
568     if (index->resolver) {
569       gboolean res;
570
571       res =
572           index->resolver (index, writer, &writer_string,
573           index->resolver_user_data);
574       if (!res)
575         return FALSE;
576     } else {
577       g_warning ("no resolver found");
578       return FALSE;
579     }
580
581     /* if the index has a resolver, make it map this string to an id */
582     if (iclass->get_writer_id) {
583       success = iclass->get_writer_id (index, id, writer_string);
584     }
585     /* if the index could not resolve, we allocate one ourselves */
586     if (!success) {
587       *id = ++index->last_id;
588     }
589
590     entry = gst_index_add_id (index, *id, writer_string);
591     if (!entry) {
592       /* index is probably not writable, make an entry anyway
593        * to keep it in our cache */
594       entry = g_new0 (GstIndexEntry, 1);
595       entry->type = GST_INDEX_ENTRY_ID;
596       entry->id = *id;
597       entry->data.id.description = writer_string;
598     }
599     g_hash_table_insert (index->writers, writer, entry);
600   } else {
601     *id = entry->id;
602   }
603
604   return TRUE;
605 }
606
607 static void
608 gst_index_add_entry (GstIndex * index, GstIndexEntry * entry)
609 {
610   GstIndexClass *iclass;
611
612   iclass = GST_INDEX_GET_CLASS (index);
613
614   if (iclass->add_entry) {
615     iclass->add_entry (index, entry);
616   }
617
618   g_signal_emit (G_OBJECT (index), gst_index_signals[ENTRY_ADDED], 0, entry);
619 }
620
621 /**
622  * gst_index_add_associationv:
623  * @index: the index to add the entry to
624  * @id: the id of the index writer
625  * @flags: optinal flags for this entry
626  * @n: number of associations
627  * @list: list of associations
628  * @...: other format/value pairs or 0 to end the list
629  *
630  * Associate given format/value pairs with each other.
631  *
632  * Returns: a pointer to the newly added entry in the index.
633  */
634 GstIndexEntry *
635 gst_index_add_associationv (GstIndex * index, gint id, GstAssocFlags flags,
636     int n, const GstIndexAssociation * list)
637 {
638   GstIndexEntry *entry;
639
640   g_return_val_if_fail (n > 0, NULL);
641   g_return_val_if_fail (list != NULL, NULL);
642   g_return_val_if_fail (GST_IS_INDEX (index), NULL);
643
644   if (!GST_INDEX_IS_WRITABLE (index) || id == -1)
645     return NULL;
646
647   entry = g_malloc (sizeof (GstIndexEntry));
648
649   entry->type = GST_INDEX_ENTRY_ASSOCIATION;
650   entry->id = id;
651   entry->data.assoc.flags = flags;
652   entry->data.assoc.assocs = g_memdup (list, sizeof (GstIndexAssociation) * n);
653   entry->data.assoc.nassocs = n;
654
655   gst_index_add_entry (index, entry);
656
657   return entry;
658 }
659
660 /**
661  * gst_index_add_association:
662  * @index: the index to add the entry to
663  * @id: the id of the index writer
664  * @flags: optinal flags for this entry
665  * @format: the format of the value
666  * @value: the value 
667  * @...: other format/value pairs or 0 to end the list
668  *
669  * Associate given format/value pairs with each other.
670  * Be sure to pass gint64 values to this functions varargs,
671  * you might want to use a gint64 cast to be sure.
672  *
673  * Returns: a pointer to the newly added entry in the index.
674  */
675 GstIndexEntry *
676 gst_index_add_association (GstIndex * index, gint id, GstAssocFlags flags,
677     GstFormat format, gint64 value, ...)
678 {
679   va_list args;
680   GstIndexEntry *entry;
681   GstIndexAssociation *list;
682   gint n_assocs = 0;
683   GstFormat cur_format;
684   GArray *array;
685
686   g_return_val_if_fail (GST_IS_INDEX (index), NULL);
687   g_return_val_if_fail (format != 0, NULL);
688
689   if (!GST_INDEX_IS_WRITABLE (index) || id == -1)
690     return NULL;
691
692   array = g_array_new (FALSE, FALSE, sizeof (GstIndexAssociation));
693
694   va_start (args, value);
695
696   cur_format = format;
697   n_assocs = 0;
698   while (cur_format) {
699     GstIndexAssociation a;
700
701     n_assocs++;
702     cur_format = va_arg (args, GstFormat);
703     if (cur_format) {
704       a.format = cur_format;
705       a.value = va_arg (args, gint64);
706
707       g_array_append_val (array, a);
708     }
709   }
710   va_end (args);
711
712   list = (GstIndexAssociation *) g_array_free (array, FALSE);
713
714   entry = gst_index_add_associationv (index, id, flags, n_assocs, list);
715   g_free (list);
716
717   return entry;
718 }
719
720 /**
721  * gst_index_add_object:
722  * @index: the index to add the object to
723  * @id: the id of the index writer
724  * @key: a key for the object
725  * @type: the GType of the object
726  * @object: a pointer to the object to add
727  *
728  * Add the given object to the index with the given key.
729  * 
730  * Returns: a pointer to the newly added entry in the index.
731  */
732 GstIndexEntry *
733 gst_index_add_object (GstIndex * index, gint id, gchar * key,
734     GType type, gpointer object)
735 {
736   if (!GST_INDEX_IS_WRITABLE (index) || id == -1)
737     return NULL;
738
739   return NULL;
740 }
741
742 static gint
743 gst_index_compare_func (gconstpointer a, gconstpointer b, gpointer user_data)
744 {
745   if (a < b)
746     return -1;
747   if (a > b)
748     return 1;
749   return 0;
750 }
751
752 /**
753  * gst_index_get_assoc_entry:
754  * @index: the index to search
755  * @id: the id of the index writer
756  * @method: The lookup method to use
757  * @flags: Flags for the entry
758  * @format: the format of the value
759  * @value: the value to find
760  *
761  * Finds the given format/value in the index
762  *
763  * Returns: the entry associated with the value or NULL if the
764  *   value was not found.
765  */
766 GstIndexEntry *
767 gst_index_get_assoc_entry (GstIndex * index, gint id,
768     GstIndexLookupMethod method, GstAssocFlags flags,
769     GstFormat format, gint64 value)
770 {
771   g_return_val_if_fail (GST_IS_INDEX (index), NULL);
772
773   if (id == -1)
774     return NULL;
775
776   return gst_index_get_assoc_entry_full (index, id, method, flags, format,
777       value, gst_index_compare_func, NULL);
778 }
779
780 /**
781  * gst_index_get_assoc_entry_full:
782  * @index: the index to search
783  * @id: the id of the index writer
784  * @method: The lookup method to use
785  * @flags: Flags for the entry
786  * @format: the format of the value
787  * @value: the value to find
788  * @func: the function used to compare entries
789  * @user_data: user data passed to the compare function
790  *
791  * Finds the given format/value in the index with the given
792  * compare function and user_data.
793  *
794  * Returns: the entry associated with the value or NULL if the
795  *   value was not found.
796  */
797 GstIndexEntry *
798 gst_index_get_assoc_entry_full (GstIndex * index, gint id,
799     GstIndexLookupMethod method, GstAssocFlags flags,
800     GstFormat format, gint64 value, GCompareDataFunc func, gpointer user_data)
801 {
802   GstIndexClass *iclass;
803
804   g_return_val_if_fail (GST_IS_INDEX (index), NULL);
805
806   if (id == -1)
807     return NULL;
808
809   iclass = GST_INDEX_GET_CLASS (index);
810
811   if (iclass->get_assoc_entry)
812     return iclass->get_assoc_entry (index, id, method, flags, format, value,
813         func, user_data);
814
815   return NULL;
816 }
817
818 /**
819  * gst_index_entry_assoc_map:
820  * @entry: the index to search
821  * @format: the format of the value the find
822  * @value: a pointer to store the value
823  *
824  * Gets alternative formats associated with the indexentry.
825  *
826  * Returns: TRUE if there was a value associated with the given 
827  * format.
828  */
829 gboolean
830 gst_index_entry_assoc_map (GstIndexEntry * entry,
831     GstFormat format, gint64 * value)
832 {
833   gint i;
834
835   g_return_val_if_fail (entry != NULL, FALSE);
836   g_return_val_if_fail (value != NULL, FALSE);
837
838   for (i = 0; i < GST_INDEX_NASSOCS (entry); i++) {
839     if (GST_INDEX_ASSOC_FORMAT (entry, i) == format) {
840       *value = GST_INDEX_ASSOC_VALUE (entry, i);
841       return TRUE;
842     }
843   }
844   return FALSE;
845 }
846
847
848 static void gst_index_factory_class_init (GstIndexFactoryClass * klass);
849 static void gst_index_factory_init (GstIndexFactory * factory);
850
851 static GstPluginFeatureClass *factory_parent_class = NULL;
852
853 /* static guint gst_index_factory_signals[LAST_SIGNAL] = { 0 }; */
854
855 GType
856 gst_index_factory_get_type (void)
857 {
858   static GType indexfactory_type = 0;
859
860   if (!indexfactory_type) {
861     static const GTypeInfo indexfactory_info = {
862       sizeof (GstIndexFactoryClass),
863       NULL,
864       NULL,
865       (GClassInitFunc) gst_index_factory_class_init,
866       NULL,
867       NULL,
868       sizeof (GstIndexFactory),
869       0,
870       (GInstanceInitFunc) gst_index_factory_init,
871       NULL
872     };
873
874     indexfactory_type = g_type_register_static (GST_TYPE_PLUGIN_FEATURE,
875         "GstIndexFactory", &indexfactory_info, 0);
876   }
877   return indexfactory_type;
878 }
879
880 static void
881 gst_index_factory_class_init (GstIndexFactoryClass * klass)
882 {
883   GObjectClass *gobject_class;
884   GstObjectClass *gstobject_class;
885   GstPluginFeatureClass *gstpluginfeature_class;
886
887   gobject_class = (GObjectClass *) klass;
888   gstobject_class = (GstObjectClass *) klass;
889   gstpluginfeature_class = (GstPluginFeatureClass *) klass;
890
891   factory_parent_class = g_type_class_ref (GST_TYPE_PLUGIN_FEATURE);
892 }
893
894 static void
895 gst_index_factory_init (GstIndexFactory * factory)
896 {
897 }
898
899 /**
900  * gst_index_factory_new:
901  * @name: name of indexfactory to create
902  * @longdesc: long description of indexfactory to create
903  * @type: the GType of the GstIndex element of this factory
904  *
905  * Create a new indexfactory with the given parameters
906  *
907  * Returns: a new #GstIndexFactory.
908  */
909 GstIndexFactory *
910 gst_index_factory_new (const gchar * name, const gchar * longdesc, GType type)
911 {
912   GstIndexFactory *factory;
913
914   g_return_val_if_fail (name != NULL, NULL);
915   factory = gst_index_factory_find (name);
916   if (!factory) {
917     factory = GST_INDEX_FACTORY (g_object_new (GST_TYPE_INDEX_FACTORY, NULL));
918   }
919
920   GST_PLUGIN_FEATURE_NAME (factory) = g_strdup (name);
921   if (factory->longdesc)
922     g_free (factory->longdesc);
923   factory->longdesc = g_strdup (longdesc);
924   factory->type = type;
925
926   return factory;
927 }
928
929 /**
930  * gst_index_factory_destroy:
931  * @factory: factory to destroy
932  *
933  * Removes the index from the global list.
934  */
935 void
936 gst_index_factory_destroy (GstIndexFactory * factory)
937 {
938   g_return_if_fail (factory != NULL);
939
940   /* we don't free the struct bacause someone might  have a handle to it.. */
941 }
942
943 /**
944  * gst_index_factory_find:
945  * @name: name of indexfactory to find
946  *
947  * Search for an indexfactory of the given name.
948  *
949  * Returns: #GstIndexFactory if found, NULL otherwise
950  */
951 GstIndexFactory *
952 gst_index_factory_find (const gchar * name)
953 {
954   GstPluginFeature *feature;
955
956   g_return_val_if_fail (name != NULL, NULL);
957
958   GST_DEBUG ("gstindex: find \"%s\"", name);
959
960   feature = gst_registry_pool_find_feature (name, GST_TYPE_INDEX_FACTORY);
961   if (feature)
962     return GST_INDEX_FACTORY (feature);
963
964   return NULL;
965 }
966
967 /**
968  * gst_index_factory_create:
969  * @factory: the factory used to create the instance
970  *
971  * Create a new #GstIndex instance from the 
972  * given indexfactory.
973  *
974  * Returns: A new #GstIndex instance.
975  */
976 GstIndex *
977 gst_index_factory_create (GstIndexFactory * factory)
978 {
979   GstIndex *new = NULL;
980
981   g_return_val_if_fail (factory != NULL, NULL);
982
983   if (gst_plugin_feature_ensure_loaded (GST_PLUGIN_FEATURE (factory))) {
984     g_return_val_if_fail (factory->type != 0, NULL);
985
986     new = GST_INDEX (g_object_new (factory->type, NULL));
987   }
988
989   return new;
990 }
991
992 /**
993  * gst_index_factory_make:
994  * @name: the name of the factory used to create the instance
995  *
996  * Create a new #GstIndex instance from the 
997  * indexfactory with the given name.
998  *
999  * Returns: A new #GstIndex instance.
1000  */
1001 GstIndex *
1002 gst_index_factory_make (const gchar * name)
1003 {
1004   GstIndexFactory *factory;
1005
1006   g_return_val_if_fail (name != NULL, NULL);
1007
1008   factory = gst_index_factory_find (name);
1009
1010   if (factory == NULL)
1011     return NULL;
1012
1013   return gst_index_factory_create (factory);
1014 }