This file is indexed.

/usr/include/speech_tools/base_class/EST_UList.cc is in libestools-dev 1:2.4~release-1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
/*************************************************************************/
/*                                                                       */
/*                Centre for Speech Technology Research                  */
/*                     University of Edinburgh, UK                       */
/*                      Copyright (c) 1997,1998                          */
/*                        All Rights Reserved.                           */
/*  Permission is hereby granted, free of charge, to use and distribute  */
/*  this software and its documentation without restriction, including   */
/*  without limitation the rights to use, copy, modify, merge, publish,  */
/*  distribute, sublicense, and/or sell copies of this work, and to      */
/*  permit persons to whom this work is furnished to do so, subject to   */
/*  the following conditions:                                            */
/*   1. The code must retain the above copyright notice, this list of    */
/*      conditions and the following disclaimer.                         */
/*   2. Any modifications must be clearly marked as such.                */
/*   3. Original authors' names are not deleted.                         */
/*   4. The authors' names are not used to endorse or promote products   */
/*      derived from this software without specific prior written        */
/*      permission.                                                      */
/*  THE UNIVERSITY OF EDINBURGH AND THE CONTRIBUTORS TO THIS WORK        */
/*  DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING      */
/*  ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT   */
/*  SHALL THE UNIVERSITY OF EDINBURGH NOR THE CONTRIBUTORS BE LIABLE     */
/*  FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES    */
/*  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN   */
/*  AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,          */
/*  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF       */
/*  THIS SOFTWARE.                                                       */
/*                                                                       */
/*************************************************************************/
/*                                                                       */
/*                 Author: Richard Caley (rjc@cstr.ed.ac.uk)             */
/*                   Date: Mon Jul 21 1997                               */
/* --------------------------------------------------------------------  */
/* Untyped list used as the basis of the TList class                     */
/*                                                                       */
/*************************************************************************/
#include <EST_UList.h>

void EST_UList::clear_and_free(void (*item_free)(EST_UItem *p))
{
    EST_UItem *q, *np;

    for (q=head(); q != 0; q = np)
    {
	np=q->next();
	if (item_free)
	    item_free(q);
	else
	    delete q;
    }
    h = t = 0;
}

int EST_UList::length() const
{
    EST_UItem *ptr;
    int n = 0;

    for (ptr = head(); ptr != 0; ptr = ptr->next())
	++n;
    return n;
}

int EST_UList::index(EST_UItem *item) const
{
    EST_UItem *ptr;
    int n = 0;
    
    for (ptr = head(); ptr != 0; ptr = ptr->next(), ++n)
	if (item == ptr)
	    return n;

    return -1;
}

EST_UItem *EST_UList::nth_pointer(int n) const
{
    EST_UItem *ptr;
    int i;
    
    for (i = 0, ptr = head(); ptr != 0; ptr = ptr->next(), ++i)
      if (i == n)
	return ptr;

    cerr << "Requested item #" << n << " off end of list" << endl;
    return head();
}

EST_UItem * EST_UList::remove(EST_UItem *item,
			      void (*free_item)(EST_UItem *item))
{
    if (item == 0)
	return 0;

    EST_UItem *prev = item->p;
    if (item->p == 0)  // at start
	h = item->n;
    else
	item->p->n = item->n;
    if (item->n == 0)  // at end
	t = item->p;
    else
	item->n->p = item->p;
	
    if (free_item)
	free_item(item);
    else
	delete item;
    
    return prev;
}

EST_UItem * EST_UList::remove(int n,
			      void (*item_free)(EST_UItem *item))
{
    return remove(nth_pointer(n), item_free);
}

// This should check if the incoming prev_item actually is in the list

EST_UItem *EST_UList::insert_after(EST_UItem *prev_item, EST_UItem *new_item)
{
    if (new_item == 0)
	return new_item;
    if (prev_item == 0)	// insert it at start of list
    {
	new_item->n = h;
	h = new_item;
    }
    else
    {
	new_item->n = prev_item->n;
	prev_item->n = new_item;
    }
    new_item->p = prev_item;
    if (new_item->n == 0)
	t = new_item;
    else
	new_item->n->p = new_item;
    
    return new_item;
}

