DistribRefVector.cpp

Go to the documentation of this file.
00001 /*
00002         This file is part of ALIZE which is an open-source tool for 
00003         speaker recognition.
00004 
00005     ALIZE is free software: you can redistribute it and/or modify
00006     it under the terms of the GNU Lesser General Public License as 
00007     published by the Free Software Foundation, either version 3 of 
00008     the License, or any later version.
00009 
00010     ALIZE is distributed in the hope that it will be useful,
00011     but WITHOUT ANY WARRANTY; without even the implied warranty of
00012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013     GNU Lesser General Public License for more details.
00014 
00015     You should have received a copy of the GNU Lesser General Public 
00016     License along with ALIZE.
00017     If not, see <http://www.gnu.org/licenses/>.
00018         
00019         ALIZE is a development project initiated by the ELISA consortium
00020         [alize.univ-avignon.fr/] and funded by the French Research 
00021         Ministry in the framework of the TECHNOLANGUE program 
00022         [www.technolangue.net]
00023 
00024         The ALIZE project team wants to highlight the limits of voice
00025         authentication in a forensic context.
00026         The "Person  Authentification by Voice: A Need of Caution" paper 
00027         proposes a good overview of this point (cf. "Person  
00028         Authentification by Voice: A Need of Caution", Bonastre J.F., 
00029         Bimbot F., Boe L.J., Campbell J.P., Douglas D.A., Magrin-
00030         chagnolleau I., Eurospeech 2003, Genova].
00031         The conclusion of the paper of the paper is proposed bellow:
00032         [Currently, it is not possible to completely determine whether the 
00033         similarity between two recordings is due to the speaker or to other 
00034         factors, especially when: (a) the speaker does not cooperate, (b) there 
00035         is no control over recording equipment, (c) recording conditions are not 
00036         known, (d) one does not know whether the voice was disguised and, to a 
00037         lesser extent, (e) the linguistic content of the message is not 
00038         controlled. Caution and judgment must be exercised when applying speaker 
00039         recognition techniques, whether human or automatic, to account for these 
00040         uncontrolled factors. Under more constrained or calibrated situations, 
00041         or as an aid for investigative purposes, judicious application of these 
00042         techniques may be suitable, provided they are not considered as infallible.
00043         At the present time, there is no scientific process that enables one to 
00044         uniquely characterize a person=92s voice or to identify with absolute 
00045         certainty an individual from his or her voice.]
00046         Contact Jean-Francois Bonastre for more information about the licence or
00047         the use of ALIZE
00048 
00049         Copyright (C) 2003-2010
00050         Laboratoire d'informatique d'Avignon [lia.univ-avignon.fr]
00051         ALIZE admin [alize@univ-avignon.fr]
00052         Jean-Francois Bonastre [jean-francois.bonastre@univ-avignon.fr]
00053 */
00054 
00055 #if !defined(ALIZE_DistribRefVector_cpp)
00056 #define ALIZE_DistribRefVector_cpp
00057 
00058 #include <new>
00059 #include <memory.h>
00060 #include "Object.h"
00061 #include "alizeString.h"
00062 #include "Exception.h"
00063 #include "Distrib.h"
00064 #include "DistribRefVector.h"
00065 
00066 using namespace alize;
00067 
00068 //-------------------------------------------------------------------------
00069 DistribRefVector::DistribRefVector(unsigned long capacity)
00070 :Object(), _size(0), _capacity(capacity!=0?capacity:1),
00071 _array(createArray()) {}
00072 //-------------------------------------------------------------------------
00073 DistribRefVector::DistribRefVector(const DistribRefVector& v)
00074 :Object(), _size(v._size), _capacity(v._size!=0?v._size:1),
00075 _array(createArray())
00076 {
00077   for (unsigned long i=0; i<_size; i++)
00078     (_array[i] = v._array[i])->refCounter(K::k)++;
00079 }
00080 //-------------------------------------------------------------------------
00081 Distrib** DistribRefVector::createArray() const
00082 {
00083   assert(_capacity != 0);
00084   Distrib** p = new (std::nothrow) Distrib*[_capacity];
00085   assertMemoryIsAllocated(p, __FILE__, __LINE__);
00086   return p;
00087 }
00088 //-------------------------------------------------------------------------
00089 Distrib& DistribRefVector::getDistrib(unsigned long i) const
00090 {
00091   assertIsInBounds(__FILE__, __LINE__, i, _size);
00092   assert(_array != NULL);
00093   return *_array[i];
00094 }
00095 //-------------------------------------------------------------------------
00096 void DistribRefVector::setDistrib(Distrib& d, unsigned long i) const
00097 {
00098   assert(_array != NULL);
00099   assertIsInBounds(__FILE__, __LINE__, i, _size);
00100   Distrib* pOld = _array[i];
00101   _array[i] = &d;
00102   d.refCounter(K::k)++;
00103   if (--(pOld->refCounter(K::k)) == 0)
00104     delete pOld;
00105 }
00106 //-------------------------------------------------------------------------
00107 unsigned long DistribRefVector::addDistrib(Distrib& d)
00108 {
00109   assert(_array != NULL);
00110   if (_size == _capacity)
00111   {
00112     _capacity += _capacity;
00113     Distrib** oldArray = _array;
00114     _array = createArray();
00115     memcpy(_array, oldArray, _size*sizeof(_array[0]));
00116     delete[] oldArray;
00117   }
00118   _array[_size] = &d;
00119   d.refCounter(K::k)++;
00120   return ++_size-1;
00121 }
00122 //-------------------------------------------------------------------------
00123 void DistribRefVector::deleteUnreferencedDistribs()
00124 {
00125   assert(_array != NULL);
00126   unsigned long i, j=0;
00127   for (i=0; i<_size; i++)
00128   {
00129     Distrib* p = _array[i];
00130     assert(p != NULL);
00131     if (p->refCounter(K::k) == 1)
00132       delete p;
00133     else
00134     {
00135       _array[j] = _array[i];
00136       j++;
00137     }
00138   }
00139   _size = j;
00140 }
00141 //-------------------------------------------------------------------------
00142 void DistribRefVector::deleteUnreferencedDistrib(const Distrib& d)
00143 {
00144   assert(_array != NULL);
00145   unsigned long i;
00146   for (i=0; i<_size; i++)
00147     if (_array[i] == &d)
00148     {
00149       if (_array[i]->refCounter(K::k) == 1)
00150       {
00151         delete _array[i];
00152         for (i++; i<_size; i++)
00153           _array[i-1] = _array[i];
00154         _size--;
00155       }
00156       return;   
00157     }
00158   throw Exception("Distrib not found in the vector", __FILE__, __LINE__);
00159 }
00160 //-------------------------------------------------------------------------
00161 Distrib** DistribRefVector::getArray() const { return _array; }
00162 //-------------------------------------------------------------------------
00163 unsigned long DistribRefVector::size() const { return _size; }
00164 //-------------------------------------------------------------------------
00165 void DistribRefVector::clear()
00166 {
00167   for (unsigned long i=0; i<_size; i++)
00168   {
00169     Distrib* p = _array[i];
00170     assert(p != NULL);
00171     if ( (--(p->refCounter(K::k))) == 0)
00172       delete p;
00173   }
00174   _size = 0;
00175 }
00176 //-------------------------------------------------------------------------
00177 String DistribRefVector::getClassName() const { return "DistribRefVector";}
00178 //-------------------------------------------------------------------------
00179 DistribRefVector::~DistribRefVector()
00180 {
00181   clear();
00182   delete [] _array;
00183 }
00184 //-------------------------------------------------------------------------
00185 
00186 #endif  // ALIZE_DistribRefVector_cpp