X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmisc%2Fwin32_specific.c;h=9b53f77f1a7d09ec365ef7793cedf9bb0694324d;hb=494ace96d068ee8e4b6b689da0ae469c0c0e4fe3;hp=02d9760680363cac3744b1f3ee836d0c698b417a;hpb=cc3bd152f5d2166087b9e19b962e3ace06bd12ea;p=vlc diff --git a/src/misc/win32_specific.c b/src/misc/win32_specific.c index 02d9760680..9b53f77f1a 100644 --- a/src/misc/win32_specific.c +++ b/src/misc/win32_specific.c @@ -22,18 +22,22 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#include +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#define UNICODE +#include #include "../libvlc.h" #include #include -#ifdef WIN32 /* optind, getopt(), included in unistd.h */ -# include "../extras/getopt.h" -#endif +#include "../extras/getopt.h" #if !defined( UNDER_CE ) # include # include +# include #endif #include @@ -41,7 +45,7 @@ /***************************************************************************** * system_Init: initialize winsock and misc other things. *****************************************************************************/ -void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) +void system_Init( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv[] ) { WSADATA Data; @@ -49,7 +53,6 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) char psz_path[MAX_PATH]; char *psz_vlc; -#if defined( UNDER_CE ) wchar_t psz_wpath[MAX_PATH]; if( GetModuleFileName( NULL, psz_wpath, MAX_PATH ) ) { @@ -58,22 +61,11 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) } else psz_path[0] = '\0'; -#else - if( ppsz_argv[0] ) - { - GetFullPathName( ppsz_argv[0], MAX_PATH, psz_path, &psz_vlc ); - } - else if( !GetModuleFileName( NULL, psz_path, MAX_PATH ) ) - { - psz_path[0] = '\0'; - } -#endif - if( (psz_vlc = strrchr( psz_path, '\\' )) ) *psz_vlc = '\0'; #ifndef HAVE_RELEASE { - /* remove trailing \.libs from executable dir path if seen, + /* remove trailing \.libs from executable dir path if seen, we assume we are running vlc through libtool wrapper in build dir */ int offset = strlen(psz_path)-sizeof("\\.libs")+1; if( offset > 0 ) @@ -90,6 +82,8 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) #if !defined( UNDER_CE ) _fmode = _O_BINARY; _setmode( _fileno( stdin ), _O_BINARY ); /* Needed for pipes */ + + timeBeginPeriod(5); #endif /* Call mdate() once to make sure it is initialized properly */ @@ -128,8 +122,14 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) *****************************************************************************/ static void IPCHelperThread( vlc_object_t * ); LRESULT CALLBACK WMCOPYWNDPROC( HWND, UINT, WPARAM, LPARAM ); +typedef struct +{ + int argc; + int enqueue; + char data[0]; +} vlc_ipc_data_t; -void system_Configure( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) +void system_Configure( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv[] ) { #if !defined( UNDER_CE ) /* Raise default priority of the current process */ @@ -158,7 +158,7 @@ void system_Configure( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) msg_Info( p_this, "one instance mode ENABLED"); /* Use a named mutex to check if another instance is already running */ - if( !( hmutex = CreateMutex( 0, TRUE, _T("VLC ipc ") _T(VERSION) ) ) ) + if( !( hmutex = CreateMutex( 0, TRUE, L"VLC ipc "VERSION ) ) ) { /* Failed for some reason. Just ignore the option and go on as * normal. */ @@ -170,12 +170,14 @@ void system_Configure( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) if( GetLastError() != ERROR_ALREADY_EXISTS ) { /* We are the 1st instance. */ + static const char typename[] = "ipc helper"; vlc_object_t *p_helper = - (vlc_object_t *)vlc_object_create( p_this, sizeof(vlc_object_t) ); + vlc_custom_create( p_this, sizeof(vlc_object_t), + VLC_OBJECT_GENERIC, typename ); /* Run the helper thread */ if( vlc_thread_create( p_helper, "IPC helper", IPCHelperThread, - VLC_THREAD_PRIORITY_LOW, VLC_TRUE ) ) + VLC_THREAD_PRIORITY_LOW, true ) ) { msg_Err( p_this, "one instance mode DISABLED " "(IPC helper thread couldn't be created)" ); @@ -197,7 +199,7 @@ void system_Configure( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) /* Locate the window created by the IPC helper thread of the * 1st instance */ - if( !( ipcwindow = FindWindow( 0, _T("VLC ipc ") _T(VERSION) ) ) ) + if( !( ipcwindow = FindWindow( 0, L"VLC ipc "VERSION ) ) ) { msg_Err( p_this, "one instance mode DISABLED " "(couldn't find 1st instance of program)" ); @@ -210,27 +212,31 @@ void system_Configure( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) if( *pi_argc - 1 >= optind ) { COPYDATASTRUCT wm_data; - int i_opt, i_data; - char *p_data; + int i_opt; + vlc_ipc_data_t *p_data; + size_t i_data = sizeof (*p_data); - i_data = sizeof(int); for( i_opt = optind; i_opt < *pi_argc; i_opt++ ) { - i_data += sizeof(int); + i_data += sizeof (size_t); i_data += strlen( ppsz_argv[ i_opt ] ) + 1; } - p_data = (char *)malloc( i_data ); - *((int *)&p_data[0]) = *pi_argc - optind; - i_data = sizeof(int); + p_data = malloc( i_data ); + p_data->argc = *pi_argc - optind; + p_data->enqueue = config_GetInt( p_this, "playlist-enqueue" ); + i_data = 0; for( i_opt = optind; i_opt < *pi_argc; i_opt++ ) { - int i_len = strlen( ppsz_argv[ i_opt ] ) + 1; - *((int *)&p_data[i_data]) = i_len; - i_data += sizeof(int); - memcpy( &p_data[i_data], ppsz_argv[ i_opt ], i_len ); + size_t i_len = strlen( ppsz_argv[ i_opt ] ) + 1; + /* Windows will never switch to an architecture + * with stronger alignment requirements, right. */ + *((size_t *)(p_data->data + i_data)) = i_len; + i_data += sizeof (size_t); + memcpy( &p_data->data[i_data], ppsz_argv[ i_opt ], i_len ); i_data += i_len; } + i_data += sizeof (*p_data); /* Send our playlist items to the 1st instance */ wm_data.dwData = 0; @@ -258,8 +264,8 @@ static void IPCHelperThread( vlc_object_t *p_this ) MSG message; ipcwindow = - CreateWindow( _T("STATIC"), /* name of window class */ - _T("VLC ipc ") _T(VERSION), /* window title bar text */ + CreateWindow( L"STATIC", /* name of window class */ + L"VLC ipc "VERSION, /* window title bar text */ 0, /* window style */ 0, /* default X coordinate */ 0, /* default Y coordinate */ @@ -270,8 +276,8 @@ static void IPCHelperThread( vlc_object_t *p_this ) GetModuleHandle(NULL), /* handle of this program instance */ NULL ); /* sent to WM_CREATE */ - SetWindowLong( ipcwindow, GWL_WNDPROC, (LONG)WMCOPYWNDPROC ); - SetWindowLong( ipcwindow, GWL_USERDATA, (LONG)p_this ); + SetWindowLongPtr( ipcwindow, GWLP_WNDPROC, (LRESULT)WMCOPYWNDPROC ); + SetWindowLongPtr( ipcwindow, GWLP_USERDATA, (LONG_PTR)p_this ); /* Signal the creation of the thread and events queue */ vlc_thread_ready( p_this ); @@ -292,30 +298,27 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND hwnd, UINT uMsg, WPARAM wParam, vlc_object_t *p_this; playlist_t *p_playlist; - p_this = (vlc_object_t *)GetWindowLong( hwnd, GWL_USERDATA ); + p_this = (vlc_object_t *) + (uintptr_t)GetWindowLongPtr( hwnd, GWLP_USERDATA ); if( !p_this ) return 0; /* Add files to the playlist */ - p_playlist = (playlist_t *)vlc_object_find( p_this, - VLC_OBJECT_PLAYLIST, - FIND_ANYWHERE ); + p_playlist = pl_Yield( p_this ); if( !p_playlist ) return 0; if( pwm_data->lpData ) { - int i_argc, i_data, i_opt, i_options; char **ppsz_argv; - char *p_data = (char *)pwm_data->lpData; + vlc_ipc_data_t *p_data = (vlc_ipc_data_t *)pwm_data->lpData; + size_t i_data = 0; + int i_argc = p_data->argc, i_opt, i_options; - i_argc = *((int *)&p_data[0]); ppsz_argv = (char **)malloc( i_argc * sizeof(char *) ); - i_data = sizeof(int); for( i_opt = 0; i_opt < i_argc; i_opt++ ) { - ppsz_argv[i_opt] = &p_data[i_data + sizeof(int)]; - i_data += *((int *)&p_data[i_data]); - i_data += sizeof(int); + ppsz_argv[i_opt] = p_data->data + i_data + sizeof(int); + i_data += sizeof(int) + *((int *)(p_data->data + i_data)); } for( i_opt = 0; i_opt < i_argc; i_opt++ ) @@ -328,20 +331,12 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND hwnd, UINT uMsg, WPARAM wParam, { i_options++; } - if( i_opt || config_GetInt( p_this, "playlist-enqueue" ) ) - { - playlist_AddExt( p_playlist, ppsz_argv[i_opt], - NULL, PLAYLIST_APPEND , - PLAYLIST_END, -1, - (char const **)( i_options ? &ppsz_argv[i_opt+1] : NULL ), - i_options, VLC_TRUE, VLC_FALSE ); - } else { - playlist_AddExt( p_playlist, ppsz_argv[i_opt], - NULL, PLAYLIST_APPEND | PLAYLIST_GO, - PLAYLIST_END, -1, - (char const **)( i_options ? &ppsz_argv[i_opt+1] : NULL ), - i_options, VLC_TRUE, VLC_FALSE ); - } + playlist_AddExt( p_playlist, ppsz_argv[i_opt], + NULL, PLAYLIST_APPEND | + ( ( i_opt || p_data->enqueue ) ? 0 : PLAYLIST_GO ), + PLAYLIST_END, -1, + (char const **)( i_options ? &ppsz_argv[i_opt+1] : NULL ), + i_options, true, pl_Unlocked ); i_opt += i_options; } @@ -366,5 +361,9 @@ void system_End( libvlc_int_t *p_this ) vlc_global()->psz_vlcpath = NULL; } +#if !defined( UNDER_CE ) + timeEndPeriod(5); +#endif + WSACleanup(); }