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