summaryrefslogtreecommitdiff
path: root/src/loris/lorisUtilities_pi.C
blob: 0b401a448ded4318dc748d19ef9453c83a67ea0e (plain)
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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
/*
 * This is the Loris C++ Class Library, implementing analysis, 
 * manipulation, and synthesis of digitized sounds using the Reassigned 
 * Bandwidth-Enhanced Additive Sound Model.
 *
 * Loris is Copyright (c) 1999-2010 by Kelly Fitz and Lippold Haken
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY, without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *
 *	lorisUtilities_pi.C
 *
 *	A component of the C-linkable procedural interface for Loris. 
 *
 *	Main components of the Loris procedural interface:
 *	- object interfaces - Analyzer, Synthesizer, Partial, PartialIterator, 
 *		PartialList, PartialListIterator, Breakpoint, BreakpointEnvelope,  
 *		and SampleVector need to be (opaque) objects in the interface, 
 * 		either because they hold state (e.g. Analyzer) or because they are 
 *		fundamental data types (e.g. Partial), so they need a procedural 
 *		interface to their member functions. All these things need to be 
 *		opaque pointers for the benefit of C.
 *	- non-object-based procedures - other classes in Loris are not so stateful,
 *		and have sufficiently narrow functionality that they need only 
 *		procedures, and no object representation.
 *	- utility functions - some procedures that are generally useful but are
 *		not yet part of the Loris core are also defined.
 *	- notification and exception handlers - all exceptions must be caught and
 *		handled internally, clients can specify an exception handler and 
 *		a notification function (the default one in Loris uses printf()).
 *
 *	This file defines the utility functions that are useful, and in many 
 *	cases trivial in C++ (usign the STL for example) but are not represented
 *	by classes in the Loris core.
 *
 * Kelly Fitz, 10 Nov 2000
 * loris@cerlsoundgroup.org
 *
 * http://www.cerlsoundgroup.org/Loris/
 *
 */
#if HAVE_CONFIG_H
	#include "config.h"
#endif

#include "loris.h"
#include "lorisException_pi.h"

#include "BreakpointEnvelope.h"
#include "LorisExceptions.h"
#include "Notifier.h"
#include "Partial.h"
#include "PartialUtils.h"

#include <algorithm>
#include <cmath>
#include <functional>
#include <iterator>
#include <list>
#include <memory>

using namespace Loris;

// ---------------------------------------------------------------------------
//	Functors to help apply C-callbacks to lists of Partials
//	by converting Partial references to pointer arguments.
//

struct CallWithPointer : public std::unary_function< Partial, void >
{
	typedef void (* Func)( Partial *, void * );
	Func func;
	void * data;
	
	CallWithPointer( Func f, void * d ) : func( f ), data( d ) {}
	
	void operator()( Partial & partial ) const
	{
		func( &partial, data );
	}
};

struct PredWithPointer : public std::unary_function< const Partial, bool >
{
	typedef int (* Pred)( const Partial *, void * );
	Pred pred;
	void * data;
	
	PredWithPointer( Pred p, void * d ) : pred( p ), data( d ) {}
	
	bool operator()( const Partial & partial ) const
	{
		return 0 != pred( &partial, data );
	}
};

/* ---------------------------------------------------------------- */
/*		utility functions
/*
/*	Operations for transforming and manipulating collections
   of Partials.
 */

/* ---------------------------------------------------------------- */
/*        avgAmplitude 
/*       
/*  Return the average amplitude over all Breakpoints in this Partial.
    Return zero if the Partial has no Breakpoints.
 */
