messages.c
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:20k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * messages.c: messages interface
- * This library provides an interface to the message queue to be used by other
- * modules, especially intf modules. See vlc_config.h for output configuration.
- *****************************************************************************
- * Copyright (C) 1998-2005 the VideoLAN team
- * $Id: a453bccd545d696eaef9d875e295779c31059268 $
- *
- * Authors: Vincent Seguin <seguin@via.ecp.fr>
- * Samuel Hocevar <sam@zoy.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
- /*****************************************************************************
- * Preamble
- *****************************************************************************/
- #ifdef HAVE_CONFIG_H
- # include "config.h"
- #endif
- #include <vlc_common.h>
- #include <stdarg.h> /* va_list for BSD */
- #ifdef HAVE_FCNTL_H
- # include <fcntl.h> /* O_CREAT, O_TRUNC, O_WRONLY, O_SYNC */
- #endif
- #include <errno.h> /* errno */
- #ifdef WIN32
- # include <vlc_network.h> /* 'net_strerror' and 'WSAGetLastError' */
- #endif
- #ifdef HAVE_UNISTD_H
- # include <unistd.h> /* close(), write() */
- #endif
- #include <assert.h>
- #include <vlc_charset.h>
- #include "../libvlc.h"
- typedef struct
- {
- int i_code;
- char * psz_message;
- } msg_context_t;
- static void cleanup_msg_context (void *data)
- {
- msg_context_t *ctx = data;
- free (ctx->psz_message);
- free (ctx);
- }
- static vlc_threadvar_t msg_context;
- static uintptr_t banks = 0;
- /*****************************************************************************
- * Local macros
- *****************************************************************************/
- #if defined(HAVE_VA_COPY)
- # define vlc_va_copy(dest,src) va_copy(dest,src)
- #elif defined(HAVE___VA_COPY)
- # define vlc_va_copy(dest,src) __va_copy(dest,src)
- #else
- # define vlc_va_copy(dest,src) (dest)=(src)
- #endif
- #define QUEUE priv->msg_bank
- static inline msg_bank_t *libvlc_bank (libvlc_int_t *inst)
- {
- return &(libvlc_priv (inst))->msg_bank;
- }
- /*****************************************************************************
- * Local prototypes
- *****************************************************************************/
- static void QueueMsg ( vlc_object_t *, int, const char *,
- const char *, va_list );
- static void PrintMsg ( vlc_object_t *, msg_item_t * );
- static vlc_mutex_t msg_stack_lock = VLC_STATIC_MUTEX;
- /**
- * Initialize messages queues
- * This function initializes all message queues
- */
- void msg_Create (libvlc_int_t *p_libvlc)
- {
- libvlc_priv_t *priv = libvlc_priv (p_libvlc);
- msg_bank_t *bank = libvlc_bank (p_libvlc);
- vlc_mutex_init (&bank->lock);
- vlc_cond_init (&bank->wait);
- vlc_dictionary_init( &priv->msg_enabled_objects, 0 );
- priv->msg_all_objects_enabled = true;
- QUEUE.i_sub = 0;
- QUEUE.pp_sub = NULL;
- #ifdef UNDER_CE
- QUEUE.logfile =
- CreateFile( L"vlc-log.txt", GENERIC_WRITE,
- FILE_SHARE_READ|FILE_SHARE_WRITE, NULL,
- CREATE_ALWAYS, 0, NULL );
- SetFilePointer( QUEUE.logfile, 0, NULL, FILE_END );
- #endif
- vlc_mutex_lock( &msg_stack_lock );
- if( banks++ == 0 )
- vlc_threadvar_create( &msg_context, cleanup_msg_context );
- vlc_mutex_unlock( &msg_stack_lock );
- }
- /**
- * Object Printing selection
- */
- static void const * kObjectPrintingEnabled = &kObjectPrintingEnabled;
- static void const * kObjectPrintingDisabled = &kObjectPrintingDisabled;
- void __msg_EnableObjectPrinting (vlc_object_t *p_this, char * psz_object)
- {
- libvlc_priv_t *priv = libvlc_priv (p_this->p_libvlc);
- vlc_mutex_lock( &QUEUE.lock );
- if( !strcmp(psz_object, "all") )
- priv->msg_all_objects_enabled = true;
- else
- vlc_dictionary_insert( &priv->msg_enabled_objects, psz_object, (void *)kObjectPrintingEnabled );
- vlc_mutex_unlock( &QUEUE.lock );
- }
- void __msg_DisableObjectPrinting (vlc_object_t *p_this, char * psz_object)
- {
- libvlc_priv_t *priv = libvlc_priv (p_this->p_libvlc);
- vlc_mutex_lock( &QUEUE.lock );
- if( !strcmp(psz_object, "all") )
- priv->msg_all_objects_enabled = false;
- else
- vlc_dictionary_insert( &priv->msg_enabled_objects, psz_object, (void *)kObjectPrintingDisabled );
- vlc_mutex_unlock( &QUEUE.lock );
- }
- /**
- * Destroy the message queues
- *
- * This functions prints all messages remaining in the queues,
- * then frees all the allocated resources
- * No other messages interface functions should be called after this one.
- */
- void msg_Destroy (libvlc_int_t *p_libvlc)
- {
- libvlc_priv_t *priv = libvlc_priv (p_libvlc);
- msg_bank_t *bank = libvlc_bank (p_libvlc);
- if( QUEUE.i_sub )
- msg_Err( p_libvlc, "stale interface subscribers (VLC might crash)" );
- vlc_mutex_lock( &msg_stack_lock );
- if( --banks == 0 )
- vlc_threadvar_delete( &msg_context );
- vlc_mutex_unlock( &msg_stack_lock );
- #ifdef UNDER_CE
- CloseHandle( QUEUE.logfile );
- #endif
- vlc_dictionary_clear( &priv->msg_enabled_objects, NULL, NULL );
- vlc_cond_destroy (&bank->wait);
- vlc_mutex_destroy (&bank->lock);
- }
- struct msg_subscription_t
- {
- vlc_thread_t thread;
- libvlc_int_t *instance;
- msg_callback_t func;
- msg_cb_data_t *opaque;
- msg_item_t *items[VLC_MSG_QSIZE];
- unsigned begin, end;
- unsigned overruns;
- };
- static void *msg_thread (void *data)
- {
- msg_subscription_t *sub = data;
- msg_bank_t *bank = libvlc_bank (sub->instance);
- vlc_mutex_lock (&bank->lock);
- for (;;)
- {
- /* Wait for messages */
- assert (sub->begin < VLC_MSG_QSIZE);
- assert (sub->end < VLC_MSG_QSIZE);
- while (sub->begin != sub->end)
- {
- msg_item_t *msg = sub->items[sub->begin];
- unsigned overruns = sub->overruns;
- if (++sub->begin == VLC_MSG_QSIZE)
- sub->begin = 0;
- sub->overruns = 0;
- vlc_mutex_unlock (&bank->lock);
- sub->func (sub->opaque, msg, overruns);
- msg_Release (msg);
- vlc_mutex_lock (&bank->lock);
- }
- mutex_cleanup_push (&bank->lock);
- vlc_cond_wait (&bank->wait, &bank->lock);
- vlc_cleanup_pop ();
- }
- assert (0);
- }
- /**
- * Subscribe to the message queue.
- * Whenever a message is emitted, a callback will be called.
- * Callback invocation are serialized within a subscription.
- *
- * @param instance LibVLC instance to get messages from
- * @param cb callback function
- * @param opaque data for the callback function
- * @return a subscription pointer, or NULL in case of failure
- */
- msg_subscription_t *msg_Subscribe (libvlc_int_t *instance, msg_callback_t cb,
- msg_cb_data_t *opaque)
- {
- msg_subscription_t *sub = malloc (sizeof (*sub));
- if (sub == NULL)
- return NULL;
- sub->instance = instance;
- sub->func = cb;
- sub->opaque = opaque;
- sub->begin = sub->end = sub->overruns = 0;
- if (vlc_clone (&sub->thread, msg_thread, sub, VLC_THREAD_PRIORITY_LOW))
- {
- free (sub);
- return NULL;
- }
- msg_bank_t *bank = libvlc_bank (instance);
- vlc_mutex_lock (&bank->lock);
- TAB_APPEND (bank->i_sub, bank->pp_sub, sub);
- vlc_mutex_unlock (&bank->lock);
- return sub;
- }
- /**
- * Unsubscribe from the message queue.
- * This function waits for the message callback to return if needed.
- */
- void msg_Unsubscribe (msg_subscription_t *sub)
- {
- msg_bank_t *bank = libvlc_bank (sub->instance);
- /* TODO: flush support? */
- vlc_cancel (sub->thread);
- vlc_mutex_lock (&bank->lock);
- TAB_REMOVE (bank->i_sub, bank->pp_sub, sub);
- vlc_mutex_unlock (&bank->lock);
- vlc_join (sub->thread, NULL);
- /* Free dangling (not flushed) messages. */
- /* NOTE: no locking, only this thread can refer to the subscription now. */
- while (sub->begin != sub->end)
- {
- msg_Release (sub->items[sub->begin]);
- if (++sub->begin == VLC_MSG_QSIZE)
- sub->begin = 0;
- }
- free (sub);
- }
- /*****************************************************************************
- * __msg_*: print a message
- *****************************************************************************
- * These functions queue a message for later printing.
- *****************************************************************************/
- void __msg_Generic( vlc_object_t *p_this, int i_type, const char *psz_module,
- const char *psz_format, ... )
- {
- va_list args;
- va_start( args, psz_format );
- QueueMsg( p_this, i_type, psz_module, psz_format, args );
- va_end( args );
- }
- void __msg_GenericVa( vlc_object_t *p_this, int i_type, const char *psz_module,
- const char *psz_format, va_list args )
- {
- QueueMsg( p_this, i_type, psz_module, psz_format, args );
- }
- /**
- * Destroys a message.
- */
- static void msg_Free (gc_object_t *gc)
- {
- msg_item_t *msg = vlc_priv (gc, msg_item_t);
- free (msg->psz_module);
- free (msg->psz_msg);
- free (msg->psz_header);
- free (msg);
- }
- /**
- * Add a message to a queue
- *
- * This function provides basic functionnalities to other msg_* functions.
- * It adds a message to a queue (after having printed all stored messages if it
- * is full). If the message can't be converted to string in memory, it issues
- * a warning.
- */
- static void QueueMsg( vlc_object_t *p_this, int i_type, const char *psz_module,
- const char *psz_format, va_list _args )
- {
- assert (p_this);
- libvlc_priv_t *priv = libvlc_priv (p_this->p_libvlc);
- int i_header_size; /* Size of the additionnal header */
- vlc_object_t *p_obj;
- char * psz_str = NULL; /* formatted message string */
- char * psz_header = NULL;
- va_list args;
- if( p_this->i_flags & OBJECT_FLAGS_QUIET ||
- (p_this->i_flags & OBJECT_FLAGS_NODBG && i_type == VLC_MSG_DBG) )
- return;
- #ifndef __GLIBC__
- /* Expand %m to strerror(errno) - only once */
- char buf[strlen( psz_format ) + 2001], *ptr;
- strcpy( buf, psz_format );
- ptr = (char*)buf;
- psz_format = (const char*) buf;
- for( ;; )
- {
- ptr = strchr( ptr, '%' );
- if( ptr == NULL )
- break;
- if( ptr[1] == 'm' )
- {
- char errbuf[2001];
- size_t errlen;
- #ifndef WIN32
- strerror_r( errno, errbuf, 1001 );
- #else
- int sockerr = WSAGetLastError( );
- if( sockerr )
- {
- strncpy( errbuf, net_strerror( sockerr ), 1001 );
- WSASetLastError( sockerr );
- }
- if ((sockerr == 0)
- || (strcmp ("Unknown network stack error", errbuf) == 0))
- strncpy( errbuf, strerror( errno ), 1001 );
- #endif
- errbuf[1000] = 0;
- /* Escape '%' from the error string */
- for( char *percent = strchr( errbuf, '%' );
- percent != NULL;
- percent = strchr( percent + 2, '%' ) )
- {
- memmove( percent + 1, percent, strlen( percent ) + 1 );
- }
- errlen = strlen( errbuf );
- memmove( ptr + errlen, ptr + 2, strlen( ptr + 2 ) + 1 );
- memcpy( ptr, errbuf, errlen );
- break; /* Only once, so we don't overflow */
- }
- /* Looks for conversion specifier... */
- do
- ptr++;
- while( *ptr && ( strchr( "diouxXeEfFgGaAcspn%", *ptr ) == NULL ) );
- if( *ptr )
- ptr++; /* ...and skip it */
- }
- #endif
- /* Convert message to string */
- vlc_va_copy( args, _args );
- if( vasprintf( &psz_str, psz_format, args ) == -1 )
- psz_str = NULL;
- va_end( args );
- if( psz_str == NULL )
- {
- int canc = vlc_savecancel (); /* Do not print half of a message... */
- #ifdef __GLIBC__
- fprintf( stderr, "main warning: can't store message (%m): " );
- #else
- char psz_err[1001];
- #ifndef WIN32
- /* we're not using GLIBC, so we are sure that the error description
- * will be stored in the buffer we provide to strerror_r() */
- strerror_r( errno, psz_err, 1001 );
- #else
- strncpy( psz_err, strerror( errno ), 1001 );
- #endif
- psz_err[1000] = ' ';
- fprintf( stderr, "main warning: can't store message (%s): ", psz_err );
- #endif
- vlc_va_copy( args, _args );
- /* We should use utf8_vfprintf - but it calls malloc()... */
- vfprintf( stderr, psz_format, args );
- va_end( args );
- fputs( "n", stderr );
- vlc_restorecancel (canc);
- return;
- }
- msg_item_t * p_item = malloc (sizeof (*p_item));
- if (p_item == NULL)
- return; /* Uho! */
- vlc_gc_init (p_item, msg_Free);
- p_item->psz_module = p_item->psz_msg = p_item->psz_header = NULL;
- i_header_size = 0;
- p_obj = p_this;
- while( p_obj != NULL )
- {
- char *psz_old = NULL;
- if( p_obj->psz_header )
- {
- i_header_size += strlen( p_obj->psz_header ) + 4;
- if( psz_header )
- {
- psz_old = strdup( psz_header );
- psz_header = (char*)realloc( psz_header, i_header_size );
- snprintf( psz_header, i_header_size , "[%s] %s",
- p_obj->psz_header, psz_old );
- }
- else
- {
- psz_header = (char *)malloc( i_header_size );
- snprintf( psz_header, i_header_size, "[%s]",
- p_obj->psz_header );
- }
- }
- free( psz_old );
- p_obj = p_obj->p_parent;
- }
- /* Fill message information fields */
- p_item->i_type = i_type;
- p_item->i_object_id = (uintptr_t)p_this;
- p_item->psz_object_type = p_this->psz_object_type;
- p_item->psz_module = strdup( psz_module );
- p_item->psz_msg = psz_str;
- p_item->psz_header = psz_header;
- PrintMsg( p_this, p_item );
- msg_bank_t *p_queue = &QUEUE;
- vlc_mutex_lock( &p_queue->lock );
- #define bank p_queue
- for (int i = 0; i < bank->i_sub; i++)
- {
- msg_subscription_t *sub = bank->pp_sub[i];
- if ((sub->end + 1 - sub->begin) % VLC_MSG_QSIZE)
- {
- sub->items[sub->end++] = msg_Hold (p_item);
- if (sub->end == VLC_MSG_QSIZE)
- sub->end = 0;
- }
- else
- sub->overruns++;
- }
- vlc_cond_broadcast (&bank->wait);
- vlc_mutex_unlock (&bank->lock);
- msg_Release (p_item);
- }
- /*****************************************************************************
- * PrintMsg: output a standard message item to stderr
- *****************************************************************************
- * Print a message to stderr, with colour formatting if needed.
- *****************************************************************************/
- static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item )
- {
- # define COL(x) "