]> git.sesse.net Git - vlc/blob - src/extras/libc.c
WxWidgets: use wraptext in UTF-8 mode as that is the codeset for gettext
[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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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(__APPLE__) || 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(__APPLE__) || 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 #ifndef HAVE_SHARED_LIBVLC
502 /*****************************************************************************
503  * dgettext: gettext for plugins.
504  *****************************************************************************/
505 char *vlc_dgettext( const char *package, const char *msgid )
506 {
507 #if defined( ENABLE_NLS ) \
508      && ( defined(HAVE_GETTEXT) || defined(HAVE_INCLUDED_GETTEXT) )
509     return dgettext( package, msgid );
510 #else
511     return (char *)msgid;
512 #endif
513 }
514 #endif
515
516 /*****************************************************************************
517  * count_utf8_string: returns the number of characters in the string.
518  *****************************************************************************/
519 static int count_utf8_string( const char *psz_string )
520 {
521     int i = 0, i_count = 0;
522     while( psz_string[ i ] != 0 )
523     {
524         if( ((unsigned char *)psz_string)[ i ] <  0x80UL ) i_count++;
525         i++;
526     }
527     return i_count;
528 }
529
530 /*****************************************************************************
531  * wraptext: inserts \n at convenient places to wrap the text.
532  *           Returns the modified string in a new buffer.
533  *****************************************************************************/
534 char *vlc_wraptext( const char *psz_text, int i_line )
535 {
536     int i_len;
537     char *psz_line, *psz_new_text;
538
539     psz_line = psz_new_text = strdup( psz_text );
540
541     i_len = count_utf8_string( psz_text );
542
543     while( i_len > i_line )
544     {
545         /* Look if there is a newline somewhere. */
546         char *psz_parser = psz_line;
547         int i_count = 0;
548         while( i_count <= i_line && *psz_parser != '\n' )
549         {
550             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser++;
551             psz_parser++;
552             i_count++;
553         }
554         if( *psz_parser == '\n' )
555         {
556             i_len -= (i_count + 1);
557             psz_line = psz_parser + 1;
558             continue;
559         }
560
561         /* Find the furthest space. */
562         while( psz_parser > psz_line && *psz_parser != ' ' )
563         {
564             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser--;
565             psz_parser--;
566             i_count--;
567         }
568         if( *psz_parser == ' ' )
569         {
570             *psz_parser = '\n';
571             i_len -= (i_count + 1);
572             psz_line = psz_parser + 1;
573             continue;
574         }
575
576         /* Wrapping has failed. Find the first space or newline */
577         while( i_count < i_len && *psz_parser != ' ' && *psz_parser != '\n' )
578         {
579             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser++;
580             psz_parser++;
581             i_count++;
582         }
583         if( i_count < i_len ) *psz_parser = '\n';
584         i_len -= (i_count + 1);
585         psz_line = psz_parser + 1;
586     }
587
588     return psz_new_text;
589 }
590
591 /*****************************************************************************
592  * iconv wrapper
593  *****************************************************************************/
594 vlc_iconv_t vlc_iconv_open( const char *tocode, const char *fromcode )
595 {
596 #if defined(HAVE_ICONV)
597     return iconv_open( tocode, fromcode );
598 #else
599     return NULL;
600 #endif
601 }
602
603 size_t vlc_iconv( vlc_iconv_t cd, char **inbuf, size_t *inbytesleft,
604                   char **outbuf, size_t *outbytesleft )
605 {
606 #if defined(HAVE_ICONV)
607     return iconv( cd, inbuf, inbytesleft, outbuf, outbytesleft );
608 #else
609     int i_bytes;
610
611     if (inbytesleft == NULL || outbytesleft == NULL)
612     {
613         return 0;
614     }
615
616     i_bytes = __MIN(*inbytesleft, *outbytesleft);
617     if( !inbuf || !outbuf || !i_bytes ) return (size_t)(-1);
618     memcpy( *outbuf, *inbuf, i_bytes );
619     inbuf += i_bytes;
620     outbuf += i_bytes;
621     inbytesleft -= i_bytes;
622     outbytesleft -= i_bytes;
623     return i_bytes;
624 #endif
625 }
626
627 int vlc_iconv_close( vlc_iconv_t cd )
628 {
629 #if defined(HAVE_ICONV)
630     return iconv_close( cd );
631 #else
632     return 0;
633 #endif
634 }
635
636 /*****************************************************************************
637  * reduce a fraction
638  *   (adapted from libavcodec, author Michael Niedermayer <michaelni@gmx.at>)
639  *****************************************************************************/
640 vlc_bool_t vlc_ureduce( unsigned *pi_dst_nom, unsigned *pi_dst_den,
641                         uint64_t i_nom, uint64_t i_den, uint64_t i_max )
642 {
643     vlc_bool_t b_exact = 1;
644     uint64_t i_gcd;
645
646     if( i_den == 0 )
647     {
648         *pi_dst_nom = 0;
649         *pi_dst_den = 1;
650         return 1;
651     }
652
653     i_gcd = GCD( i_nom, i_den );
654     i_nom /= i_gcd;
655     i_den /= i_gcd;
656
657     if( i_max == 0 ) i_max = I64C(0xFFFFFFFF);
658
659     if( i_nom > i_max || i_den > i_max )
660     {
661         uint64_t i_a0_num = 0, i_a0_den = 1, i_a1_num = 1, i_a1_den = 0;
662         b_exact = 0;
663
664         for( ; ; )
665         {
666             uint64_t i_x = i_nom / i_den;
667             uint64_t i_a2n = i_x * i_a1_num + i_a0_num;
668             uint64_t i_a2d = i_x * i_a1_den + i_a0_den;
669
670             if( i_a2n > i_max || i_a2d > i_max ) break;
671
672             i_nom %= i_den;
673
674             i_a0_num = i_a1_num; i_a0_den = i_a1_den;
675             i_a1_num = i_a2n; i_a1_den = i_a2d;
676             if( i_nom == 0 ) break;
677             i_x = i_nom; i_nom = i_den; i_den = i_x;
678         }
679         i_nom = i_a1_num;
680         i_den = i_a1_den;
681     }
682
683     *pi_dst_nom = i_nom;
684     *pi_dst_den = i_den;
685
686     return b_exact;
687 }
688
689 /*************************************************************************
690  * vlc_parse_cmdline: Command line parsing into elements.
691  *
692  * The command line is composed of space/tab separated arguments.
693  * Quotes can be used as argument delimiters and a backslash can be used to
694  * escape a quote.
695  *************************************************************************/
696 static void find_end_quote( char **s, char **ppsz_parser, int i_quote )
697 {
698     int i_bcount = 0;
699
700     while( **s )
701     {
702         if( **s == '\\' )
703         {
704             **ppsz_parser = **s;
705             (*ppsz_parser)++; (*s)++;
706             i_bcount++;
707         }
708         else if( **s == '"' || **s == '\'' )
709         {
710             /* Preceeded by a number of '\' which we erase. */
711             *ppsz_parser -= i_bcount / 2;
712             if( i_bcount & 1 )
713             {
714                 /* '\\' followed by a '"' or '\'' */
715                 *ppsz_parser -= 1;
716                 **ppsz_parser = **s;
717                 (*ppsz_parser)++; (*s)++;
718                 i_bcount = 0;
719                 continue;
720             }
721
722             if( **s == i_quote )
723             {
724                 /* End */
725                 return;
726             }
727             else
728             {
729                 /* Different quoting */
730                 int i_quote = **s;
731                 **ppsz_parser = **s;
732                 (*ppsz_parser)++; (*s)++;
733                 find_end_quote( s, ppsz_parser, i_quote );
734                 **ppsz_parser = **s;
735                 (*ppsz_parser)++; (*s)++;
736             }
737
738             i_bcount = 0;
739         }
740         else
741         {
742             /* A regular character */
743             **ppsz_parser = **s;
744             (*ppsz_parser)++; (*s)++;
745             i_bcount = 0;
746         }
747     }
748 }
749
750 char **vlc_parse_cmdline( const char *psz_cmdline, int *i_args )
751 {
752     int argc = 0;
753     char **argv = 0;
754     char *s, *psz_parser, *psz_arg, *psz_orig;
755     int i_bcount = 0;
756
757     if( !psz_cmdline ) return 0;
758     psz_orig = strdup( psz_cmdline );
759     psz_arg = psz_parser = s = psz_orig;
760
761     while( *s )
762     {
763         if( *s == '\t' || *s == ' ' )
764         {
765             /* We have a complete argument */
766             *psz_parser = 0;
767             TAB_APPEND( argc, argv, strdup(psz_arg) );
768
769             /* Skip trailing spaces/tabs */
770             do{ s++; } while( *s == '\t' || *s == ' ' );
771
772             /* New argument */
773             psz_arg = psz_parser = s;
774             i_bcount = 0;
775         }
776         else if( *s == '\\' )
777         {
778             *psz_parser++ = *s++;
779             i_bcount++;
780         }
781         else if( *s == '"' || *s == '\'' )
782         {
783             if( ( i_bcount & 1 ) == 0 )
784             {
785                 /* Preceeded by an even number of '\', this is half that
786                  * number of '\', plus a quote which we erase. */
787                 int i_quote = *s;
788                 psz_parser -= i_bcount / 2;
789                 s++;
790                 find_end_quote( &s, &psz_parser, i_quote );
791                 s++;
792             }
793             else
794             {
795                 /* Preceeded by an odd number of '\', this is half that
796                  * number of '\' followed by a '"' */
797                 psz_parser = psz_parser - i_bcount/2 - 1;
798                 *psz_parser++ = '"';
799                 s++;
800             }
801             i_bcount = 0;
802         }
803         else
804         {
805             /* A regular character */
806             *psz_parser++ = *s++;
807             i_bcount = 0;
808         }
809     }
810
811     /* Take care of the last arg */
812     if( *psz_arg )
813     {
814         *psz_parser = '\0';
815         TAB_APPEND( argc, argv, strdup(psz_arg) );
816     }
817
818     if( i_args ) *i_args = argc;
819     free( psz_orig );
820     return argv;
821 }
822
823 /*************************************************************************
824  * vlc_execve: Execute an external program with a given environment,
825  * wait until it finishes and return its standard output
826  *************************************************************************/
827 int __vlc_execve( vlc_object_t *p_object, int i_argc, char **ppsz_argv,
828                   char **ppsz_env, char *psz_cwd, char *p_in, int i_in,
829                   char **pp_data, int *pi_data )
830 {
831 #ifdef HAVE_FORK
832     int pi_stdin[2];
833     int pi_stdout[2];
834     pid_t i_child_pid;
835
836     pipe( pi_stdin );
837     pipe( pi_stdout );
838
839     if ( (i_child_pid = fork()) == -1 )
840     {
841         msg_Err( p_object, "unable to fork (%s)", strerror(errno) );
842         return -1;
843     }
844
845     if ( i_child_pid == 0 )
846     {
847         close(0);
848         dup(pi_stdin[1]);
849         close(pi_stdin[0]);
850
851         close(1);
852         dup(pi_stdout[1]);
853         close(pi_stdout[0]);
854
855         close(2);
856
857         if ( psz_cwd != NULL )
858             chdir( psz_cwd );
859         execve( ppsz_argv[0], ppsz_argv, ppsz_env );
860         exit(1);
861     }
862
863     close(pi_stdin[1]);
864     close(pi_stdout[1]);
865     if ( !i_in )
866         close( pi_stdin[0] );
867
868     *pi_data = 0;
869     *pp_data = malloc( 1025 );  /* +1 for \0 */
870
871     while ( !p_object->b_die )
872     {
873         int i_ret, i_status;
874         fd_set readfds, writefds;
875         struct timeval tv;
876
877         FD_ZERO( &readfds );
878         FD_ZERO( &writefds );
879         FD_SET( pi_stdout[0], &readfds );
880         if ( i_in )
881             FD_SET( pi_stdin[0], &writefds );
882
883         tv.tv_sec = 0;
884         tv.tv_usec = 10000;
885         
886         i_ret = select( pi_stdin[0] > pi_stdout[0] ? pi_stdin[0] + 1 :
887                         pi_stdout[0] + 1, &readfds, &writefds, NULL, &tv );
888         if ( i_ret > 0 )
889         {
890             if ( FD_ISSET( pi_stdout[0], &readfds ) )
891             {
892                 ssize_t i_read = read( pi_stdout[0], &(*pp_data)[*pi_data],
893                                        1024 );
894                 if ( i_read > 0 )
895                 {
896                     *pi_data += i_read;
897                     *pp_data = realloc( *pp_data, *pi_data + 1025 );
898                 }
899             }
900             if ( FD_ISSET( pi_stdin[0], &writefds ) )
901             {
902                 ssize_t i_write = write( pi_stdin[0], p_in, __MIN(i_in, 1024) );
903
904                 if ( i_write > 0 )
905                 {
906                     p_in += i_write;
907                     i_in -= i_write;
908                 }
909                 if ( !i_in )
910                     close( pi_stdin[0] );
911             }
912         }
913
914         if ( waitpid( i_child_pid, &i_status, WNOHANG ) == i_child_pid )
915         {
916             if ( WIFEXITED( i_status ) )
917             {
918                 if ( WEXITSTATUS( i_status ) )
919                 {
920                     msg_Warn( p_object,
921                               "child %s returned with error code %d",
922                               ppsz_argv[0], WEXITSTATUS( i_status ) );
923                 }
924             }
925             else
926             {
927                 if ( WIFSIGNALED( i_status ) )
928                 {
929                     msg_Warn( p_object,
930                               "child %s quit on signal %d", ppsz_argv[0],
931                               WTERMSIG( i_status ) );
932                 }
933             }
934             if ( i_in )
935                 close( pi_stdin[0] );
936             close( pi_stdout[0] );
937             break;
938         }
939
940         if ( i_ret < 0 && errno != EINTR )
941         {
942             msg_Warn( p_object, "select failed (%s)", strerror(errno) );
943         }
944     }
945
946 #elif defined( WIN32 ) && !defined( UNDER_CE )
947     SECURITY_ATTRIBUTES saAttr; 
948     PROCESS_INFORMATION piProcInfo; 
949     STARTUPINFO siStartInfo;
950     BOOL bFuncRetn = FALSE; 
951     HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr;
952     DWORD i_status;
953     char *psz_cmd, *p_env, *p;
954     char **ppsz_parser;
955     int i_size;
956
957     /* Set the bInheritHandle flag so pipe handles are inherited. */
958     saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); 
959     saAttr.bInheritHandle = TRUE; 
960     saAttr.lpSecurityDescriptor = NULL; 
961
962     /* Create a pipe for the child process's STDOUT. */
963     if ( !CreatePipe( &hChildStdoutRd, &hChildStdoutWr, &saAttr, 0 ) ) 
964     {
965         msg_Err( p_object, "stdout pipe creation failed" ); 
966         return -1;
967     }
968
969     /* Ensure the read handle to the pipe for STDOUT is not inherited. */
970     SetHandleInformation( hChildStdoutRd, HANDLE_FLAG_INHERIT, 0 );
971
972     /* Create a pipe for the child process's STDIN. */
973     if ( !CreatePipe( &hChildStdinRd, &hChildStdinWr, &saAttr, 0 ) ) 
974     {
975         msg_Err( p_object, "stdin pipe creation failed" ); 
976         return -1;
977     }
978
979     /* Ensure the write handle to the pipe for STDIN is not inherited. */
980     SetHandleInformation( hChildStdinWr, HANDLE_FLAG_INHERIT, 0 );
981
982     /* Set up members of the PROCESS_INFORMATION structure. */
983     ZeroMemory( &piProcInfo, sizeof(PROCESS_INFORMATION) );
984  
985     /* Set up members of the STARTUPINFO structure. */
986     ZeroMemory( &siStartInfo, sizeof(STARTUPINFO) );
987     siStartInfo.cb = sizeof(STARTUPINFO); 
988     siStartInfo.hStdError = hChildStdoutWr;
989     siStartInfo.hStdOutput = hChildStdoutWr;
990     siStartInfo.hStdInput = hChildStdinRd;
991     siStartInfo.wShowWindow = SW_HIDE;
992     siStartInfo.dwFlags |= STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
993
994     /* Set up the command line. */
995     psz_cmd = malloc(32768);
996     psz_cmd[0] = '\0';
997     i_size = 32768;
998     ppsz_parser = &ppsz_argv[0];
999     while ( ppsz_parser[0] != NULL && i_size > 0 )
1000     {
1001         /* Protect the last argument with quotes ; the other arguments
1002          * are supposed to be already protected because they have been
1003          * passed as a command-line option. */
1004         if ( ppsz_parser[1] == NULL )
1005         {
1006             strncat( psz_cmd, "\"", i_size );
1007             i_size--;
1008         }
1009         strncat( psz_cmd, *ppsz_parser, i_size );
1010         i_size -= strlen( *ppsz_parser );
1011         if ( ppsz_parser[1] == NULL )
1012         {
1013             strncat( psz_cmd, "\"", i_size );
1014             i_size--;
1015         }
1016         strncat( psz_cmd, " ", i_size );
1017         i_size--;
1018         ppsz_parser++;
1019     }
1020
1021     /* Set up the environment. */
1022     p = p_env = malloc(32768);
1023     i_size = 32768;
1024     ppsz_parser = &ppsz_env[0];
1025     while ( *ppsz_parser != NULL && i_size > 0 )
1026     {
1027         memcpy( p, *ppsz_parser,
1028                 __MIN((int)(strlen(*ppsz_parser) + 1), i_size) );
1029         p += strlen(*ppsz_parser) + 1;
1030         i_size -= strlen(*ppsz_parser) + 1;
1031         ppsz_parser++;
1032     }
1033     *p = '\0';
1034  
1035     /* Create the child process. */
1036     bFuncRetn = CreateProcess( NULL,
1037           psz_cmd,       // command line 
1038           NULL,          // process security attributes 
1039           NULL,          // primary thread security attributes 
1040           TRUE,          // handles are inherited 
1041           0,             // creation flags 
1042           p_env,
1043           psz_cwd,
1044           &siStartInfo,  // STARTUPINFO pointer 
1045           &piProcInfo ); // receives PROCESS_INFORMATION 
1046
1047     free( psz_cmd );
1048     free( p_env );
1049    
1050     if ( bFuncRetn == 0 ) 
1051     {
1052         msg_Err( p_object, "child creation failed" ); 
1053         return -1;
1054     }
1055
1056     /* Read from a file and write its contents to a pipe. */
1057     while ( i_in > 0 && !p_object->b_die )
1058     {
1059         DWORD i_written;
1060         if ( !WriteFile( hChildStdinWr, p_in, i_in, &i_written, NULL ) )
1061             break;
1062         i_in -= i_written;
1063         p_in += i_written;
1064     }
1065
1066     /* Close the pipe handle so the child process stops reading. */
1067     CloseHandle(hChildStdinWr);
1068
1069     /* Close the write end of the pipe before reading from the
1070      * read end of the pipe. */
1071     CloseHandle(hChildStdoutWr);
1072  
1073     /* Read output from the child process. */
1074     *pi_data = 0;
1075     *pp_data = malloc( 1025 );  /* +1 for \0 */
1076
1077     while ( !p_object->b_die )
1078     {
1079         DWORD i_read;
1080         if ( !ReadFile( hChildStdoutRd, &(*pp_data)[*pi_data], 1024, &i_read, 
1081                         NULL )
1082               || i_read == 0 )
1083             break; 
1084         *pi_data += i_read;
1085         *pp_data = realloc( *pp_data, *pi_data + 1025 );
1086     }
1087
1088     while ( !p_object->b_die
1089              && !GetExitCodeProcess( piProcInfo.hProcess, &i_status )
1090              && i_status != STILL_ACTIVE )
1091         msleep( 10000 );
1092
1093     CloseHandle(piProcInfo.hProcess);
1094     CloseHandle(piProcInfo.hThread);
1095
1096     if ( i_status )
1097         msg_Warn( p_object,
1098                   "child %s returned with error code %ld",
1099                   ppsz_argv[0], i_status );
1100
1101 #else
1102     msg_Err( p_object, "vlc_execve called but no implementation is available" );
1103     return -1;
1104
1105 #endif
1106
1107     (*pp_data)[*pi_data] = '\0';
1108
1109     return 0;
1110 }