EST_UItem *EST_UList::insert_before(EST_UItem *next_item, EST_UItem *new_item)
{
    if (new_item == 0)
	return new_item;
    if (next_item == 0)	// put it on the end of the list
    {
	new_item->p = t;
	t = new_item;
    }
    else
    {
	new_item->p = next_item->p;
	next_item->p = new_item;
    }
    new_item->n = next_item;
    if (new_item->p == 0)
	h = new_item;
    else
	new_item->p->n = new_item;
    
    return next_item;
}

void EST_UList::exchange(EST_UItem *a, EST_UItem *b)
{

    if (a==b)
	return;
    
    if ((a==0) || (b==0))
    {
	cerr << "EST_UList:exchange: can't exchange NULL items" << endl;
	return;
    }

    // I know this isn't very readable but there are eight pointers
    // that need to be changed, and half of them are trivial back pointers
    // care need only be taken when b and a are adjacent, this actual
    // sets p and n twice if they are adjacent but still gets the right answer
    EST_UItem *ap=a->p,*an=a->n,*bn=b->n,*bp=b->p;

    a->n = bn == a ? b : bn;
    if (a->n)
      a->n->p = a;
    a->p = bp == a ? b : bp;
    if (a->p)
      a->p->n = a;

    b->n = an == b ? a : an;
    if (b->n)
      b->n->p = b;
    b->p = ap == b ? a : ap;
    if (b->p)
      b->p->n = b;

    // Fix t and h 
    if (a == h)
	h = b;
    else if (b == h)
	h = a;
    else if (a == t)
	t = b;
    else if (b == t)
	t = a;
	     
}

void EST_UList::exchange(int i, int j)
{
    
    EST_UItem *p;
    EST_UItem *a=0,*b=0;
    int k;
    
    for (k=0,p = head(); p != 0; p = p->next(),k++)
    {
	if(i==k)
	    a = p;
	if(j==k)
	    b = p;
    }
    
    if ((a==0) || (b==0))
    {
	cerr << "EST_UList:exchange: can't exchange items " << i << 
	    " and " << j << " (off end of list)" << endl;
	return;
    }
    
    exchange(a,b);
}

void EST_UList::reverse()
{
    EST_UItem *p,*q;

    for (p=head(); p != 0; p=q)
    {
	q = p->n;
	p->n = p->p;
	p->p = q;
    }
    q = h;
    h = t;
    t = q;
}

void EST_UList::append(EST_UItem *new_item)
{

    if (new_item == 0) return;

    new_item->n = 0;
    new_item->p = t;
    if (t == 0)
	h = new_item;
    else
	t->n = new_item;
    t = new_item;
}

void EST_UList::prepend(EST_UItem *new_item)
{
    if (new_item == 0) return;

    new_item->p = 0;
    new_item->n = h;
    if (h == 0)
	t = new_item;
    else
	h->p = new_item;
    h = new_item;
}

bool EST_UList::operator_eq(const EST_UList &a, 
			    const EST_UList &b, 
			    bool (*eq)(const EST_UItem *item1, const EST_UItem *item2))
{
    EST_UItem *p,*q;
    q=b.head();
    for (p = a.head(); p != NULL; p = p->next()){
	if(q == NULL)
	    return false;
	if(eq(q, p))
	    q=q->next();
	else
	    return false;
    }
    
    if(q == NULL)
	return true;
    else
	return false;
}

int EST_UList::index(const EST_UList &l, 
		     const EST_UItem &val, 
		     bool (*eq)(const EST_UItem *item1, const EST_UItem *item2))
{
    
    EST_UItem *ptr;
    int n = 0;
    
    for (ptr = l.head(); ptr != 0; ptr = ptr->next(), ++n)
	if (eq(&val,ptr))
	    return n;
    
    return -1;
}

