⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stats.c

📁 uclinux 下的vlc播放器源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * stats.c: Statistics handling ***************************************************************************** * Copyright (C) 2006 the VideoLAN team * $Id: stats.c 16460 2006-08-31 22:01:13Z hartman $ * * Authors: Clément Stenac <zorglub@videolan.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 *****************************************************************************/#include <stdio.h>                                               /* required */#include <vlc/vlc.h>#include <vlc/input.h>/***************************************************************************** * Local prototypes *****************************************************************************/static counter_t *GetCounter( stats_handler_t *p_handler, int i_object_id,                              unsigned int i_counter );static int stats_CounterUpdate( stats_handler_t *p_handler,                                counter_t *p_counter,                                vlc_value_t val, vlc_value_t * );static stats_handler_t* stats_HandlerCreate( vlc_object_t *p_this );static stats_handler_t *stats_HandlerGet( vlc_object_t *p_this );static void TimerDump( vlc_object_t *p_this, counter_t *p_counter, vlc_bool_t);/***************************************************************************** * Exported functions *****************************************************************************//** * Cleanup statistics handler stuff * \param p_stats the handler to clean * \return nothing */void stats_HandlerDestroy( stats_handler_t *p_stats ){    int i;    for ( i =  p_stats->i_counters - 1 ; i >= 0 ; i-- )    {        int j;        counter_t *p_counter = p_stats->pp_counters[i];        for( j = p_counter->i_samples -1; j >= 0 ; j-- )        {            counter_sample_t *p_sample = p_counter->pp_samples[j];            REMOVE_ELEM( p_counter->pp_samples, p_counter->i_samples, j );            free( p_sample );        }        free( p_counter->psz_name );        REMOVE_ELEM( p_stats->pp_counters, p_stats->i_counters, i );        free( p_counter );    }}/** * Create a statistics counter * \param p_this the object for which to create the counter * \param psz_name the name * \param i_type the type of stored data. One of VLC_VAR_STRING, * VLC_VAR_INTEGER, VLC_VAR_FLOAT * \param i_compute_type the aggregation type. One of STATS_LAST (always * keep the last value), STATS_COUNTER (increment by the passed value), * STATS_MAX (keep the maximum passed value), STATS_MIN, or STATS_DERIVATIVE * (keep a time derivative of the value) */int __stats_Create( vlc_object_t *p_this, const char *psz_name, unsigned int i_id,                    int i_type, int i_compute_type ){    counter_t *p_counter;    stats_handler_t *p_handler;    if( !p_this->p_libvlc->b_stats ) return VLC_EGENERIC;    p_handler = stats_HandlerGet( p_this );    if( !p_handler ) return VLC_ENOMEM;    vlc_mutex_lock( &p_handler->object_lock );    p_counter = (counter_t*) malloc( sizeof( counter_t ) ) ;    p_counter->psz_name = strdup( psz_name );    p_counter->i_index = ((uint64_t)p_this->i_object_id << 32 ) + i_id;    p_counter->i_compute_type = i_compute_type;    p_counter->i_type = i_type;    p_counter->i_samples = 0;    p_counter->pp_samples = NULL;    p_counter->update_interval = 0;    p_counter->last_update = 0;    INSERT_ELEM( p_handler->pp_counters, p_handler->i_counters,                 p_handler->i_counters, p_counter );    vlc_mutex_unlock( &p_handler->object_lock );    vlc_object_release( p_handler );    return VLC_SUCCESS;}/** Update a counter element with new values * \param p_this the object in which to update * \param psz_name the name * \param val the vlc_value union containing the new value to aggregate. For * more information on how data is aggregated, \see __stats_Create */int __stats_Update( vlc_object_t *p_this, unsigned int i_counter,                    vlc_value_t val, vlc_value_t *val_new ){    int i_ret;    counter_t *p_counter;    stats_handler_t *p_handler;    if( !p_this->p_libvlc->b_stats ) return VLC_EGENERIC;    /* Get stats handler singleton */    p_handler = stats_HandlerGet( p_this );    if( !p_handler ) return VLC_ENOMEM;    vlc_mutex_lock( &p_handler->object_lock );    /* Look for existing element */    p_counter = GetCounter( p_handler, p_this->i_object_id, i_counter );    if( !p_counter )    {        vlc_mutex_unlock( &p_handler->object_lock );        vlc_object_release( p_handler );        return VLC_ENOOBJ;    }    i_ret = stats_CounterUpdate( p_handler, p_counter, val, val_new );    vlc_mutex_unlock( &p_handler->object_lock );    vlc_object_release( p_handler );    return i_ret;}/** Get the aggregated value for a counter * \param p_this an object * \param i_object_id the object id from which we want the data * \param psz_name the name of the couner * \param val a pointer to an initialized vlc_value union. It will contain the * retrieved value * \return an error code */int __stats_Get( vlc_object_t *p_this, int i_object_id,                 unsigned int i_counter, vlc_value_t *val ){    counter_t *p_counter;    stats_handler_t *p_handler;    if( !p_this->p_libvlc->b_stats ) return VLC_EGENERIC;    /* Get stats handler singleton */    p_handler = stats_HandlerGet( p_this );    if( !p_handler ) return VLC_ENOMEM;    vlc_mutex_lock( &p_handler->object_lock );    /* Look for existing element */    p_counter = GetCounter( p_handler, i_object_id, i_counter );    if( !p_counter )    {        vlc_mutex_unlock( &p_handler->object_lock );        vlc_object_release( p_handler );        val->i_int = val->f_float = 0.0;        return VLC_ENOOBJ;    }    if( p_counter->i_samples == 0 )    {        vlc_mutex_unlock( &p_handler->object_lock );        vlc_object_release( p_handler );        val->i_int = val->f_float = 0.0;        return VLC_EGENERIC;    }    switch( p_counter->i_compute_type )    {    case STATS_LAST:    case STATS_MIN:    case STATS_MAX:    case STATS_COUNTER:        *val = p_counter->pp_samples[0]->value;        break;    case STATS_DERIVATIVE:        /* Not ready yet */        if( p_counter->i_samples < 2 )        {            vlc_mutex_unlock( &p_handler->object_lock );            vlc_object_release( p_handler );            val->i_int = 0; val->f_float = 0.0;            return VLC_EGENERIC;        }        if( p_counter->i_type == VLC_VAR_INTEGER )        {            float f = ( p_counter->pp_samples[0]->value.i_int -                        p_counter->pp_samples[1]->value.i_int ) /                    (float)(  p_counter->pp_samples[0]->date -                              p_counter->pp_samples[1]->date );            val->i_int = (int)f;        }        else        {            float f = (float)( p_counter->pp_samples[0]->value.f_float -                               p_counter->pp_samples[1]->value.f_float ) /                      (float)( p_counter->pp_samples[0]->date -                               p_counter->pp_samples[1]->date );            val->f_float = f;        }        break;    }    vlc_object_release( p_handler );    vlc_mutex_unlock( &p_handler->object_lock );    return VLC_SUCCESS;;}/** Get a statistics counter structure. This allows for low-level modifications * \param p_this a parent object * \param i_object_id the object from which to retrieve data * \param psz_name the name * \return the counter, or NULL if not found (or handler not created yet) */counter_t *__stats_CounterGet( vlc_object_t *p_this, int i_object_id,                               unsigned int i_counter ){    counter_t *p_counter;    stats_handler_t *p_handler;    if( !p_this->p_libvlc->b_stats ) return NULL;    p_handler = stats_HandlerGet( p_this );    if( !p_handler ) return NULL;    vlc_mutex_lock( &p_handler->object_lock );    /* Look for existing element */    p_counter = GetCounter( p_handler, i_object_id, i_counter );    vlc_mutex_unlock( &p_handler->object_lock );    vlc_object_release( p_handler );    return p_counter;}void stats_ComputeInputStats( input_thread_t *p_input, input_stats_t *p_stats ){    vlc_object_t *p_obj;    vlc_list_t *p_list;    int i_index;    if( !p_input->p_libvlc->b_stats ) return;    vlc_mutex_lock( &p_stats->lock );    /* Input */    stats_GetInteger( p_input, p_input->i_object_id, STATS_READ_PACKETS,                       &p_stats->i_read_packets );    stats_GetInteger( p_input, p_input->i_object_id, STATS_READ_BYTES,                       &p_stats->i_read_bytes );    stats_GetFloat( p_input, p_input->i_object_id, STATS_INPUT_BITRATE,                       &p_stats->f_input_bitrate );    stats_GetInteger( p_input, p_input->i_object_id, STATS_DEMUX_READ,                      &p_stats->i_demux_read_bytes );    stats_GetFloat( p_input, p_input->i_object_id, STATS_DEMUX_BITRATE,                      &p_stats->f_demux_bitrate );    stats_GetInteger( p_input, p_input->i_object_id, STATS_DECODED_VIDEO,                      &p_stats->i_decoded_video );    stats_GetInteger( p_input, p_input->i_object_id, STATS_DECODED_AUDIO,                      &p_stats->i_decoded_audio );    /* Sout */    stats_GetInteger( p_input, p_input->i_object_id, STATS_SOUT_SENT_PACKETS,                      &p_stats->i_sent_packets );    stats_GetInteger( p_input, p_input->i_object_id, STATS_SOUT_SENT_BYTES,                      &p_stats->i_sent_bytes );    stats_GetFloat  ( p_input, p_input->i_object_id, STATS_SOUT_SEND_BITRATE,                      &p_stats->f_send_bitrate );    /* Aout - We store in p_input because aout is shared */    stats_GetInteger( p_input, p_input->i_object_id, STATS_PLAYED_ABUFFERS,                      &p_stats->i_played_abuffers );    stats_GetInteger( p_input, p_input->i_object_id, STATS_LOST_ABUFFERS,                      &p_stats->i_lost_abuffers );    /* Vouts - FIXME: Store all in input */    p_list = vlc_list_find( p_input, VLC_OBJECT_VOUT, FIND_CHILD );    if( p_list )    {        p_stats->i_displayed_pictures  = 0 ;        p_stats->i_lost_pictures = 0;        for( i_index = 0; i_index < p_list->i_count ; i_index ++ )        {            int i_displayed = 0, i_lost = 0;            p_obj = (vlc_object_t *)p_list->p_values[i_index].p_object;            stats_GetInteger( p_obj, p_obj->i_object_id,                              STATS_DISPLAYED_PICTURES,                              &i_displayed );            stats_GetInteger( p_obj, p_obj->i_object_id, STATS_LOST_PICTURES,                              &i_lost );            p_stats->i_displayed_pictures += i_displayed;            p_stats->i_lost_pictures += i_lost;         }        vlc_list_release( p_list );    }    vlc_mutex_unlock( &p_stats->lock );}void stats_ReinitInputStats( input_stats_t *p_stats ){    p_stats->i_read_packets = p_stats->i_read_bytes =    p_stats->f_input_bitrate = p_stats->f_average_input_bitrate =    p_stats->i_demux_read_packets = p_stats->i_demux_read_bytes =    p_stats->f_demux_bitrate = p_stats->f_average_demux_bitrate =    p_stats->i_displayed_pictures = p_stats->i_lost_pictures =    p_stats->i_played_abuffers = p_stats->i_lost_abuffers =    p_stats->i_decoded_video = p_stats->i_decoded_audio =    p_stats->i_sent_bytes = p_stats->i_sent_packets = p_stats->f_send_bitrate     = 0;}void stats_DumpInputStats( input_stats_t *p_stats  ){    vlc_mutex_lock( &p_stats->lock );    /* f_bitrate is in bytes / microsecond     * *1000 => bytes / millisecond => kbytes / seconds */    fprintf( stderr, "Input : %i (%i bytes) - %f kB/s - "                     "Demux : %i (%i bytes) - %f kB/s\n"                     " - Vout : %i/%i - Aout : %i/%i - Sout : %f\n",                    p_stats->i_read_packets, p_stats->i_read_bytes,                    p_stats->f_input_bitrate * 1000,                    p_stats->i_demux_read_packets, p_stats->i_demux_read_bytes,                    p_stats->f_demux_bitrate * 1000,                    p_stats->i_displayed_pictures, p_stats->i_lost_pictures,                    p_stats->i_played_abuffers, p_stats->i_lost_abuffers,                    p_stats->f_send_bitrate );    vlc_mutex_unlock( &p_stats->lock );}void __stats_ComputeGlobalStats( vlc_object_t *p_obj, global_stats_t *p_stats )

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -