objects.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:31k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * objects.c: vlc_object_t handling
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: objects.c 9162 2004-11-06 10:47:04Z courmisch $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /**
  24.  * file
  25.  * This file contains the functions to handle the vlc_object_t type
  26.  */
  27. /*****************************************************************************
  28.  * Preamble
  29.  *****************************************************************************/
  30. #include <vlc/vlc.h>
  31. #include <vlc/input.h>
  32. #ifdef HAVE_STDLIB_H
  33. #   include <stdlib.h>                                          /* realloc() */
  34. #endif
  35. #include "vlc_video.h"
  36. #include "video_output.h"
  37. #include "vlc_spu.h"
  38. #include "audio_output.h"
  39. #include "aout_internal.h"
  40. #include "stream_output.h"
  41. #include "vlc_playlist.h"
  42. #include "vlc_interface.h"
  43. #include "vlc_codec.h"
  44. #include "vlc_filter.h"
  45. #include "vlc_httpd.h"
  46. #include "vlc_vlm.h"
  47. #include "vlc_vod.h"
  48. #include "vlc_tls.h"
  49. /*****************************************************************************
  50.  * Local prototypes
  51.  *****************************************************************************/
  52. static int  DumpCommand( vlc_object_t *, char const *,
  53.                          vlc_value_t, vlc_value_t, void * );
  54. static vlc_object_t * FindObject    ( vlc_object_t *, int, int );
  55. static void           DetachObject  ( vlc_object_t * );
  56. static void           PrintObject   ( vlc_object_t *, const char * );
  57. static void           DumpStructure ( vlc_object_t *, int, char * );
  58. static int            FindIndex     ( vlc_object_t *, vlc_object_t **, int );
  59. static void           SetAttachment ( vlc_object_t *, vlc_bool_t );
  60. static vlc_list_t   * NewList       ( int );
  61. static void           ListReplace   ( vlc_list_t *, vlc_object_t *, int );
  62. static void           ListAppend    ( vlc_list_t *, vlc_object_t * );
  63. static int            CountChildren ( vlc_object_t *, int );
  64. static void           ListChildren  ( vlc_list_t *, vlc_object_t *, int );
  65. /*****************************************************************************
  66.  * Local structure lock
  67.  *****************************************************************************/
  68. static vlc_mutex_t    structure_lock;
  69. /*****************************************************************************
  70.  * vlc_object_create: initialize a vlc object
  71.  *****************************************************************************
  72.  * This function allocates memory for a vlc object and initializes it. If
  73.  * i_type is not a known value such as VLC_OBJECT_ROOT, VLC_OBJECT_VOUT and
  74.  * so on, vlc_object_create will use its value for the object size.
  75.  *****************************************************************************/
  76. /**
  77.  * Initialize a vlc object
  78.  *
  79.  * This function allocates memory for a vlc object and initializes it. If
  80.  * i_type is not a known value such as VLC_OBJECT_ROOT, VLC_OBJECT_VOUT and
  81.  * so on, vlc_object_create will use its value for the object size.
  82.  */
  83. void * __vlc_object_create( vlc_object_t *p_this, int i_type )
  84. {
  85.     vlc_object_t * p_new;
  86.     char *         psz_type;
  87.     size_t         i_size;
  88.     switch( i_type )
  89.     {
  90.         case VLC_OBJECT_ROOT:
  91.             i_size = sizeof(libvlc_t);
  92.             psz_type = "root";
  93.             break;
  94.         case VLC_OBJECT_VLC:
  95.             i_size = sizeof(vlc_t);
  96.             psz_type = "vlc";
  97.             break;
  98.         case VLC_OBJECT_MODULE:
  99.             i_size = sizeof(module_t);
  100.             psz_type = "module";
  101.             break;
  102.         case VLC_OBJECT_INTF:
  103.             i_size = sizeof(intf_thread_t);
  104.             psz_type = "interface";
  105.             break;
  106.         case VLC_OBJECT_DIALOGS:
  107.             i_size = sizeof(intf_thread_t);
  108.             psz_type = "dialogs provider";
  109.             break;
  110.         case VLC_OBJECT_PLAYLIST:
  111.             i_size = sizeof(playlist_t);
  112.             psz_type = "playlist";
  113.             break;
  114.         case VLC_OBJECT_INPUT:
  115.             i_size = sizeof(input_thread_t);
  116.             psz_type = "input";
  117.             break;
  118.         case VLC_OBJECT_DEMUX:
  119.             i_size = sizeof(demux_t);
  120.             psz_type = "demux";
  121.             break;
  122.         case VLC_OBJECT_STREAM:
  123.             i_size = sizeof(stream_t);
  124.             psz_type = "stream";
  125.             break;
  126.         case VLC_OBJECT_ACCESS:
  127.             i_size = sizeof(access_t);
  128.             psz_type = "access";
  129.             break;
  130.         case VLC_OBJECT_DECODER:
  131.             i_size = sizeof(decoder_t);
  132.             psz_type = "decoder";
  133.             break;
  134.         case VLC_OBJECT_PACKETIZER:
  135.             i_size = sizeof(decoder_t);
  136.             psz_type = "packetizer";
  137.             break;
  138.         case VLC_OBJECT_ENCODER:
  139.             i_size = sizeof(encoder_t);
  140.             psz_type = "encoder";
  141.             break;
  142.         case VLC_OBJECT_FILTER:
  143.             i_size = sizeof(filter_t);
  144.             psz_type = "filter";
  145.             break;
  146.         case VLC_OBJECT_VOUT:
  147.             i_size = sizeof(vout_thread_t);
  148.             psz_type = "video output";
  149.             break;
  150.         case VLC_OBJECT_SPU:
  151.             i_size = sizeof(spu_t);
  152.             psz_type = "subpicture unit";
  153.             break;
  154.         case VLC_OBJECT_AOUT:
  155.             i_size = sizeof(aout_instance_t);
  156.             psz_type = "audio output";
  157.             break;
  158.         case VLC_OBJECT_SOUT:
  159.             i_size = sizeof(sout_instance_t);
  160.             psz_type = "stream output";
  161.             break;
  162.         case VLC_OBJECT_HTTPD:
  163.             i_size = sizeof( httpd_t );
  164.             psz_type = "http daemon";
  165.             break;
  166.         case VLC_OBJECT_VLM:
  167.             i_size = sizeof( vlm_t );
  168.             psz_type = "vlm dameon";
  169.             break;
  170.         case VLC_OBJECT_VOD:
  171.             i_size = sizeof( vod_t );
  172.             psz_type = "vod server";
  173.             break;
  174.         case VLC_OBJECT_TLS:
  175.             i_size = sizeof( tls_t );
  176.             psz_type = "tls";
  177.             break;
  178.         case VLC_OBJECT_OPENGL:
  179.             i_size = sizeof( vout_thread_t );
  180.             psz_type = "opengl provider";
  181.             break;
  182.         case VLC_OBJECT_ANNOUNCE:
  183.             i_size = sizeof( announce_handler_t );
  184.             psz_type = "announce handler";
  185.             break;
  186.         default:
  187.             i_size = i_type > 0
  188.                       ? i_type > (int)sizeof(vlc_object_t)
  189.                          ? i_type : (int)sizeof(vlc_object_t)
  190.                       : (int)sizeof(vlc_object_t);
  191.             i_type = VLC_OBJECT_GENERIC;
  192.             psz_type = "generic";
  193.             break;
  194.     }
  195.     if( i_type == VLC_OBJECT_ROOT )
  196.     {
  197.         p_new = p_this;
  198.     }
  199.     else
  200.     {
  201.         p_new = malloc( i_size );
  202.         if( !p_new ) return NULL;
  203.         memset( p_new, 0, i_size );
  204.     }
  205.     p_new->i_object_type = i_type;
  206.     p_new->psz_object_type = psz_type;
  207.     p_new->psz_object_name = NULL;
  208.     p_new->b_die = VLC_FALSE;
  209.     p_new->b_error = VLC_FALSE;
  210.     p_new->b_dead = VLC_FALSE;
  211.     p_new->b_attached = VLC_FALSE;
  212.     p_new->b_force = VLC_FALSE;
  213.     p_new->i_vars = 0;
  214.     p_new->p_vars = (variable_t *)malloc( 16 * sizeof( variable_t ) );
  215.     if( !p_new->p_vars )
  216.     {
  217.         free( p_new );
  218.         return NULL;
  219.     }
  220.     if( i_type == VLC_OBJECT_ROOT )
  221.     {
  222.         /* If i_type is root, then p_new is actually p_libvlc */
  223.         p_new->p_libvlc = (libvlc_t*)p_new;
  224.         p_new->p_vlc = NULL;
  225.         p_new->p_libvlc->i_counter = 0;
  226.         p_new->i_object_id = 0;
  227.         p_new->p_libvlc->i_objects = 1;
  228.         p_new->p_libvlc->pp_objects = malloc( sizeof(vlc_object_t *) );
  229.         p_new->p_libvlc->pp_objects[0] = p_new;
  230.         p_new->b_attached = VLC_TRUE;
  231.     }
  232.     else
  233.     {
  234.         p_new->p_libvlc = p_this->p_libvlc;
  235.         p_new->p_vlc = ( i_type == VLC_OBJECT_VLC ) ? (vlc_t*)p_new
  236.                                                     : p_this->p_vlc;
  237.         vlc_mutex_lock( &structure_lock );
  238.         p_new->p_libvlc->i_counter++;
  239.         p_new->i_object_id = p_new->p_libvlc->i_counter;
  240.         /* Wooohaa! If *this* fails, we're in serious trouble! Anyway it's
  241.          * useless to try and recover anything if pp_objects gets smashed. */
  242.         INSERT_ELEM( p_new->p_libvlc->pp_objects,
  243.                      p_new->p_libvlc->i_objects,
  244.                      p_new->p_libvlc->i_objects,
  245.                      p_new );
  246.         vlc_mutex_unlock( &structure_lock );
  247.     }
  248.     p_new->i_refcount = 0;
  249.     p_new->p_parent = NULL;
  250.     p_new->pp_children = NULL;
  251.     p_new->i_children = 0;
  252.     p_new->p_private = NULL;
  253.     /* Initialize mutexes and condvars */
  254.     vlc_mutex_init( p_new, &p_new->object_lock );
  255.     vlc_cond_init( p_new, &p_new->object_wait );
  256.     vlc_mutex_init( p_new, &p_new->var_lock );
  257.     if( i_type == VLC_OBJECT_ROOT )
  258.     {
  259.         vlc_mutex_init( p_new, &structure_lock );
  260.         var_Create( p_new, "list", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
  261.         var_AddCallback( p_new, "list", DumpCommand, NULL );
  262.         var_Create( p_new, "tree", VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
  263.         var_AddCallback( p_new, "tree", DumpCommand, NULL );
  264.     }
  265.     return p_new;
  266. }
  267. /**
  268.  ****************************************************************************
  269.  * Destroy a vlc object
  270.  *
  271.  * This function destroys an object that has been previously allocated with
  272.  * vlc_object_create. The object's refcount must be zero and it must not be
  273.  * attached to other objects in any way.
  274.  *****************************************************************************/
  275. void __vlc_object_destroy( vlc_object_t *p_this )
  276. {
  277.     int i_delay = 0;
  278.     if( p_this->i_children )
  279.     {
  280.         msg_Err( p_this, "cannot delete object (%i, %s) with children" ,
  281.                  p_this->i_object_id, p_this->psz_object_name );
  282.         return;
  283.     }
  284.     if( p_this->p_parent )
  285.     {
  286.         msg_Err( p_this, "cannot delete object (%i, %s) with a parent",
  287.                  p_this->i_object_id, p_this->psz_object_name );
  288.         return;
  289.     }
  290.     while( p_this->i_refcount )
  291.     {
  292.         i_delay++;
  293.         /* Don't warn immediately ... 100ms seems OK */
  294.         if( i_delay == 2 )
  295.         {
  296.             msg_Warn( p_this, "refcount is %i, delaying before deletion",
  297.                               p_this->i_refcount );
  298.         }
  299.         else if( i_delay == 12 )
  300.         {
  301.             msg_Err( p_this, "refcount is %i, I have a bad feeling about this",
  302.                              p_this->i_refcount );
  303.         }
  304.         else if( i_delay == 42 )
  305.         {
  306.             msg_Err( p_this, "we waited too long, cancelling destruction" );
  307.             return;
  308.         }
  309.         msleep( 100000 );
  310.     }
  311.     /* Destroy the associated variables, starting from the end so that
  312.      * no memmove calls have to be done. */
  313.     while( p_this->i_vars )
  314.     {
  315.         var_Destroy( p_this, p_this->p_vars[p_this->i_vars - 1].psz_name );
  316.     }
  317.     free( p_this->p_vars );
  318.     vlc_mutex_destroy( &p_this->var_lock );
  319.     if( p_this->i_object_type == VLC_OBJECT_ROOT )
  320.     {
  321.         /* We are the root object ... no need to lock. */
  322.         free( p_this->p_libvlc->pp_objects );
  323.         p_this->p_libvlc->pp_objects = NULL;
  324.         p_this->p_libvlc->i_objects--;
  325.         vlc_mutex_destroy( &structure_lock );
  326.     }
  327.     else
  328.     {
  329.         int i_index;
  330.         vlc_mutex_lock( &structure_lock );
  331.         /* Wooohaa! If *this* fails, we're in serious trouble! Anyway it's
  332.          * useless to try and recover anything if pp_objects gets smashed. */
  333.         i_index = FindIndex( p_this, p_this->p_libvlc->pp_objects,
  334.                              p_this->p_libvlc->i_objects );
  335.         REMOVE_ELEM( p_this->p_libvlc->pp_objects,
  336.                      p_this->p_libvlc->i_objects, i_index );
  337.         vlc_mutex_unlock( &structure_lock );
  338.     }
  339.     vlc_mutex_destroy( &p_this->object_lock );
  340.     vlc_cond_destroy( &p_this->object_wait );
  341.     free( p_this );
  342. }
  343. /**
  344.  * find an object given its ID
  345.  *
  346.  * This function looks for the object whose i_object_id field is i_id. We
  347.  * use a dichotomy so that lookups are in log2(n).
  348.  *****************************************************************************/
  349. void * __vlc_object_get( vlc_object_t *p_this, int i_id )
  350. {
  351.     int i_max, i_middle;
  352.     vlc_object_t **pp_objects;
  353.     vlc_mutex_lock( &structure_lock );
  354.     pp_objects = p_this->p_libvlc->pp_objects;
  355.     /* Perform our dichotomy */
  356.     for( i_max = p_this->p_libvlc->i_objects - 1 ; ; )
  357.     {
  358.         i_middle = i_max / 2;
  359.         if( pp_objects[i_middle]->i_object_id > i_id )
  360.         {
  361.             i_max = i_middle;
  362.         }
  363.         else if( pp_objects[i_middle]->i_object_id < i_id )
  364.         {
  365.             if( i_middle )
  366.             {
  367.                 pp_objects += i_middle;
  368.                 i_max -= i_middle;
  369.             }
  370.             else
  371.             {
  372.                 /* This happens when there are only two remaining objects */
  373.                 if( pp_objects[i_middle+1]->i_object_id == i_id )
  374.                 {
  375.                     vlc_mutex_unlock( &structure_lock );
  376.                     pp_objects[i_middle+1]->i_refcount++;
  377.                     return pp_objects[i_middle+1];
  378.                 }
  379.                 break;
  380.             }
  381.         }
  382.         else
  383.         {
  384.             vlc_mutex_unlock( &structure_lock );
  385.             pp_objects[i_middle]->i_refcount++;
  386.             return pp_objects[i_middle];
  387.         }
  388.         if( i_max == 0 )
  389.         {
  390.             /* this means that i_max == i_middle, and since we have already
  391.              * tested pp_objects[i_middle]), p_found is properly set. */
  392.             break;
  393.         }
  394.     }
  395.     vlc_mutex_unlock( &structure_lock );
  396.     return NULL;
  397. }
  398. /**
  399.  ****************************************************************************
  400.  * find a typed object and increment its refcount
  401.  *****************************************************************************
  402.  * This function recursively looks for a given object type. i_mode can be one
  403.  * of FIND_PARENT, FIND_CHILD or FIND_ANYWHERE.
  404.  *****************************************************************************/
  405. void * __vlc_object_find( vlc_object_t *p_this, int i_type, int i_mode )
  406. {
  407.     vlc_object_t *p_found;
  408.     vlc_mutex_lock( &structure_lock );
  409.     /* If we are of the requested type ourselves, don't look further */
  410.     if( !(i_mode & FIND_STRICT) && p_this->i_object_type == i_type )
  411.     {
  412.         p_this->i_refcount++;
  413.         vlc_mutex_unlock( &structure_lock );
  414.         return p_this;
  415.     }
  416.     /* Otherwise, recursively look for the object */
  417.     if( (i_mode & 0x000f) == FIND_ANYWHERE )
  418.     {
  419.         vlc_object_t *p_root = p_this;
  420.         /* Find the root */
  421.         while( p_root->p_parent != NULL &&
  422.                p_root != VLC_OBJECT( p_this->p_vlc ) )
  423.         {
  424.             p_root = p_root->p_parent;
  425.         }
  426.         p_found = FindObject( p_root, i_type, (i_mode & ~0x000f)|FIND_CHILD );
  427.         if( p_found == NULL && p_root != VLC_OBJECT( p_this->p_vlc ) )
  428.         {
  429.             p_found = FindObject( VLC_OBJECT( p_this->p_vlc ),
  430.                                   i_type, (i_mode & ~0x000f)|FIND_CHILD );
  431.         }
  432.     }
  433.     else
  434.     {
  435.         p_found = FindObject( p_this, i_type, i_mode );
  436.     }
  437.     vlc_mutex_unlock( &structure_lock );
  438.     return p_found;
  439. }
  440. /**
  441.  ****************************************************************************
  442.  * increment an object refcount
  443.  *****************************************************************************/
  444. void __vlc_object_yield( vlc_object_t *p_this )
  445. {
  446.     vlc_mutex_lock( &structure_lock );
  447.     p_this->i_refcount++;
  448.     vlc_mutex_unlock( &structure_lock );
  449. }
  450. /**
  451.  ****************************************************************************
  452.  * decrement an object refcount
  453.  *****************************************************************************/
  454. void __vlc_object_release( vlc_object_t *p_this )
  455. {
  456.     vlc_mutex_lock( &structure_lock );
  457.     p_this->i_refcount--;
  458.     vlc_mutex_unlock( &structure_lock );
  459. }
  460. /**
  461.  ****************************************************************************
  462.  * attach object to a parent object
  463.  *****************************************************************************
  464.  * This function sets p_this as a child of p_parent, and p_parent as a parent
  465.  * of p_this. This link can be undone using vlc_object_detach.
  466.  *****************************************************************************/
  467. void __vlc_object_attach( vlc_object_t *p_this, vlc_object_t *p_parent )
  468. {
  469.     vlc_mutex_lock( &structure_lock );
  470.     /* Attach the parent to its child */
  471.     p_this->p_parent = p_parent;
  472.     /* Attach the child to its parent */
  473.     INSERT_ELEM( p_parent->pp_children, p_parent->i_children,
  474.                  p_parent->i_children, p_this );
  475.     /* Climb up the tree to see whether we are connected with the root */
  476.     if( p_parent->b_attached )
  477.     {
  478.         SetAttachment( p_this, VLC_TRUE );
  479.     }
  480.     vlc_mutex_unlock( &structure_lock );
  481. }
  482. /**
  483.  ****************************************************************************
  484.  * detach object from its parent
  485.  *****************************************************************************
  486.  * This function removes all links between an object and its parent.
  487.  *****************************************************************************/
  488. void __vlc_object_detach( vlc_object_t *p_this )
  489. {
  490.     vlc_mutex_lock( &structure_lock );
  491.     if( !p_this->p_parent )
  492.     {
  493.         msg_Err( p_this, "object is not attached" );
  494.         vlc_mutex_unlock( &structure_lock );
  495.         return;
  496.     }
  497.     /* Climb up the tree to see whether we are connected with the root */
  498.     if( p_this->p_parent->b_attached )
  499.     {
  500.         SetAttachment( p_this, VLC_FALSE );
  501.     }
  502.     DetachObject( p_this );
  503.     vlc_mutex_unlock( &structure_lock );
  504. }
  505. /**
  506.  ****************************************************************************
  507.  * find a list typed objects and increment their refcount
  508.  *****************************************************************************
  509.  * This function recursively looks for a given object type. i_mode can be one
  510.  * of FIND_PARENT, FIND_CHILD or FIND_ANYWHERE.
  511.  *****************************************************************************/
  512. vlc_list_t * __vlc_list_find( vlc_object_t *p_this, int i_type, int i_mode )
  513. {
  514.     vlc_list_t *p_list;
  515.     vlc_object_t **pp_current, **pp_end;
  516.     int i_count = 0, i_index = 0;
  517.     vlc_mutex_lock( &structure_lock );
  518.     /* Look for the objects */
  519.     switch( i_mode & 0x000f )
  520.     {
  521.     case FIND_ANYWHERE:
  522.         pp_current = p_this->p_libvlc->pp_objects;
  523.         pp_end = pp_current + p_this->p_libvlc->i_objects;
  524.         for( ; pp_current < pp_end ; pp_current++ )
  525.         {
  526.             if( (*pp_current)->b_attached
  527.                  && (*pp_current)->i_object_type == i_type )
  528.             {
  529.                 i_count++;
  530.             }
  531.         }
  532.         p_list = NewList( i_count );
  533.         pp_current = p_this->p_libvlc->pp_objects;
  534.         for( ; pp_current < pp_end ; pp_current++ )
  535.         {
  536.             if( (*pp_current)->b_attached
  537.                  && (*pp_current)->i_object_type == i_type )
  538.             {
  539.                 ListReplace( p_list, *pp_current, i_index );
  540.                 if( i_index < i_count ) i_index++;
  541.             }
  542.         }
  543.     break;
  544.     case FIND_CHILD:
  545.         i_count = CountChildren( p_this, i_type );
  546.         p_list = NewList( i_count );
  547.         /* Check allocation was successful */
  548.         if( p_list->i_count != i_count )
  549.         {
  550.             msg_Err( p_this, "list allocation failed!" );
  551.             p_list->i_count = 0;
  552.             break;
  553.         }
  554.         p_list->i_count = 0;
  555.         ListChildren( p_list, p_this, i_type );
  556.         break;
  557.     default:
  558.         msg_Err( p_this, "unimplemented!" );
  559.         p_list = NewList( 0 );
  560.         break;
  561.     }
  562.     vlc_mutex_unlock( &structure_lock );
  563.     return p_list;
  564. }
  565. /*****************************************************************************
  566.  * DumpCommand: print the current vlc structure
  567.  *****************************************************************************
  568.  * This function prints either an ASCII tree showing the connections between
  569.  * vlc objects, and additional information such as their refcount, thread ID,
  570.  * etc. (command "tree"), or the same data as a simple list (command "list").
  571.  *****************************************************************************/
  572. static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd,
  573.                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
  574. {
  575.     if( *psz_cmd == 't' )
  576.     {
  577.         char psz_foo[2 * MAX_DUMPSTRUCTURE_DEPTH + 1];
  578.         vlc_object_t *p_object;
  579.         if( *newval.psz_string )
  580.         {
  581.             p_object = vlc_object_get( p_this, atoi(newval.psz_string) );
  582.             if( !p_object )
  583.             {
  584.                 return VLC_ENOOBJ;
  585.             }
  586.         }
  587.         else
  588.         {
  589.             p_object = p_this->p_vlc ? VLC_OBJECT(p_this->p_vlc) : p_this;
  590.         }
  591.         vlc_mutex_lock( &structure_lock );
  592.         psz_foo[0] = '|';
  593.         DumpStructure( p_object, 0, psz_foo );
  594.         vlc_mutex_unlock( &structure_lock );
  595.         if( *newval.psz_string )
  596.         {
  597.             vlc_object_release( p_this );
  598.         }
  599.     }
  600.     else if( *psz_cmd == 'l' )
  601.     {
  602.         vlc_object_t **pp_current, **pp_end;
  603.         vlc_mutex_lock( &structure_lock );
  604.         pp_current = p_this->p_libvlc->pp_objects;
  605.         pp_end = pp_current + p_this->p_libvlc->i_objects;
  606.         for( ; pp_current < pp_end ; pp_current++ )
  607.         {
  608.             if( (*pp_current)->b_attached )
  609.             {
  610.                 PrintObject( *pp_current, "" );
  611.             }
  612.             else
  613.             {
  614.                 printf( " o %.8i %s (not attached)n",
  615.                         (*pp_current)->i_object_id,
  616.                         (*pp_current)->psz_object_type );
  617.             }
  618.         }
  619.         vlc_mutex_unlock( &structure_lock );
  620.     }
  621.     return VLC_SUCCESS;
  622. }
  623. /*****************************************************************************
  624.  * vlc_list_release: free a list previously allocated by vlc_list_find
  625.  *****************************************************************************
  626.  * This function decreases the refcount of all objects in the list and
  627.  * frees the list.
  628.  *****************************************************************************/
  629. void vlc_list_release( vlc_list_t *p_list )
  630. {
  631.     int i_index;
  632.     for( i_index = 0; i_index < p_list->i_count; i_index++ )
  633.     {
  634.         vlc_mutex_lock( &structure_lock );
  635.         p_list->p_values[i_index].p_object->i_refcount--;
  636.         vlc_mutex_unlock( &structure_lock );
  637.     }
  638.     free( p_list->p_values );
  639.     free( p_list );
  640. }
  641. /* Following functions are local */
  642. /*****************************************************************************
  643.  * FindIndex: find the index of an object in an array of objects
  644.  *****************************************************************************
  645.  * This function assumes that p_this can be found in pp_objects. It will not
  646.  * crash if p_this cannot be found, but will return a wrong value. It is your
  647.  * duty to check the return value if you are not certain that the object could
  648.  * be found for sure.
  649.  *****************************************************************************/
  650. static int FindIndex( vlc_object_t *p_this,
  651.                       vlc_object_t **pp_objects, int i_count )
  652. {
  653.     int i_middle = i_count / 2;
  654.     if( i_count == 0 )
  655.     {
  656.         return 0;
  657.     }
  658.     if( pp_objects[i_middle] == p_this )
  659.     {
  660.         return i_middle;
  661.     }
  662.     if( i_count == 1 )
  663.     {
  664.         return 0;
  665.     }
  666.     /* We take advantage of the sorted array */
  667.     if( pp_objects[i_middle]->i_object_id < p_this->i_object_id )
  668.     {
  669.         return i_middle + FindIndex( p_this, pp_objects + i_middle,
  670.                                              i_count - i_middle );
  671.     }
  672.     else
  673.     {
  674.         return FindIndex( p_this, pp_objects, i_middle );
  675.     }
  676. }
  677. static vlc_object_t * FindObject( vlc_object_t *p_this, int i_type, int i_mode )
  678. {
  679.     int i;
  680.     vlc_object_t *p_tmp;
  681.     switch( i_mode & 0x000f )
  682.     {
  683.     case FIND_PARENT:
  684.         p_tmp = p_this->p_parent;
  685.         if( p_tmp )
  686.         {
  687.             if( p_tmp->i_object_type == i_type )
  688.             {
  689.                 p_tmp->i_refcount++;
  690.                 return p_tmp;
  691.             }
  692.             else
  693.             {
  694.                 return FindObject( p_tmp, i_type, i_mode );
  695.             }
  696.         }
  697.         break;
  698.     case FIND_CHILD:
  699.         for( i = p_this->i_children; i--; )
  700.         {
  701.             p_tmp = p_this->pp_children[i];
  702.             if( p_tmp->i_object_type == i_type )
  703.             {
  704.                 p_tmp->i_refcount++;
  705.                 return p_tmp;
  706.             }
  707.             else if( p_tmp->i_children )
  708.             {
  709.                 p_tmp = FindObject( p_tmp, i_type, i_mode );
  710.                 if( p_tmp )
  711.                 {
  712.                     return p_tmp;
  713.                 }
  714.             }
  715.         }
  716.         break;
  717.     case FIND_ANYWHERE:
  718.         /* Handled in vlc_object_find */
  719.         break;
  720.     }
  721.     return NULL;
  722. }
  723. static void DetachObject( vlc_object_t *p_this )
  724. {
  725.     vlc_object_t *p_parent = p_this->p_parent;
  726.     int i_index, i;
  727.     /* Remove p_this's parent */
  728.     p_this->p_parent = NULL;
  729.     /* Remove all of p_parent's children which are p_this */
  730.     for( i_index = p_parent->i_children ; i_index-- ; )
  731.     {
  732.         if( p_parent->pp_children[i_index] == p_this )
  733.         {
  734.             p_parent->i_children--;
  735.             for( i = i_index ; i < p_parent->i_children ; i++ )
  736.             {
  737.                 p_parent->pp_children[i] = p_parent->pp_children[i+1];
  738.             }
  739.         }
  740.     }
  741.     if( p_parent->i_children )
  742.     {
  743.         p_parent->pp_children = (vlc_object_t **)realloc( p_parent->pp_children,
  744.                                p_parent->i_children * sizeof(vlc_object_t *) );
  745.     }
  746.     else
  747.     {
  748.         free( p_parent->pp_children );
  749.         p_parent->pp_children = NULL;
  750.     }
  751. }
  752. /*****************************************************************************
  753.  * SetAttachment: recursively set the b_attached flag of a subtree.
  754.  *****************************************************************************
  755.  * This function is used by the attach and detach functions to propagate
  756.  * the b_attached flag in a subtree.
  757.  *****************************************************************************/
  758. static void SetAttachment( vlc_object_t *p_this, vlc_bool_t b_attached )
  759. {
  760.     int i_index;
  761.     for( i_index = p_this->i_children ; i_index-- ; )
  762.     {
  763.         SetAttachment( p_this->pp_children[i_index], b_attached );
  764.     }
  765.     p_this->b_attached = b_attached;
  766. }
  767. static void PrintObject( vlc_object_t *p_this, const char *psz_prefix )
  768. {
  769.     char psz_children[20], psz_refcount[20], psz_thread[20], psz_name[50];
  770.     psz_name[0] = '';
  771.     if( p_this->psz_object_name )
  772.     {
  773.         snprintf( psz_name, 50, " "%s"", p_this->psz_object_name );
  774.         psz_name[48] = '"';
  775.         psz_name[49] = '';
  776.     }
  777.     psz_children[0] = '';
  778.     switch( p_this->i_children )
  779.     {
  780.         case 0:
  781.             break;
  782.         case 1:
  783.             strcpy( psz_children, ", 1 child" );
  784.             break;
  785.         default:
  786.             snprintf( psz_children, 20,
  787.                       ", %i children", p_this->i_children );
  788.             psz_children[19] = '';
  789.             break;
  790.     }
  791.     psz_refcount[0] = '';
  792.     if( p_this->i_refcount )
  793.     {
  794.         snprintf( psz_refcount, 20, ", refcount %i", p_this->i_refcount );
  795.         psz_refcount[19] = '';
  796.     }
  797.     psz_thread[0] = '';
  798.     if( p_this->b_thread )
  799.     {
  800.         snprintf( psz_thread, 20, " (thread %d)", (int)p_this->thread_id );
  801.         psz_thread[19] = '';
  802.     }
  803.     printf( " %so %.8i %s%s%s%s%sn", psz_prefix,
  804.             p_this->i_object_id, p_this->psz_object_type,
  805.             psz_name, psz_thread, psz_refcount, psz_children );
  806. }
  807. static void DumpStructure( vlc_object_t *p_this, int i_level, char *psz_foo )
  808. {
  809.     int i;
  810.     char i_back = psz_foo[i_level];
  811.     psz_foo[i_level] = '';
  812.     PrintObject( p_this, psz_foo );
  813.     psz_foo[i_level] = i_back;
  814.     if( i_level / 2 >= MAX_DUMPSTRUCTURE_DEPTH )
  815.     {
  816.         msg_Warn( p_this, "structure tree is too deep" );
  817.         return;
  818.     }
  819.     for( i = 0 ; i < p_this->i_children ; i++ )
  820.     {
  821.         if( i_level )
  822.         {
  823.             psz_foo[i_level-1] = ' ';
  824.             if( psz_foo[i_level-2] == '`' )
  825.             {
  826.                 psz_foo[i_level-2] = ' ';
  827.             }
  828.         }
  829.         if( i == p_this->i_children - 1 )
  830.         {
  831.             psz_foo[i_level] = '`';
  832.         }
  833.         else
  834.         {
  835.             psz_foo[i_level] = '|';
  836.         }
  837.         psz_foo[i_level+1] = '-';
  838.         psz_foo[i_level+2] = '';
  839.         DumpStructure( p_this->pp_children[i], i_level + 2, psz_foo );
  840.     }
  841. }
  842. static vlc_list_t * NewList( int i_count )
  843. {
  844.     vlc_list_t * p_list = (vlc_list_t *)malloc( sizeof( vlc_list_t ) );
  845.     if( p_list == NULL )
  846.     {
  847.         return NULL;
  848.     }
  849.     p_list->i_count = i_count;
  850.     if( i_count == 0 )
  851.     {
  852.         p_list->p_values = NULL;
  853.         return p_list;
  854.     }
  855.     p_list->p_values = malloc( i_count * sizeof( vlc_value_t ) );
  856.     if( p_list->p_values == NULL )
  857.     {
  858.         p_list->i_count = 0;
  859.         return p_list;
  860.     }
  861.     return p_list;
  862. }
  863. static void ListReplace( vlc_list_t *p_list, vlc_object_t *p_object,
  864.                          int i_index )
  865. {
  866.     if( p_list == NULL || i_index >= p_list->i_count )
  867.     {
  868.         return;
  869.     }
  870.     p_object->i_refcount++;
  871.     p_list->p_values[i_index].p_object = p_object;
  872.     return;
  873. }
  874. static void ListAppend( vlc_list_t *p_list, vlc_object_t *p_object )
  875. {
  876.     if( p_list == NULL )
  877.     {
  878.         return;
  879.     }
  880.     p_list->p_values = realloc( p_list->p_values, (p_list->i_count + 1)
  881.                                 * sizeof( vlc_value_t ) );
  882.     if( p_list->p_values == NULL )
  883.     {
  884.         p_list->i_count = 0;
  885.         return;
  886.     }
  887.     p_object->i_refcount++;
  888.     p_list->p_values[p_list->i_count].p_object = p_object;
  889.     p_list->i_count++;
  890.     return;
  891. }
  892. static int CountChildren( vlc_object_t *p_this, int i_type )
  893. {
  894.     vlc_object_t *p_tmp;
  895.     int i, i_count = 0;
  896.     for( i = 0; i < p_this->i_children; i++ )
  897.     {
  898.         p_tmp = p_this->pp_children[i];
  899.         if( p_tmp->i_object_type == i_type )
  900.         {
  901.             i_count++;
  902.         }
  903.         if( p_tmp->i_children )
  904.         {
  905.             i_count += CountChildren( p_tmp, i_type );
  906.         }
  907.     }
  908.     return i_count;
  909. }
  910. static void ListChildren( vlc_list_t *p_list, vlc_object_t *p_this, int i_type )
  911. {
  912.     vlc_object_t *p_tmp;
  913.     int i;
  914.     for( i = 0; i < p_this->i_children; i++ )
  915.     {
  916.         p_tmp = p_this->pp_children[i];
  917.         if( p_tmp->i_object_type == i_type )
  918.         {
  919.             ListReplace( p_list, p_tmp, p_list->i_count++ );
  920.         }
  921.         if( p_tmp->i_children )
  922.         {
  923.             ListChildren( p_list, p_tmp, i_type );
  924.         }
  925.     }
  926. }