]> git.sesse.net Git - vlc/blob - src/extras/libc.c
* configure.ac, src/extras/libc.c, modules/misc/network/ipv4.c: fixed the WinCE build.
[vlc] / src / extras / libc.c
1 /*****************************************************************************
2  * libc.c: Extra libc function for some systems.
3  *****************************************************************************
4  * Copyright (C) 2002 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          Christophe Massiot <massiot@via.ecp.fr>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
26  *****************************************************************************/
27 #include <string.h>                                              /* strdup() */
28 #include <stdlib.h>
29 #include <ctype.h>
30
31 #include <vlc/vlc.h>
32
33 #undef iconv_t
34 #undef iconv_open
35 #undef iconv
36 #undef iconv_close
37
38 #if defined(HAVE_ICONV)
39 #   include <iconv.h>
40 #endif
41
42 #ifdef HAVE_DIRENT_H
43 #   include <dirent.h>
44 #endif
45
46 #ifdef HAVE_FORK
47 #   include <sys/time.h>
48 #   include <unistd.h>
49 #   include <errno.h>
50 #   include <sys/wait.h>
51 #endif
52
53 #if defined(WIN32) || defined(UNDER_CE)
54 #   define WIN32_LEAN_AND_MEAN
55 #   include <windows.h>
56 #endif
57
58 #ifdef UNDER_CE
59 #   define strcoll strcmp
60 #endif
61
62 /*****************************************************************************
63  * getenv: just in case, but it should never be called
64  *****************************************************************************/
65 #if !defined( HAVE_GETENV )
66 char *vlc_getenv( const char *name )
67 {
68     return NULL;
69 }
70 #endif
71
72 /*****************************************************************************
73  * strdup: returns a malloc'd copy of a string
74  *****************************************************************************/
75 #if !defined( HAVE_STRDUP )
76 char *vlc_strdup( const char *string )
77 {
78     return strndup( string, strlen( string ) );
79 }
80 #endif
81
82 /*****************************************************************************
83  * strndup: returns a malloc'd copy of at most n bytes of string
84  * Does anyone know whether or not it will be present in Jaguar?
85  *****************************************************************************/
86 #if !defined( HAVE_STRNDUP )
87 char *vlc_strndup( const char *string, size_t n )
88 {
89     char *psz;
90     size_t len = strlen( string );
91
92     len = __MIN( len, n );
93     psz = (char*)malloc( len + 1 );
94
95     if( psz != NULL )
96     {
97         memcpy( (void*)psz, (const void*)string, len );
98         psz[ len ] = 0;
99     }
100
101     return psz;
102 }
103 #endif
104
105 /*****************************************************************************
106  * strcasecmp: compare two strings ignoring case
107  *****************************************************************************/
108 #if !defined( HAVE_STRCASECMP ) && !defined( HAVE_STRICMP )
109 int vlc_strcasecmp( const char *s1, const char *s2 )
110 {
111     int c1, c2;
112     if( !s1 || !s2 ) return  -1;
113
114     while( *s1 && *s2 )
115     {
116         c1 = tolower(*s1);
117         c2 = tolower(*s2);
118
119         if( c1 != c2 ) return (c1 < c2 ? -1 : 1);
120         s1++; s2++;
121     }
122
123     if( !*s1 && !*s2 ) return 0;
124     else return (*s1 ? 1 : -1);
125 }
126 #endif
127
128 /*****************************************************************************
129  * strncasecmp: compare n chars from two strings ignoring case
130  *****************************************************************************/
131 #if !defined( HAVE_STRNCASECMP ) && !defined( HAVE_STRNICMP )
132 int vlc_strncasecmp( const char *s1, const char *s2, size_t n )
133 {
134     int c1, c2;
135     if( !s1 || !s2 ) return  -1;
136
137     while( n > 0 && *s1 && *s2 )
138     {
139         c1 = tolower(*s1);
140         c2 = tolower(*s2);
141
142         if( c1 != c2 ) return (c1 < c2 ? -1 : 1);
143         s1++; s2++; n--;
144     }
145
146     if( !n || (!*s1 && !*s2) ) return 0;
147     else return (*s1 ? 1 : -1);
148 }
149 #endif
150
151 /******************************************************************************
152  * strcasestr: find a substring (little) in another substring (big)
153  * Case sensitive. Return NULL if not found, return big if little == null
154  *****************************************************************************/
155 #if !defined( HAVE_STRCASESTR ) && !defined( HAVE_STRISTR )
156 char * vlc_strcasestr( const char *psz_big, const char *psz_little )
157 {
158     char *p_pos = (char *)psz_big;
159
160     if( !psz_big || !psz_little || !*psz_little ) return p_pos;
161  
162     while( *p_pos ) 
163     {
164         if( toupper( *p_pos ) == toupper( *psz_little ) )
165         {
166             char * psz_cur1 = p_pos + 1;
167             char * psz_cur2 = (char *)psz_little + 1;
168             while( *psz_cur1 && *psz_cur2 &&
169                    toupper( *psz_cur1 ) == toupper( *psz_cur2 ) )
170             {
171                 psz_cur1++;
172                 psz_cur2++;
173             }
174             if( !*psz_cur2 ) return p_pos;
175         }
176         p_pos++;
177     }
178     return NULL;
179 }
180 #endif
181
182 /*****************************************************************************
183  * vasprintf:
184  *****************************************************************************/
185 #if !defined(HAVE_VASPRINTF) || defined(SYS_DARWIN) || defined(SYS_BEOS)
186 int vlc_vasprintf(char **strp, const char *fmt, va_list ap)
187 {
188     /* Guess we need no more than 100 bytes. */
189     int     i_size = 100;
190     char    *p = malloc( i_size );
191     int     n;
192
193     if( p == NULL )
194     {
195         *strp = NULL;
196         return -1;
197     }
198
199     for( ;; )
200     {
201         /* Try to print in the allocated space. */
202         n = vsnprintf( p, i_size, fmt, ap );
203
204         /* If that worked, return the string. */
205         if (n > -1 && n < i_size)
206         {
207             *strp = p;
208             return strlen( p );
209         }
210         /* Else try again with more space. */
211         if (n > -1)    /* glibc 2.1 */
212         {
213            i_size = n+1; /* precisely what is needed */
214         }
215         else           /* glibc 2.0 */
216         {
217            i_size *= 2;  /* twice the old size */
218         }
219         if( (p = realloc( p, i_size ) ) == NULL)
220         {
221             *strp = NULL;
222             return -1;
223         }
224     }
225 }
226 #endif
227
228 /*****************************************************************************
229  * asprintf:
230  *****************************************************************************/
231 #if !defined(HAVE_ASPRINTF) || defined(SYS_DARWIN) || defined(SYS_BEOS)
232 int vlc_asprintf( char **strp, const char *fmt, ... )
233 {
234     va_list args;
235     int i_ret;
236
237     va_start( args, fmt );
238     i_ret = vasprintf( strp, fmt, args );
239     va_end( args );
240
241     return i_ret;
242 }
243 #endif
244
245 /*****************************************************************************
246  * atof: convert a string to a double.
247  *****************************************************************************/
248 #if !defined( HAVE_ATOF )
249 double vlc_atof( const char *nptr )
250 {
251     double f_result;
252     wchar_t *psz_tmp;
253     int i_len = strlen( nptr ) + 1;
254
255     psz_tmp = malloc( i_len * sizeof(wchar_t) );
256     MultiByteToWideChar( CP_ACP, 0, nptr, -1, psz_tmp, i_len );
257     f_result = wcstod( psz_tmp, NULL );
258     free( psz_tmp );
259
260     return f_result;
261 }
262 #endif
263
264 /*****************************************************************************
265  * strtoll: convert a string to a 64 bits int.
266  *****************************************************************************/
267 #if !defined( HAVE_STRTOLL )
268 int64_t vlc_strtoll( const char *nptr, char **endptr, int base )
269 {
270     int64_t i_value = 0;
271     int sign = 1, newbase = base ? base : 10;
272
273     while( isspace(*nptr) ) nptr++;
274
275     if( *nptr == '-' )
276     {
277         sign = -1;
278         nptr++;
279     }
280
281     /* Try to detect base */
282     if( *nptr == '0' )
283     {
284         newbase = 8;
285         nptr++;
286
287         if( *nptr == 'x' )
288         {
289             newbase = 16;
290             nptr++;
291         }
292     }
293
294     if( base && newbase != base )
295     {
296         if( endptr ) *endptr = (char *)nptr;
297         return i_value;
298     }
299
300     switch( newbase )
301     {
302         case 10:
303             while( *nptr >= '0' && *nptr <= '9' )
304             {
305                 i_value *= 10;
306                 i_value += ( *nptr++ - '0' );
307             }
308             if( endptr ) *endptr = (char *)nptr;
309             break;
310
311         case 16:
312             while( (*nptr >= '0' && *nptr <= '9') ||
313                    (*nptr >= 'a' && *nptr <= 'f') ||
314                    (*nptr >= 'A' && *nptr <= 'F') )
315             {
316                 int i_valc = 0;
317                 if(*nptr >= '0' && *nptr <= '9') i_valc = *nptr - '0';
318                 else if(*nptr >= 'a' && *nptr <= 'f') i_valc = *nptr - 'a' +10;
319                 else if(*nptr >= 'A' && *nptr <= 'F') i_valc = *nptr - 'A' +10;
320                 i_value *= 16;
321                 i_value += i_valc;
322                 nptr++;
323             }
324             if( endptr ) *endptr = (char *)nptr;
325             break;
326
327         default:
328             i_value = strtol( nptr, endptr, newbase );
329             break;
330     }
331
332     return i_value * sign;
333 }
334 #endif
335
336 /*****************************************************************************
337  * atoll: convert a string to a 64 bits int.
338  *****************************************************************************/
339 #if !defined( HAVE_ATOLL )
340 int64_t vlc_atoll( const char *nptr )
341 {
342     return strtoll( nptr, (char **)NULL, 10 );
343 }
344 #endif
345
346 /*****************************************************************************
347  * vlc_*dir_wrapper: wrapper under Windows to return the list of drive letters
348  * when called with an empty argument or just '\'
349  *****************************************************************************/
350 #if defined(WIN32) && !defined(UNDER_CE)
351 typedef struct vlc_DIR
352 {
353     DIR *p_real_dir;
354     int i_drives;
355     struct dirent dd_dir;
356     vlc_bool_t b_insert_back;
357 } vlc_DIR;
358
359 void *vlc_opendir_wrapper( const char *psz_path )
360 {
361     vlc_DIR *p_dir;
362     DIR *p_real_dir;
363
364     if ( psz_path == NULL || psz_path[0] == '\0'
365           || (psz_path[0] == '\\' && psz_path[1] == '\0') )
366     {
367         /* Special mode to list drive letters */
368         p_dir = malloc( sizeof(vlc_DIR) );
369         p_dir->p_real_dir = NULL;
370         p_dir->i_drives = GetLogicalDrives();
371         return (void *)p_dir;
372     }
373
374     p_real_dir = opendir( psz_path );
375     if ( p_real_dir == NULL )
376         return NULL;
377
378     p_dir = malloc( sizeof(vlc_DIR) );
379     p_dir->p_real_dir = p_real_dir;
380     p_dir->b_insert_back = ( psz_path[1] == ':' && psz_path[2] == '\\'
381                               && psz_path[3] =='\0' );
382     return (void *)p_dir;
383 }
384
385 struct dirent *vlc_readdir_wrapper( void *_p_dir )
386 {
387     vlc_DIR *p_dir = (vlc_DIR *)_p_dir;
388     unsigned int i;
389     DWORD i_drives;
390
391     if ( p_dir->p_real_dir != NULL )
392     {
393         if ( p_dir->b_insert_back )
394         {
395             p_dir->dd_dir.d_ino = 0;
396             p_dir->dd_dir.d_reclen = 0;
397             p_dir->dd_dir.d_namlen = 2;
398             strcpy( p_dir->dd_dir.d_name, ".." );
399             p_dir->b_insert_back = VLC_FALSE;
400             return &p_dir->dd_dir;
401         }
402
403         return readdir( p_dir->p_real_dir );
404     }
405
406     /* Drive letters mode */
407     i_drives = p_dir->i_drives;
408     if ( !i_drives )
409         return NULL; /* end */
410
411     for ( i = 0; i < sizeof(DWORD)*8; i++, i_drives >>= 1 )
412         if ( i_drives & 1 ) break;
413
414     if ( i >= 26 )
415         return NULL; /* this should not happen */
416
417     sprintf( p_dir->dd_dir.d_name, "%c:\\", 'A' + i );
418     p_dir->dd_dir.d_namlen = strlen(p_dir->dd_dir.d_name);
419     p_dir->i_drives &= ~(1UL << i);
420     return &p_dir->dd_dir;
421 }
422
423 int vlc_closedir_wrapper( void *_p_dir )
424 {
425     vlc_DIR *p_dir = (vlc_DIR *)_p_dir;
426
427     if ( p_dir->p_real_dir != NULL )
428     {
429         int i_ret = closedir( p_dir->p_real_dir );
430         free( p_dir );
431         return i_ret;
432     }
433
434     free( p_dir );
435     return 0;
436 }
437 #else
438 void *vlc_opendir_wrapper( const char *psz_path )
439 {
440     return (void *)opendir( psz_path );
441 }
442 struct dirent *vlc_readdir_wrapper( void *_p_dir )
443 {
444     return readdir( (DIR *)_p_dir );
445 }
446 int vlc_closedir_wrapper( void *_p_dir )
447 {
448     return closedir( (DIR *)_p_dir );
449 }
450 #endif
451
452 /*****************************************************************************
453  * scandir: scan a directory alpha-sorted
454  *****************************************************************************/
455 #if !defined( HAVE_SCANDIR )
456 int vlc_alphasort( const struct dirent **a, const struct dirent **b )
457 {
458     return strcoll( (*a)->d_name, (*b)->d_name );
459 }
460
461 int vlc_scandir( const char *name, struct dirent ***namelist,
462                     int (*filter) ( const struct dirent * ),
463                     int (*compar) ( const struct dirent **,
464                                     const struct dirent ** ) )
465 {
466     DIR            * p_dir;
467     struct dirent  * p_content;
468     struct dirent ** pp_list;
469     int              ret, size;
470
471     if( !namelist || !( p_dir = vlc_opendir_wrapper( name ) ) ) return -1;
472
473     ret     = 0;
474     pp_list = NULL;
475     while( ( p_content = vlc_readdir_wrapper( p_dir ) ) )
476     {
477         if( filter && !filter( p_content ) )
478         {
479             continue;
480         }
481         pp_list = realloc( pp_list, ( ret + 1 ) * sizeof( struct dirent * ) );
482         size = sizeof( struct dirent ) + strlen( p_content->d_name ) + 1;
483         pp_list[ret] = malloc( size );
484         memcpy( pp_list[ret], p_content, size );
485         ret++;
486     }
487
488     vlc_closedir_wrapper( p_dir );
489
490     if( compar )
491     {
492         qsort( pp_list, ret, sizeof( struct dirent * ),
493                (int (*)(const void *, const void *)) compar );
494     }
495
496     *namelist = pp_list;
497     return ret;
498 }
499 #endif
500
501 /*****************************************************************************
502  * dgettext: gettext for plugins.
503  *****************************************************************************/
504 char *vlc_dgettext( const char *package, const char *msgid )
505 {
506 #if defined( ENABLE_NLS ) \
507      && ( defined(HAVE_GETTEXT) || defined(HAVE_INCLUDED_GETTEXT) )
508     return dgettext( package, msgid );
509 #else
510     return (char *)msgid;
511 #endif
512 }
513
514 /*****************************************************************************
515  * count_utf8_string: returns the number of characters in the string.
516  *****************************************************************************/
517 static int count_utf8_string( const char *psz_string )
518 {
519     int i = 0, i_count = 0;
520     while( psz_string[ i ] != 0 )
521     {
522         if( ((unsigned char *)psz_string)[ i ] <  0x80UL ) i_count++;
523         i++;
524     }
525     return i_count;
526 }
527
528 /*****************************************************************************
529  * wraptext: inserts \n at convenient places to wrap the text.
530  *           Returns the modified string in a new buffer.
531  *****************************************************************************/
532 char *vlc_wraptext( const char *psz_text, int i_line, vlc_bool_t b_utf8 )
533 {
534     int i_len;
535     char *psz_line, *psz_new_text;
536
537     psz_line = psz_new_text = strdup( psz_text );
538
539     if( b_utf8 )
540         i_len = count_utf8_string( psz_text );
541     else
542         i_len = strlen( psz_text );
543
544     while( i_len > i_line )
545     {
546         /* Look if there is a newline somewhere. */
547         char *psz_parser = psz_line;
548         int i_count = 0;
549         while( i_count <= i_line && *psz_parser != '\n' )
550         {
551             if( b_utf8 )
552             {
553                 while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser++;
554             }
555             psz_parser++;
556             i_count++;
557         }
558         if( *psz_parser == '\n' )
559         {
560             i_len -= (i_count + 1);
561             psz_line = psz_parser + 1;
562             continue;
563         }
564
565         /* Find the furthest space. */
566         while( psz_parser > psz_line && *psz_parser != ' ' )
567         {
568             if( b_utf8 )
569             {
570                 while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser--;
571             }
572             psz_parser--;
573             i_count--;
574         }
575         if( *psz_parser == ' ' )
576         {
577             *psz_parser = '\n';
578             i_len -= (i_count + 1);
579             psz_line = psz_parser + 1;
580             continue;
581         }
582
583         /* Wrapping has failed. Find the first space or newline */
584         while( i_count < i_len && *psz_parser != ' ' && *psz_parser != '\n' )
585         {
586             if( b_utf8 )
587             {
588                 while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser++;
589             }
590             psz_parser++;
591             i_count++;
592         }
593         if( i_count < i_len ) *psz_parser = '\n';
594         i_len -= (i_count + 1);
595         psz_line = psz_parser + 1;
596     }
597
598     return psz_new_text;
599 }
600
601 /*****************************************************************************
602  * iconv wrapper
603  *****************************************************************************/
604 vlc_iconv_t vlc_iconv_open( const char *tocode, const char *fromcode )
605 {
606 #if defined(HAVE_ICONV)
607     return iconv_open( tocode, fromcode );
608 #else
609     return NULL;
610 #endif
611 }
612
613 size_t vlc_iconv( vlc_iconv_t cd, char **inbuf, size_t *inbytesleft,
614                   char **outbuf, size_t *outbytesleft )
615 {
616 #if defined(HAVE_ICONV)
617     return iconv( cd, inbuf, inbytesleft, outbuf, outbytesleft );
618 #else
619     int i_bytes;
620
621     if (inbytesleft == NULL || outbytesleft == NULL)
622     {
623         return 0;
624     }
625
626     i_bytes = __MIN(*inbytesleft, *outbytesleft);
627     if( !inbuf || !outbuf || !i_bytes ) return (size_t)(-1);
628     memcpy( *outbuf, *inbuf, i_bytes );
629     inbuf += i_bytes;
630     outbuf += i_bytes;
631     inbytesleft -= i_bytes;
632     outbytesleft -= i_bytes;
633     return i_bytes;
634 #endif
635 }
636
637 int vlc_iconv_close( vlc_iconv_t cd )
638 {
639 #if defined(HAVE_ICONV)
640     return iconv_close( cd );
641 #else
642     return 0;
643 #endif
644 }
645
646 /*****************************************************************************
647  * reduce a fraction
648  *   (adapted from libavcodec, author Michael Niedermayer <michaelni@gmx.at>)
649  *****************************************************************************/
650 vlc_bool_t vlc_ureduce( unsigned *pi_dst_nom, unsigned *pi_dst_den,
651                         uint64_t i_nom, uint64_t i_den, uint64_t i_max )
652 {
653     vlc_bool_t b_exact = 1;
654     uint64_t i_gcd;
655
656     if( i_den == 0 )
657     {
658         *pi_dst_nom = 0;
659         *pi_dst_den = 1;
660         return 1;
661     }
662
663     i_gcd = GCD( i_nom, i_den );
664     i_nom /= i_gcd;
665     i_den /= i_gcd;
666
667     if( i_max == 0 ) i_max = I64C(0xFFFFFFFF);
668
669     if( i_nom > i_max || i_den > i_max )
670     {
671         uint64_t i_a0_num = 0, i_a0_den = 1, i_a1_num = 1, i_a1_den = 0;
672         b_exact = 0;
673
674         for( ; ; )
675         {
676             uint64_t i_x = i_nom / i_den;
677             uint64_t i_a2n = i_x * i_a1_num + i_a0_num;
678             uint64_t i_a2d = i_x * i_a1_den + i_a0_den;
679
680             if( i_a2n > i_max || i_a2d > i_max ) break;
681
682             i_nom %= i_den;
683
684             i_a0_num = i_a1_num; i_a0_den = i_a1_den;
685             i_a1_num = i_a2n; i_a1_den = i_a2d;
686             if( i_nom == 0 ) break;
687             i_x = i_nom; i_nom = i_den; i_den = i_x;
688         }
689         i_nom = i_a1_num;
690         i_den = i_a1_den;
691     }
692
693     *pi_dst_nom = i_nom;
694     *pi_dst_den = i_den;
695
696     return b_exact;
697 }
698
699 /*************************************************************************
700  * vlc_parse_cmdline: Command line parsing into elements.
701  *
702  * The command line is composed of space/tab separated arguments.
703  * Quotes can be used as argument delimiters and a backslash can be used to
704  * escape a quote.
705  *************************************************************************/
706 static void find_end_quote( char **s, char **ppsz_parser, int i_quote )
707 {
708     int i_bcount = 0;
709
710     while( **s )
711     {
712         if( **s == '\\' )
713         {
714             **ppsz_parser = **s;
715             (*ppsz_parser)++; (*s)++;
716             i_bcount++;
717         }
718         else if( **s == '"' || **s == '\'' )
719         {
720             /* Preceeded by a number of '\' which we erase. */
721             *ppsz_parser -= i_bcount / 2;
722             if( i_bcount & 1 )
723             {
724                 /* '\\' followed by a '"' or '\'' */
725                 *ppsz_parser -= 1;
726                 **ppsz_parser = **s;
727                 (*ppsz_parser)++; (*s)++;
728                 i_bcount = 0;
729                 continue;
730             }
731
732             if( **s == i_quote )
733             {
734                 /* End */
735                 return;
736             }
737             else
738             {
739                 /* Different quoting */
740                 int i_quote = **s;
741                 **ppsz_parser = **s;
742                 (*ppsz_parser)++; (*s)++;
743                 find_end_quote( s, ppsz_parser, i_quote );
744                 **ppsz_parser = **s;
745                 (*ppsz_parser)++; (*s)++;
746             }
747
748             i_bcount = 0;
749         }
750         else
751         {
752             /* A regular character */
753             **ppsz_parser = **s;
754             (*ppsz_parser)++; (*s)++;
755             i_bcount = 0;
756         }
757     }
758 }
759
760 char **vlc_parse_cmdline( const char *psz_cmdline, int *i_args )
761 {
762     int argc = 0;
763     char **argv = 0;
764     char *s, *psz_parser, *psz_arg, *psz_orig;
765     int i_bcount = 0;
766
767     if( !psz_cmdline ) return 0;
768     psz_orig = strdup( psz_cmdline );
769     psz_arg = psz_parser = s = psz_orig;
770
771     while( *s )
772     {
773         if( *s == '\t' || *s == ' ' )
774         {
775             /* We have a complete argument */
776             *psz_parser = 0;
777             TAB_APPEND( argc, argv, strdup(psz_arg) );
778
779             /* Skip trailing spaces/tabs */
780             do{ s++; } while( *s == '\t' || *s == ' ' );
781
782             /* New argument */
783             psz_arg = psz_parser = s;
784             i_bcount = 0;
785         }
786         else if( *s == '\\' )
787         {
788             *psz_parser++ = *s++;
789             i_bcount++;
790         }
791         else if( *s == '"' || *s == '\'' )
792         {
793             if( ( i_bcount & 1 ) == 0 )
794             {
795                 /* Preceeded by an even number of '\', this is half that
796                  * number of '\', plus a quote which we erase. */
797                 int i_quote = *s;
798                 psz_parser -= i_bcount / 2;
799                 s++;
800                 find_end_quote( &s, &psz_parser, i_quote );
801                 s++;
802             }
803             else
804             {
805                 /* Preceeded by an odd number of '\', this is half that
806                  * number of '\' followed by a '"' */
807                 psz_parser = psz_parser - i_bcount/2 - 1;
808                 *psz_parser++ = '"';
809                 s++;
810             }
811             i_bcount = 0;
812         }
813         else
814         {
815             /* A regular character */
816             *psz_parser++ = *s++;
817             i_bcount = 0;
818         }
819     }
820
821     /* Take care of the last arg */
822     if( *psz_arg )
823     {
824         *psz_parser = '\0';
825         TAB_APPEND( argc, argv, strdup(psz_arg) );
826     }
827
828     if( i_args ) *i_args = argc;
829     free( psz_orig );
830     return argv;
831 }
832
833 /*************************************************************************
834  * vlc_execve: Execute an external program with a given environment,
835  * wait until it finishes and return its standard output
836  *************************************************************************/
837 int __vlc_execve( vlc_object_t *p_object, int i_argc, char **ppsz_argv,
838                   char **ppsz_env, char *psz_cwd, char *p_in, int i_in,
839                   char **pp_data, int *pi_data )
840 {
841 #ifdef HAVE_FORK
842     int pi_stdin[2];
843     int pi_stdout[2];
844     pid_t i_child_pid;
845
846     pipe( pi_stdin );
847     pipe( pi_stdout );
848
849     if ( (i_child_pid = fork()) == -1 )
850     {
851         msg_Err( p_object, "unable to fork (%s)", strerror(errno) );
852         return -1;
853     }
854
855     if ( i_child_pid == 0 )
856     {
857         close(0);
858         dup(pi_stdin[1]);
859         close(pi_stdin[0]);
860
861         close(1);
862         dup(pi_stdout[1]);
863         close(pi_stdout[0]);
864
865         close(2);
866
867         if ( psz_cwd != NULL )
868             chdir( psz_cwd );
869         execve( ppsz_argv[0], ppsz_argv, ppsz_env );
870         exit(1);
871     }
872
873     close(pi_stdin[1]);
874     close(pi_stdout[1]);
875     if ( !i_in )
876         close( pi_stdin[0] );
877
878     *pi_data = 0;
879     *pp_data = malloc( 1025 );  /* +1 for \0 */
880
881     while ( !p_object->b_die )
882     {
883         int i_ret, i_status;
884         fd_set readfds, writefds;
885         struct timeval tv;
886
887         FD_ZERO( &readfds );
888         FD_ZERO( &writefds );
889         FD_SET( pi_stdout[0], &readfds );
890         if ( i_in )
891             FD_SET( pi_stdin[0], &writefds );
892
893         tv.tv_sec = 0;
894         tv.tv_usec = 10000;
895         
896         i_ret = select( pi_stdin[0] > pi_stdout[0] ? pi_stdin[0] + 1 :
897                         pi_stdout[0] + 1, &readfds, &writefds, NULL, &tv );
898         if ( i_ret > 0 )
899         {
900             if ( FD_ISSET( pi_stdout[0], &readfds ) )
901             {
902                 ssize_t i_read = read( pi_stdout[0], &(*pp_data)[*pi_data],
903                                        1024 );
904                 if ( i_read > 0 )
905                 {
906                     *pi_data += i_read;
907                     *pp_data = realloc( *pp_data, *pi_data + 1025 );
908                 }
909             }
910             if ( FD_ISSET( pi_stdin[0], &writefds ) )
911             {
912                 ssize_t i_write = write( pi_stdin[0], p_in, __MIN(i_in, 1024) );
913
914                 if ( i_write > 0 )
915                 {
916                     p_in += i_write;
917                     i_in -= i_write;
918                 }
919                 if ( !i_in )
920                     close( pi_stdin[0] );
921             }
922         }
923
924         if ( waitpid( i_child_pid, &i_status, WNOHANG ) == i_child_pid )
925         {
926             if ( WIFEXITED( i_status ) )
927             {
928                 if ( WEXITSTATUS( i_status ) )
929                 {
930                     msg_Warn( p_object,
931                               "child %s returned with error code %d",
932                               ppsz_argv[0], WEXITSTATUS( i_status ) );
933                 }
934             }
935             else
936             {
937                 if ( WIFSIGNALED( i_status ) )
938                 {
939                     msg_Warn( p_object,
940                               "child %s quit on signal %d", ppsz_argv[0],
941                               WTERMSIG( i_status ) );
942                 }
943             }
944             if ( i_in )
945                 close( pi_stdin[0] );
946             close( pi_stdout[0] );
947             break;
948         }
949
950         if ( i_ret < 0 && errno != EINTR )
951         {
952             msg_Warn( p_object, "select failed (%s)", strerror(errno) );
953         }
954     }
955
956 #elif defined( WIN32 ) && !defined( UNDER_CE )
957     SECURITY_ATTRIBUTES saAttr; 
958     PROCESS_INFORMATION piProcInfo; 
959     STARTUPINFO siStartInfo;
960     BOOL bFuncRetn = FALSE; 
961     HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr;
962     DWORD i_status;
963     char *psz_cmd, *p_env, *p;
964     char **ppsz_parser;
965     int i_size;
966
967     /* Set the bInheritHandle flag so pipe handles are inherited. */
968     saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); 
969     saAttr.bInheritHandle = TRUE; 
970     saAttr.lpSecurityDescriptor = NULL; 
971
972     /* Create a pipe for the child process's STDOUT. */
973     if ( !CreatePipe( &hChildStdoutRd, &hChildStdoutWr, &saAttr, 0 ) ) 
974     {
975         msg_Err( p_object, "stdout pipe creation failed" ); 
976         return -1;
977     }
978
979     /* Ensure the read handle to the pipe for STDOUT is not inherited. */
980     SetHandleInformation( hChildStdoutRd, HANDLE_FLAG_INHERIT, 0 );
981
982     /* Create a pipe for the child process's STDIN. */
983     if ( !CreatePipe( &hChildStdinRd, &hChildStdinWr, &saAttr, 0 ) ) 
984     {
985         msg_Err( p_object, "stdin pipe creation failed" ); 
986         return -1;
987     }
988
989     /* Ensure the write handle to the pipe for STDIN is not inherited. */
990     SetHandleInformation( hChildStdinWr, HANDLE_FLAG_INHERIT, 0 );
991
992     /* Set up members of the PROCESS_INFORMATION structure. */
993     ZeroMemory( &piProcInfo, sizeof(PROCESS_INFORMATION) );
994  
995     /* Set up members of the STARTUPINFO structure. */
996     ZeroMemory( &siStartInfo, sizeof(STARTUPINFO) );
997     siStartInfo.cb = sizeof(STARTUPINFO); 
998     siStartInfo.hStdError = hChildStdoutWr;
999     siStartInfo.hStdOutput = hChildStdoutWr;
1000     siStartInfo.hStdInput = hChildStdinRd;
1001     siStartInfo.wShowWindow = SW_HIDE;
1002     siStartInfo.dwFlags |= STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
1003
1004     /* Set up the command line. */
1005     psz_cmd = malloc(32768);
1006     psz_cmd[0] = '\0';
1007     i_size = 32768;
1008     ppsz_parser = &ppsz_argv[0];
1009     while ( ppsz_parser[0] != NULL && i_size > 0 )
1010     {
1011         /* Protect the last argument with quotes ; the other arguments
1012          * are supposed to be already protected because they have been
1013          * passed as a command-line option. */
1014         if ( ppsz_parser[1] == NULL )
1015         {
1016             strncat( psz_cmd, "\"", i_size );
1017             i_size--;
1018         }
1019         strncat( psz_cmd, *ppsz_parser, i_size );
1020         i_size -= strlen( *ppsz_parser );
1021         if ( ppsz_parser[1] == NULL )
1022         {
1023             strncat( psz_cmd, "\"", i_size );
1024             i_size--;
1025         }
1026         strncat( psz_cmd, " ", i_size );
1027         i_size--;
1028         ppsz_parser++;
1029     }
1030
1031     /* Set up the environment. */
1032     p = p_env = malloc(32768);
1033     i_size = 32768;
1034     ppsz_parser = &ppsz_env[0];
1035     while ( *ppsz_parser != NULL && i_size > 0 )
1036     {
1037         memcpy( p, *ppsz_parser,
1038                 __MIN((int)(strlen(*ppsz_parser) + 1), i_size) );
1039         p += strlen(*ppsz_parser) + 1;
1040         i_size -= strlen(*ppsz_parser) + 1;
1041         ppsz_parser++;
1042     }
1043     *p = '\0';
1044  
1045     /* Create the child process. */
1046     bFuncRetn = CreateProcess( NULL,
1047           psz_cmd,       // command line 
1048           NULL,          // process security attributes 
1049           NULL,          // primary thread security attributes 
1050           TRUE,          // handles are inherited 
1051           0,             // creation flags 
1052           p_env,
1053           psz_cwd,
1054           &siStartInfo,  // STARTUPINFO pointer 
1055           &piProcInfo ); // receives PROCESS_INFORMATION 
1056
1057     free( psz_cmd );
1058     free( p_env );
1059    
1060     if ( bFuncRetn == 0 ) 
1061     {
1062         msg_Err( p_object, "child creation failed" ); 
1063         return -1;
1064     }
1065
1066     /* Read from a file and write its contents to a pipe. */
1067     while ( i_in > 0 && !p_object->b_die )
1068     {
1069         DWORD i_written;
1070         if ( !WriteFile( hChildStdinWr, p_in, i_in, &i_written, NULL ) )
1071             break;
1072         i_in -= i_written;
1073         p_in += i_written;
1074     }
1075
1076     /* Close the pipe handle so the child process stops reading. */
1077     CloseHandle(hChildStdinWr);
1078
1079     /* Close the write end of the pipe before reading from the
1080      * read end of the pipe. */
1081     CloseHandle(hChildStdoutWr);
1082  
1083     /* Read output from the child process. */
1084     *pi_data = 0;
1085     *pp_data = malloc( 1025 );  /* +1 for \0 */
1086
1087     while ( !p_object->b_die )
1088     {
1089         DWORD i_read;
1090         if ( !ReadFile( hChildStdoutRd, &(*pp_data)[*pi_data], 1024, &i_read, 
1091                         NULL )
1092               || i_read == 0 )
1093             break; 
1094         *pi_data += i_read;
1095         *pp_data = realloc( *pp_data, *pi_data + 1025 );
1096     }
1097
1098     while ( !p_object->b_die
1099              && !GetExitCodeProcess( piProcInfo.hProcess, &i_status )
1100              && i_status != STILL_ACTIVE )
1101         msleep( 10000 );
1102
1103     CloseHandle(piProcInfo.hProcess);
1104     CloseHandle(piProcInfo.hThread);
1105
1106     if ( i_status )
1107         msg_Warn( p_object,
1108                   "child %s returned with error code %ld",
1109                   ppsz_argv[0], i_status );
1110
1111 #else
1112     msg_Err( p_object, "vlc_execve called but no implementation is available" );
1113     return -1;
1114
1115 #endif
1116
1117     (*pp_data)[*pi_data] = '\0';
1118
1119     return 0;
1120 }