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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * messages.h: messages interface
  3.  * This library provides basic functions for threads to interact with user
  4.  * interface, such as message output.
  5.  *****************************************************************************
  6.  * Copyright (C) 1999, 2000, 2001, 2002 the VideoLAN team
  7.  * $Id: a9f03d712a593c285574651b5419275172e8547a $
  8.  *
  9.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  10.  *          Samuel Hocevar <sam@zoy.org>
  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. #ifndef VLC_MESSAGES_H_
  27. #define VLC_MESSAGES_H_
  28. /**
  29.  * file
  30.  * This file defines structures and functions to handle messages and statistics gathering
  31.  */
  32. #include <stdarg.h>
  33. /**
  34.  * defgroup messages Messages
  35.  * This library provides basic functions for threads to interact with user
  36.  * interface, such as message output.
  37.  *
  38.  * @{
  39.  */
  40. /**
  41.  * Store a single message sent to user.
  42.  */
  43. typedef struct
  44. {
  45.     int     i_type;                             /**< message type, see below */
  46.     uintptr_t   i_object_id;
  47.     const char *psz_object_type;
  48.     char *  psz_module;
  49.     char *  psz_msg;                            /**< the message itself */
  50.     char *  psz_header;                         /**< Additional header */
  51.     mtime_t date;                               /**< Message date */
  52.     gc_object_t vlc_gc_data;
  53. } msg_item_t;
  54. /* Message types */
  55. /** standard messages */
  56. #define VLC_MSG_INFO  0
  57. /** error messages */
  58. #define VLC_MSG_ERR   1
  59. /** warning messages */
  60. #define VLC_MSG_WARN  2
  61. /** debug messages */
  62. #define VLC_MSG_DBG   3
  63. static inline msg_item_t *msg_Hold (msg_item_t *msg)
  64. {
  65.     vlc_hold (&msg->vlc_gc_data);
  66.     return msg;
  67. }
  68. static inline void msg_Release (msg_item_t *msg)
  69. {
  70.     vlc_release (&msg->vlc_gc_data);
  71. }
  72. /**
  73.  * Used by interface plugins which subscribe to the message bank.
  74.  */
  75. typedef struct msg_subscription_t msg_subscription_t;
  76. /*****************************************************************************
  77.  * Prototypes
  78.  *****************************************************************************/
  79. VLC_EXPORT( void, __msg_Generic, ( vlc_object_t *, int, const char *, const char *, ... ) LIBVLC_FORMAT( 4, 5 ) );
  80. VLC_EXPORT( void, __msg_GenericVa, ( vlc_object_t *, int, const char *, const char *, va_list args ) );
  81. #define msg_GenericVa(a, b, c, d, e) __msg_GenericVa(VLC_OBJECT(a), b, c, d, e)
  82. #define msg_Info( p_this, ... ) 
  83.       __msg_Generic( VLC_OBJECT(p_this), VLC_MSG_INFO, 
  84.                      MODULE_STRING, __VA_ARGS__ )
  85. #define msg_Err( p_this, ... ) 
  86.       __msg_Generic( VLC_OBJECT(p_this), VLC_MSG_ERR, 
  87.                      MODULE_STRING, __VA_ARGS__ )
  88. #define msg_Warn( p_this, ... ) 
  89.       __msg_Generic( VLC_OBJECT(p_this), VLC_MSG_WARN, 
  90.                      MODULE_STRING, __VA_ARGS__ )
  91. #define msg_Dbg( p_this, ... ) 
  92.       __msg_Generic( VLC_OBJECT(p_this), VLC_MSG_DBG, 
  93.                      MODULE_STRING, __VA_ARGS__ )
  94. typedef struct msg_cb_data_t msg_cb_data_t;
  95. /**
  96.  * Message logging callback signature.
  97.  * Accepts one private data pointer, the message, and an overrun counter.
  98.  */
  99. typedef void (*msg_callback_t) (msg_cb_data_t *, msg_item_t *, unsigned);
  100. VLC_EXPORT( msg_subscription_t*, msg_Subscribe, ( libvlc_int_t *, msg_callback_t, msg_cb_data_t * ) );
  101. VLC_EXPORT( void, msg_Unsubscribe, ( msg_subscription_t * ) );
  102. /* Enable or disable a certain object debug messages */
  103. #define msg_EnableObjectPrinting(a,b) __msg_EnableObjectPrinting(VLC_OBJECT(a),b)
  104. #define msg_DisableObjectPrinting(a,b) __msg_DisableObjectPrinting(VLC_OBJECT(a),b)
  105. VLC_EXPORT( void, __msg_EnableObjectPrinting, ( vlc_object_t *, char * psz_object ) );
  106. VLC_EXPORT( void, __msg_DisableObjectPrinting, ( vlc_object_t *, char * psz_object ) );
  107. /**
  108.  * @}
  109.  */
  110. /**
  111.  * defgroup statistics Statistics
  112.  *
  113.  * @{
  114.  */
  115. /****************************
  116.  * Generic stats stuff
  117.  ****************************/
  118. enum
  119. {
  120.     STATS_LAST,
  121.     STATS_COUNTER,
  122.     STATS_MAX,
  123.     STATS_MIN,
  124.     STATS_DERIVATIVE,
  125.     STATS_TIMER
  126. };
  127. struct counter_sample_t
  128. {
  129.     vlc_value_t value;
  130.     mtime_t     date;
  131. };
  132. struct counter_t
  133. {
  134.     unsigned int        i_id;
  135.     char              * psz_name;
  136.     int                 i_type;
  137.     void              * p_obj;
  138.     int                 i_compute_type;
  139.     int                 i_samples;
  140.     counter_sample_t ** pp_samples;
  141.     mtime_t             update_interval;
  142.     mtime_t             last_update;
  143. };
  144. enum
  145. {
  146.     STATS_INPUT_BITRATE,
  147.     STATS_READ_BYTES,
  148.     STATS_READ_PACKETS,
  149.     STATS_DEMUX_READ,
  150.     STATS_DEMUX_BITRATE,
  151.     STATS_DEMUX_CORRUPTED,
  152.     STATS_DEMUX_DISCONTINUITY,
  153.     STATS_PLAYED_ABUFFERS,
  154.     STATS_LOST_ABUFFERS,
  155.     STATS_DECODED_AUDIO,
  156.     STATS_DECODED_VIDEO,
  157.     STATS_DECODED_SUB,
  158.     STATS_CLIENT_CONNECTIONS,
  159.     STATS_ACTIVE_CONNECTIONS,
  160.     STATS_SOUT_SENT_PACKETS,
  161.     STATS_SOUT_SENT_BYTES,
  162.     STATS_SOUT_SEND_BITRATE,
  163.     STATS_DISPLAYED_PICTURES,
  164.     STATS_LOST_PICTURES,
  165.     STATS_TIMER_PLAYLIST_BUILD,
  166.     STATS_TIMER_ML_LOAD,
  167.     STATS_TIMER_ML_DUMP,
  168.     STATS_TIMER_INTERACTION,
  169.     STATS_TIMER_PREPARSE,
  170.     STATS_TIMER_INPUT_LAUNCHING,
  171.     STATS_TIMER_MODULE_NEED,
  172.     STATS_TIMER_VIDEO_FRAME_ENCODING,
  173.     STATS_TIMER_AUDIO_FRAME_ENCODING,
  174.     STATS_TIMER_SKINS_PLAYTREE_IMAGE,
  175. };
  176. /*********
  177.  * Timing
  178.  ********/
  179. #define stats_TimerStart(a,b,c) __stats_TimerStart( VLC_OBJECT(a), b,c )
  180. #define stats_TimerStop(a,b) __stats_TimerStop( VLC_OBJECT(a), b )
  181. #define stats_TimerDump(a,b) __stats_TimerDump( VLC_OBJECT(a), b )
  182. #define stats_TimersDumpAll(a) __stats_TimersDumpAll( VLC_OBJECT(a) )
  183. VLC_EXPORT( void,__stats_TimerStart, (vlc_object_t*, const char *, unsigned int ) );
  184. VLC_EXPORT( void,__stats_TimerStop, (vlc_object_t*, unsigned int) );
  185. VLC_EXPORT( void,__stats_TimerDump, (vlc_object_t*, unsigned int) );
  186. VLC_EXPORT( void,__stats_TimersDumpAll, (vlc_object_t*) );
  187. #define stats_TimersCleanAll(a) __stats_TimersCleanAll( VLC_OBJECT(a) )
  188. VLC_EXPORT( void, __stats_TimersCleanAll, (vlc_object_t * ) );
  189. #define stats_TimerClean(a,b) __stats_TimerClean( VLC_OBJECT(a), b )
  190. VLC_EXPORT( void, __stats_TimerClean, (vlc_object_t *, unsigned int ) );
  191. #endif