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