]> git.sesse.net Git - vlc/blob - src/extras/libc.c
Inline atoll and atof
[vlc] / src / extras / libc.c
1 /*****************************************************************************
2  * libc.c: Extra libc function for some systems.
3  *****************************************************************************
4  * Copyright (C) 2002-2006 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  *          Rémi Denis-Courmont <rem à videolan.org>
13  *
14  * This program is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
27  *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/vlc.h>
33
34 #include <ctype.h>
35
36
37 #undef iconv_t
38 #undef iconv_open
39 #undef iconv
40 #undef iconv_close
41
42 #if defined(HAVE_ICONV)
43 #   include <iconv.h>
44 #endif
45
46 #ifdef HAVE_DIRENT_H
47 #   include <dirent.h>
48 #endif
49
50 #ifdef HAVE_SIGNAL_H
51 #   include <signal.h>
52 #endif
53
54 #ifdef HAVE_FORK
55 #   include <sys/time.h>
56 #   include <unistd.h>
57 #   include <errno.h>
58 #   include <sys/wait.h>
59 #   include <fcntl.h>
60 #   include <sys/socket.h>
61 #   include <sys/poll.h>
62 #endif
63
64 #if defined(WIN32) || defined(UNDER_CE)
65 #   undef _wopendir
66 #   undef _wreaddir
67 #   undef _wclosedir
68 #   undef rewinddir
69 #   define WIN32_LEAN_AND_MEAN
70 #   include <windows.h>
71 #endif
72
73 #ifdef UNDER_CE
74 #   define strcoll strcmp
75 #endif
76
77 /*****************************************************************************
78  * strnlen:
79  *****************************************************************************/
80 #if !defined( HAVE_STRNLEN )
81 size_t vlc_strnlen( const char *psz, size_t n )
82 {
83     const char *psz_end = memchr( psz, 0, n );
84     return psz_end ? (size_t)( psz_end - psz ) : n;
85 }
86 #endif
87
88 /*****************************************************************************
89  * strcasecmp: compare two strings ignoring case
90  *****************************************************************************/
91 #if !defined( HAVE_STRCASECMP ) && !defined( HAVE_STRICMP )
92 int vlc_strcasecmp( const char *s1, const char *s2 )
93 {
94     int c1, c2;
95     if( !s1 || !s2 ) return  -1;
96
97     while( *s1 && *s2 )
98     {
99         c1 = tolower(*s1);
100         c2 = tolower(*s2);
101
102         if( c1 != c2 ) return (c1 < c2 ? -1 : 1);
103         s1++; s2++;
104     }
105
106     if( !*s1 && !*s2 ) return 0;
107     else return (*s1 ? 1 : -1);
108 }
109 #endif
110
111 /*****************************************************************************
112  * strncasecmp: compare n chars from two strings ignoring case
113  *****************************************************************************/
114 #if !defined( HAVE_STRNCASECMP ) && !defined( HAVE_STRNICMP )
115 int vlc_strncasecmp( const char *s1, const char *s2, size_t n )
116 {
117     int c1, c2;
118     if( !s1 || !s2 ) return  -1;
119
120     while( n > 0 && *s1 && *s2 )
121     {
122         c1 = tolower(*s1);
123         c2 = tolower(*s2);
124
125         if( c1 != c2 ) return (c1 < c2 ? -1 : 1);
126         s1++; s2++; n--;
127     }
128
129     if( !n || (!*s1 && !*s2) ) return 0;
130     else return (*s1 ? 1 : -1);
131 }
132 #endif
133
134 /******************************************************************************
135  * strcasestr: find a substring (little) in another substring (big)
136  * Case sensitive. Return NULL if not found, return big if little == null
137  *****************************************************************************/
138 #if !defined( HAVE_STRCASESTR ) && !defined( HAVE_STRISTR )
139 char * vlc_strcasestr( const char *psz_big, const char *psz_little )
140 {
141     char *p_pos = (char *)psz_big;
142
143     if( !psz_big || !psz_little || !*psz_little ) return p_pos;
144  
145     while( *p_pos )
146     {
147         if( toupper( *p_pos ) == toupper( *psz_little ) )
148         {
149             char * psz_cur1 = p_pos + 1;
150             char * psz_cur2 = (char *)psz_little + 1;
151             while( *psz_cur1 && *psz_cur2 &&
152                    toupper( *psz_cur1 ) == toupper( *psz_cur2 ) )
153             {
154                 psz_cur1++;
155                 psz_cur2++;
156             }
157             if( !*psz_cur2 ) return p_pos;
158         }
159         p_pos++;
160     }
161     return NULL;
162 }
163 #endif
164
165 /*****************************************************************************
166  * vasprintf:
167  *****************************************************************************/
168 #if !defined(HAVE_VASPRINTF) || defined(__APPLE__) || defined(SYS_BEOS)
169 int vlc_vasprintf(char **strp, const char *fmt, va_list ap)
170 {
171     /* Guess we need no more than 100 bytes. */
172     int     i_size = 100;
173     char    *p = malloc( i_size );
174     int     n;
175
176     if( p == NULL )
177     {
178         *strp = NULL;
179         return -1;
180     }
181
182     for( ;; )
183     {
184         /* Try to print in the allocated space. */
185         n = vsnprintf( p, i_size, fmt, ap );
186
187         /* If that worked, return the string. */
188         if (n > -1 && n < i_size)
189         {
190             *strp = p;
191             return strlen( p );
192         }
193         /* Else try again with more space. */
194         if (n > -1)    /* glibc 2.1 */
195         {
196            i_size = n+1; /* precisely what is needed */
197         }
198         else           /* glibc 2.0 */
199         {
200            i_size *= 2;  /* twice the old size */
201         }
202         if( (p = realloc( p, i_size ) ) == NULL)
203         {
204             *strp = NULL;
205             return -1;
206         }
207     }
208 }
209 #endif
210
211 /*****************************************************************************
212  * asprintf:
213  *****************************************************************************/
214 #if !defined(HAVE_ASPRINTF) || defined(__APPLE__) || defined(SYS_BEOS)
215 int vlc_asprintf( char **strp, const char *fmt, ... )
216 {
217     va_list args;
218     int i_ret;
219
220     va_start( args, fmt );
221     i_ret = vasprintf( strp, fmt, args );
222     va_end( args );
223
224     return i_ret;
225 }
226 #endif
227
228 /*****************************************************************************
229  * strtoll: convert a string to a 64 bits int.
230  *****************************************************************************/
231 #if !defined( HAVE_STRTOLL )
232 int64_t vlc_strtoll( const char *nptr, char **endptr, int base )
233 {
234     int64_t i_value = 0;
235     int sign = 1, newbase = base ? base : 10;
236
237     while( isspace(*nptr) ) nptr++;
238
239     if( *nptr == '-' )
240     {
241         sign = -1;
242         nptr++;
243     }
244
245     /* Try to detect base */
246     if( *nptr == '0' )
247     {
248         newbase = 8;
249         nptr++;
250
251         if( *nptr == 'x' )
252         {
253             newbase = 16;
254             nptr++;
255         }
256     }
257
258     if( base && newbase != base )
259     {
260         if( endptr ) *endptr = (char *)nptr;
261         return i_value;
262     }
263
264     switch( newbase )
265     {
266         case 10:
267             while( *nptr >= '0' && *nptr <= '9' )
268             {
269                 i_value *= 10;
270                 i_value += ( *nptr++ - '0' );
271             }
272             if( endptr ) *endptr = (char *)nptr;
273             break;
274
275         case 16:
276             while( (*nptr >= '0' && *nptr <= '9') ||
277                    (*nptr >= 'a' && *nptr <= 'f') ||
278                    (*nptr >= 'A' && *nptr <= 'F') )
279             {
280                 int i_valc = 0;
281                 if(*nptr >= '0' && *nptr <= '9') i_valc = *nptr - '0';
282                 else if(*nptr >= 'a' && *nptr <= 'f') i_valc = *nptr - 'a' +10;
283                 else if(*nptr >= 'A' && *nptr <= 'F') i_valc = *nptr - 'A' +10;
284                 i_value *= 16;
285                 i_value += i_valc;
286                 nptr++;
287             }
288             if( endptr ) *endptr = (char *)nptr;
289             break;
290
291         default:
292             i_value = strtol( nptr, endptr, newbase );
293             break;
294     }
295
296     return i_value * sign;
297 }
298 #endif
299
300 /**
301  * Copy a string to a sized buffer. The result is always nul-terminated
302  * (contrary to strncpy()).
303  *
304  * @param dest destination buffer
305  * @param src string to be copied
306  * @param len maximum number of characters to be copied plus one for the
307  * terminating nul.
308  *
309  * @return strlen(src)
310  */
311 #ifndef HAVE_STRLCPY
312 extern size_t vlc_strlcpy (char *tgt, const char *src, size_t bufsize)
313 {
314     size_t length;
315
316     for (length = 1; (length < bufsize) && *src; length++)
317         *tgt++ = *src++;
318
319     if (bufsize)
320         *tgt = '\0';
321
322     while (*src++)
323         length++;
324
325     return length - 1;
326 }
327 #endif
328
329 /*****************************************************************************
330  * vlc_*dir_wrapper: wrapper under Windows to return the list of drive letters
331  * when called with an empty argument or just '\'
332  *****************************************************************************/
333 #if defined(WIN32) && !defined(UNDER_CE)
334 #   include <assert.h>
335
336 typedef struct vlc_DIR
337 {
338     _WDIR *p_real_dir;
339     int i_drives;
340     struct _wdirent dd_dir;
341     bool b_insert_back;
342 } vlc_DIR;
343
344 void *vlc_wopendir( const wchar_t *wpath )
345 {
346     vlc_DIR *p_dir = NULL;
347     _WDIR *p_real_dir = NULL;
348
349     if ( wpath == NULL || wpath[0] == '\0'
350           || (wcscmp (wpath, L"\\") == 0) )
351     {
352         /* Special mode to list drive letters */
353         p_dir = malloc( sizeof(vlc_DIR) );
354         if( !p_dir )
355             return NULL;
356         p_dir->p_real_dir = NULL;
357         p_dir->i_drives = GetLogicalDrives();
358         return (void *)p_dir;
359     }
360
361     p_real_dir = _wopendir( wpath );
362     if ( p_real_dir == NULL )
363         return NULL;
364
365     p_dir = malloc( sizeof(vlc_DIR) );
366     if( !p_dir )
367     {
368         _wclosedir( p_real_dir );
369         return NULL;
370     }
371     p_dir->p_real_dir = p_real_dir;
372
373     assert (wpath[0]); // wpath[1] is defined
374     p_dir->b_insert_back = !wcscmp (wpath + 1, L":\\");
375     return (void *)p_dir;
376 }
377
378 struct _wdirent *vlc_wreaddir( void *_p_dir )
379 {
380     vlc_DIR *p_dir = (vlc_DIR *)_p_dir;
381     unsigned int i;
382     DWORD i_drives;
383
384     if ( p_dir->p_real_dir != NULL )
385     {
386         if ( p_dir->b_insert_back )
387         {
388             /* Adds "..", gruik! */
389             p_dir->dd_dir.d_ino = 0;
390             p_dir->dd_dir.d_reclen = 0;
391             p_dir->dd_dir.d_namlen = 2;
392             wcscpy( p_dir->dd_dir.d_name, L".." );
393             p_dir->b_insert_back = false;
394             return &p_dir->dd_dir;
395         }
396
397         return _wreaddir( p_dir->p_real_dir );
398     }
399
400     /* Drive letters mode */
401     i_drives = p_dir->i_drives;
402     if ( !i_drives )
403         return NULL; /* end */
404
405     for ( i = 0; i < sizeof(DWORD)*8; i++, i_drives >>= 1 )
406         if ( i_drives & 1 ) break;
407
408     if ( i >= 26 )
409         return NULL; /* this should not happen */
410
411     swprintf( p_dir->dd_dir.d_name, L"%c:\\", 'A' + i );
412     p_dir->dd_dir.d_namlen = wcslen(p_dir->dd_dir.d_name);
413     p_dir->i_drives &= ~(1UL << i);
414     return &p_dir->dd_dir;
415 }
416
417 int vlc_wclosedir( void *_p_dir )
418 {
419     vlc_DIR *p_dir = (vlc_DIR *)_p_dir;
420     int i_ret = 0;
421
422     if ( p_dir->p_real_dir != NULL )
423         i_ret = _wclosedir( p_dir->p_real_dir );
424
425     free( p_dir );
426     return i_ret;
427 }
428
429 void vlc_rewinddir( void *_p_dir )
430 {
431     vlc_DIR *p_dir = (vlc_DIR *)_p_dir;
432
433     if ( p_dir->p_real_dir != NULL )
434         _wrewinddir( p_dir->p_real_dir );
435 }
436 #endif
437
438 /*****************************************************************************
439  * scandir: scan a directory alpha-sorted
440  *****************************************************************************/
441 #if !defined( HAVE_SCANDIR )
442 /* FIXME: I suspect this is dead code -> utf8_scandir */
443 #ifdef WIN32
444 # undef opendir
445 # undef readdir
446 # undef closedir
447 #endif
448 int vlc_alphasort( const struct dirent **a, const struct dirent **b )
449 {
450     return strcoll( (*a)->d_name, (*b)->d_name );
451 }
452
453 int vlc_scandir( const char *name, struct dirent ***namelist,
454                     int (*filter) ( const struct dirent * ),
455                     int (*compar) ( const struct dirent **,
456                                     const struct dirent ** ) )
457 {
458     DIR            * p_dir;
459     struct dirent  * p_content;
460     struct dirent ** pp_list;
461     int              ret, size;
462
463     if( !namelist || !( p_dir = opendir( name ) ) ) return -1;
464
465     ret     = 0;
466     pp_list = NULL;
467     while( ( p_content = readdir( p_dir ) ) )
468     {
469         if( filter && !filter( p_content ) )
470         {
471             continue;
472         }
473         pp_list = realloc( pp_list, ( ret + 1 ) * sizeof( struct dirent * ) );
474         size = sizeof( struct dirent ) + strlen( p_content->d_name ) + 1;
475         pp_list[ret] = malloc( size );
476         if( pp_list[ret] )
477         {
478             memcpy( pp_list[ret], p_content, size );
479             ret++;
480         }
481         else
482         {
483             /* Continuing is useless when no more memory can be allocted,
484              * so better return what we have found.
485              */
486             ret = -1;
487             break;
488         }
489     }
490
491     closedir( p_dir );
492
493     if( compar )
494     {
495         qsort( pp_list, ret, sizeof( struct dirent * ),
496                (int (*)(const void *, const void *)) compar );
497     }
498
499     *namelist = pp_list;
500     return ret;
501 }
502 #endif
503
504 #if defined (WIN32)
505 /**
506  * gettext callbacks for plugins.
507  * LibVLC links libintl statically on Windows.
508  */
509 char *vlc_dgettext( const char *package, const char *msgid )
510 {
511     return dgettext( package, msgid );
512 }
513 #endif
514
515 /**
516  * In-tree plugins share their gettext domain with LibVLC.
517  */
518 char *vlc_gettext( const char *msgid )
519 {
520     return dgettext( PACKAGE_NAME, msgid );
521 }
522
523 /*****************************************************************************
524  * count_utf8_string: returns the number of characters in the string.
525  *****************************************************************************/
526 static int count_utf8_string( const char *psz_string )
527 {
528     int i = 0, i_count = 0;
529     while( psz_string[ i ] != 0 )
530     {
531         if( ((unsigned char *)psz_string)[ i ] <  0x80UL ) i_count++;
532         i++;
533     }
534     return i_count;
535 }
536
537 /*****************************************************************************
538  * wraptext: inserts \n at convenient places to wrap the text.
539  *           Returns the modified string in a new buffer.
540  *****************************************************************************/
541 char *vlc_wraptext( const char *psz_text, int i_line )
542 {
543     int i_len;
544     char *psz_line, *psz_new_text;
545
546     psz_line = psz_new_text = strdup( psz_text );
547
548     i_len = count_utf8_string( psz_text );
549
550     while( i_len > i_line )
551     {
552         /* Look if there is a newline somewhere. */
553         char *psz_parser = psz_line;
554         int i_count = 0;
555         while( i_count <= i_line && *psz_parser != '\n' )
556         {
557             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser++;
558             psz_parser++;
559             i_count++;
560         }
561         if( *psz_parser == '\n' )
562         {
563             i_len -= (i_count + 1);
564             psz_line = psz_parser + 1;
565             continue;
566         }
567
568         /* Find the furthest space. */
569         while( psz_parser > psz_line && *psz_parser != ' ' )
570         {
571             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser--;
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             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser++;
587             psz_parser++;
588             i_count++;
589         }
590         if( i_count < i_len ) *psz_parser = '\n';
591         i_len -= (i_count + 1);
592         psz_line = psz_parser + 1;
593     }
594
595     return psz_new_text;
596 }
597
598 /*****************************************************************************
599  * iconv wrapper
600  *****************************************************************************/
601 vlc_iconv_t vlc_iconv_open( const char *tocode, const char *fromcode )
602 {
603 #if defined(HAVE_ICONV)
604     return iconv_open( tocode, fromcode );
605 #else
606     return NULL;
607 #endif
608 }
609
610 size_t vlc_iconv( vlc_iconv_t cd, const char **inbuf, size_t *inbytesleft,
611                   char **outbuf, size_t *outbytesleft )
612 {
613 #if defined(HAVE_ICONV)
614     return iconv( cd, (ICONV_CONST char **)inbuf, inbytesleft,
615                   outbuf, outbytesleft );
616 #else
617     int i_bytes;
618
619     if (inbytesleft == NULL || outbytesleft == NULL)
620     {
621         return 0;
622     }
623
624     i_bytes = __MIN(*inbytesleft, *outbytesleft);
625     if( !inbuf || !outbuf || !i_bytes ) return (size_t)(-1);
626     memcpy( *outbuf, *inbuf, i_bytes );
627     inbuf += i_bytes;
628     outbuf += i_bytes;
629     inbytesleft -= i_bytes;
630     outbytesleft -= i_bytes;
631     return i_bytes;
632 #endif
633 }
634
635 int vlc_iconv_close( vlc_iconv_t cd )
636 {
637 #if defined(HAVE_ICONV)
638     return iconv_close( cd );
639 #else
640     return 0;
641 #endif
642 }
643
644 /*****************************************************************************
645  * reduce a fraction
646  *   (adapted from libavcodec, author Michael Niedermayer <michaelni@gmx.at>)
647  *****************************************************************************/
648 bool vlc_ureduce( unsigned *pi_dst_nom, unsigned *pi_dst_den,
649                         uint64_t i_nom, uint64_t i_den, uint64_t i_max )
650 {
651     bool b_exact = 1;
652     uint64_t i_gcd;
653
654     if( i_den == 0 )
655     {
656         *pi_dst_nom = 0;
657         *pi_dst_den = 1;
658         return 1;
659     }
660
661     i_gcd = GCD( i_nom, i_den );
662     i_nom /= i_gcd;
663     i_den /= i_gcd;
664
665     if( i_max == 0 ) i_max = INT64_C(0xFFFFFFFF);
666
667     if( i_nom > i_max || i_den > i_max )
668     {
669         uint64_t i_a0_num = 0, i_a0_den = 1, i_a1_num = 1, i_a1_den = 0;
670         b_exact = 0;
671
672         for( ; ; )
673         {
674             uint64_t i_x = i_nom / i_den;
675             uint64_t i_a2n = i_x * i_a1_num + i_a0_num;
676             uint64_t i_a2d = i_x * i_a1_den + i_a0_den;
677
678             if( i_a2n > i_max || i_a2d > i_max ) break;
679
680             i_nom %= i_den;
681
682             i_a0_num = i_a1_num; i_a0_den = i_a1_den;
683             i_a1_num = i_a2n; i_a1_den = i_a2d;
684             if( i_nom == 0 ) break;
685             i_x = i_nom; i_nom = i_den; i_den = i_x;
686         }
687         i_nom = i_a1_num;
688         i_den = i_a1_den;
689     }
690
691     *pi_dst_nom = i_nom;
692     *pi_dst_den = i_den;
693
694     return b_exact;
695 }
696
697 /*************************************************************************
698  * vlc_execve: Execute an external program with a given environment,
699  * wait until it finishes and return its standard output
700  *************************************************************************/
701 int __vlc_execve( vlc_object_t *p_object, int i_argc, char *const *ppsz_argv,
702                   char *const *ppsz_env, const char *psz_cwd,
703                   const char *p_in, size_t i_in,
704                   char **pp_data, size_t *pi_data )
705 {
706     (void)i_argc; // <-- hmph
707 #ifdef HAVE_FORK
708 # define BUFSIZE 1024
709     int fds[2], i_status;
710
711     if (socketpair (AF_LOCAL, SOCK_STREAM, 0, fds))
712         return -1;
713
714     pid_t pid = -1;
715     if ((fds[0] > 2) && (fds[1] > 2))
716         pid = fork ();
717
718     switch (pid)
719     {
720         case -1:
721             msg_Err (p_object, "unable to fork (%m)");
722             close (fds[0]);
723             close (fds[1]);
724             return -1;
725
726         case 0:
727         {
728             sigset_t set;
729             sigemptyset (&set);
730             pthread_sigmask (SIG_SETMASK, &set, NULL);
731
732             /* NOTE:
733              * Like it or not, close can fail (and not only with EBADF)
734              */
735             if ((close (0) == 0) && (close (1) == 0) && (close (2) == 0)
736              && (dup (fds[1]) == 0) && (dup (fds[1]) == 1)
737              && (open ("/dev/null", O_RDONLY) == 2)
738              && ((psz_cwd == NULL) || (chdir (psz_cwd) == 0)))
739                 execve (ppsz_argv[0], ppsz_argv, ppsz_env);
740
741             exit (EXIT_FAILURE);
742         }
743     }
744
745     close (fds[1]);
746
747     *pi_data = 0;
748     if (*pp_data)
749         free (*pp_data);
750     *pp_data = NULL;
751
752     if (i_in == 0)
753         shutdown (fds[0], SHUT_WR);
754
755     while (!p_object->b_die)
756     {
757         struct pollfd ufd[1];
758         memset (ufd, 0, sizeof (ufd));
759         ufd[0].fd = fds[0];
760         ufd[0].events = POLLIN;
761
762         if (i_in > 0)
763             ufd[0].events |= POLLOUT;
764
765         if (poll (ufd, 1, 10) <= 0)
766             continue;
767
768         if (ufd[0].revents & ~POLLOUT)
769         {
770             char *ptr = realloc (*pp_data, *pi_data + BUFSIZE + 1);
771             if (ptr == NULL)
772                 break; /* safely abort */
773
774             *pp_data = ptr;
775
776             ssize_t val = read (fds[0], ptr + *pi_data, BUFSIZE);
777             switch (val)
778             {
779                 case -1:
780                 case 0:
781                     shutdown (fds[0], SHUT_RD);
782                     break;
783
784                 default:
785                     *pi_data += val;
786             }
787         }
788
789         if (ufd[0].revents & POLLOUT)
790         {
791             ssize_t val = write (fds[0], p_in, i_in);
792             switch (val)
793             {
794                 case -1:
795                 case 0:
796                     i_in = 0;
797                     shutdown (fds[0], SHUT_WR);
798                     break;
799
800                 default:
801                     i_in -= val;
802                     p_in += val;
803             }
804         }
805     }
806
807     close (fds[0]);
808
809     while (waitpid (pid, &i_status, 0) == -1);
810
811     if (WIFEXITED (i_status))
812     {
813         i_status = WEXITSTATUS (i_status);
814         if (i_status)
815             msg_Warn (p_object,  "child %s (PID %d) exited with error code %d",
816                       ppsz_argv[0], (int)pid, i_status);
817     }
818     else
819     if (WIFSIGNALED (i_status)) // <-- this should be redumdant a check
820     {
821         i_status = WTERMSIG (i_status);
822         msg_Warn (p_object, "child %s (PID %d) exited on signal %d (%s)",
823                   ppsz_argv[0], (int)pid, i_status, strsignal (i_status));
824     }
825
826 #elif defined( WIN32 ) && !defined( UNDER_CE )
827     SECURITY_ATTRIBUTES saAttr;
828     PROCESS_INFORMATION piProcInfo;
829     STARTUPINFO siStartInfo;
830     BOOL bFuncRetn = FALSE;
831     HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr;
832     DWORD i_status;
833     char *psz_cmd = NULL, *p_env = NULL, *p = NULL;
834     char **ppsz_parser;
835     int i_size;
836
837     /* Set the bInheritHandle flag so pipe handles are inherited. */
838     saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
839     saAttr.bInheritHandle = TRUE;
840     saAttr.lpSecurityDescriptor = NULL;
841
842     /* Create a pipe for the child process's STDOUT. */
843     if ( !CreatePipe( &hChildStdoutRd, &hChildStdoutWr, &saAttr, 0 ) )
844     {
845         msg_Err( p_object, "stdout pipe creation failed" );
846         return -1;
847     }
848
849     /* Ensure the read handle to the pipe for STDOUT is not inherited. */
850     SetHandleInformation( hChildStdoutRd, HANDLE_FLAG_INHERIT, 0 );
851
852     /* Create a pipe for the child process's STDIN. */
853     if ( !CreatePipe( &hChildStdinRd, &hChildStdinWr, &saAttr, 0 ) )
854     {
855         msg_Err( p_object, "stdin pipe creation failed" );
856         return -1;
857     }
858
859     /* Ensure the write handle to the pipe for STDIN is not inherited. */
860     SetHandleInformation( hChildStdinWr, HANDLE_FLAG_INHERIT, 0 );
861
862     /* Set up members of the PROCESS_INFORMATION structure. */
863     ZeroMemory( &piProcInfo, sizeof(PROCESS_INFORMATION) );
864
865     /* Set up members of the STARTUPINFO structure. */
866     ZeroMemory( &siStartInfo, sizeof(STARTUPINFO) );
867     siStartInfo.cb = sizeof(STARTUPINFO);
868     siStartInfo.hStdError = hChildStdoutWr;
869     siStartInfo.hStdOutput = hChildStdoutWr;
870     siStartInfo.hStdInput = hChildStdinRd;
871     siStartInfo.wShowWindow = SW_HIDE;
872     siStartInfo.dwFlags |= STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
873
874     /* Set up the command line. */
875     psz_cmd = malloc(32768);
876     if( !psz_cmd )
877         return -1;
878     psz_cmd[0] = '\0';
879     i_size = 32768;
880     ppsz_parser = &ppsz_argv[0];
881     while ( ppsz_parser[0] != NULL && i_size > 0 )
882     {
883         /* Protect the last argument with quotes ; the other arguments
884          * are supposed to be already protected because they have been
885          * passed as a command-line option. */
886         if ( ppsz_parser[1] == NULL )
887         {
888             strncat( psz_cmd, "\"", i_size );
889             i_size--;
890         }
891         strncat( psz_cmd, *ppsz_parser, i_size );
892         i_size -= strlen( *ppsz_parser );
893         if ( ppsz_parser[1] == NULL )
894         {
895             strncat( psz_cmd, "\"", i_size );
896             i_size--;
897         }
898         strncat( psz_cmd, " ", i_size );
899         i_size--;
900         ppsz_parser++;
901     }
902
903     /* Set up the environment. */
904     p = p_env = malloc(32768);
905     if( !p )
906     {
907         free( psz_cmd );
908         return -1;
909     }
910
911     i_size = 32768;
912     ppsz_parser = &ppsz_env[0];
913     while ( *ppsz_parser != NULL && i_size > 0 )
914     {
915         memcpy( p, *ppsz_parser,
916                 __MIN((int)(strlen(*ppsz_parser) + 1), i_size) );
917         p += strlen(*ppsz_parser) + 1;
918         i_size -= strlen(*ppsz_parser) + 1;
919         ppsz_parser++;
920     }
921     *p = '\0';
922
923     /* Create the child process. */
924     bFuncRetn = CreateProcess( NULL,
925           psz_cmd,       // command line
926           NULL,          // process security attributes
927           NULL,          // primary thread security attributes
928           TRUE,          // handles are inherited
929           0,             // creation flags
930           p_env,
931           psz_cwd,
932           &siStartInfo,  // STARTUPINFO pointer
933           &piProcInfo ); // receives PROCESS_INFORMATION
934
935     free( psz_cmd );
936     free( p_env );
937
938     if ( bFuncRetn == 0 )
939     {
940         msg_Err( p_object, "child creation failed" );
941         return -1;
942     }
943
944     /* Read from a file and write its contents to a pipe. */
945     while ( i_in > 0 && !p_object->b_die )
946     {
947         DWORD i_written;
948         if ( !WriteFile( hChildStdinWr, p_in, i_in, &i_written, NULL ) )
949             break;
950         i_in -= i_written;
951         p_in += i_written;
952     }
953
954     /* Close the pipe handle so the child process stops reading. */
955     CloseHandle(hChildStdinWr);
956
957     /* Close the write end of the pipe before reading from the
958      * read end of the pipe. */
959     CloseHandle(hChildStdoutWr);
960
961     /* Read output from the child process. */
962     *pi_data = 0;
963     if( *pp_data )
964         free( pp_data );
965     *pp_data = NULL;
966     *pp_data = malloc( 1025 );  /* +1 for \0 */
967
968     while ( !p_object->b_die )
969     {
970         DWORD i_read;
971         if ( !ReadFile( hChildStdoutRd, &(*pp_data)[*pi_data], 1024, &i_read,
972                         NULL )
973               || i_read == 0 )
974             break;
975         *pi_data += i_read;
976         *pp_data = realloc( *pp_data, *pi_data + 1025 );
977     }
978
979     while ( !p_object->b_die
980              && !GetExitCodeProcess( piProcInfo.hProcess, &i_status )
981              && i_status != STILL_ACTIVE )
982         msleep( 10000 );
983
984     CloseHandle(piProcInfo.hProcess);
985     CloseHandle(piProcInfo.hThread);
986
987     if ( i_status )
988         msg_Warn( p_object,
989                   "child %s returned with error code %ld",
990                   ppsz_argv[0], i_status );
991
992 #else
993     msg_Err( p_object, "vlc_execve called but no implementation is available" );
994     return -1;
995
996 #endif
997
998     if (*pp_data == NULL)
999         return -1;
1000
1001     (*pp_data)[*pi_data] = '\0';
1002     return 0;
1003 }