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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * log.c: libvlc new API log functions
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 the VideoLAN team
  5.  *
  6.  * $Id: b87d5d8bd248a7750cacdfa9bef7adb19a626120 $
  7.  *
  8.  * Authors: Damien Fouilleul <damienf@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #include "libvlc_internal.h"
  25. #include <vlc/libvlc.h>
  26. #include <assert.h>
  27. /* This API is terminally broken.
  28.  * First, it does not implement any kind of notification.
  29.  * Second, the iterating scheme is hermetic to any kind of thread-safety
  30.  * owing to its constant pointer constraints.
  31.  *  -- Courmisch
  32.  *
  33.  * "If you break your leg, don't run to me for sympathy"
  34.  *   -- some character, Beneath a Steel Sky
  35.  */
  36. struct msg_cb_data_t
  37. {
  38.     vlc_spinlock_t lock;
  39.     msg_item_t *items[VLC_MSG_QSIZE];
  40.     unsigned    count;
  41.     int         verbosity;
  42. };
  43. static void handler( msg_cb_data_t *d, msg_item_t *p_item, unsigned i_drop )
  44. {
  45.     if (p_item->i_type > d->verbosity)
  46.         return;
  47.     vlc_spin_lock (&d->lock);
  48.     if (d->count < VLC_MSG_QSIZE)
  49.     {
  50.         d->items[d->count++] = p_item;
  51.         msg_Hold (p_item);
  52.     }
  53.     vlc_spin_unlock (&d->lock);
  54.     (void)i_drop;
  55. }
  56. struct libvlc_log_t
  57. {
  58.     libvlc_instance_t  *p_instance;
  59.     msg_subscription_t *p_messages;
  60.     msg_cb_data_t       data;
  61. };
  62. struct libvlc_log_iterator_t
  63. {
  64.     msg_cb_data_t *p_data;
  65.     unsigned i_pos;
  66.     unsigned i_end;
  67. };
  68. unsigned libvlc_get_log_verbosity( const libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
  69. {
  70.     assert( p_instance );
  71.     (void)p_e;
  72.     return p_instance->verbosity;
  73. }
  74. void libvlc_set_log_verbosity( libvlc_instance_t *p_instance, unsigned level, libvlc_exception_t *p_e )
  75. {
  76.     assert( p_instance );
  77.     (void)p_e;
  78.     p_instance->verbosity = level;
  79. }
  80. libvlc_log_t *libvlc_log_open( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
  81. {
  82.     struct libvlc_log_t *p_log =
  83.         (struct libvlc_log_t *)malloc(sizeof(struct libvlc_log_t));
  84.     if( !p_log ) RAISENULL( "Out of memory" );
  85.     p_log->p_instance = p_instance;
  86.     vlc_spin_init( &p_log->data.lock );
  87.     p_log->data.count = 0;
  88.     p_log->data.verbosity = p_instance->verbosity;
  89.     p_log->p_messages = msg_Subscribe(p_instance->p_libvlc_int, handler, &p_log->data);
  90.     if( !p_log->p_messages )
  91.     {
  92.         free( p_log );
  93.         RAISENULL( "Out of memory" );
  94.     }
  95.     libvlc_retain( p_instance );
  96.     return p_log;
  97. }
  98. void libvlc_log_close( libvlc_log_t *p_log, libvlc_exception_t *p_e )
  99. {
  100.     if( p_log )
  101.     {
  102.         assert( p_log->p_messages );
  103.         msg_Unsubscribe(p_log->p_messages);
  104.         libvlc_release( p_log->p_instance );
  105.         libvlc_log_clear( p_log, p_e );
  106.         vlc_spin_destroy( &p_log->data.lock );
  107.         free(p_log);
  108.     }
  109.     else
  110.         RAISEVOID("Invalid log object!");
  111. }
  112. unsigned libvlc_log_count( const libvlc_log_t *p_log, libvlc_exception_t *p_e )
  113. {
  114.     if( p_log )
  115.     {
  116.         msg_cb_data_t *data = &((libvlc_log_t *)p_log)->data;
  117.         unsigned ret;
  118.         /* We cannot lock due to constant pointer constraints. Break them.
  119.          * Even then, this si not really thread safe anyway. */
  120.         vlc_spin_lock (&data->lock);
  121.         ret = data->count;
  122.         vlc_spin_unlock (&data->lock);
  123.         return ret;
  124.     }
  125.     RAISEZERO("Invalid log object!");
  126. }
  127. void libvlc_log_clear( libvlc_log_t *p_log, libvlc_exception_t *p_e )
  128. {
  129.     if( p_log )
  130.     {
  131.         vlc_spin_lock (&p_log->data.lock);
  132.         msg_item_t *tab[p_log->data.count];
  133.         memcpy (tab, p_log->data.items, sizeof (tab));
  134.         p_log->data.count = 0;
  135.         vlc_spin_unlock (&p_log->data.lock);
  136.         for (unsigned i = 0; i < sizeof (tab) / sizeof (tab[0]); i++)
  137.             msg_Release (tab[i]);
  138.     }
  139.     else
  140.         RAISEVOID("Invalid log object!");
  141. }
  142. libvlc_log_iterator_t *libvlc_log_get_iterator( const libvlc_log_t *p_log, libvlc_exception_t *p_e )
  143. {
  144.     if( p_log )
  145.     {
  146.         struct libvlc_log_iterator_t *p_iter =
  147.             (struct libvlc_log_iterator_t *)malloc(sizeof(struct libvlc_log_iterator_t));
  148.         /* FIXME: break constant pointer constraints */
  149.         msg_cb_data_t *data = &((libvlc_log_t *)p_log)->data;
  150.         if( !p_iter ) RAISENULL( "Out of memory" );
  151.         vlc_spin_lock (&data->lock);
  152.         p_iter->p_data  = data;
  153.         p_iter->i_pos   = 0;
  154.         p_iter->i_end   = data->count;
  155.         vlc_spin_unlock (&data->lock);
  156.         return p_iter;
  157.     }
  158.     RAISENULL("Invalid log object!");
  159. }
  160. void libvlc_log_iterator_free( libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e )
  161. {
  162.     if( p_iter )
  163.     {
  164.         free(p_iter);
  165.     }
  166.     else
  167.         RAISEVOID("Invalid log iterator!");
  168. }
  169. int libvlc_log_iterator_has_next( const libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e )
  170. {
  171.     if( p_iter )
  172.     {
  173.         return p_iter->i_pos != p_iter->i_end;
  174.     }
  175.     RAISEZERO("Invalid log iterator!");
  176. }
  177. libvlc_log_message_t *libvlc_log_iterator_next( libvlc_log_iterator_t *p_iter,
  178.                                                 libvlc_log_message_t *buffer,
  179.                                                 libvlc_exception_t *p_e )
  180. {
  181.     unsigned i_pos;
  182.     if( !p_iter )
  183.         RAISENULL("Invalid log iterator!");
  184.     if( !buffer )
  185.         RAISENULL("Invalid message buffer!");
  186.     i_pos = p_iter->i_pos;
  187.     if( i_pos != p_iter->i_end )
  188.     {
  189.         msg_item_t *msg;
  190.         vlc_spin_lock (&p_iter->p_data->lock);
  191.         msg = p_iter->p_data->items[i_pos];
  192.         buffer->i_severity  = msg->i_type;
  193.         buffer->psz_type    = msg->psz_object_type;
  194.         buffer->psz_name    = msg->psz_module;
  195.         buffer->psz_header  = msg->psz_header;
  196.         buffer->psz_message = msg->psz_msg;
  197.         vlc_spin_unlock (&p_iter->p_data->lock);
  198.         p_iter->i_pos++;
  199.         return buffer;
  200.     }
  201.     RAISENULL("No more messages");
  202. }