X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=libhb%2Fports.c;h=120038618bbd2197c43723285554e8085cde2445;hb=033e32de9c380f54c7d1362a3979da205ebc3a29;hp=20c2cae940926414aa1915daf959a8cf9b1ebb29;hpb=cdba71d1dca214142fdcca4c52f7672252752c2e;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/libhb/ports.c b/libhb/ports.c index 20c2cae9..12003861 100644 --- a/libhb/ports.c +++ b/libhb/ports.c @@ -1,22 +1,50 @@ /* $Id: ports.c,v 1.15 2005/10/15 18:05:03 titer Exp $ This file is part of the HandBrake source code. - Homepage: . + Homepage: . It may be used under the terms of the GNU General Public License. */ -#include -#include +#ifdef USE_PTHREAD +#ifdef SYS_LINUX +#define _GNU_SOURCE +#include +#endif +#include +#endif -#if defined( SYS_BEOS ) -#include -#include -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#ifdef SYS_BEOS +#include +#endif + +#if defined(SYS_DARWIN) || defined(SYS_FREEBSD) +#include +#include +#endif + +#ifdef SYS_OPENBSD +#include +#include +#include +#endif + +#ifdef SYS_CYGWIN +#include +#endif + +#ifdef SYS_MINGW #include -#elif defined( SYS_CYGWIN ) #include #endif -#ifdef SYS_CYGWIN +#ifdef SYS_SunOS +#include +#endif + +#include +#include + + +#ifdef SYS_MINGW #include #include #else @@ -26,6 +54,18 @@ #include #endif +#if defined( SYS_LINUX ) +#include +#include +#include +#elif defined( SYS_OPENBSD ) +#include +#include +#include +#endif + +#include + #include "hb.h" /************************************************************************ @@ -35,6 +75,7 @@ * On Win32, we implement a gettimeofday emulation here because * libdvdread and libmp4v2 use it without checking. ************************************************************************/ +/* #ifdef SYS_CYGWIN struct timezone { @@ -49,6 +90,41 @@ int gettimeofday( struct timeval * tv, struct timezone * tz ) return 0; } #endif +*/ + +int hb_dvd_region(char *device, int *region_mask) +{ +#if defined( DVD_LU_SEND_RPC_STATE ) && defined( DVD_AUTH ) + struct stat st; + dvd_authinfo ai; + int fd, ret; + + fd = open( device, O_RDONLY ); + if ( fd < 0 ) + return -1; + if ( fstat( fd, &st ) < 0 ) + { + close( fd ); + return -1; + } + if ( !( S_ISBLK( st.st_mode ) || S_ISCHR( st.st_mode ) ) ) + { + close( fd ); + return -1; + } + + ai.type = DVD_LU_SEND_RPC_STATE; + ret = ioctl(fd, DVD_AUTH, &ai); + close( fd ); + if ( ret < 0 ) + return ret; + + *region_mask = ai.lrpcs.region_mask; + return 0; +#else + return -1; +#endif +} uint64_t hb_get_date() { @@ -70,9 +146,9 @@ void hb_snooze( int delay ) } #if defined( SYS_BEOS ) snooze( 1000 * delay ); -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD) || defined( SYS_SunOS ) usleep( 1000 * delay ); -#elif defined( SYS_CYGWIN ) +#elif defined( SYS_CYGWIN ) || defined( SYS_MINGW ) Sleep( delay ); #endif } @@ -94,54 +170,52 @@ int hb_get_cpu_count() } cpu_count = 1; -#if defined( SYS_BEOS ) - { - system_info info; - get_system_info( &info ); - cpu_count = info.cpu_count; - } - -#elif defined( SYS_DARWIN ) || defined( SYS_FREEBSD ) - FILE * info; - char buffer[16]; +#if defined(SYS_CYGWIN) || defined(SYS_MINGW) + SYSTEM_INFO cpuinfo; + GetSystemInfo( &cpuinfo ); + cpu_count = cpuinfo.dwNumberOfProcessors; - if( ( info = popen( "/usr/sbin/sysctl hw.ncpu", "r" ) ) ) +#elif defined(SYS_LINUX) + unsigned int bit; + cpu_set_t p_aff; + memset( &p_aff, 0, sizeof(p_aff) ); + sched_getaffinity( 0, sizeof(p_aff), &p_aff ); + for( cpu_count = 0, bit = 0; bit < sizeof(p_aff); bit++ ) + cpu_count += (((uint8_t *)&p_aff)[bit / 8] >> (bit % 8)) & 1; + +#elif defined(SYS_BEOS) + system_info info; + get_system_info( &info ); + cpu_count = info.cpu_count; + +#elif defined(SYS_DARWIN) || defined(SYS_FREEBSD) || defined(SYS_OPENBSD) + size_t length = sizeof( cpu_count ); +#ifdef SYS_OPENBSD + int mib[2] = { CTL_HW, HW_NCPU }; + if( sysctl(mib, 2, &cpu_count, &length, NULL, 0) ) +#else + if( sysctlbyname("hw.ncpu", &cpu_count, &length, NULL, 0) ) +#endif { - memset( buffer, 0, 16 ); - if( fgets( buffer, 15, info ) ) - { - if( sscanf( buffer, "hw.ncpu: %d", &cpu_count ) != 1 ) - { - cpu_count = 1; - } - } - fclose( info ); + cpu_count = 1; } -#elif defined( SYS_LINUX ) +#elif defined( SYS_SunOS ) { - FILE * info; - char buffer[8]; + processorid_t cpumax; + int i,j=0; - if( ( info = popen( "grep -c '^processor' /proc/cpuinfo", - "r" ) ) ) + cpumax = sysconf(_SC_CPUID_MAX); + + for(i = 0; i <= cpumax; i++ ) { - memset( buffer, 0, 8 ); - if( fgets( buffer, 7, info ) ) + if(p_online(i, P_STATUS) != -1) { - if( sscanf( buffer, "%d", &cpu_count ) != 1 ) - { - cpu_count = 1; - } + j++; } - fclose( info ); } + cpu_count=j; } - -#elif defined( SYS_CYGWIN ) - SYSTEM_INFO cpuinfo; - GetSystemInfo( &cpuinfo ); - cpu_count = cpuinfo.dwNumberOfProcessors; #endif cpu_count = MAX( 1, cpu_count ); @@ -158,7 +232,7 @@ void hb_get_tempory_directory( hb_handle_t * h, char path[512] ) char base[512]; /* Create the base */ -#ifdef SYS_CYGWIN +#if defined( SYS_CYGWIN ) || defined( SYS_MINGW ) char *p; int i_size = GetTempPath( 512, base ); if( i_size <= 0 || i_size >= 512 ) @@ -190,7 +264,7 @@ void hb_get_tempory_filename( hb_handle_t * h, char name[1024], hb_get_tempory_directory( h, name ); strcat( name, "/" ); - + va_start( args, fmt ); vsnprintf( &name[strlen(name)], 1024 - strlen(name), fmt, args ); va_end( args ); @@ -204,7 +278,7 @@ void hb_get_tempory_filename( hb_handle_t * h, char name[1024], ***********************************************************************/ void hb_mkdir( char * name ) { -#ifdef SYS_CYGWIN +#ifdef SYS_MINGW mkdir( name ); #else mkdir( name, 0755 ); @@ -226,13 +300,34 @@ struct hb_thread_s #if defined( SYS_BEOS ) thread_id thread; -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif USE_PTHREAD pthread_t thread; -#elif defined( SYS_CYGWIN ) - HANDLE thread; +//#elif defined( SYS_CYGWIN ) +// HANDLE thread; #endif }; +/* Get a unique identifier to thread and represent as 64-bit unsigned. + * If unsupported, the value 0 is be returned. + * Caller should use result only for display/log purposes. + */ +static uint64_t hb_thread_to_integer( const hb_thread_t* t ) +{ +#if defined( USE_PTHREAD ) + #if defined( SYS_CYGWIN ) + return (uint64_t)t->thread; + #elif defined( _WIN32 ) || defined( __MINGW32__ ) + return (uint64_t)(ptrdiff_t)t->thread.p; + #elif defined( SYS_DARWIN ) + return (unsigned long)t->thread; + #else + return (uint64_t)t->thread; + #endif +#else + return 0; +#endif +} + /************************************************************************ * hb_thread_func() ************************************************************************ @@ -263,7 +358,7 @@ static void hb_thread_func( void * _t ) t->function( t->arg ); /* Inform that the thread can be joined now */ - hb_log( "thread %d exited (\"%s\")", t->thread, t->name ); + hb_deep_log( 2, "thread %"PRIx64" exited (\"%s\")", hb_thread_to_integer( t ), t->name ); hb_lock( t->lock ); t->exited = 1; hb_unlock( t->lock ); @@ -295,20 +390,20 @@ hb_thread_t * hb_thread_init( char * name, void (* function)(void *), name, priority, t ); resume_thread( t->thread ); -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif USE_PTHREAD pthread_create( &t->thread, NULL, (void * (*)( void * )) hb_thread_func, t ); -#elif defined( SYS_CYGWIN ) - t->thread = CreateThread( NULL, 0, - (LPTHREAD_START_ROUTINE) hb_thread_func, t, 0, NULL ); - - /* Maybe use THREAD_PRIORITY_LOWEST instead */ - if( priority == HB_LOW_PRIORITY ) - SetThreadPriority( GetCurrentThread(), THREAD_PRIORITY_BELOW_NORMAL ); +//#elif defined( SYS_CYGWIN ) +// t->thread = CreateThread( NULL, 0, +// (LPTHREAD_START_ROUTINE) hb_thread_func, t, 0, NULL ); +// +// /* Maybe use THREAD_PRIORITY_LOWEST instead */ +// if( priority == HB_LOW_PRIORITY ) +// SetThreadPriority( GetCurrentThread(), THREAD_PRIORITY_BELOW_NORMAL ); #endif - hb_log( "thread %d started (\"%s\")", t->thread, t->name ); + hb_deep_log( 2, "thread %"PRIx64" started (\"%s\")", hb_thread_to_integer( t ), t->name ); return t; } @@ -325,21 +420,20 @@ void hb_thread_close( hb_thread_t ** _t ) #if defined( SYS_BEOS ) long exit_value; wait_for_thread( t->thread, &exit_value ); - -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) + +#elif USE_PTHREAD pthread_join( t->thread, NULL ); -#elif defined( SYS_CYGWIN ) - WaitForSingleObject( t->thread, INFINITE ); +//#elif defined( SYS_CYGWIN ) +// WaitForSingleObject( t->thread, INFINITE ); #endif - - hb_log( "thread %d joined (\"%s\")", - t->thread, t->name ); + + hb_deep_log( 2, "thread %"PRIx64" joined (\"%s\")", hb_thread_to_integer( t ), t->name ); hb_lock_close( &t->lock ); free( t->name ); free( t ); - *_t = NULL; + *_t = NULL; } /************************************************************************ @@ -365,10 +459,10 @@ struct hb_lock_s { #if defined( SYS_BEOS ) sem_id sem; -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif USE_PTHREAD pthread_mutex_t mutex; -#elif defined( SYS_CYGWIN ) - HANDLE mutex; +//#elif defined( SYS_CYGWIN ) +// HANDLE mutex; #endif }; @@ -386,10 +480,18 @@ hb_lock_t * hb_lock_init() #if defined( SYS_BEOS ) l->sem = create_sem( 1, "sem" ); -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) - pthread_mutex_init( &l->mutex, NULL ); -#elif defined( SYS_CYGWIN ) - l->mutex = CreateMutex( 0, FALSE, 0 ); +#elif USE_PTHREAD + pthread_mutexattr_t mta; + + pthread_mutexattr_init(&mta); + +#if defined( SYS_CYGWIN ) + pthread_mutexattr_settype(&mta, PTHREAD_MUTEX_NORMAL); +#endif + + pthread_mutex_init( &l->mutex, &mta ); +//#elif defined( SYS_CYGWIN ) +// l->mutex = CreateMutex( 0, FALSE, 0 ); #endif return l; @@ -401,10 +503,10 @@ void hb_lock_close( hb_lock_t ** _l ) #if defined( SYS_BEOS ) delete_sem( l->sem ); -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif USE_PTHREAD pthread_mutex_destroy( &l->mutex ); -#elif defined( SYS_CYGWIN ) - CloseHandle( l->mutex ); +//#elif defined( SYS_CYGWIN ) +// CloseHandle( l->mutex ); #endif free( l ); @@ -415,10 +517,10 @@ void hb_lock( hb_lock_t * l ) { #if defined( SYS_BEOS ) acquire_sem( l->sem ); -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif USE_PTHREAD pthread_mutex_lock( &l->mutex ); -#elif defined( SYS_CYGWIN ) - WaitForSingleObject( l->mutex, INFINITE ); +//#elif defined( SYS_CYGWIN ) +// WaitForSingleObject( l->mutex, INFINITE ); #endif } @@ -426,10 +528,10 @@ void hb_unlock( hb_lock_t * l ) { #if defined( SYS_BEOS ) release_sem( l->sem ); -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif USE_PTHREAD pthread_mutex_unlock( &l->mutex ); -#elif defined( SYS_CYGWIN ) - ReleaseMutex( l->mutex ); +//#elif defined( SYS_CYGWIN ) +// ReleaseMutex( l->mutex ); #endif } @@ -440,10 +542,10 @@ struct hb_cond_s { #if defined( SYS_BEOS ) int thread; -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif USE_PTHREAD pthread_cond_t cond; -#elif defined( SYS_CYGWIN ) - HANDLE event; +//#elif defined( SYS_CYGWIN ) +// HANDLE event; #endif }; @@ -462,10 +564,10 @@ hb_cond_t * hb_cond_init() #if defined( SYS_BEOS ) c->thread = -1; -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif USE_PTHREAD pthread_cond_init( &c->cond, NULL ); -#elif defined( SYS_CYGWIN ) - c->event = CreateEvent( NULL, FALSE, FALSE, NULL ); +//#elif defined( SYS_CYGWIN ) +// c->event = CreateEvent( NULL, FALSE, FALSE, NULL ); #endif return c; @@ -476,10 +578,10 @@ void hb_cond_close( hb_cond_t ** _c ) hb_cond_t * c = *_c; #if defined( SYS_BEOS ) -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif USE_PTHREAD pthread_cond_destroy( &c->cond ); -#elif defined( SYS_CYGWIN ) - CloseHandle( c->event ); +//#elif defined( SYS_CYGWIN ) +// CloseHandle( c->event ); #endif free( c ); @@ -494,11 +596,11 @@ void hb_cond_wait( hb_cond_t * c, hb_lock_t * lock ) suspend_thread( c->thread ); acquire_sem( lock->sem ); c->thread = -1; -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif USE_PTHREAD pthread_cond_wait( &c->cond, &lock->mutex ); -#elif defined( SYS_CYGWIN ) - SignalObjectAndWait( lock->mutex, c->event, INFINITE, FALSE ); - WaitForSingleObject( lock->mutex, INFINITE ); +//#elif defined( SYS_CYGWIN ) +// SignalObjectAndWait( lock->mutex, c->event, INFINITE, FALSE ); +// WaitForSingleObject( lock->mutex, INFINITE ); #endif } @@ -519,10 +621,10 @@ void hb_cond_signal( hb_cond_t * c ) thread is actually suspended before we resume it */ snooze( 5000 ); } -#elif defined( SYS_DARWIN ) || defined( SYS_LINUX ) || defined( SYS_FREEBSD ) +#elif USE_PTHREAD pthread_cond_signal( &c->cond ); -#elif defined( SYS_CYGWIN ) - PulseEvent( c->event ); +//#elif defined( SYS_CYGWIN ) +// PulseEvent( c->event ); #endif } @@ -542,6 +644,23 @@ hb_net_t * hb_net_open( char * address, int port ) struct sockaddr_in sock; struct hostent * host; +#ifdef SYS_MINGW + WSADATA wsaData; + int iResult, winsock_init = 0; + + // Initialize Winsock + if (!winsock_init) + { + iResult = WSAStartup(MAKEWORD(2, 2), &wsaData); + if (iResult != 0) + { + hb_log("WSAStartup failed: %d", iResult); + return NULL; + } + winsock_init = 1; + } +#endif + /* TODO: find out why this doesn't work on Win32 */ if( !( host = gethostbyname( address ) ) ) { @@ -569,7 +688,7 @@ hb_net_t * hb_net_open( char * address, int port ) free( n ); return NULL; } - + return n; }