tocsetter: clean up and update API for refcounted TOCs
[platform/upstream/gstreamer.git] / tests / check / gst / gsttocsetter.c
1 /* GStreamer GstTocSetter interface unit tests
2  * Copyright (C) 2010, 2012 Alexander Saprykin <xelfium@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <gst/check/gstcheck.h>
21 #include <gst/gst.h>
22 #include <string.h>
23
24 #define ENTRY_ED1       "/edition1"
25 #define ENTRY_ED2       "/edition2"
26 #define ENTRY_ED3       "test-edition"
27
28 #define ENTRY_CH1       "/edition1/chapter1"
29 #define ENTRY_CH2       "/edition1/chapter2"
30 #define ENTRY_CH3       "/edition2/chapter3"
31 #define ENTRY_CH4       "/test-chapter"
32
33 #define ENTRY_SUB1      "/edition2/chapter3/subchapter1"
34
35 #define ENTRY_TAG       "EntryTag"
36 #define TOC_TAG         "TocTag"
37 #define INFO_NAME       "gst-toc-setter-check"
38 #define INFO_FIELD      "info-test"
39 #define INFO_TEXT_EN    "info-text-entry"
40 #define INFO_TEXT_TOC   "info-text-toc"
41
42 #define CHECK_TOC_ENTRY(entry_c,type_c,uid_c)                            \
43 {                                                                        \
44   gchar *tag_c;                                                          \
45   const GValue *val;                                                     \
46   GstStructure *struct_c;                                                \
47                                                                          \
48   fail_unless_equals_string (entry_c->uid, uid_c);                       \
49   fail_unless (entry_c->type == type_c);                                 \
50   fail_unless (entry_c->tags != NULL);                                   \
51   fail_unless (entry_c->pads == NULL);                                   \
52                                                                          \
53   fail_unless (entry_c->info != NULL);                                   \
54   gst_structure_get (entry_c->info, INFO_NAME, GST_TYPE_STRUCTURE,       \
55       &struct_c, NULL);                                                  \
56   fail_unless (struct_c != NULL);                                        \
57   val = gst_structure_get_value (struct_c, INFO_FIELD);             \
58   fail_unless (val != NULL);                                             \
59   fail_unless_equals_string (g_value_get_string (val), INFO_TEXT_EN);    \
60                                                                          \
61   fail_unless (gst_tag_list_get_string (entry_c->tags,                   \
62                GST_TAG_TITLE, &tag_c));                                  \
63   fail_unless_equals_string (tag_c, ENTRY_TAG);                          \
64   g_free (tag_c);                                                        \
65   gst_structure_free (struct_c);                                         \
66 }
67
68 #define CHECK_TOC(toc_t)                                                 \
69 {                                                                        \
70   GstTocEntry *entry_t, *subentry_t;                                     \
71   gchar *tag_t;                                                          \
72   const GValue *val;                                                     \
73   GstStructure *struct_toc;                                              \
74                                                                          \
75   /* check TOC */                                                        \
76   fail_unless (g_list_length (toc_t->entries) == 2);                     \
77   fail_unless (toc_t->tags != NULL);                                     \
78   fail_unless (gst_tag_list_get_string (toc_t->tags,                     \
79                GST_TAG_TITLE, &tag_t));                                  \
80   fail_unless_equals_string (tag_t, TOC_TAG);                            \
81   g_free (tag_t);                                                        \
82                                                                          \
83   fail_unless (toc_t->info != NULL);                                     \
84   gst_structure_get (toc_t->info, INFO_NAME, GST_TYPE_STRUCTURE,         \
85       &struct_toc, NULL);                                                \
86   fail_unless (struct_toc != NULL);                                      \
87   val = gst_structure_get_value (struct_toc, INFO_FIELD);                \
88   fail_unless (val != NULL);                                             \
89   fail_unless_equals_string (g_value_get_string (val), INFO_TEXT_TOC);   \
90   gst_structure_free (struct_toc);                                       \
91                                                                          \
92   /* check edition1 */                                                   \
93   entry_t = g_list_nth_data (toc_t->entries, 0);                         \
94   fail_if (entry_t == NULL);                                             \
95   fail_unless (g_list_length (entry_t->subentries) == 2);                \
96   CHECK_TOC_ENTRY (entry_t, GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED1);      \
97   /* check chapter1 */                                                   \
98   subentry_t = g_list_nth_data (entry_t->subentries, 0);                 \
99   fail_if (subentry_t == NULL);                                          \
100   fail_unless (g_list_length (subentry_t->subentries) == 0);             \
101   CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH1);   \
102   /* check chapter2 */                                                   \
103   subentry_t = g_list_nth_data (entry_t->subentries, 1);                 \
104   fail_if (subentry_t == NULL);                                          \
105   fail_unless (g_list_length (subentry_t->subentries) == 0);             \
106   CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH2);   \
107   /* check edition2 */                                                   \
108   entry_t = g_list_nth_data (toc_t->entries, 1);                         \
109   fail_if (entry_t == NULL);                                             \
110   fail_unless (g_list_length (entry_t->subentries) == 1);                \
111   CHECK_TOC_ENTRY (entry_t, GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED2);      \
112   /* check chapter3 */                                                   \
113   subentry_t = g_list_nth_data (entry_t->subentries, 0);                 \
114   fail_if (subentry_t == NULL);                                          \
115   fail_unless (g_list_length (subentry_t->subentries) == 1);             \
116   CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH3);   \
117   /* check subchapter1 */                                                \
118   subentry_t = g_list_nth_data (subentry_t->subentries, 0);              \
119   fail_if (subentry_t == NULL);                                          \
120   fail_unless (g_list_length (subentry_t->subentries) == 0);             \
121   CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_SUB1);  \
122 }
123
124 /* some minimal GstTocSetter object */
125 #define GST_TYPE_DUMMY_ENC gst_dummy_enc_get_type()
126
127 typedef GstElement GstDummyEnc;
128 typedef GstElementClass GstDummyEncClass;
129
130 GType gst_dummy_enc_get_type (void);
131 G_DEFINE_TYPE_WITH_CODE (GstDummyEnc, gst_dummy_enc,
132     GST_TYPE_ELEMENT, G_IMPLEMENT_INTERFACE (GST_TYPE_TOC_SETTER, NULL));
133
134 static void
135 gst_dummy_enc_class_init (GstDummyEncClass * klass)
136 {
137 }
138
139 static void
140 gst_dummy_enc_init (GstDummyEnc * enc)
141 {
142 }
143
144 static GstToc *
145 create_toc (void)
146 {
147   GstStructure *structure;
148   GstToc *toc;
149   GstTocEntry *ed, *ch, *subch;
150
151   toc = gst_toc_new ();
152   gst_tag_list_add (toc->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
153       TOC_TAG, NULL);
154   structure =
155       gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_TOC,
156       NULL);
157   gst_structure_set (toc->info, INFO_NAME, GST_TYPE_STRUCTURE, structure, NULL);
158   gst_structure_free (structure);
159
160   /* create edition1 */
161   ed = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED1);
162   gst_tag_list_add (ed->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
163       ENTRY_TAG, NULL);
164   structure =
165       gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
166       NULL);
167   gst_structure_set (ed->info, INFO_NAME, GST_TYPE_STRUCTURE, structure, NULL);
168   gst_structure_free (structure);
169
170   /* append chapter1 to edition1 */
171   ch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH1);
172   gst_tag_list_add (ch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
173       ENTRY_TAG, NULL);
174   structure =
175       gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
176       NULL);
177   gst_structure_set (ch->info, INFO_NAME, GST_TYPE_STRUCTURE, structure, NULL);
178   gst_structure_free (structure);
179
180   ed->subentries = g_list_append (ed->subentries, ch);
181
182   /* append chapter2 to edition1 */
183   ch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH2);
184   gst_tag_list_add (ch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
185       ENTRY_TAG, NULL);
186   structure =
187       gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
188       NULL);
189   gst_structure_set (ch->info, INFO_NAME, GST_TYPE_STRUCTURE, structure, NULL);
190   gst_structure_free (structure);
191
192   ed->subentries = g_list_append (ed->subentries, ch);
193
194   /* append edition1 to the TOC */
195   toc->entries = g_list_append (toc->entries, ed);
196
197   /* create edition2 */
198   ed = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED2);
199   gst_tag_list_add (ed->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
200       ENTRY_TAG, NULL);
201   structure =
202       gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
203       NULL);
204   gst_structure_set (ed->info, INFO_NAME, GST_TYPE_STRUCTURE, structure, NULL);
205   gst_structure_free (structure);
206
207   /* create chapter3 */
208   ch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH3);
209   gst_tag_list_add (ch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
210       ENTRY_TAG, NULL);
211   structure =
212       gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
213       NULL);
214   gst_structure_set (ch->info, INFO_NAME, GST_TYPE_STRUCTURE, structure, NULL);
215   gst_structure_free (structure);
216
217   /* create subchapter1 */
218   subch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_SUB1);
219   gst_tag_list_add (subch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
220       ENTRY_TAG, NULL);
221   structure =
222       gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
223       NULL);
224   gst_structure_set (subch->info, INFO_NAME, GST_TYPE_STRUCTURE, structure,
225       NULL);
226   gst_structure_free (structure);
227
228   /* append subchapter1 to chapter3 */
229   ch->subentries = g_list_append (ch->subentries, subch);
230
231   /* append chapter3 to edition2 */
232   ed->subentries = g_list_append (ed->subentries, ch);
233
234   /* finally append edition2 to the TOC */
235   toc->entries = g_list_append (toc->entries, ed);
236
237   return toc;
238 }
239
240 GST_START_TEST (test_set)
241 {
242   GstToc *toc;
243 #if 0
244   GstTocEntry *entry, *ed;
245 #endif
246   GstTocSetter *setter;
247   GstElement *enc;
248
249   enc = g_object_new (GST_TYPE_DUMMY_ENC, NULL);
250   fail_unless (enc != NULL);
251
252   setter = GST_TOC_SETTER (enc);
253
254   toc = create_toc ();
255   fail_unless (toc != NULL);
256
257   gst_toc_setter_set_toc (setter, toc);
258
259   gst_toc_unref (toc);
260   toc = gst_toc_setter_get_toc (setter);
261
262   CHECK_TOC (toc);
263
264 #if 0
265   /* test entry adding into the root TOC */
266   entry = g_list_last (toc->entries)->data;
267   toc->entries = g_list_remove (toc->entries, entry);
268
269   gst_toc_setter_set_toc (setter, toc);
270   gst_toc_setter_add_toc_entry (setter, "0", entry);
271
272   gst_toc_unref (toc);
273   gst_toc_entry_unref (entry);
274   toc = gst_toc_setter_get_toc (setter);
275
276   CHECK_TOC (toc);
277 #endif
278
279 #if 0
280   /* test entry adding into the arbitrary entry */
281   entry = gst_toc_find_entry (toc, ENTRY_CH2);
282   fail_if (entry == NULL);
283
284   ed = toc->entries->data;
285   ed->subentries = g_list_remove (ed->subentries, entry);
286
287   gst_toc_setter_add_toc_entry (setter, ed->uid, entry);
288
289   CHECK_TOC (toc);
290 #endif
291
292   gst_toc_unref (toc);
293   gst_toc_setter_reset (setter);
294   toc = gst_toc_setter_get_toc (setter);
295
296   fail_unless (toc == NULL);
297
298   g_object_unref (enc);
299 }
300
301 GST_END_TEST static int spin_and_wait = 1;
302 static int threads_running = 0;
303
304 #define THREADS_TEST_SECONDS 1.5
305
306 static gpointer
307 test_threads_thread_func1 (gpointer data)
308 {
309   GstToc *toc;
310   GstTocSetter *setter = GST_TOC_SETTER (data);
311   GTimer *timer;
312
313   toc = create_toc ();
314   timer = g_timer_new ();
315
316   g_atomic_int_inc (&threads_running);
317   while (g_atomic_int_get (&spin_and_wait))
318     g_usleep (0);
319
320   GST_INFO ("Go!");
321   g_timer_start (timer);
322
323   while (g_timer_elapsed (timer, NULL) < THREADS_TEST_SECONDS)
324     gst_toc_setter_set_toc (setter, toc);
325
326   gst_toc_unref (toc);
327   g_timer_destroy (timer);
328   GST_INFO ("Done");
329
330   return NULL;
331 }
332
333 static gpointer
334 test_threads_thread_func2 (gpointer data)
335 {
336   GstToc *toc;
337   GstTocSetter *setter = GST_TOC_SETTER (data);
338   GTimer *timer;
339
340   toc = create_toc ();
341   timer = g_timer_new ();
342
343   g_atomic_int_inc (&threads_running);
344   while (g_atomic_int_get (&spin_and_wait))
345     g_usleep (0);
346
347   GST_INFO ("Go!");
348   g_timer_start (timer);
349
350   while (g_timer_elapsed (timer, NULL) < THREADS_TEST_SECONDS)
351     gst_toc_setter_set_toc (setter, toc);
352
353   gst_toc_unref (toc);
354   g_timer_destroy (timer);
355   GST_INFO ("Done");
356
357   return NULL;
358 }
359
360 static gpointer
361 test_threads_thread_func3 (gpointer data)
362 {
363   GstTocSetter *setter = GST_TOC_SETTER (data);
364   GTimer *timer;
365
366   timer = g_timer_new ();
367
368   g_atomic_int_inc (&threads_running);
369   while (g_atomic_int_get (&spin_and_wait))
370     g_usleep (0);
371
372   GST_INFO ("Go!");
373   g_timer_start (timer);
374
375   while (g_timer_elapsed (timer, NULL) < THREADS_TEST_SECONDS) {
376     gst_toc_setter_reset (setter);
377   }
378
379   g_timer_destroy (timer);
380   GST_INFO ("Done");
381
382   return NULL;
383 }
384
385 GST_START_TEST (test_threads)
386 {
387   GstTocSetter *setter;
388   GThread *threads[3];
389
390   setter = GST_TOC_SETTER (g_object_new (GST_TYPE_DUMMY_ENC, NULL));
391
392   spin_and_wait = TRUE;
393   threads[0] = g_thread_create (test_threads_thread_func1, setter, TRUE, NULL);
394   threads[1] = g_thread_create (test_threads_thread_func2, setter, TRUE, NULL);
395   threads[2] = g_thread_create (test_threads_thread_func3, setter, TRUE, NULL);
396
397   while (g_atomic_int_get (&threads_running) < 3)
398     g_usleep (10);
399
400   g_atomic_int_set (&spin_and_wait, FALSE);
401
402   g_thread_join (threads[0]);
403   g_thread_join (threads[1]);
404   g_thread_join (threads[2]);
405
406   g_object_unref (G_OBJECT (setter));
407 }
408
409 GST_END_TEST static Suite *
410 gst_toc_setter_suite (void)
411 {
412   Suite *s = suite_create ("GstTocSetter");
413   TCase *tc_chain = tcase_create ("general");
414
415   suite_add_tcase (s, tc_chain);
416   tcase_add_test (tc_chain, test_set);
417   tcase_add_test (tc_chain, test_threads);
418
419   return s;
420 }
421
422 GST_CHECK_MAIN (gst_toc_setter);