void EST_UList::sort(EST_UList &l,
		     bool (*gt)(const EST_UItem *item1, 
				const EST_UItem *item2))
{
    
    // just bubble sort for now
    // use EST_String::operator > for comparisons
    
    EST_UItem *l_ptr,*m_ptr;
    bool sorted=false;
    
    while(!sorted){
	sorted=true;
	
	for(l_ptr=l.head(); l_ptr != 0; l_ptr=l_ptr->next()){
	    
	    m_ptr=l_ptr->next();
	    if(m_ptr != 0)
		if(gt(l_ptr, m_ptr)){
		    l.exchange(l_ptr,m_ptr);
		    sorted=false;
		}
	}
    }
    
}

// quicksort from 'Algorithms'
// by Cormen, Leiserson & Rivest

static EST_UItem *partition(EST_UItem *p, EST_UItem *r,
			    bool (*gt)(const EST_UItem *item1, const EST_UItem *item2),
			    void (*exchange)(EST_UItem *item1, EST_UItem *item2))
{
    // this can be tidied up / sped up
    
    EST_UItem *i,*j,*i2,*j2;
    EST_UItem *x = p;
    
    i = p;
    j = r;
    
    while(true){
	
	while(gt(j, x) )
	    j = j->prev();
	
	while(gt(x, i))
	    i = i->next();
	
	if((i != j) && (i->prev() != j)){
	    i2=i;
	    j2=j;
	    i=i->next();
	    j=j->prev();
	    exchange(i2,j2);
	    
	}else
	    return j;
	
    }
    return NULL;
}


static void qsort_sub(EST_UList &l, EST_UItem *p, EST_UItem *r,
		      bool (*gt)(const EST_UItem *item1, const EST_UItem *item2),
		      void (*exchange)(EST_UItem *item1, EST_UItem *item2))
{
    EST_UItem *q;
    if(p != r){
	q = partition(p,r, gt, exchange);
	qsort_sub(l,p,q, gt, exchange);
	qsort_sub(l,q->next(),r, gt, exchange);
    }
}

void EST_UList::qsort(EST_UList &l,
		      bool (*gt)(const EST_UItem *item1, const EST_UItem *item2),
		      void (*exchange)(EST_UItem *item1, EST_UItem *item2))
{
    qsort_sub(l,l.head(),l.tail(), gt, exchange);
}


void EST_UList::sort_unique(EST_UList &l,
			    bool (*eq)(const EST_UItem *item1, const EST_UItem *item2),
			    bool (*gt)(const EST_UItem *item1, const EST_UItem *item2),
			    void (*item_free)(EST_UItem *item))
{
    // as sort(..) but delete any repeated items
    
    EST_UItem *l_ptr,*m_ptr;
    bool sorted=false;
    
    while(!sorted){
	sorted=true;
	
	for(l_ptr=l.head(); l_ptr != 0; l_ptr=l_ptr->next()){
	    
	    m_ptr=l_ptr->next();
	    if(m_ptr != 0)
            {
		if(gt(l_ptr, m_ptr)){
		    l.exchange(l_ptr,m_ptr);
		    sorted=false;
		} else if(eq(l_ptr,  m_ptr)){
		    l.remove(m_ptr, item_free);
		    sorted=false;
		}
            }
	}
    }
}

void EST_UList::merge_sort_unique(EST_UList &l, EST_UList &m,
				  bool (*eq)(const EST_UItem *item1, const EST_UItem *item2),
				  bool (*gt)(const EST_UItem *item1, const EST_UItem *item2),
				  void (*item_free)(EST_UItem *item))
{
    // keep all unique items in l, and add any new items from m to l
    
    EST_UItem *l_ptr,*m_ptr;
    bool flag;
    
    // make sure
    sort_unique(l, eq, gt, item_free);
    
    for(m_ptr=m.head(); m_ptr != 0; m_ptr=m_ptr->next()){
	
	// try and put item from m in list 
	flag=false;
	for(l_ptr=l.head(); l_ptr != 0; l_ptr=l_ptr->next()){
	    if( gt(l_ptr, m_ptr) ){
		l.insert_before(l_ptr, m_ptr);
		flag=true;
		break;
	    }else if( eq(m_ptr, l_ptr) ){
		flag=true;
		break;
	    }
	}
	// or try and append it
	if(!flag && ( gt(m_ptr, l.tail()) ) )
	    l.append(m_ptr);
    }
}