]> git.sesse.net Git - vlc/blob - src/extras/libc.c
Inline strsep
[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_common.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 /******************************************************************************
74  * strcasestr: find a substring (little) in another substring (big)
75  * Case sensitive. Return NULL if not found, return big if little == null
76  *****************************************************************************/
77 char * vlc_strcasestr( const char *psz_big, const char *psz_little )
78 {
79 #if defined (HAVE_STRCASESTR) || defined (HAVE_STRISTR)
80     return strcasestr (psz_big, psz_little);
81 #else
82     char *p_pos = (char *)psz_big;
83
84     if( !psz_big || !psz_little || !*psz_little ) return p_pos;
85  
86     while( *p_pos )
87     {
88         if( toupper( *p_pos ) == toupper( *psz_little ) )
89         {
90             char * psz_cur1 = p_pos + 1;
91             char * psz_cur2 = (char *)psz_little + 1;
92             while( *psz_cur1 && *psz_cur2 &&
93                    toupper( *psz_cur1 ) == toupper( *psz_cur2 ) )
94             {
95                 psz_cur1++;
96                 psz_cur2++;
97             }
98             if( !*psz_cur2 ) return p_pos;
99         }
100         p_pos++;
101     }
102     return NULL;
103 #endif
104 }
105
106 /*****************************************************************************
107  * strtoll: convert a string to a 64 bits int.
108  *****************************************************************************/
109 long long vlc_strtoll( const char *nptr, char **endptr, int base )
110 {
111 #if defined( HAVE_STRTOLL )
112     return strtoll( nptr, endptr, base );
113 #else
114     long long i_value = 0;
115     int sign = 1, newbase = base ? base : 10;
116
117     while( isspace(*nptr) ) nptr++;
118
119     if( *nptr == '-' )
120     {
121         sign = -1;
122         nptr++;
123     }
124
125     /* Try to detect base */
126     if( *nptr == '0' )
127     {
128         newbase = 8;
129         nptr++;
130
131         if( *nptr == 'x' )
132         {
133             newbase = 16;
134             nptr++;
135         }
136     }
137
138     if( base && newbase != base )
139     {
140         if( endptr ) *endptr = (char *)nptr;
141         return i_value;
142     }
143
144     switch( newbase )
145     {
146         case 10:
147             while( *nptr >= '0' && *nptr <= '9' )
148             {
149                 i_value *= 10;
150                 i_value += ( *nptr++ - '0' );
151             }
152             if( endptr ) *endptr = (char *)nptr;
153             break;
154
155         case 16:
156             while( (*nptr >= '0' && *nptr <= '9') ||
157                    (*nptr >= 'a' && *nptr <= 'f') ||
158                    (*nptr >= 'A' && *nptr <= 'F') )
159             {
160                 int i_valc = 0;
161                 if(*nptr >= '0' && *nptr <= '9') i_valc = *nptr - '0';
162                 else if(*nptr >= 'a' && *nptr <= 'f') i_valc = *nptr - 'a' +10;
163                 else if(*nptr >= 'A' && *nptr <= 'F') i_valc = *nptr - 'A' +10;
164                 i_value *= 16;
165                 i_value += i_valc;
166                 nptr++;
167             }
168             if( endptr ) *endptr = (char *)nptr;
169             break;
170
171         default:
172             i_value = strtol( nptr, endptr, newbase );
173             break;
174     }
175
176     return i_value * sign;
177 #endif
178 }
179
180 /**
181  * Copy a string to a sized buffer. The result is always nul-terminated
182  * (contrary to strncpy()).
183  *
184  * @param dest destination buffer
185  * @param src string to be copied
186  * @param len maximum number of characters to be copied plus one for the
187  * terminating nul.
188  *
189  * @return strlen(src)
190  */
191 extern size_t vlc_strlcpy (char *tgt, const char *src, size_t bufsize)
192 {
193 #ifdef HAVE_STRLCPY
194     return strlcpy (tgt, src, bufsize);
195 #else
196     size_t length;
197
198     for (length = 1; (length < bufsize) && *src; length++)
199         *tgt++ = *src++;
200
201     if (bufsize)
202         *tgt = '\0';
203
204     while (*src++)
205         length++;
206
207     return length - 1;
208 #endif
209 }
210
211 /*****************************************************************************
212  * vlc_*dir_wrapper: wrapper under Windows to return the list of drive letters
213  * when called with an empty argument or just '\'
214  *****************************************************************************/
215 #if defined(WIN32)
216 #   include <assert.h>
217
218 typedef struct vlc_DIR
219 {
220     _WDIR *p_real_dir;
221     int i_drives;
222     struct _wdirent dd_dir;
223     bool b_insert_back;
224 } vlc_DIR;
225
226 void *vlc_wopendir( const wchar_t *wpath )
227 {
228     vlc_DIR *p_dir = NULL;
229     _WDIR *p_real_dir = NULL;
230
231     if ( wpath == NULL || wpath[0] == '\0'
232           || (wcscmp (wpath, L"\\") == 0) )
233     {
234         /* Special mode to list drive letters */
235         p_dir = malloc( sizeof(vlc_DIR) );
236         if( !p_dir )
237             return NULL;
238         p_dir->p_real_dir = NULL;
239 #if defined(UNDER_CE)
240         p_dir->i_drives = NULL;
241 #else
242         p_dir->i_drives = GetLogicalDrives();
243 #endif
244         return (void *)p_dir;
245     }
246
247     p_real_dir = _wopendir( wpath );
248     if ( p_real_dir == NULL )
249         return NULL;
250
251     p_dir = malloc( sizeof(vlc_DIR) );
252     if( !p_dir )
253     {
254         _wclosedir( p_real_dir );
255         return NULL;
256     }
257     p_dir->p_real_dir = p_real_dir;
258
259     assert (wpath[0]); // wpath[1] is defined
260     p_dir->b_insert_back = !wcscmp (wpath + 1, L":\\");
261     return (void *)p_dir;
262 }
263
264 struct _wdirent *vlc_wreaddir( void *_p_dir )
265 {
266     vlc_DIR *p_dir = (vlc_DIR *)_p_dir;
267     DWORD i_drives;
268
269     if ( p_dir->p_real_dir != NULL )
270     {
271         if ( p_dir->b_insert_back )
272         {
273             /* Adds "..", gruik! */
274             p_dir->dd_dir.d_ino = 0;
275             p_dir->dd_dir.d_reclen = 0;
276             p_dir->dd_dir.d_namlen = 2;
277             wcscpy( p_dir->dd_dir.d_name, L".." );
278             p_dir->b_insert_back = false;
279             return &p_dir->dd_dir;
280         }
281
282         return _wreaddir( p_dir->p_real_dir );
283     }
284
285     /* Drive letters mode */
286     i_drives = p_dir->i_drives;
287 #ifdef UNDER_CE
288     swprintf( p_dir->dd_dir.d_name, L"\\");
289     p_dir->dd_dir.d_namlen = wcslen(p_dir->dd_dir.d_name);
290 #else
291     unsigned int i;
292     if ( !i_drives )
293         return NULL; /* end */
294
295     for ( i = 0; i < sizeof(DWORD)*8; i++, i_drives >>= 1 )
296         if ( i_drives & 1 ) break;
297
298     if ( i >= 26 )
299         return NULL; /* this should not happen */
300
301     swprintf( p_dir->dd_dir.d_name, L"%c:\\", 'A' + i );
302     p_dir->dd_dir.d_namlen = wcslen(p_dir->dd_dir.d_name);
303     p_dir->i_drives &= ~(1UL << i);
304 #endif
305     return &p_dir->dd_dir;
306 }
307
308 void vlc_rewinddir( void *_p_dir )
309 {
310     vlc_DIR *p_dir = (vlc_DIR *)_p_dir;
311
312     if ( p_dir->p_real_dir != NULL )
313         _wrewinddir( p_dir->p_real_dir );
314 }
315 #endif
316
317 /* This one is in the libvlccore exported symbol list */
318 int vlc_wclosedir( void *_p_dir )
319 {
320 #if defined(WIN32)
321     vlc_DIR *p_dir = (vlc_DIR *)_p_dir;
322     int i_ret = 0;
323
324     if ( p_dir->p_real_dir != NULL )
325         i_ret = _wclosedir( p_dir->p_real_dir );
326
327     free( p_dir );
328     return i_ret;
329 #else
330     return closedir( _p_dir );
331 #endif
332 }
333
334 /**
335  * In-tree plugins share their gettext domain with LibVLC.
336  */
337 char *vlc_gettext( const char *msgid )
338 {
339 #ifdef ENABLE_NLS
340     return dgettext( PACKAGE_NAME, msgid );
341 #else
342     return (char *)msgid;
343 #endif
344 }
345
346 /*****************************************************************************
347  * count_utf8_string: returns the number of characters in the string.
348  *****************************************************************************/
349 static int count_utf8_string( const char *psz_string )
350 {
351     int i = 0, i_count = 0;
352     while( psz_string[ i ] != 0 )
353     {
354         if( ((unsigned char *)psz_string)[ i ] <  0x80UL ) i_count++;
355         i++;
356     }
357     return i_count;
358 }
359
360 /*****************************************************************************
361  * wraptext: inserts \n at convenient places to wrap the text.
362  *           Returns the modified string in a new buffer.
363  *****************************************************************************/
364 char *vlc_wraptext( const char *psz_text, int i_line )
365 {
366     int i_len;
367     char *psz_line, *psz_new_text;
368
369     psz_line = psz_new_text = strdup( psz_text );
370
371     i_len = count_utf8_string( psz_text );
372
373     while( i_len > i_line )
374     {
375         /* Look if there is a newline somewhere. */
376         char *psz_parser = psz_line;
377         int i_count = 0;
378         while( i_count <= i_line && *psz_parser != '\n' )
379         {
380             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser++;
381             psz_parser++;
382             i_count++;
383         }
384         if( *psz_parser == '\n' )
385         {
386             i_len -= (i_count + 1);
387             psz_line = psz_parser + 1;
388             continue;
389         }
390
391         /* Find the furthest space. */
392         while( psz_parser > psz_line && *psz_parser != ' ' )
393         {
394             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser--;
395             psz_parser--;
396             i_count--;
397         }
398         if( *psz_parser == ' ' )
399         {
400             *psz_parser = '\n';
401             i_len -= (i_count + 1);
402             psz_line = psz_parser + 1;
403             continue;
404         }
405
406         /* Wrapping has failed. Find the first space or newline */
407         while( i_count < i_len && *psz_parser != ' ' && *psz_parser != '\n' )
408         {
409             while( *((unsigned char *)psz_parser) >= 0x80UL ) psz_parser++;
410             psz_parser++;
411             i_count++;
412         }
413         if( i_count < i_len ) *psz_parser = '\n';
414         i_len -= (i_count + 1);
415         psz_line = psz_parser + 1;
416     }
417
418     return psz_new_text;
419 }
420
421 /*****************************************************************************
422  * iconv wrapper
423  *****************************************************************************/
424 vlc_iconv_t vlc_iconv_open( const char *tocode, const char *fromcode )
425 {
426 #if defined(HAVE_ICONV)
427     return iconv_open( tocode, fromcode );
428 #else
429     return (vlc_iconv_t)(-1);
430 #endif
431 }
432
433 size_t vlc_iconv( vlc_iconv_t cd, const char **inbuf, size_t *inbytesleft,
434                   char **outbuf, size_t *outbytesleft )
435 {
436 #if defined(HAVE_ICONV)
437     return iconv( cd, (ICONV_CONST char **)inbuf, inbytesleft,
438                   outbuf, outbytesleft );
439 #else
440     abort ();
441 #endif
442 }
443
444 int vlc_iconv_close( vlc_iconv_t cd )
445 {
446 #if defined(HAVE_ICONV)
447     return iconv_close( cd );
448 #else
449     abort ();
450 #endif
451 }
452
453 /*****************************************************************************
454  * reduce a fraction
455  *   (adapted from libavcodec, author Michael Niedermayer <michaelni@gmx.at>)
456  *****************************************************************************/
457 bool vlc_ureduce( unsigned *pi_dst_nom, unsigned *pi_dst_den,
458                         uint64_t i_nom, uint64_t i_den, uint64_t i_max )
459 {
460     bool b_exact = 1;
461     uint64_t i_gcd;
462
463     if( i_den == 0 )
464     {
465         *pi_dst_nom = 0;
466         *pi_dst_den = 1;
467         return 1;
468     }
469
470     i_gcd = GCD( i_nom, i_den );
471     i_nom /= i_gcd;
472     i_den /= i_gcd;
473
474     if( i_max == 0 ) i_max = INT64_C(0xFFFFFFFF);
475
476     if( i_nom > i_max || i_den > i_max )
477     {
478         uint64_t i_a0_num = 0, i_a0_den = 1, i_a1_num = 1, i_a1_den = 0;
479         b_exact = 0;
480
481         for( ; ; )
482         {
483             uint64_t i_x = i_nom / i_den;
484             uint64_t i_a2n = i_x * i_a1_num + i_a0_num;
485             uint64_t i_a2d = i_x * i_a1_den + i_a0_den;
486
487             if( i_a2n > i_max || i_a2d > i_max ) break;
488
489             i_nom %= i_den;
490
491             i_a0_num = i_a1_num; i_a0_den = i_a1_den;
492             i_a1_num = i_a2n; i_a1_den = i_a2d;
493             if( i_nom == 0 ) break;
494             i_x = i_nom; i_nom = i_den; i_den = i_x;
495         }
496         i_nom = i_a1_num;
497         i_den = i_a1_den;
498     }
499
500     *pi_dst_nom = i_nom;
501     *pi_dst_den = i_den;
502
503     return b_exact;
504 }
505
506 /*************************************************************************
507  * vlc_execve: Execute an external program with a given environment,
508  * wait until it finishes and return its standard output
509  *************************************************************************/
510 int __vlc_execve( vlc_object_t *p_object, int i_argc, char *const *ppsz_argv,
511                   char *const *ppsz_env, const char *psz_cwd,
512                   const char *p_in, size_t i_in,
513                   char **pp_data, size_t *pi_data )
514 {
515     (void)i_argc; // <-- hmph
516 #ifdef HAVE_FORK
517 # define BUFSIZE 1024
518     int fds[2], i_status;
519
520     if (socketpair (AF_LOCAL, SOCK_STREAM, 0, fds))
521         return -1;
522
523     pid_t pid = -1;
524     if ((fds[0] > 2) && (fds[1] > 2))
525         pid = fork ();
526
527     switch (pid)
528     {
529         case -1:
530             msg_Err (p_object, "unable to fork (%m)");
531             close (fds[0]);
532             close (fds[1]);
533             return -1;
534
535         case 0:
536         {
537             sigset_t set;
538             sigemptyset (&set);
539             pthread_sigmask (SIG_SETMASK, &set, NULL);
540
541             /* NOTE:
542              * Like it or not, close can fail (and not only with EBADF)
543              */
544             if ((close (0) == 0) && (close (1) == 0) && (close (2) == 0)
545              && (dup (fds[1]) == 0) && (dup (fds[1]) == 1)
546              && (open ("/dev/null", O_RDONLY) == 2)
547              && ((psz_cwd == NULL) || (chdir (psz_cwd) == 0)))
548                 execve (ppsz_argv[0], ppsz_argv, ppsz_env);
549
550             exit (EXIT_FAILURE);
551         }
552     }
553
554     close (fds[1]);
555
556     *pi_data = 0;
557     if (*pp_data)
558         free (*pp_data);
559     *pp_data = NULL;
560
561     if (i_in == 0)
562         shutdown (fds[0], SHUT_WR);
563
564     while (!p_object->b_die)
565     {
566         struct pollfd ufd[1];
567         memset (ufd, 0, sizeof (ufd));
568         ufd[0].fd = fds[0];
569         ufd[0].events = POLLIN;
570
571         if (i_in > 0)
572             ufd[0].events |= POLLOUT;
573
574         if (poll (ufd, 1, 10) <= 0)
575             continue;
576
577         if (ufd[0].revents & ~POLLOUT)
578         {
579             char *ptr = realloc (*pp_data, *pi_data + BUFSIZE + 1);
580             if (ptr == NULL)
581                 break; /* safely abort */
582
583             *pp_data = ptr;
584
585             ssize_t val = read (fds[0], ptr + *pi_data, BUFSIZE);
586             switch (val)
587             {
588                 case -1:
589                 case 0:
590                     shutdown (fds[0], SHUT_RD);
591                     break;
592
593                 default:
594                     *pi_data += val;
595             }
596         }
597
598         if (ufd[0].revents & POLLOUT)
599         {
600             ssize_t val = write (fds[0], p_in, i_in);
601             switch (val)
602             {
603                 case -1:
604                 case 0:
605                     i_in = 0;
606                     shutdown (fds[0], SHUT_WR);
607                     break;
608
609                 default:
610                     i_in -= val;
611                     p_in += val;
612             }
613         }
614     }
615
616     close (fds[0]);
617
618     while (waitpid (pid, &i_status, 0) == -1);
619
620     if (WIFEXITED (i_status))
621     {
622         i_status = WEXITSTATUS (i_status);
623         if (i_status)
624             msg_Warn (p_object,  "child %s (PID %d) exited with error code %d",
625                       ppsz_argv[0], (int)pid, i_status);
626     }
627     else
628     if (WIFSIGNALED (i_status)) // <-- this should be redumdant a check
629     {
630         i_status = WTERMSIG (i_status);
631         msg_Warn (p_object, "child %s (PID %d) exited on signal %d (%s)",
632                   ppsz_argv[0], (int)pid, i_status, strsignal (i_status));
633     }
634
635 #elif defined( WIN32 ) && !defined( UNDER_CE )
636     SECURITY_ATTRIBUTES saAttr;
637     PROCESS_INFORMATION piProcInfo;
638     STARTUPINFO siStartInfo;
639     BOOL bFuncRetn = FALSE;
640     HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr;
641     DWORD i_status;
642     char *psz_cmd = NULL, *p_env = NULL, *p = NULL;
643     char **ppsz_parser;
644     int i_size;
645
646     /* Set the bInheritHandle flag so pipe handles are inherited. */
647     saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
648     saAttr.bInheritHandle = TRUE;
649     saAttr.lpSecurityDescriptor = NULL;
650
651     /* Create a pipe for the child process's STDOUT. */
652     if ( !CreatePipe( &hChildStdoutRd, &hChildStdoutWr, &saAttr, 0 ) )
653     {
654         msg_Err( p_object, "stdout pipe creation failed" );
655         return -1;
656     }
657
658     /* Ensure the read handle to the pipe for STDOUT is not inherited. */
659     SetHandleInformation( hChildStdoutRd, HANDLE_FLAG_INHERIT, 0 );
660
661     /* Create a pipe for the child process's STDIN. */
662     if ( !CreatePipe( &hChildStdinRd, &hChildStdinWr, &saAttr, 0 ) )
663     {
664         msg_Err( p_object, "stdin pipe creation failed" );
665         return -1;
666     }
667
668     /* Ensure the write handle to the pipe for STDIN is not inherited. */
669     SetHandleInformation( hChildStdinWr, HANDLE_FLAG_INHERIT, 0 );
670
671     /* Set up members of the PROCESS_INFORMATION structure. */
672     ZeroMemory( &piProcInfo, sizeof(PROCESS_INFORMATION) );
673
674     /* Set up members of the STARTUPINFO structure. */
675     ZeroMemory( &siStartInfo, sizeof(STARTUPINFO) );
676     siStartInfo.cb = sizeof(STARTUPINFO);
677     siStartInfo.hStdError = hChildStdoutWr;
678     siStartInfo.hStdOutput = hChildStdoutWr;
679     siStartInfo.hStdInput = hChildStdinRd;
680     siStartInfo.wShowWindow = SW_HIDE;
681     siStartInfo.dwFlags |= STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
682
683     /* Set up the command line. */
684     psz_cmd = malloc(32768);
685     if( !psz_cmd )
686         return -1;
687     psz_cmd[0] = '\0';
688     i_size = 32768;
689     ppsz_parser = &ppsz_argv[0];
690     while ( ppsz_parser[0] != NULL && i_size > 0 )
691     {
692         /* Protect the last argument with quotes ; the other arguments
693          * are supposed to be already protected because they have been
694          * passed as a command-line option. */
695         if ( ppsz_parser[1] == NULL )
696         {
697             strncat( psz_cmd, "\"", i_size );
698             i_size--;
699         }
700         strncat( psz_cmd, *ppsz_parser, i_size );
701         i_size -= strlen( *ppsz_parser );
702         if ( ppsz_parser[1] == NULL )
703         {
704             strncat( psz_cmd, "\"", i_size );
705             i_size--;
706         }
707         strncat( psz_cmd, " ", i_size );
708         i_size--;
709         ppsz_parser++;
710     }
711
712     /* Set up the environment. */
713     p = p_env = malloc(32768);
714     if( !p )
715     {
716         free( psz_cmd );
717         return -1;
718     }
719
720     i_size = 32768;
721     ppsz_parser = &ppsz_env[0];
722     while ( *ppsz_parser != NULL && i_size > 0 )
723     {
724         memcpy( p, *ppsz_parser,
725                 __MIN((int)(strlen(*ppsz_parser) + 1), i_size) );
726         p += strlen(*ppsz_parser) + 1;
727         i_size -= strlen(*ppsz_parser) + 1;
728         ppsz_parser++;
729     }
730     *p = '\0';
731
732     /* Create the child process. */
733     bFuncRetn = CreateProcess( NULL,
734           psz_cmd,       // command line
735           NULL,          // process security attributes
736           NULL,          // primary thread security attributes
737           TRUE,          // handles are inherited
738           0,             // creation flags
739           p_env,
740           psz_cwd,
741           &siStartInfo,  // STARTUPINFO pointer
742           &piProcInfo ); // receives PROCESS_INFORMATION
743
744     free( psz_cmd );
745     free( p_env );
746
747     if ( bFuncRetn == 0 )
748     {
749         msg_Err( p_object, "child creation failed" );
750         return -1;
751     }
752
753     /* Read from a file and write its contents to a pipe. */
754     while ( i_in > 0 && !p_object->b_die )
755     {
756         DWORD i_written;
757         if ( !WriteFile( hChildStdinWr, p_in, i_in, &i_written, NULL ) )
758             break;
759         i_in -= i_written;
760         p_in += i_written;
761     }
762
763     /* Close the pipe handle so the child process stops reading. */
764     CloseHandle(hChildStdinWr);
765
766     /* Close the write end of the pipe before reading from the
767      * read end of the pipe. */
768     CloseHandle(hChildStdoutWr);
769
770     /* Read output from the child process. */
771     *pi_data = 0;
772     if( *pp_data )
773         free( pp_data );
774     *pp_data = NULL;
775     *pp_data = malloc( 1025 );  /* +1 for \0 */
776
777     while ( !p_object->b_die )
778     {
779         DWORD i_read;
780         if ( !ReadFile( hChildStdoutRd, &(*pp_data)[*pi_data], 1024, &i_read,
781                         NULL )
782               || i_read == 0 )
783             break;
784         *pi_data += i_read;
785         *pp_data = realloc( *pp_data, *pi_data + 1025 );
786     }
787
788     while ( !p_object->b_die
789              && !GetExitCodeProcess( piProcInfo.hProcess, &i_status )
790              && i_status != STILL_ACTIVE )
791         msleep( 10000 );
792
793     CloseHandle(piProcInfo.hProcess);
794     CloseHandle(piProcInfo.hThread);
795
796     if ( i_status )
797         msg_Warn( p_object,
798                   "child %s returned with error code %ld",
799                   ppsz_argv[0], i_status );
800
801 #else
802     msg_Err( p_object, "vlc_execve called but no implementation is available" );
803     return -1;
804
805 #endif
806
807     if (*pp_data == NULL)
808         return -1;
809
810     (*pp_data)[*pi_data] = '\0';
811     return 0;
812 }