extern "C"
double avgAmplitude( const Partial * p )
{
    try
    {
        ThrowIfNull((Partial *) p);
        return PartialUtils::avgAmplitude( *p );
    }
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in avgAmplitude(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in avgAmplitude(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}    

    return 0;
}

/* ---------------------------------------------------------------- */
/*        avgFrequency 
/*       
/*  Return the average frequency over all Breakpoints in this Partial.
    Return zero if the Partial has no Breakpoints.
 */
extern "C"
double avgFrequency( const Partial * p )
{
    try
    {
        ThrowIfNull((Partial *) p);
        return PartialUtils::avgFrequency( *p );
    }
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in avgFrequency(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in avgFrequency(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}    

    return 0;}

 
/* ---------------------------------------------------------------- */
/*        copyIf        
/*
/*	Append copies of Partials in the source PartialList satisfying the
	specified predicate to the destination PartialList. The source list
	is unmodified. The data parameter can be used to 
   supply extra user-defined data to the function. Pass 0 if no 
   additional data is needed.
 */
extern "C"
void copyIf( const PartialList * src, PartialList * dst, 
			    int ( * predicate )( const Partial * p, void * data ),
			    void * data )
{
	try 
	{
		ThrowIfNull((PartialList *) src);
		ThrowIfNull((PartialList *) dst);
		
		std::remove_copy_if( src->begin(), src->end(), std::back_inserter( *dst ),
							 std::not1( PredWithPointer( predicate, data ) ) );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in copyIf(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in copyIf(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}
			 
/* ---------------------------------------------------------------- */
/*        copyLabeled        
/*
/*	Append copies of Partials in the source PartialList having the
	specified label to the destination PartialList. The source list
	is unmodified.
 */
extern "C"
void copyLabeled( const PartialList * src, long label, PartialList * dst )
{
	try 
	{
		ThrowIfNull((PartialList *) src);
		ThrowIfNull((PartialList *) dst);
		
		std::remove_copy_if( src->begin(), src->end(), std::back_inserter( *dst ),
							 std::not1( PartialUtils::isLabelEqual(label) ) );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in copyLabeled(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in copyLabeled(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}
 
/* ---------------------------------------------------------------- */
/*        crop        
/*
/*	Trim Partials by removing Breakpoints outside a specified time span.
	Insert a Breakpoint at the boundary when cropping occurs. Remove
	any Partials that are left empty after cropping (Partials having no
	Breakpoints between t1 and t2).
 */
extern "C"
void crop( PartialList * partials, double t1, double t2 )
{
	try
	{
		ThrowIfNull((PartialList *) partials);

		notifier << "cropping " << partials->size() << " Partials" << endl;

		PartialUtils::crop( partials->begin(), partials->end(), t1, t2 );	
		
		//  remove empty Partials:
		PartialList::iterator it = partials->begin();
		while ( it != partials->end() )
		{
		    if ( 0 == it->numBreakpoints() )
		    {
		        it = partials->erase( it );
		    }
		    else
		    {
		        ++it;
		    }
		}
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in crop(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in crop(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        extractIf      
/*
/*	Remove Partials in the source PartialList satisfying the
	specified predicate from the source list and append them to
    the destination PartialList. The data parameter can be used to 
    supply extra user-defined data to the function. Pass 0 if no 
    additional data is needed.
 */
extern "C"
void extractIf( PartialList * src, PartialList * dst, 
                int ( * predicate )( const Partial * p, void * data ),
			 	    void * data )
{
	try 
	{
		ThrowIfNull((PartialList *) src);
		ThrowIfNull((PartialList *) dst);
        
        /*
		std::list< Partial >::iterator it = 
			std::stable_partition( src->begin(), src->end(), 
								   std::not1( PredWithPointer( predicate, data ) ) );
		
		stable_partition should work, but seems sometimes to hang, 
		especially when there are lots and lots of Partials. Do it
		efficiently by hand instead.
		
		dst->splice( dst->end(), *src, it, src->end() );
		*/
		std::list< Partial >::iterator it;
		for ( it = std::find_if( src->begin(), src->end(), PredWithPointer( predicate, data ) );
		      it != src->end(); 
		      it = std::find_if( it, src->end(), PredWithPointer( predicate, data ) ) )
	    {
	        //  the iterator passed to splice is a copy of it
	        //  before the increment, so it is not corrupted
	        //  by the splice, it is advanced to the next
	        //  position before the splice is performed.
	        dst->splice( dst->end(), *src, it++ );
	    }
		
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in extractIf(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in extractIf(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        extractLabeled        
/*
/*	Remove Partials in the source PartialList having the specified
    label from the source list and append them to the destination 
    PartialList.
 */
extern "C"
void extractLabeled( PartialList * src, long label, PartialList * dst )
{
	try 
	{
		ThrowIfNull((PartialList *) src);
		ThrowIfNull((PartialList *) dst);
    
        /*
		std::list< Partial >::iterator it = 
			std::stable_partition( src->begin(), src->end(), 
								        std::not1( PartialUtils::isLabelEqual(label) ) );
		
		stable_partition should work, but seems sometimes to hang, 
		especially when there are lots and lots of Partials. Do it
		efficiently by hand instead.
		
		dst->splice( dst->end(), *src, it, src->end() );
		*/
		std::list< Partial >::iterator it;
		for ( it = std::find_if( src->begin(), src->end(), PartialUtils::isLabelEqual(label) );
		      it != src->end(); 
		      it = std::find_if( it, src->end(), PartialUtils::isLabelEqual(label) ) )
	    {
	        //  the iterator passed to splice is a copy of it
	        //  before the increment, so it is not corrupted
	        //  by the splice, it is advanced to the next
	        //  position before the splice is performed.
	        dst->splice( dst->end(), *src, it++ );
	    }
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in extractLabeled(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in extractLabeled(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        fixPhaseAfter 
/*
/*  Recompute phases of all Breakpoints later than the specified 
    time so that the synthesized phases of those later Breakpoints 
    matches the stored phase, as long as the synthesized phase at 
    the specified time matches the stored (not recomputed) phase.
    
    Phase fixing is only applied to non-null (nonzero-amplitude) 
    Breakpoints, because null Breakpoints are interpreted as phase 
    reset points in Loris. If a null is encountered, its phase is 
    simply left unmodified, and future phases wil be recomputed 
    from that one.
 */
extern "C"
void fixPhaseAfter( PartialList * partials, double time )
{
	try 
	{
		ThrowIfNull((PartialList *) partials);
		PartialUtils::fixPhaseAfter( partials->begin(), partials->end(), time );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in fixPhaseAfter(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in fixPhaseAfter(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}
 
/* ---------------------------------------------------------------- */
/*        fixPhaseAt 
/*
/*  Recompute phases of all Breakpoints in a Partial
    so that the synthesized phases match the stored phases, 
    and the synthesized phase at (nearest) the specified
    time matches the stored (not recomputed) phase.
    
    Backward phase-fixing stops if a null (zero-amplitude) 
    Breakpoint is encountered, because nulls are interpreted as 
    phase reset points in Loris. If a null is encountered, the 
    remainder of the Partial (the front part) is fixed in the 
    forward direction, beginning at the start of the Partial. 
    Forward phase fixing is only applied to non-null 
    (nonzero-amplitude) Breakpoints. If a null is encountered, 
    its phase is simply left unmodified, and future phases wil be 
    recomputed from that one.
 */
extern "C"
void fixPhaseAt( PartialList * partials, double time )
{
	try 
	{
		ThrowIfNull((PartialList *) partials);
		PartialUtils::fixPhaseAt( partials->begin(), partials->end(), time );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in fixPhaseAt(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in fixPhaseAt(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}
 
/* ---------------------------------------------------------------- */
/*        fixPhaseBefore 
/*
/*  Recompute phases of all Breakpoints earlier than the specified 
    time so that the synthesized phases of those earlier Breakpoints 
    matches the stored phase, and the synthesized phase at the 
    specified time matches the stored (not recomputed) phase.

    Backward phase-fixing stops if a null (zero-amplitude) Breakpoint
    is encountered, because nulls are interpreted as phase reset 
    points in Loris. If a null is encountered, the remainder of the 
    Partial (the front part) is fixed in the forward direction, 
    beginning at the start of the Partial.
 */
extern "C"
void fixPhaseBefore( PartialList * partials, double time )
{
	try 
	{
		ThrowIfNull((PartialList *) partials);
		PartialUtils::fixPhaseBefore( partials->begin(), partials->end(), time );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in fixPhaseBefore(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in fixPhaseBefore(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        fixPhaseBetween 
/*
    Fix the phase travel between two times by adjusting the
    frequency and phase of Breakpoints between those two times.
    
    This algorithm assumes that there is nothing interesting 
    about the phases of the intervening Breakpoints, and modifies 
    their frequencies as little as possible to achieve the correct 
    amount of phase travel such that the frequencies and phases at 
    the specified times match the stored values. The phases of all 
    the Breakpoints between the specified times are recomputed.
 */
extern "C"
void fixPhaseBetween( PartialList * partials, double tbeg, double tend )
{
	try 
	{
		ThrowIfNull((PartialList *) partials);
		PartialUtils::fixPhaseBetween( partials->begin(), partials->end(), 
		                               tbeg, tend );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in fixPhaseBetween(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in fixPhaseBetween(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}
 
 
/* ---------------------------------------------------------------- */
/*        fixPhaseForward
/*
/*  Recompute phases of all Breakpoints later than the specified 
    time so that the synthesized phases of those later Breakpoints 
    matches the stored phase, as long as the synthesized phase at 
    the specified time matches the stored (not recomputed) phase. 
    Breakpoints later than tend are unmodified.
    
    Phase fixing is only applied to non-null (nonzero-amplitude) 
    Breakpoints, because null Breakpoints are interpreted as phase 
    reset points in Loris. If a null is encountered, its phase is 
    simply left unmodified, and future phases wil be recomputed 
    from that one.
 */
extern "C"
void fixPhaseForward( PartialList * partials, double tbeg, double tend )
{
	try 
	{
		ThrowIfNull((PartialList *) partials);
		PartialUtils::fixPhaseForward( partials->begin(), partials->end(), 
		                               tbeg, tend );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in fixPhaseForward(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in fixPhaseForward(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}
 
 
/* ---------------------------------------------------------------- */
/*        forEachBreakpoint        
/*
/*	Apply a function to each Breakpoint in a Partial. The function
	is called once for each Breakpoint in the source Partial. The
	function may modify the Breakpoint (but should not otherwise attempt 
	to modify the Partial). The data parameter can be used to supply extra
	user-defined data to the function. Pass 0 if no additional data is needed.
	The function should return 0 if successful. If the function returns
	a non-zero value, then forEachBreakpoint immediately returns that value
	without applying the function to any other Breakpoints in the Partial.
	forEachBreakpoint returns zero if all calls to func return zero.
 */
int forEachBreakpoint( Partial * p,
		 			   int ( * func )( Breakpoint * p, double time, void * data ),
			 		   void * data )
{
	int result = 0;
	try 
	{
		ThrowIfNull((Partial *) p);

		Partial::iterator it;
		for ( it = p->begin(); 0 == result && it != p->end(); ++it )
		{
			result = func( &(it.breakpoint()), it.time(), data );
		}
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in forEachBreakpoint(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in forEachBreakpoint(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	
	return result;
}

			 			
/* ---------------------------------------------------------------- */
/*        forEachPartial        
/*
/*	Apply a function to each Partial in a PartialList. The function
	is called once for each Partial in the source PartialList. The
	function may modify the Partial (but should not attempt to modify
	the PartialList). The data parameter can be used to supply extra
	user-defined data to the function. Pass 0 if no additional data 
	is needed. The function should return 0 if successful. If the 
	function returns a non-zero value, then forEachPartial immediately 
	returns that value without applying the function to any other 
	Partials in the PartialList. forEachPartial returns zero if all 
	calls to func return zero.
 */
int forEachPartial( PartialList * src,
			 		int ( * func )( Partial * p, void * data ),
			 		void * data )
{
	int result = 0;
	try 
	{
		ThrowIfNull((PartialList *) src);
		
		PartialList::iterator it;
		for ( it = src->begin(); 0 == result && it != src->end(); ++it )
		{
			result = func( &(*it), data );
		}
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in forEachPartial(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in forEachPartial(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}

	return result;
}
			 		

/* ---------------------------------------------------------------- */
/*        peakAmplitude        
/*
/*  Return the maximum amplitude achieved by a Partial.
 */
extern "C"
double peakAmplitude( const Partial * p )
{
    try
    {
        ThrowIfNull((Partial *) p);
        return PartialUtils::peakAmplitude( *p );
    }
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in peakAmplitude(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in peakAmplitude(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}    

    return 0;
}

/* ---------------------------------------------------------------- */
/*        removeIf        
/*
/*	Remove from a PartialList all Partials satisfying the
	specified predicate. The data parameter can be used to 
    supply extra user-defined data to the function. Pass 0 if no 
    additional data is needed.
 */
extern "C"
void removeIf( PartialList * src, 
			      int ( * predicate )( const Partial * p, void * data ),
			      void * data )
{
	try 
	{
		ThrowIfNull((PartialList *) src);
		std::list< Partial >::iterator it = 
			std::remove_if( src->begin(), src->end(), 
							PredWithPointer( predicate, data ) );
		src->erase( it, src->end() );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in removeIf(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in removeIf(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

			 
/* ---------------------------------------------------------------- */
/*        removeLabeled        
/*
/*	Remove from a PartialList all Partials having the specified label. 
 */
extern "C"
void removeLabeled( PartialList * src, long label )
{
	try 
	{
		ThrowIfNull((PartialList *) src);
		std::list< Partial >::iterator it = 
			std::remove_if( src->begin(), src->end(), 
							    PartialUtils::isLabelEqual( label ) );
		src->erase( it, src->end() );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in removeLabeled(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in removeLabeled(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        scaleAmp        
/*
/*	Bad old name for scaleAmplitude.
 */
extern "C"
void scaleAmp( PartialList * partials, BreakpointEnvelope * ampEnv )
{
    scaleAmplitude( partials, ampEnv );
}

/* ---------------------------------------------------------------- */
/*        scaleAmplitude        
/*
/*	Scale the amplitude of the Partials in a PartialList according 
	to an envelope representing a time-varying amplitude scale value.
 */
extern "C"
void scaleAmplitude( PartialList * partials, BreakpointEnvelope * ampEnv )
{
	try
	{
		ThrowIfNull((PartialList *) partials);
		ThrowIfNull((BreakpointEnvelope *) ampEnv);

		notifier << "scaling amplitude of " << partials->size() << " Partials" << endl;

		PartialUtils::scaleAmplitude( partials->begin(), partials->end(), *ampEnv );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in scaleAmplitude(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in scaleAmplitude(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        scaleBandwidth        
/*
/*	Scale the bandwidth of the Partials in a PartialList according 
	to an envelope representing a time-varying bandwidth scale value.
 */
extern "C"
void scaleBandwidth( PartialList * partials, BreakpointEnvelope * bwEnv )
{
	try
	{
		ThrowIfNull((PartialList *) partials);
		ThrowIfNull((BreakpointEnvelope *) bwEnv);

		notifier << "scaling bandwidth of " << partials->size() << " Partials" << endl;

		PartialUtils::scaleBandwidth( partials->begin(), partials->end(), *bwEnv );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in scaleBandwidth(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in scaleBandwidth(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        setBandwidth        
/*
/*	Assign the bandwidth of the Partials in a PartialList according 
	to an envelope representing a time-varying bandwidth scale value.
 */
extern "C"
void setBandwidth( PartialList * partials, BreakpointEnvelope * bwEnv )
{
	try
	{
		ThrowIfNull((PartialList *) partials);
		ThrowIfNull((BreakpointEnvelope *) bwEnv);

		notifier << "setting bandwidth of " << partials->size() << " Partials" << endl;

		PartialUtils::setBandwidth( partials->begin(), partials->end(), *bwEnv );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in setBandwidth(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in setBandwidth(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        scaleFrequency        
/*
/*	Scale the frequency of the Partials in a PartialList according 
	to an envelope representing a time-varying frequency scale value.
 */
extern "C"
void scaleFrequency( PartialList * partials, BreakpointEnvelope * freqEnv )
{
	try
	{
		ThrowIfNull((PartialList *) partials);
		ThrowIfNull((BreakpointEnvelope *) freqEnv);

		notifier << "scaling frequency of " << partials->size() << " Partials" << endl;

      	PartialUtils::scaleFrequency( partials->begin(), partials->end(), *freqEnv );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in scaleFrequency(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in scaleFrequency(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        scaleNoiseRatio        
/*
/*	Scale the relative noise content of the Partials in a PartialList 
	according to an envelope representing a (time-varying) noise energy 
	scale value.
 */
extern "C"
void scaleNoiseRatio( PartialList * partials, BreakpointEnvelope * noiseEnv )
{
	try 
	{
		ThrowIfNull((PartialList *) partials);
		ThrowIfNull((BreakpointEnvelope *) noiseEnv);

		notifier << "scaling noise ratio of " << partials->size() << " Partials" << endl;

		PartialUtils::scaleNoiseRatio( partials->begin(), partials->end(), *noiseEnv );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in scaleNoiseRatio(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in scaleNoiseRatio(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        shiftPitch        
/*
/*	Shift the pitch of all Partials in a PartialList according to 
	the given pitch envelope. The pitch envelope is assumed to have 
	units of cents (1/100 of a halfstep).
 */
extern "C"
void shiftPitch( PartialList * partials, BreakpointEnvelope * pitchEnv )
{
	try 
	{
		ThrowIfNull((PartialList *) partials);
		ThrowIfNull((BreakpointEnvelope *) pitchEnv);

		notifier << "shifting pitch of " << partials->size() << " Partials" << endl;
		
		PartialUtils::shiftPitch( partials->begin(), partials->end(), *pitchEnv );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in shiftPitch(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in shiftPitch(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        shiftTime       
/*
/*	Shift the time of all the Breakpoints in all Partials in a 
	PartialList by a constant amount.
 */
extern "C"
void shiftTime( PartialList * partials, double offset )
{
	try 
	{
		ThrowIfNull((PartialList *) partials);

		notifier << "shifting time of " << partials->size() << " Partials" << endl;
		
		PartialUtils::shiftTime( partials->begin(), partials->end(), offset );
	}
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in shiftTime(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in shiftTime(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
}

/* ---------------------------------------------------------------- */
/*        sortByLabel        
/*
/*	Sort the Partials in a PartialList in order of increasing label.
 * 	The sort is stable; Partials having the same label are not 
 * 	reordered.
 */
extern "C"
void sortByLabel( PartialList * partials )
{
	partials->sort( PartialUtils::compareLabelLess() );	
}

/* ---------------------------------------------------------------- */
/*        timeSpan        
/*
/*	Return the minimum start time and maximum end time
 *  in seconds of all Partials in this PartialList. The v
 *  times are returned in the (non-null) pointers tmin
 *  and tmax.
 */
extern "C"
void timeSpan( PartialList * partials, double * tmin, double * tmax )
{
    std::pair< double, double > times = 
        PartialUtils::timeSpan( partials->begin(), partials->end() );	
    if ( 0 != tmin )
    {
        *tmin = times.first;
    }
    if ( 0 != tmax )
    {
        *tmax = times.second;
    }
}

/* ---------------------------------------------------------------- */
/*        weightedAvgFrequency 
/*       
/*  Return the average frequency over all Breakpoints in this Partial, 
    weighted by the Breakpoint amplitudes. Return zero if the Partial 
    has no Breakpoints.
 */
extern "C"
double weightedAvgFrequency( const Partial * p )
{
    try
    {
        ThrowIfNull((Partial *) p);
        return PartialUtils::weightedAvgFrequency( *p );
    }
	catch( Exception & ex ) 
	{
		std::string s("Loris exception in weightedAvgFrequency(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}
	catch( std::exception & ex ) 
	{
		std::string s("std C++ exception in weightedAvgFrequency(): " );
		s.append( ex.what() );
		handleException( s.c_str() );
	}    

    return 0;
}