winvlc.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:10k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * winvlc.c: the Windows VLC player
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2008 the VideoLAN team
  5.  *
  6.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  7.  *          Samuel Hocevar <sam@zoy.org>
  8.  *          Gildas Bazin <gbazin@videolan.org>
  9.  *          Derk-Jan Hartman <hartman at videolan dot org>
  10.  *          Lots of other people, see the libvlc AUTHORS file
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #define UNICODE
  30. #include <vlc/vlc.h>
  31. #include <string.h>
  32. #include <stdio.h>
  33. #include <stdlib.h>
  34. #include <windows.h>
  35. #if !defined(UNDER_CE)
  36. #   define  _WIN32_IE 0x500
  37. #   include <shlobj.h>
  38. #   include <tlhelp32.h>
  39. #   include <wininet.h>
  40. static void check_crashdump();
  41. LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo);
  42. #endif
  43. #ifndef UNDER_CE
  44. static char *FromWide (const wchar_t *wide)
  45. {
  46.     size_t len;
  47.     len = WideCharToMultiByte (CP_UTF8, 0, wide, -1, NULL, 0, NULL, NULL);
  48.     char *out = (char *)malloc (len);
  49.     if (out)
  50.         WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL);
  51.     return out;
  52. }
  53. #else
  54. static int parse_cmdline (char *line, char ***argvp)
  55. {
  56.     char **argv = malloc (sizeof (char *));
  57.     int argc = 0;
  58.     while (*line != '')
  59.     {
  60.         char quote = 0;
  61.         /* Skips white spaces */
  62.         while (strchr ("t ", *line))
  63.             line++;
  64.         if (!*line)
  65.             break;
  66.         /* Starts a new parameter */
  67.         argv = realloc (argv, (argc + 2) * sizeof (char *));
  68.         if (*line == '"')
  69.         {
  70.             quote = '"';
  71.             line++;
  72.         }
  73.         argv[argc++] = line;
  74.     more:
  75.             while (*line && !strchr ("t ", *line))
  76.             line++;
  77.     if (line > argv[argc - 1] && line[-1] == quote)
  78.         /* End of quoted parameter */
  79.         line[-1] = 0;
  80.     else
  81.         if (*line && quote)
  82.     {
  83.         /* Space within a quote */
  84.         line++;
  85.         goto more;
  86.     }
  87.     else
  88.         /* End of unquoted parameter */
  89.         if (*line)
  90.             *line++ = 0;
  91.     }
  92.     argv[argc] = NULL;
  93.     *argvp = argv;
  94.     return argc;
  95. }
  96. #endif
  97. int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  98. #ifndef UNDER_CE
  99.                     LPSTR lpCmdLine,
  100. #else
  101.                     LPWSTR lpCmdLine,
  102. #endif
  103.                     int nCmdShow )
  104. {
  105.     int argc, ret;
  106. #ifndef UNDER_CE
  107.     wchar_t **wargv = CommandLineToArgvW (GetCommandLine (), &argc);
  108.     if (wargv == NULL)
  109.         return 1;
  110.     char *argv[argc + 1];
  111.     BOOL crash_handling = TRUE;
  112.     int j = 0;
  113.     for (int i = 0; i < argc; i++)
  114.     {
  115.         if(!wcscmp(wargv[i], L"--no-crashdump"))
  116.         {
  117.             crash_handling = FALSE;
  118.         }
  119.         else
  120.         {
  121.             argv[j] = FromWide (wargv[i]);
  122.             j++;
  123.         }
  124.     }
  125.     argc = j;
  126.     argv[argc] = NULL;
  127.     LocalFree (wargv);
  128.     if(crash_handling)
  129.     {
  130.         check_crashdump();
  131.         SetUnhandledExceptionFilter(vlc_exception_filter);
  132.     }
  133. #else
  134.     char **argv, psz_cmdline[wcslen(lpCmdLine) * 4];
  135.     WideCharToMultiByte( CP_UTF8, 0, lpCmdLine, -1,
  136.                          psz_cmdline, sizeof (psz_cmdline), NULL, NULL );
  137.     argc = parse_cmdline (psz_cmdline, &argv);
  138. #endif
  139.     libvlc_exception_t ex, dummy;
  140.     libvlc_exception_init (&ex);
  141.     libvlc_exception_init (&dummy);
  142.     /* Initialize libvlc */
  143.     libvlc_instance_t *vlc;
  144.     vlc = libvlc_new (argc - 1, (const char **)argv + 1, &ex);
  145.     if (vlc != NULL)
  146.     {
  147.         libvlc_add_intf (vlc, "globalhotkeys,none", &ex);
  148.         libvlc_add_intf (vlc, NULL, &ex);
  149.         libvlc_playlist_play (vlc, -1, 0, NULL, &dummy);
  150.         libvlc_wait (vlc);
  151.         libvlc_release (vlc);
  152.     }
  153.     ret = libvlc_exception_raised (&ex);
  154.     libvlc_exception_clear (&ex);
  155.     libvlc_exception_clear (&dummy);
  156.     for (int i = 0; i < argc; i++)
  157.         free (argv[i]);
  158.     (void)hInstance; (void)hPrevInstance; (void)lpCmdLine; (void)nCmdShow;
  159.     return ret;
  160. }
  161. #if !defined( UNDER_CE )
  162. static void get_crashdump_path(wchar_t * wdir)
  163. {
  164.     if( S_OK != SHGetFolderPathW( NULL,
  165.                         CSIDL_APPDATA | CSIDL_FLAG_CREATE,
  166.                         NULL, SHGFP_TYPE_CURRENT, wdir ) )
  167.         fprintf( stderr, "Can't open the vlc conf PATHn" );
  168.     swprintf( wdir+wcslen( wdir ), L"%s", L"\vlc\crashdump" );
  169. }
  170. static void check_crashdump()
  171. {
  172.     wchar_t * wdir = (wchar_t *)malloc(sizeof(wchar_t)*MAX_PATH);
  173.     get_crashdump_path(wdir);
  174.     FILE * fd = _wfopen ( wdir, L"r, ccs=UTF-8" );
  175.     if( fd )
  176.     {
  177.         fclose( fd );
  178.         int answer = MessageBox( NULL, L"VLC media player just crashed." 
  179.         " Do you want to send a bug report to the developers team?",
  180.         L"VLC crash reporting", MB_YESNO);
  181.         if(answer == IDYES)
  182.         {
  183.             HINTERNET Hint = InternetOpen(L"VLC Crash Reporter", INTERNET_OPEN_TYPE_PRECONFIG, NULL,NULL,0);
  184.             if(Hint)
  185.             {
  186.                 HINTERNET ftp = InternetConnect(Hint, L"crash.videolan.org", INTERNET_DEFAULT_FTP_PORT,
  187.                                                 NULL, NULL, INTERNET_SERVICE_FTP, 0, 0);
  188.                 if(ftp)
  189.                 {
  190.                     SYSTEMTIME now;
  191.                     GetSystemTime(&now);
  192.                     wchar_t remote_file[MAX_PATH];
  193.                     swprintf( remote_file, L"/crashs/%04d%02d%02d%02d%02d%02d",now.wYear,
  194.                             now.wMonth, now.wDay, now.wHour, now.wMinute, now.wSecond  );
  195.                     FtpPutFile( ftp, wdir, remote_file, FTP_TRANSFER_TYPE_BINARY, 0);
  196.                     InternetCloseHandle(ftp);
  197.                 }
  198.                 else
  199.                     fprintf(stderr,"Can't connect to FTP server%dn",GetLastError());
  200.                 InternetCloseHandle(Hint);
  201.             }
  202.         }
  203.         _wremove(wdir);
  204.     }
  205.     free((void *)wdir);
  206. }
  207. /*****************************************************************************
  208.  * vlc_exception_filter: handles unhandled exceptions, like segfaults
  209.  *****************************************************************************/
  210. LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo)
  211. {
  212.     if(IsDebuggerPresent())
  213.     {
  214.         //If a debugger is present, pass the exception to the debugger with EXCEPTION_CONTINUE_SEARCH
  215.         return EXCEPTION_CONTINUE_SEARCH;
  216.     }
  217.     else
  218.     {
  219.         fprintf( stderr, "unhandled vlc exceptionn" );
  220.         wchar_t * wdir = (wchar_t *)malloc(sizeof(wchar_t)*MAX_PATH);
  221.         get_crashdump_path(wdir);
  222.         FILE * fd = _wfopen ( wdir, L"w, ccs=UTF-8" );
  223.         free((void *)wdir);
  224.         if( !fd )
  225.         {
  226.             fprintf( stderr, "nerror while opening file" );
  227.             exit( 1 );
  228.         }
  229.         OSVERSIONINFO osvi;
  230.         ZeroMemory( &osvi, sizeof(OSVERSIONINFO) );
  231.         osvi.dwOSVersionInfoSize = sizeof( OSVERSIONINFO );
  232.         GetVersionEx( &osvi );
  233.         fwprintf( fd, L"[version]nOS=%d.%d.%d.%d.%snVLC=" VERSION_MESSAGE, osvi.dwMajorVersion,
  234.                                                                osvi.dwMinorVersion,
  235.                                                                osvi.dwBuildNumber,
  236.                                                                osvi.dwPlatformId,
  237.                                                                osvi.szCSDVersion);
  238.         const CONTEXT *const pContext = (const CONTEXT *)lpExceptionInfo->ContextRecord;
  239.         const EXCEPTION_RECORD *const pException = (const EXCEPTION_RECORD *)lpExceptionInfo->ExceptionRecord;
  240.         /*No nested exceptions for now*/
  241.         fwprintf( fd, L"nn[exceptions]n%08x at %08x",pException->ExceptionCode,
  242.                                                 pException->ExceptionAddress );
  243.         if( pException->NumberParameters > 0 )
  244.         {
  245.             unsigned int i;
  246.             for( i = 0; i < pException->NumberParameters; i++ )
  247.                 fprintf( fd, " | %08x", pException->ExceptionInformation[i] );
  248.         }
  249.         fwprintf( fd, L"nn[context]nEDI:%08xnESI:%08xn" 
  250.                     "EBX:%08xnEDX:%08xnECX:%08xnEAX:%08xn" 
  251.                     "EBP:%08xnEIP:%08xnESP:%08xn",
  252.                         pContext->Edi,pContext->Esi,pContext->Ebx,
  253.                         pContext->Edx,pContext->Ecx,pContext->Eax,
  254.                         pContext->Ebp,pContext->Eip,pContext->Esp );
  255.         fwprintf( fd, L"n[stacktrace]n#EIP|base|modulen" );
  256.         wchar_t module[ 256 ];
  257.         MEMORY_BASIC_INFORMATION mbi ;
  258.         VirtualQuery( (DWORD *)pContext->Eip, &mbi, sizeof( mbi ) ) ;
  259.         HINSTANCE hInstance = mbi.AllocationBase;
  260.         GetModuleFileName( hInstance, module, 256 ) ;
  261.         fwprintf( fd, L"%08x|%sn", pContext->Eip, module );
  262.         DWORD pEbp = pContext->Ebp;
  263.         DWORD caller = *((DWORD*)pEbp + 1);
  264.         do
  265.         {
  266.             VirtualQuery( (DWORD *)caller, &mbi, sizeof( mbi ) ) ;
  267.             HINSTANCE hInstance = mbi.AllocationBase;
  268.             GetModuleFileName( hInstance, module, 256 ) ;
  269.             fwprintf( fd, L"%08x|%sn", caller, module );
  270.             pEbp = *(DWORD*)pEbp ;
  271.             caller = *((DWORD*)pEbp + 1) ;
  272.             /*The last EBP points to NULL!*/
  273.         }while(caller);
  274.         fclose( fd );
  275.         fflush( stderr );
  276.         exit( 1 );
  277.     }
  278. }
  279. #endif