]> git.sesse.net Git - vlc/blob - modules/misc/testsuite/test4.c
ignore vlc-cache-gen
[vlc] / modules / misc / testsuite / test4.c
1 /*****************************************************************************
2  * test4.c : Miscellaneous stress tests module for vlc
3  *****************************************************************************
4  * Copyright (C) 2002 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_plugin.h>
33
34 #include <signal.h>
35
36 /*****************************************************************************
37  * Defines
38  *****************************************************************************/
39 #define MAXVAR        50                    /* Number of variables to create */
40 #define MAXSET      2000                       /* Number of variables to set */
41 #define MAXOBJ      1000                      /* Number of objects to create */
42 #define MAXLOOK    10000                      /* Number of objects to lookup */
43 #define MAXTH          4                       /* Number of threads to spawn */
44
45 /*****************************************************************************
46  * Local prototypes.
47  *****************************************************************************/
48 static int    Foo       ( vlc_object_t *, char const *,
49                           vlc_value_t, vlc_value_t, void * );
50 static int    Callback  ( vlc_object_t *, char const *,
51                           vlc_value_t, vlc_value_t, void * );
52 static int    MyCallback( vlc_object_t *, char const *,
53                           vlc_value_t, vlc_value_t, void * );
54 static void * MyThread  ( vlc_object_t * );
55
56 static int    Stress    ( vlc_object_t *, char const *,
57                           vlc_value_t, vlc_value_t, void * );
58 static void * Dummy     ( vlc_object_t * );
59
60 static int    Signal    ( vlc_object_t *, char const *,
61                           vlc_value_t, vlc_value_t, void * );
62
63 /*****************************************************************************
64  * Module descriptor.
65  *****************************************************************************/
66 vlc_module_begin ()
67     set_description( N_("Miscellaneous stress tests") )
68     var_Create( p_module->p_libvlc, "foo-test",
69                 VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
70     var_AddCallback( p_module->p_libvlc, "foo-test", Foo, NULL );
71     var_Create( p_module->p_libvlc, "callback-test",
72                 VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
73     var_AddCallback( p_module->p_libvlc, "callback-test", Callback, NULL );
74     var_Create( p_module->p_libvlc, "stress-test",
75                 VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
76     var_AddCallback( p_module->p_libvlc, "stress-test", Stress, NULL );
77     var_Create( p_module->p_libvlc, "signal",
78                 VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
79     var_AddCallback( p_module->p_libvlc, "signal", Signal, NULL );
80 vlc_module_end ()
81
82 /*****************************************************************************
83  * Foo: put anything here
84  *****************************************************************************/
85 static int Foo( vlc_object_t *p_this, char const *psz_cmd,
86                 vlc_value_t oldval, vlc_value_t newval, void *p_data )
87 {
88     vlc_value_t val;
89     int i;
90
91     var_Create( p_this, "honk", VLC_VAR_STRING | VLC_VAR_HASCHOICE );
92
93     val.psz_string = "foo";
94     var_Change( p_this, "honk", VLC_VAR_ADDCHOICE, &val, NULL );
95     val.psz_string = "bar";
96     var_Change( p_this, "honk", VLC_VAR_ADDCHOICE, &val, NULL );
97     val.psz_string = "baz";
98     var_Change( p_this, "honk", VLC_VAR_ADDCHOICE, &val, NULL );
99     var_Change( p_this, "honk", VLC_VAR_SETDEFAULT, &val, NULL );
100
101     var_Get( p_this, "honk", &val ); printf( "value: %s\n", val.psz_string );
102     free( val.psz_string );
103
104     val.psz_string = "foo";
105     var_Set( p_this, "honk", val );
106
107     var_Get( p_this, "honk", &val ); printf( "value: %s\n", val.psz_string );
108     free( val.psz_string );
109
110     val.psz_string = "blork";
111     var_Set( p_this, "honk", val );
112
113     var_Get( p_this, "honk", &val ); printf( "value: %s\n", val.psz_string );
114     free( val.psz_string );
115
116     val.psz_string = "baz";
117     var_Change( p_this, "honk", VLC_VAR_DELCHOICE, &val, NULL );
118
119     var_Get( p_this, "honk", &val ); printf( "value: %s\n", val.psz_string );
120
121     var_Change( p_this, "honk", VLC_VAR_GETLIST, &val, NULL );
122     for( i = 0 ; i < val.p_list->i_count ; i++ )
123     {
124         printf( "value %i: %s\n", i, val.p_list->p_values[i].psz_string );
125     }
126     var_FreeList( &val, NULL );
127
128     var_Destroy( p_this, "honk" );
129
130     return VLC_SUCCESS;
131 }
132
133 /*****************************************************************************
134  * Callback: test callback functions
135  *****************************************************************************/
136 static int Callback( vlc_object_t *p_this, char const *psz_cmd,
137                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
138 {
139     int i;
140     char psz_var[20];
141     vlc_object_t *pp_objects[10];
142     vlc_value_t val;
143
144     /* Allocate a few variables */
145     for( i = 0; i < 1000; i++ )
146     {
147         sprintf( psz_var, "blork-%i", i );
148         var_Create( p_this, psz_var, VLC_VAR_INTEGER );
149         var_AddCallback( p_this, psz_var, MyCallback, NULL );
150     }
151
152     /*
153      *  Test #1: callback loop detection
154      */
155     printf( "Test #1: callback loop detection\n" );
156
157     printf( " - without boundary check (vlc should print an error)\n" );
158     val.i_int = 1234567;
159     var_Set( p_this, "blork-12", val );
160
161     printf( " - with boundary check\n" );
162     val.i_int = 12;
163     var_Set( p_this, "blork-12", val );
164
165     /*
166      *  Test #2: concurrent access
167      */
168     printf( "Test #2: concurrent access\n" );
169
170     printf( " - launch worker threads\n" );
171
172     for( i = 0; i < 10; i++ )
173     {
174         pp_objects[i] = vlc_object_create( p_this, sizeof( vlc_object_t ) );
175         vlc_object_attach( pp_objects[i], p_this );
176         vlc_thread_create( pp_objects[i], "foo", MyThread, 0, true );
177     }
178
179     msleep( 3000000 );
180
181     printf( " - kill worker threads\n" );
182
183     for( i = 0; i < 10; i++ )
184     {
185         vlc_object_kill( pp_objects[i] );
186         vlc_thread_join( pp_objects[i] );
187         vlc_object_release( pp_objects[i] );
188     }
189
190     /* Clean our mess */
191     for( i = 0; i < 1000; i++ )
192     {
193         sprintf( psz_var, "blork-%i", i );
194         var_DelCallback( p_this, psz_var, MyCallback, NULL );
195         var_Destroy( p_this, psz_var );
196     }
197
198     return VLC_SUCCESS;
199 }
200
201 /*****************************************************************************
202  * MyCallback: used by callback-test
203  *****************************************************************************/
204 static int MyCallback( vlc_object_t *p_this, char const *psz_var,
205                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
206 {
207     int i_var = 1 + atoi( psz_var + strlen("blork-") );
208     char psz_newvar[20];
209
210     if( i_var == 1000 )
211     {
212         i_var = 0;
213     }
214
215     /* If we are requested to stop, then stop. */
216     if( i_var == newval.i_int )
217     {
218         return VLC_SUCCESS;
219     }
220
221     /* If we're the blork-3 callback, set blork-4, and so on. */
222     sprintf( psz_newvar, "blork-%i", i_var );
223     var_Set( p_this, psz_newvar, newval );
224
225     return VLC_SUCCESS;
226 }
227
228 /*****************************************************************************
229  * MyThread: used by callback-test, creates objects and then do nothing.
230  *****************************************************************************/
231 static void * MyThread( vlc_object_t *p_this )
232 {
233     char psz_var[20];
234     vlc_value_t val;
235     vlc_object_t *p_parent = p_this->p_parent;
236
237     vlc_thread_ready( p_this );
238
239     val.i_int = 42;
240
241     while( vlc_object_alive (p_this) )
242     {
243         int i = (int) (100.0 * rand() / (RAND_MAX));
244         /* FIXME: not thread-safe */
245
246         sprintf( psz_var, "blork-%i", i );
247         val.i_int = i + 200;
248         int canc = vlc_savecancel ();
249         var_Set( p_parent, psz_var, val );
250         vlc_restorecancel (canc);
251
252         /* This is quite heavy, but we only have 10 threads. Keep cool. */
253         msleep( 1000 );
254     }
255
256     return NULL;
257 }
258
259 /*****************************************************************************
260  * Stress: perform various stress tests
261  *****************************************************************************/
262 static int Stress( vlc_object_t *p_this, char const *psz_cmd,
263                    vlc_value_t oldval, vlc_value_t newval, void *p_data )
264 {
265     vlc_object_t **pp_objects;
266     mtime_t start;
267     char ** ppsz_name;
268     char *  psz_blob;
269     int     i, i_level;
270
271     if( *newval.psz_string )
272     {
273         i_level = atoi( newval.psz_string );
274         if( i_level <= 0 )
275         {
276             i_level = 1;
277         }
278         else if( i_level > 200 )
279         {
280             /* It becomes quite dangerous above 150 */
281             i_level = 200;
282         }
283     }
284     else
285     {
286         i_level = 10;
287     }
288
289     /* Allocate required data */
290     ppsz_name = malloc( MAXVAR * i_level * sizeof(char*) );
291     psz_blob = malloc( 20 * MAXVAR * i_level );
292     for( i = 0; i < MAXVAR * i_level; i++ )
293     {
294         ppsz_name[i] = psz_blob + 20 * i;
295     }
296
297     pp_objects = malloc( MAXOBJ * i_level * sizeof(void*) );
298
299     /*
300      *  Test #1: objects
301      */
302     printf( "Test #1: objects\n" );
303
304     printf( " - creating %i objects\n", MAXOBJ * i_level );
305     start = mdate();
306     for( i = 0; i < MAXOBJ * i_level; i++ )
307     {
308         pp_objects[i] = vlc_object_create( p_this, sizeof( vlc_object_t ) );
309     }
310
311     printf( " - randomly looking up %i objects\n", MAXLOOK * i_level );
312     for( i = MAXLOOK * i_level; i--; )
313     {
314         int id = (int) (MAXOBJ * i_level * 1.0 * rand() / (RAND_MAX));
315         vlc_object_get( pp_objects[id]->i_object_id );
316         vlc_object_release( p_this );
317     }
318
319     printf( " - destroying the objects (LIFO)\n" );
320     for( i = MAXOBJ * i_level; i--; )
321     {
322         vlc_object_release( pp_objects[i] );
323     }
324
325     printf( "done (%fs).\n", (mdate() - start) / 1000000.0 );
326
327     /*
328      *  Test #2: integer variables
329      */
330     printf( "Test #2: integer variables\n" );
331
332     printf( " - creating %i integer variables\n", MAXVAR * i_level );
333     start = mdate();
334     for( i = 0; i < MAXVAR * i_level; i++ )
335     {
336         sprintf( ppsz_name[i], "foo-%04i-bar-%04x", i, i * 11 );
337         var_Create( p_this, ppsz_name[i], VLC_VAR_INTEGER );
338     }
339
340     printf( " - randomly assigning %i values\n", MAXSET * i_level );
341     for( i = 0; i < MAXSET * i_level; i++ )
342     {
343         int v = (int) (MAXVAR * i_level * 1.0 * rand() / (RAND_MAX));
344         var_Set( p_this, ppsz_name[v], (vlc_value_t)i );
345     }
346
347     printf( " - destroying the variables\n" );
348     for( i = 0; i < MAXVAR * i_level; i++ )
349     {
350         var_Destroy( p_this, ppsz_name[i] );
351     }
352
353     printf( "done (%fs).\n", (mdate() - start) / 1000000.0 );
354
355     /*
356      *  Test #3: string variables
357      */
358     printf( "Test #3: string variables\n" );
359
360     printf( " - creating %i string variables\n", MAXVAR * i_level );
361     start = mdate();
362     for( i = 0; i < MAXVAR * i_level; i++ )
363     {
364         sprintf( ppsz_name[i], "foo-%04i-bar-%04x", i, i * 11 );
365         var_Create( p_this, ppsz_name[i], VLC_VAR_STRING );
366     }
367
368     printf( " - randomly assigning %i values\n", MAXSET * i_level );
369     for( i = 0; i < MAXSET * i_level; i++ )
370     {
371         int v = (int) (MAXVAR * i_level * 1.0 * rand() / (RAND_MAX));
372         var_Set( p_this, ppsz_name[v], (vlc_value_t)ppsz_name[v] );
373     }
374
375     printf( " - destroying the variables\n" );
376     for( i = 0; i < MAXVAR * i_level; i++ )
377     {
378         var_Destroy( p_this, ppsz_name[i] );
379     }
380
381     printf( "done (%fs).\n", (mdate() - start) / 1000000.0 );
382
383     /*
384      *  Test #4: threads
385      */
386     printf( "Test #4: threads\n" );
387     start = mdate();
388
389     printf( " - spawning %i threads that will each create %i objects\n",
390             MAXTH * i_level, MAXOBJ/MAXTH );
391     for( i = 0; i < MAXTH * i_level; i++ )
392     {
393         pp_objects[i] = vlc_object_create( p_this, sizeof( vlc_object_t ) );
394         vlc_thread_create( pp_objects[i], "foo", Dummy, 0, true );
395     }
396
397     printf( " - killing the threads (LIFO)\n" );
398     for( i = MAXTH * i_level; i--; )
399     {
400         pp_objects[i]->b_die = true;
401         vlc_thread_join( pp_objects[i] );
402         vlc_object_release( pp_objects[i] );
403     }
404
405     printf( "done (%fs).\n", (mdate() - start) / 1000000.0 );
406
407     /* Free required data */
408     free( pp_objects );
409     free( psz_blob );
410     free( ppsz_name );
411
412     return VLC_SUCCESS;
413 }
414
415 /*****************************************************************************
416  * Dummy: used by stress-test, creates objects and then do nothing.
417  *****************************************************************************/
418 static void * Dummy( vlc_object_t *p_this )
419 {
420     int i;
421     vlc_object_t *pp_objects[MAXOBJ/MAXTH];
422
423     for( i = 0; i < MAXOBJ/MAXTH; i++ )
424     {
425         pp_objects[i] = vlc_object_create( p_this, sizeof( vlc_object_t ) );
426     }
427
428     vlc_thread_ready( p_this );
429
430     while( vlc_object_alive (p_this) )
431     {
432         msleep( 10000 );
433     }
434
435     for( i = MAXOBJ/MAXTH; i--; )
436     {
437         vlc_object_release( pp_objects[i] );
438     }
439
440     return NULL;
441 }
442
443 /*****************************************************************************
444  * Signal: send a signal to the current thread.
445  *****************************************************************************/
446 static int Signal( vlc_object_t *p_this, char const *psz_cmd,
447                    vlc_value_t oldval, vlc_value_t newval, void *p_data )
448 {
449     raise( atoi(newval.psz_string) );
450     return VLC_SUCCESS;
451 }