]> rtime.felk.cvut.cz Git - opencv.git/blob - opencv/tests/cxts/cxts.cpp
repaired reading test parameters
[opencv.git] / opencv / tests / cxts / cxts.cpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                        Intel License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2000, Intel Corporation, all rights reserved.
14 // Third party copyrights are property of their respective owners.
15 //
16 // Redistribution and use in source and binary forms, with or without modification,
17 // are permitted provided that the following conditions are met:
18 //
19 //   * Redistribution's of source code must retain the above copyright notice,
20 //     this list of conditions and the following disclaimer.
21 //
22 //   * Redistribution's in binary form must reproduce the above copyright notice,
23 //     this list of conditions and the following disclaimer in the documentation
24 //     and/or other materials provided with the distribution.
25 //
26 //   * The name of Intel Corporation may not be used to endorse or promote products
27 //     derived from this software without specific prior written permission.
28 //
29 // This software is provided by the copyright holders and contributors "as is" and
30 // any express or implied warranties, including, but not limited to, the implied
31 // warranties of merchantability and fitness for a particular purpose are disclaimed.
32 // In no event shall the Intel Corporation or contributors be liable for any direct,
33 // indirect, incidental, special, exemplary, or consequential damages
34 // (including, but not limited to, procurement of substitute goods or services;
35 // loss of use, data, or profits; or business interruption) however caused
36 // and on any theory of liability, whether in contract, strict liability,
37 // or tort (including negligence or otherwise) arising in any way out of
38 // the use of this software, even if advised of the possibility of such damage.
39 //
40 //M*/
41
42 #include "_cxts.h"
43 #include <ctype.h>
44 #include <stdarg.h>
45 #include <fcntl.h>
46 #include <time.h>
47 #if defined WIN32 || defined _WIN32 || defined WIN64 || defined _WIN64
48 #include <io.h>
49 #else
50 #include <unistd.h>
51 #endif
52
53 CvTest* CvTest::first = 0;
54 CvTest* CvTest::last = 0;
55 int CvTest::test_count = 0;
56
57 /*****************************************************************************************\
58 *                                Exception and memory handlers                            *
59 \*****************************************************************************************/
60
61 // a few platform-dependent declarations
62
63 #define CV_TS_NORMAL 0
64 #define CV_TS_BLUE   1
65 #define CV_TS_GREEN  2
66 #define CV_TS_RED    4
67
68 #if defined WIN32 || defined _WIN32 || defined WIN64 || defined _WIN64
69 #include <windows.h>
70
71 #ifdef _MSC_VER
72 #include <eh.h>
73 #endif
74
75 #ifdef _MSC_VER
76 static void cv_seh_translator( unsigned int /*u*/, EXCEPTION_POINTERS* pExp )
77 {
78     int code = CvTS::FAIL_EXCEPTION;
79     switch( pExp->ExceptionRecord->ExceptionCode )
80     {
81     case EXCEPTION_ACCESS_VIOLATION:
82     case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
83     case EXCEPTION_DATATYPE_MISALIGNMENT:
84     case EXCEPTION_FLT_STACK_CHECK:
85     case EXCEPTION_STACK_OVERFLOW:
86     case EXCEPTION_IN_PAGE_ERROR:
87         code = CvTS::FAIL_MEMORY_EXCEPTION;
88         break;
89     case EXCEPTION_FLT_DENORMAL_OPERAND:
90     case EXCEPTION_FLT_DIVIDE_BY_ZERO:
91     case EXCEPTION_FLT_INEXACT_RESULT:
92     case EXCEPTION_FLT_INVALID_OPERATION:
93     case EXCEPTION_FLT_OVERFLOW:
94     case EXCEPTION_FLT_UNDERFLOW:
95     case EXCEPTION_INT_DIVIDE_BY_ZERO:
96     case EXCEPTION_INT_OVERFLOW:
97         code = CvTS::FAIL_ARITHM_EXCEPTION;
98         break;
99     case EXCEPTION_BREAKPOINT:
100     case EXCEPTION_ILLEGAL_INSTRUCTION:
101     case EXCEPTION_INVALID_DISPOSITION:
102     case EXCEPTION_NONCONTINUABLE_EXCEPTION:
103     case EXCEPTION_PRIV_INSTRUCTION:
104     case EXCEPTION_SINGLE_STEP:
105         code = CvTS::FAIL_EXCEPTION;
106     }
107     throw code;
108 }
109 #endif
110
111 static void change_color( int color )
112 {
113     static int normal_attributes = -1;
114     HANDLE hstdout = GetStdHandle(STD_OUTPUT_HANDLE);
115     fflush(stdout);
116
117     if( normal_attributes < 0 )
118     {
119         CONSOLE_SCREEN_BUFFER_INFO info;
120         GetConsoleScreenBufferInfo( hstdout, &info );
121         normal_attributes = info.wAttributes;
122     }
123
124     SetConsoleTextAttribute( hstdout,
125         (WORD)(color == CV_TS_NORMAL ? normal_attributes :
126         ((color & CV_TS_BLUE ? FOREGROUND_BLUE : 0)|
127         (color & CV_TS_GREEN ? FOREGROUND_GREEN : 0)|
128         (color & CV_TS_RED ? FOREGROUND_RED : 0)|FOREGROUND_INTENSITY)) );
129 }
130
131 #else
132
133 #include <signal.h>
134
135 static const int cv_ts_sig_id[] = { SIGSEGV, SIGBUS, SIGFPE, SIGILL, SIGABRT, -1 };
136
137 static jmp_buf cv_ts_jmp_mark;
138
139 void cv_signal_handler( int sig_code )
140 {
141     int code = CvTS::FAIL_EXCEPTION;
142     switch( sig_code )
143     {
144     case SIGFPE:
145         code = CvTS::FAIL_ARITHM_EXCEPTION;
146         break;
147     case SIGSEGV:
148     case SIGBUS:
149         code = CvTS::FAIL_ARITHM_EXCEPTION;
150         break;
151     case SIGILL:
152         code = CvTS::FAIL_EXCEPTION;
153     }
154
155     longjmp( cv_ts_jmp_mark, code );
156 }
157
158 static void change_color( int color )
159 {
160     static const uchar ansi_tab[] = { 30, 34, 32, 36, 31, 35, 33, 37 };
161     char buf[16];
162     int code = 0;
163     fflush( stdout );
164     if( color != CV_TS_NORMAL )
165         code = ansi_tab[color & (CV_TS_BLUE|CV_TS_GREEN|CV_TS_RED)];
166     sprintf( buf, "\x1b[%dm", code );
167     fputs( buf, stdout );
168 }
169
170 #endif
171
172 /***************************** memory manager *****************************/
173
174 typedef struct CvTestAllocBlock
175 {
176     struct CvTestAllocBlock* prev;
177     struct CvTestAllocBlock* next;
178     char* origin;
179     char* data;
180     size_t size;
181     int index;
182 }
183 CvTestAllocBlock;
184
185
186 class CvTestMemoryManager
187 {
188 public:
189     CvTestMemoryManager( CvTS* ts );
190     virtual ~CvTestMemoryManager();
191
192     virtual void clear_and_check( int min_index = -1 );
193     virtual void start_tracking( int index_to_stop_at=-1 );
194     virtual void stop_tracking_and_check();
195     int get_alloc_index() { return index; }
196
197     static void* alloc_proxy( size_t size, void* userdata );
198     static int free_proxy( void* ptr, void* userdata );
199
200 protected:
201     virtual void* alloc( size_t size );
202     virtual int free( void* ptr );
203     virtual int free_block( CvTestAllocBlock* block );
204
205     int index;
206     int track_blocks;
207     int show_msg_box;
208     int index_to_stop_at;
209     const char* guard_pattern;
210     int guard_size;
211     int block_align;
212     enum { MAX_MARKS = 1024 };
213     int marks[MAX_MARKS];
214     int marks_top;
215     CvTS* ts;
216     CvTestAllocBlock* first;
217     CvTestAllocBlock* last;
218 };
219
220
221 void* CvTestMemoryManager::alloc_proxy( size_t size, void* userdata )
222 {
223     return ((CvTestMemoryManager*)userdata)->alloc( size );
224 }
225
226
227 int CvTestMemoryManager::free_proxy( void* ptr, void* userdata )
228 {
229     return ((CvTestMemoryManager*)userdata)->free( ptr );
230 }
231
232
233 CvTestMemoryManager::CvTestMemoryManager( CvTS* _test_system )
234 {
235     ts = _test_system;
236     guard_pattern = "THIS IS A GUARD PATTERN!";
237     guard_size = (int)strlen(guard_pattern);
238     block_align = CV_MALLOC_ALIGN;
239     track_blocks = 0;
240     marks_top = 0;
241     first = last = 0;
242     index = 0;
243     index_to_stop_at = -1;
244     show_msg_box = 1;
245 }
246
247
248 CvTestMemoryManager::~CvTestMemoryManager()
249 {
250     clear_and_check();
251 }
252
253
254 void CvTestMemoryManager::clear_and_check( int min_index )
255 {
256     int alloc_index = -1;
257     CvTestAllocBlock* block;
258     int leak_size = 0, leak_block_count = 0, mem_size = 0;
259     void* mem_addr = 0;
260
261     while( marks_top > 0 && marks[marks_top - 1] >= min_index )
262         marks_top--;
263
264     for( block = last; block != 0; )
265     {
266         CvTestAllocBlock* prev = block->prev;
267         if( block->index < min_index )
268             break;
269         leak_size += (int)block->size;
270         leak_block_count++;
271         alloc_index = block->index;
272         mem_addr = block->data;
273         mem_size = (int)block->size;
274         free_block( block );
275         block = prev;
276     }
277     track_blocks--;
278     if( leak_block_count > 0 )
279     {
280         ts->set_failed_test_info( CvTS::FAIL_MEMORY_LEAK, alloc_index );
281         ts->printf( CvTS::LOG, "Memory leaks: %u blocks, %u bytes total\n"
282                     "%s leaked block: %p, %u bytes\n",
283                     leak_block_count, leak_size, leak_block_count > 1 ? "The first" : "The",
284                     mem_addr, mem_size );
285     }
286
287     index = block ? block->index + 1 : 0;
288 }
289
290
291 void CvTestMemoryManager::start_tracking( int _index_to_stop_at )
292 {
293     track_blocks--;
294     marks[marks_top++] = index;
295     assert( marks_top <= MAX_MARKS );
296     track_blocks+=2;
297     index_to_stop_at = _index_to_stop_at >= index ? _index_to_stop_at : -1;
298 }
299
300
301 void CvTestMemoryManager::stop_tracking_and_check()
302 {
303     if( marks_top > 0 )
304     {
305         int min_index = marks[--marks_top];
306         clear_and_check( min_index );
307     }
308 }
309
310
311 int CvTestMemoryManager::free_block( CvTestAllocBlock* block )
312 {
313     int code = 0;
314     char* data = block->data;
315
316     if( block->origin == 0 || ((size_t)block->origin & (sizeof(double)-1)) != 0 )
317         code = CvTS::FAIL_MEMORY_CORRUPTION_BEGIN;
318
319     if( memcmp( data - guard_size, guard_pattern, guard_size ) != 0 )
320         code = CvTS::FAIL_MEMORY_CORRUPTION_BEGIN;
321     else if( memcmp( data + block->size, guard_pattern, guard_size ) != 0 )
322         code = CvTS::FAIL_MEMORY_CORRUPTION_END;
323
324     if( code >= 0 )
325     {
326         if( block->prev )
327             block->prev->next = block->next;
328         else if( first == block )
329             first = block->next;
330
331         if( block->next )
332             block->next->prev = block->prev;
333         else if( last == block )
334             last = block->prev;
335
336         free( block->origin );
337     }
338     else
339     {
340         ts->set_failed_test_info( code, block->index );
341         ts->printf( CvTS::LOG, "Corrupted block (%s): %p, %u bytes\n",
342                     code == CvTS::FAIL_MEMORY_CORRUPTION_BEGIN ? "beginning" : "end",
343                     block->data, block->size );
344     }
345
346     return code;
347 }
348
349
350 void* CvTestMemoryManager::alloc( size_t size )
351 {
352     char* data;
353     CvTestAllocBlock* block;
354     size_t new_size = sizeof(*block) + size + guard_size*2 + block_align + sizeof(size_t)*2;
355     char* ptr = (char*)malloc( new_size );
356
357     if( !ptr )
358         return 0;
359
360     data = (char*)cvAlignPtr( ptr + sizeof(size_t) + sizeof(*block) + guard_size, block_align );
361     block = (CvTestAllocBlock*)cvAlignPtr( data - guard_size -
362             sizeof(size_t) - sizeof(*block), sizeof(size_t) );
363     block->origin = ptr;
364     block->data = data;
365     block->size = 0;
366     block->index = -1;
367     block->next = block->prev = 0;
368     memcpy( data - guard_size, guard_pattern, guard_size );
369     memcpy( data + size, guard_pattern, guard_size );
370
371     if( track_blocks > 0 )
372     {
373         track_blocks--;
374         block->size = size;
375
376         if( index == index_to_stop_at )
377         {
378             if( show_msg_box )
379             {
380         #if defined WIN32 || defined _WIN32
381                 MessageBox( NULL, "The block that is corrupted and/or not deallocated has been just allocated\n"
382                             "Press Ok to start debugging", "Memory Manager", MB_ICONERROR|MB_OK|MB_SYSTEMMODAL );
383         #endif
384             }
385             CV_DBG_BREAK();
386         }
387
388         block->index = index++;
389
390         block->prev = last;
391         block->next = 0;
392         if( last )
393             last = last->next = block;
394         else
395             first = last = block;
396
397         track_blocks++;
398     }
399
400     return data;
401 }
402
403
404 int CvTestMemoryManager::free( void* ptr )
405 {
406     char* data = (char*)ptr;
407     CvTestAllocBlock* block = (CvTestAllocBlock*)
408         cvAlignPtr( data - guard_size - sizeof(size_t) - sizeof(*block), sizeof(size_t) );
409
410     int code = free_block( block );
411     if( code < 0 && ts->is_debug_mode() )
412         CV_DBG_BREAK();
413     return 0;
414 }
415
416
417 /***************************** error handler *****************************/
418
419 #if 0
420 static int cvTestErrorCallback( int status, const char* func_name, const char* err_msg,
421                          const char* file_name, int line, void* userdata )
422 {
423     if( status < 0 && status != CV_StsBackTrace && status != CV_StsAutoTrace )
424         ((CvTS*)userdata)->set_failed_test_info( CvTS::FAIL_ERROR_IN_CALLED_FUNC );
425
426     // print error message
427     return cvStdErrReport( status, func_name, err_msg, file_name, line, 0 );
428 }
429 #endif
430
431 /*****************************************************************************************\
432 *                                    Base Class for Tests                                 *
433 \*****************************************************************************************/
434
435 CvTest::CvTest( const char* _test_name, const char* _test_funcs, const char* _test_descr ) :
436     name(_test_name ? _test_name : ""), tested_functions(_test_funcs ? _test_funcs : ""),
437     description(_test_descr ? _test_descr : ""), ts(0)
438 {
439     if( last )
440         last->next = this;
441     else
442         first = this;
443     last = this;
444     test_count++;
445     ts = 0;
446     hdr_state = 0;
447
448     timing_param_names = 0;
449     timing_param_current = 0;
450     timing_param_seqs = 0;
451     timing_param_idxs = 0;
452     timing_param_count = -1;
453
454     test_case_count = -1;
455     support_testing_modes = CvTS::CORRECTNESS_CHECK_MODE;
456 }
457
458 CvTest::~CvTest()
459 {
460     clear();
461 }
462
463 CvTest* CvTest::get_first_test()
464 {
465     return first;
466 }
467
468 void CvTest::clear()
469 {
470     if( timing_param_current )
471         free( timing_param_current );
472     if( timing_param_seqs )
473         free( timing_param_seqs );
474     if( timing_param_idxs )
475         free( timing_param_idxs );
476
477     timing_param_current = 0;
478     timing_param_seqs = 0;
479     timing_param_idxs = 0;
480     timing_param_count = -1;
481 }
482
483
484 int CvTest::init( CvTS* _test_system )
485 {
486     clear();
487     ts = _test_system;
488     return read_params( ts->get_file_storage() );
489 }
490
491
492 const char* CvTest::get_parent_name( const char* name, char* buffer )
493 {
494     const char* dash_pos = strrchr( name ? name : "", '-' );
495     if( !dash_pos )
496         return 0;
497
498     if( name != (const char*)buffer )
499         strncpy( buffer, name, dash_pos - name );
500     buffer[dash_pos - name] = '\0';
501     return buffer;
502 }
503
504
505 const CvFileNode* CvTest::find_param( CvFileStorage* fs, const char* param_name )
506 {
507     char buffer[256];
508     const char* name = get_name();
509     CvFileNode* node = 0;
510
511     for(;;)
512     {
513         if( !name )
514             break;
515         node = cvGetFileNodeByName( fs, 0, name );
516         if( node )
517         {
518             node = cvGetFileNodeByName( fs, node, param_name );
519             if( node )
520                 break;
521         }
522         name = get_parent_name( name, buffer );
523     }
524
525     return node;
526 }
527
528
529 void CvTest::start_write_param( CvFileStorage* fs )
530 {
531     if( hdr_state == 0 )
532     {
533         cvStartWriteStruct( fs, get_name(), CV_NODE_MAP );
534         hdr_state = 1;
535     }
536 }
537
538
539 void CvTest::write_param( CvFileStorage* fs, const char* paramname, int val )
540 {
541     if( !ts->find_written_param( this, paramname, CV_NODE_INT, &val) )
542     {
543         start_write_param( fs );
544         cvWriteInt( fs, paramname, val );
545     }
546 }
547
548
549 void CvTest::write_param( CvFileStorage* fs, const char* paramname, double val )
550 {
551     if( !ts->find_written_param( this, paramname, CV_NODE_REAL, &val) )
552     {
553         start_write_param( fs );
554         cvWriteReal( fs, paramname, val );
555     }
556 }
557
558
559 void CvTest::write_param( CvFileStorage* fs, const char* paramname, const char* val )
560 {
561     if( !ts->find_written_param( this, paramname, CV_NODE_STRING, &val) )
562     {
563         start_write_param( fs );
564         cvWriteString( fs, paramname, val );
565     }
566 }
567
568
569 void CvTest::write_string_list( CvFileStorage* fs, const char* paramname, const char** val, int count )
570 {
571     if( val )
572     {
573         start_write_param( fs );
574         int i;
575         if( count < 0 )
576             count = INT_MAX;
577
578         cvStartWriteStruct( fs, paramname, CV_NODE_SEQ + CV_NODE_FLOW );
579         for( i = 0; i < count && val[i] != 0; i++ )
580             cvWriteString( fs, 0, val[i] );
581         cvEndWriteStruct( fs );
582     }
583 }
584
585
586 void CvTest::write_int_list( CvFileStorage* fs, const char* paramname,
587                              const int* val, int count, int stop_value )
588 {
589     if( val )
590     {
591         start_write_param( fs );
592         int i;
593         if( count < 0 )
594             count = INT_MAX;
595
596         cvStartWriteStruct( fs, paramname, CV_NODE_SEQ + CV_NODE_FLOW );
597         for( i = 0; i < count && val[i] != stop_value; i++ )
598             cvWriteInt( fs, 0, val[i] );
599         cvEndWriteStruct( fs );
600     }
601 }
602
603
604 void CvTest::write_real_list( CvFileStorage* fs, const char* paramname,
605                               const double* val, int count, double stop_value )
606 {
607     if( val )
608     {
609         start_write_param( fs );
610         int i;
611         if( count < 0 )
612             count = INT_MAX;
613
614         cvStartWriteStruct( fs, paramname, CV_NODE_SEQ + CV_NODE_FLOW );
615         for( i = 0; i < count && val[i] != stop_value; i++ )
616             cvWriteReal( fs, 0, val[i] );
617         cvEndWriteStruct( fs );
618     }
619 }
620
621
622 int CvTest::read_params( CvFileStorage* fs )
623 {
624     int code = 0;
625     
626     if(fs == NULL) return code; 
627
628     if( ts->get_testing_mode() == CvTS::TIMING_MODE )
629     {
630         timing_param_names = find_param( fs, "timing_params" );
631         if( CV_NODE_IS_SEQ(timing_param_names->tag) )
632         {
633             CvSeq* seq = timing_param_names->data.seq;
634             CvSeqReader reader;
635             cvStartReadSeq( seq, &reader );
636             int i;
637
638             timing_param_count = seq->total;
639             timing_param_seqs = (const CvFileNode**)malloc( timing_param_count*sizeof(timing_param_seqs[0]));
640             timing_param_idxs = (int*)malloc( timing_param_count*sizeof(timing_param_idxs[0]));
641             timing_param_current = (const CvFileNode**)malloc( timing_param_count*sizeof(timing_param_current[0]));
642             test_case_count = 1;
643
644             for( i = 0; i < timing_param_count; i++ )
645             {
646                 CvFileNode* param_name = (CvFileNode*)(reader.ptr);
647
648                 if( !CV_NODE_IS_STRING(param_name->tag) )
649                 {
650                     ts->printf( CvTS::LOG, "ERROR: name of timing parameter #%d is not a string\n", i );
651                     code = -1;
652                     break;
653                 }
654
655                 timing_param_idxs[i] = 0;
656                 timing_param_current[i] = 0;
657                 timing_param_seqs[i] = find_param( fs, param_name->data.str.ptr );
658                 if( !timing_param_seqs[i] )
659                 {
660                     ts->printf( CvTS::LOG, "ERROR: timing parameter %s is not found\n", param_name->data.str.ptr );
661                     code = -1;
662                     break;
663                 }
664
665                 if( CV_NODE_IS_SEQ(timing_param_seqs[i]->tag) )
666                     test_case_count *= timing_param_seqs[i]->data.seq->total;
667
668                 CV_NEXT_SEQ_ELEM( seq->elem_size, reader );
669             }
670
671             if( i < timing_param_count )
672                 timing_param_count = 0;
673         }
674         else
675         {
676             ts->printf( CvTS::LOG, "ERROR: \"timing_params\" is not found" );
677             code = -1;
678         }
679     }
680
681     return code;
682 }
683
684
685 int CvTest::get_next_timing_param_tuple()
686 {
687     bool increment;
688     int i;
689
690     if( timing_param_count <= 0 || !timing_param_names || !timing_param_seqs )
691         return -1;
692
693     increment = timing_param_current[0] != 0; // if already have some valid test tuple, move to the next
694     for( i = 0; i < timing_param_count; i++ )
695     {
696         const CvFileNode* node = timing_param_seqs[i];
697         int total = CV_NODE_IS_SEQ(node->tag) ? node->data.seq->total : 1;
698         int new_idx = timing_param_idxs[i];
699
700         if( !timing_param_current[i] )
701             timing_param_idxs[i] = new_idx = 0;
702         else if( increment )
703         {
704             new_idx++;
705             if( new_idx >= total )
706                 new_idx = 0;
707             else if( total > 1 )
708                 increment = false;
709         }
710
711         if( !timing_param_current[i] || new_idx != timing_param_idxs[i] )
712         {
713             if( CV_NODE_IS_SEQ(node->tag) )
714                 timing_param_current[i] = (CvFileNode*)cvGetSeqElem( node->data.seq, new_idx );
715             else
716                 timing_param_current[i] = node;
717             timing_param_idxs[i] = new_idx;
718         }
719     }
720
721     return !increment; // return 0 in case of overflow (i.e. if there is no more test cases)
722 }
723
724
725 const CvFileNode* CvTest::find_timing_param( const char* paramname )
726 {
727     if( timing_param_names )
728     {
729         int i;
730         CvSeqReader reader;
731         cvStartReadSeq( timing_param_names->data.seq, &reader, 0 );
732
733         for( i = 0; i < timing_param_count; i++ )
734         {
735             const char* ptr = ((const CvFileNode*)(reader.ptr))->data.str.ptr;
736             if( ptr[0] == paramname[0] && strcmp(ptr, paramname) == 0 )
737                 return timing_param_current[i];
738             CV_NEXT_SEQ_ELEM( reader.seq->elem_size, reader );
739         }
740     }
741     return 0;
742 }
743
744
745 int CvTest::write_defaults(CvTS* _ts)
746 {
747     ts = _ts;
748     hdr_state = 0;
749     write_default_params( ts->get_file_storage() );
750     if( hdr_state )
751         cvEndWriteStruct( ts->get_file_storage() );
752     return 0;
753 }
754
755
756 int CvTest::write_default_params( CvFileStorage* fs )
757 {
758     if( ts->get_testing_mode() == CvTS::TIMING_MODE )
759         write_string_list( fs, "timing_params", default_timing_param_names, timing_param_count );
760     return 0;
761 }
762
763
764 bool CvTest::can_do_fast_forward()
765 {
766     return true;
767 }
768
769
770 int CvTest::get_support_testing_modes()
771 {
772     return support_testing_modes;
773 }
774
775 void CvTest::safe_run( int start_from )
776 {
777     if(ts->is_debug_mode())
778         run( start_from );
779     else
780     {
781         try
782         {
783         #if !defined WIN32 && !defined _WIN32
784         int _code = setjmp( cv_ts_jmp_mark );
785         if( !_code )
786             run( start_from );
787         else
788             throw _code;
789         #else
790             run( start_from );
791         #endif
792         }
793         catch (const cv::Exception& exc)
794         {
795             const char* errorStr = cvErrorStr(exc.code);
796             char buf[1 << 16];
797             
798             sprintf( buf, "OpenCV Error: %s (%s) in %s, file %s, line %d",
799                     errorStr, exc.err.c_str(), exc.func.size() > 0 ?
800                     exc.func.c_str() : "unknown function", exc.file.c_str(), exc.line );
801             ts->printf(CvTS::LOG, "%s\n", buf);
802             ts->set_failed_test_info( CvTS::FAIL_ERROR_IN_CALLED_FUNC );
803         }
804         catch (...)
805         {
806             ts->set_failed_test_info( CvTS::FAIL_EXCEPTION );
807         }
808     }
809 }
810
811
812 void CvTest::run( int start_from )
813 {
814     int i, test_case_idx, count = get_test_case_count();
815     int64 t_start = cvGetTickCount();
816     double freq = cv::getTickFrequency();
817     bool ff = can_do_fast_forward();
818     int progress = 0, code;
819     std::vector<double> v_cpe, v_time;
820     int64 t1 = t_start;
821
822     for( test_case_idx = ff && start_from >= 0 ? start_from : 0;
823          count < 0 || test_case_idx < count; test_case_idx++ )
824     {
825         ts->update_context( this, test_case_idx, ff );
826         progress = update_progress( progress, test_case_idx, count, (double)(t1 - t_start)/(freq*1000) );
827         
828         int64 t00 = 0, t0 = 0, t2 = 0, t3 = 0;
829         double t_acc = 0, t_cpu_acc = 0;
830         
831         if( ts->get_testing_mode() == CvTS::TIMING_MODE )
832         {
833             const int iterations = 20;
834             code = prepare_test_case( test_case_idx );
835
836             if( code < 0 || ts->get_err_code() < 0 )
837                 return;
838
839             if( code == 0 )
840                 continue;
841                 
842             v_cpe.resize(0);
843             v_time.resize(0);
844
845             for( i = 0; i < iterations; i++ )
846             {
847                 for(;;)
848                 {
849                                         t0 = cv::getTickCount();
850                                         t2 = cv::getCPUTickCount();
851                                         run_func();
852                                         t3 = cv::getCPUTickCount();
853                                         t1 = cv::getTickCount();
854                                         if( ts->get_err_code() < 0 )
855                                                 return;
856
857                                         if( t3 - t2 > 0 && t1 - t0 > 1 )
858                                                 break;
859                                 }
860
861                                 if( i == 0 )
862                                         t00 = t0;
863                                 v_cpe.push_back((double)(t3 - t2));
864                                 v_time.push_back((double)(t1 - t0));
865                 if( i >= 5 && t1 - t00 > freq*5 )
866                     break;
867             }
868
869                         sort(v_cpe.begin(), v_cpe.end());
870                         sort(v_time.begin(), v_time.end());
871                         
872             t_cpu_acc = v_cpe[i/2];
873             t_acc = v_time[i/2];
874             print_time( test_case_idx, t_acc, t_cpu_acc );
875         }
876         else
877         {
878             code = prepare_test_case( test_case_idx );
879             if( code < 0 || ts->get_err_code() < 0 )
880                 return;
881
882             if( code == 0 )
883                 continue;
884
885             run_func();
886             if( ts->get_err_code() < 0 )
887                 return;
888
889             if( validate_test_results( test_case_idx ) < 0 || ts->get_err_code() < 0 )
890                 return;
891         }
892     }
893 }
894
895
896 void CvTest::run_func()
897 {
898     assert(0);
899 }
900
901
902 int CvTest::get_test_case_count()
903 {
904     return test_case_count;
905 }
906
907
908 int CvTest::prepare_test_case( int )
909 {
910     return 0;
911 }
912
913
914 int CvTest::validate_test_results( int )
915 {
916     return 0;
917 }
918
919
920 void CvTest::print_time( int /*test_case_idx*/, double /*time_usecs*/, double /*time_cpu_clocks*/ )
921 {
922 }
923
924
925 int CvTest::update_progress( int progress, int test_case_idx, int count, double dt )
926 {
927     int width = 60 - (int)strlen(get_name());
928     if( count > 0 )
929     {
930         int t = cvRound( ((double)test_case_idx * width)/count );
931         if( t > progress )
932         {
933             ts->printf( CvTS::CONSOLE, "." );
934             progress = t;
935         }
936     }
937     else if( cvRound(dt) > progress )
938     {
939         ts->printf( CvTS::CONSOLE, "." );
940         progress = cvRound(dt);
941     }
942
943     return progress;
944 }
945
946 /*****************************************************************************************\
947 *                                 Base Class for Test System                              *
948 \*****************************************************************************************/
949
950 /******************************** Constructors/Destructors ******************************/
951
952 CvTS::CvTS()
953 {
954     start_time = 0;
955     version = CV_TS_VERSION;
956     memory_manager = 0;
957     /*
958     memory_manager = new CvTestMemoryManager(this);
959     cvSetMemoryManager( CvTestMemoryManager::alloc_proxy,
960                         CvTestMemoryManager::free_proxy,
961                         memory_manager );*/
962     ostrm_suffixes[SUMMARY_IDX] = ".sum";
963     ostrm_suffixes[LOG_IDX] = ".log";
964     ostrm_suffixes[CSV_IDX] = ".csv";
965     ostrm_suffixes[CONSOLE_IDX] = 0;
966     ostrm_base_name = 0;
967     memset( output_streams, 0, sizeof(output_streams) );
968     memset( &params, 0, sizeof(params) );
969     selected_tests = new CvTestPtrVec();
970     failed_tests = new CvTestInfoVec();
971     written_params = new CvTestPtrVec();
972     logbufsize = 1 << 18; // 256K
973     logbufpos = 0;
974     logbuf = new char[logbufsize];
975
976     clear();
977 }
978
979
980 void CvTS::clear()
981 {
982     int i;
983     CvTest* test;
984
985     for( test = get_first_test(); test != 0; test = test->get_next() )
986         test->clear();
987
988     for( i = 0; i <= CONSOLE_IDX; i++ )
989     {
990         if( i == LOG_IDX )
991             fflush( stderr );
992         else if( i == CONSOLE_IDX )
993             fflush( stdout );
994
995         if( i < CONSOLE_IDX && output_streams[i].f )
996         {
997             fclose( output_streams[i].f );
998             output_streams[i].f = 0;
999         }
1000
1001         if( i == LOG_IDX && output_streams[i].default_handle > 0 )
1002         {
1003             dup2( output_streams[i].default_handle, 2 );
1004             output_streams[i].default_handle = 0;
1005         }
1006         output_streams[i].enable = 1;
1007     }
1008     cvReleaseFileStorage( &fs );
1009     selected_tests->clear();
1010     failed_tests->clear();
1011     if( ostrm_base_name )
1012     {
1013         free( ostrm_base_name );
1014         ostrm_base_name = 0;
1015     }
1016     params.rng_seed = (uint64)-1;
1017     params.debug_mode = -1;
1018     params.print_only_failed = 0;
1019     params.skip_header = 0;
1020     params.test_mode = CORRECTNESS_CHECK_MODE;
1021     params.timing_mode = MIN_TIME;
1022     params.use_optimized = -1;
1023     params.color_terminal = 1;
1024
1025     if( memory_manager )
1026         memory_manager->clear_and_check();
1027 }
1028
1029
1030 CvTS::~CvTS()
1031 {
1032     clear();
1033     set_data_path(0);
1034
1035     if( written_params )
1036     {
1037         for( int i = 0; i < written_params->size(); i++ )
1038             free( written_params->at(i) );
1039         delete written_params;
1040     }
1041
1042     delete selected_tests;
1043     delete failed_tests;
1044     delete[] logbuf;
1045 }
1046
1047
1048 const char* CvTS::str_from_code( int code )
1049 {
1050     switch( code )
1051     {
1052     case OK: return "Ok";
1053     case FAIL_GENERIC: return "Generic/Unknown";
1054     case FAIL_MISSING_TEST_DATA: return "No test data";
1055     case FAIL_INVALID_TEST_DATA: return "Invalid test data";
1056     case FAIL_ERROR_IN_CALLED_FUNC: return "cvError invoked";
1057     case FAIL_EXCEPTION: return "Hardware/OS exception";
1058     case FAIL_MEMORY_EXCEPTION: return "Invalid memory access";
1059     case FAIL_ARITHM_EXCEPTION: return "Arithmetic exception";
1060     case FAIL_MEMORY_CORRUPTION_BEGIN: return "Corrupted memblock (beginning)";
1061     case FAIL_MEMORY_CORRUPTION_END: return "Corrupted memblock (end)";
1062     case FAIL_MEMORY_LEAK: return "Memory leak";
1063     case FAIL_INVALID_OUTPUT: return "Invalid function output";
1064     case FAIL_MISMATCH: return "Unexpected output";
1065     case FAIL_BAD_ACCURACY: return "Bad accuracy";
1066     case FAIL_HANG: return "Infinite loop(?)";
1067     case FAIL_BAD_ARG_CHECK: return "Incorrect handling of bad arguments";
1068     default: return "Generic/Unknown";
1069     }
1070 }
1071
1072 /************************************** Running tests **********************************/
1073
1074 void CvTS::make_output_stream_base_name( const char* config_name )
1075 {
1076     int k, len = (int)strlen( config_name );
1077
1078     if( ostrm_base_name )
1079         free( ostrm_base_name );
1080
1081     for( k = len-1; k >= 0; k-- )
1082     {
1083         char c = config_name[k];
1084         if( c == '.' || c == '/' || c == '\\' || c == ':' )
1085             break;
1086     }
1087
1088     if( k > 0 && config_name[k] == '.' )
1089         len = k;
1090
1091     ostrm_base_name = (char*)malloc( len + 1 );
1092     memcpy( ostrm_base_name, config_name, len );
1093     ostrm_base_name[len] = '\0';
1094 }
1095
1096
1097 void CvTS::set_handlers( bool on )
1098 {
1099     if( on )
1100     {
1101         cvSetErrMode( CV_ErrModeParent );
1102         cvRedirectError( cvStdErrReport );
1103     #if defined WIN32 || defined _WIN32
1104         #ifdef _MSC_VER
1105         _set_se_translator( cv_seh_translator );
1106         #endif
1107     #else
1108         for( int i = 0; cv_ts_sig_id[i] >= 0; i++ )
1109             signal( cv_ts_sig_id[i], cv_signal_handler );
1110     #endif
1111     }
1112     else
1113     {
1114         cvSetErrMode( CV_ErrModeLeaf );
1115         cvRedirectError( cvGuiBoxReport );
1116     #if defined WIN32 || defined _WIN32
1117         #ifdef _MSC_VER
1118         _set_se_translator( 0 );
1119         #endif
1120     #else
1121         for( int i = 0; cv_ts_sig_id[i] >= 0; i++ )
1122             signal( cv_ts_sig_id[i], SIG_DFL );
1123     #endif
1124     }
1125 }
1126
1127
1128 void CvTS::set_data_path( const char* data_path )
1129 {
1130     if( data_path == params.data_path )
1131         return;
1132
1133     if( params.data_path )
1134         delete[] params.data_path;
1135     if( data_path )
1136     {
1137         int size = (int)strlen(data_path)+1;
1138         bool append_slash = data_path[size-1] != '/' && data_path[size-1] != '\\';
1139         params.data_path = new char[size+1];
1140         memcpy( params.data_path, data_path, size );
1141         if( append_slash )
1142             strcat( params.data_path, "/" );
1143     }
1144 }
1145
1146
1147 typedef struct CvTsParamVal
1148 {
1149     const char* fullname;
1150     const void* val;
1151 }
1152 CvTsParamVal;
1153
1154 int CvTS::find_written_param( CvTest* test, const char* paramname, int valtype, const void* val )
1155 {
1156     const char* testname = test->get_name();
1157     bool add_to_list = test->get_func_list()[0] == '\0';
1158     char buffer[256];
1159     int paramname_len = (int)strlen(paramname);
1160     int paramval_len = valtype == CV_NODE_INT ? (int)sizeof(int) :
1161         valtype == CV_NODE_REAL ? (int)sizeof(double) : -1;
1162     const char* name = CvTest::get_parent_name( testname, buffer );
1163
1164     if( !fs )
1165         return -1;
1166
1167     if( paramval_len < 0 )
1168     {
1169         assert(0); // unsupported parameter type
1170         return -1;
1171     }
1172
1173     while( name )
1174     {
1175         int i, len = (int)strlen(buffer);
1176         buffer[len] = '.';
1177         memcpy( buffer + len + 1, paramname, paramname_len + 1 );
1178         for( i = 0; i < written_params->size(); i++ )
1179         {
1180             CvTsParamVal* param = (CvTsParamVal*)written_params->at(i);
1181             if( strcmp( param->fullname, buffer ) == 0 )
1182             {
1183                 if( (paramval_len > 0 && memcmp( param->val, val, paramval_len ) == 0) ||
1184                     (paramval_len < 0 && strcmp( (const char*)param->val, (const char*)val ) == 0) )
1185                     return 1;
1186                 break;
1187             }
1188         }
1189         if( i < written_params->size() )
1190             break;
1191         buffer[len] = '\0';
1192         name = CvTest::get_parent_name( buffer, buffer );
1193     }
1194
1195     if( add_to_list )
1196     {
1197         int bufsize, fullname_len = (int)strlen(testname) + paramname_len + 2;
1198         CvTsParamVal* param;
1199         if( paramval_len < 0 )
1200             paramval_len = (int)strlen((const char*)val) + 1;
1201         bufsize = sizeof(*param) + fullname_len + paramval_len;
1202         param = (CvTsParamVal*)malloc(bufsize);
1203         param->fullname = (const char*)(param + 1);
1204         param->val = param->fullname + fullname_len;
1205         sprintf( (char*)param->fullname, "%s.%s", testname, paramname );
1206         memcpy( (void*)param->val, val, paramval_len );
1207         written_params->push( param );
1208     }
1209
1210     return 0;
1211 }
1212
1213
1214 #ifndef MAX_PATH
1215 #define MAX_PATH 1024
1216 #endif
1217
1218 static int CV_CDECL cmp_test_names( const void* a, const void* b )
1219 {
1220     return strcmp( (*(const CvTest**)a)->get_name(), (*(const CvTest**)b)->get_name() );
1221 }
1222
1223 int CvTS::run( int argc, char** argv )
1224 {
1225     time( &start_time );
1226
1227     int i, write_params = 0;
1228     int list_tests = 0;
1229     CvTestPtrVec all_tests;
1230     CvTest* test;
1231
1232     // 0. reset all the parameters, reorder tests
1233     clear();
1234
1235 #if defined WIN32 || defined _WIN32
1236         cv::setBreakOnError(true);
1237 #endif
1238
1239     for( test = get_first_test(), i = 0; test != 0; test = test->get_next(), i++ )
1240         all_tests.push(test);
1241
1242     if( all_tests.size() > 0 && all_tests.data() )
1243         qsort( all_tests.data(), all_tests.size(), sizeof(CvTest*), cmp_test_names );
1244
1245     // 1. parse command line options
1246     for( i = 1; i < argc; i++ )
1247     {
1248         if( strcmp( argv[i], "-h" ) == 0 || strcmp( argv[i], "--help" ) == 0 )
1249         {
1250             print_help();
1251             return 0;
1252         }
1253         else if( strcmp( argv[i], "-f" ) == 0 )
1254             config_name = argv[++i];
1255         else if( strcmp( argv[i], "-w" ) == 0 )
1256             write_params = 1;
1257         else if( strcmp( argv[i], "-t" ) == 0 )
1258             params.test_mode = TIMING_MODE;
1259         else if( strcmp( argv[i], "-O0" ) == 0 || strcmp( argv[i], "-O1" ) == 0 )
1260             params.use_optimized = argv[i][2] - '0';
1261         else if( strcmp( argv[i], "-l" ) == 0 )
1262             list_tests = 1;
1263         else if( strcmp( argv[i], "-d" ) == 0 )
1264             set_data_path(argv[++i]);
1265         else if( strcmp( argv[i], "-nc" ) == 0 )
1266             params.color_terminal = 0;
1267         else if( strcmp( argv[i], "-r" ) == 0 )
1268             params.debug_mode = 0;
1269         else if( strcmp( argv[i], "-tn" ) == 0 )
1270         {
1271             params.test_filter_pattern = argv[++i];
1272             params.test_filter_mode = CHOOSE_TESTS;
1273         }
1274     }
1275
1276 #if 0
1277 //#if !defined WIN32 && !defined _WIN32
1278     if (! config_name )
1279     {    
1280       char * confname = getenv("configname");
1281       if (confname)
1282         config_name = confname;
1283     }
1284     
1285     if( !params.data_path || !params.data_path[0] )
1286     {
1287         char* datapath = getenv("datapath");
1288         if( datapath )
1289             set_data_path(datapath);
1290     }
1291     
1292     // this is the fallback for the current OpenCV autotools setup
1293     if( !params.data_path || !params.data_path[0] )
1294     {
1295         char* srcdir = getenv("srcdir");
1296         char buf[1024];
1297         if( srcdir )
1298         {
1299             sprintf( buf, "%s/../../opencv_extra/testdata/", srcdir );
1300             set_data_path(buf);
1301         }
1302     }
1303 #endif
1304
1305     if( write_params )
1306     {
1307         if( !config_name )
1308         {
1309             printf( LOG, "ERROR: output config name is not specified\n" );
1310             return -1;
1311         }
1312         fs = cvOpenFileStorage( config_name, 0, CV_STORAGE_WRITE );
1313         if( !fs )
1314         {
1315             printf( LOG, "ERROR: could not open config file %s\n", config_name );
1316             return -1;
1317         }
1318         cvWriteComment( fs, CV_TS_VERSION " config file", 0 );
1319         cvStartWriteStruct( fs, "common", CV_NODE_MAP );
1320         write_default_params( fs );
1321         cvEndWriteStruct( fs );
1322
1323         for( i = 0; i < all_tests.size(); i++ )
1324         {
1325             test = (CvTest*)all_tests[i];
1326             if( !(test->get_support_testing_modes() & get_testing_mode()) )
1327                 continue;
1328             test->write_defaults( this );
1329             test->clear();
1330         }
1331         cvReleaseFileStorage( &fs );
1332         return 0;
1333     }
1334
1335     if( !config_name )
1336         printf( LOG, "WARNING: config name is not specified, using default parameters\n" );
1337     else
1338     {
1339         // 2. read common parameters of test system
1340         fs = cvOpenFileStorage( config_name, 0, CV_STORAGE_READ );
1341         if( !fs )
1342         {
1343             printf( LOG, "ERROR: could not open config file %s", config_name );
1344             return -1;
1345         }
1346     }
1347
1348     if( params.test_mode == CORRECTNESS_CHECK_MODE || fs )
1349     {
1350         // in the case of algorithmic tests we always run read_params,
1351         // even if there is no config file
1352         if( read_params(fs) < 0 )
1353             return -1;
1354     }
1355
1356     if( !ostrm_base_name )
1357         make_output_stream_base_name( config_name ? config_name : argv[0] );
1358
1359     ostream_testname_mask = -1; // disable printing test names at initial stage
1360
1361     // 3. open file streams
1362     for( i = 0; i < CONSOLE_IDX; i++ )
1363     {
1364         char filename[MAX_PATH];
1365         sprintf( filename, "%s%s", ostrm_base_name, ostrm_suffixes[i] );
1366         output_streams[i].f = fopen( filename, "wt" );
1367         if( !output_streams[i].f )
1368         {
1369             printf( LOG, "ERROR: could not open %s\n", filename );
1370             return -1;
1371         }
1372
1373         if( i == LOG_IDX )
1374         {
1375             // redirect stderr to log file
1376             fflush( stderr );
1377             output_streams[i].default_handle = dup(2);
1378             dup2( fileno(output_streams[i].f), 2 );
1379         }
1380     }
1381
1382     // 4. traverse through the list of all registered tests.
1383     // Initialize the selected tests and put them into the separate sequence
1384     for( i = 0; i < all_tests.size(); i++ )
1385     {
1386         test = (CvTest*)all_tests[i];
1387         if( !(test->get_support_testing_modes() & get_testing_mode()) )
1388             continue;
1389
1390         if( strcmp( test->get_func_list(), "" ) != 0 && filter(test) )
1391         {
1392             if( test->init(this) >= 0 )
1393             {
1394                 selected_tests->push( test );
1395                 if( list_tests )
1396                     ::printf( "%s\n", test->get_name() );
1397             }
1398             else
1399                 printf( LOG, "WARNING: an error occured during test %s initialization\n", test->get_name() );
1400         }
1401     }
1402
1403     if( list_tests )
1404     {
1405         clear();
1406         return 0;
1407     }
1408
1409     // 5. setup all the neccessary handlers and print header
1410     set_handlers( !params.debug_mode );
1411
1412     if( params.use_optimized == 0 )
1413         cvUseOptimized(0);
1414
1415     if( !params.skip_header )
1416         print_summary_header( SUMMARY + LOG + CONSOLE + CSV );
1417     rng = params.rng_seed;
1418     update_context( 0, -1, true );
1419
1420     // 6. run all the tests
1421     for( i = 0; i < selected_tests->size(); i++ )
1422     {
1423         CvTest* test = (CvTest*)selected_tests->at(i);
1424         int code;
1425         CvTestInfo temp;
1426
1427         if( memory_manager )
1428             memory_manager->start_tracking();
1429         update_context( test, -1, true );
1430         current_test_info.rng_seed0 = current_test_info.rng_seed;
1431         
1432         ostream_testname_mask = 0; // reset "test name was printed" flags
1433         logbufpos = 0;
1434         if( output_streams[LOG_IDX].f )
1435             fflush( output_streams[LOG_IDX].f );
1436
1437         temp = current_test_info;
1438         test->safe_run(0);
1439         if( get_err_code() >= 0 )
1440         {
1441             update_context( test, -1, false );
1442             current_test_info.rng_seed = temp.rng_seed;
1443             current_test_info.base_alloc_index = temp.base_alloc_index;
1444         }
1445         test->clear();
1446         if( memory_manager )
1447             memory_manager->stop_tracking_and_check();
1448
1449         code = get_err_code();
1450         if( code >= 0 )
1451         {
1452             if( !params.print_only_failed )
1453             {
1454                 printf( SUMMARY + CONSOLE, "\t" );
1455                 set_color( CV_TS_GREEN );
1456                 printf( SUMMARY + CONSOLE, "Ok\n" );
1457                 set_color( CV_TS_NORMAL );
1458             }
1459         }
1460         else
1461         {
1462             printf( SUMMARY + CONSOLE, "\t" );
1463             set_color( CV_TS_RED );
1464             printf( SUMMARY + CONSOLE, "FAIL(%s)\n", str_from_code(code) );
1465             set_color( CV_TS_NORMAL );
1466             printf( LOG, "context: test case = %d, seed = %08x%08x\n",
1467                     current_test_info.test_case_idx,
1468                     (unsigned)(current_test_info.rng_seed>>32),
1469                     (unsigned)(current_test_info.rng_seed));
1470             if(logbufpos > 0)
1471             {
1472                 logbuf[logbufpos] = '\0';
1473                 printf( SUMMARY + CONSOLE, ">>>\n%s\n", logbuf);
1474             }
1475             failed_tests->push(current_test_info);
1476             if( params.rerun_immediately )
1477                 break;
1478         }
1479     }
1480
1481     ostream_testname_mask = -1;
1482     print_summary_tailer( SUMMARY + CONSOLE + LOG );
1483
1484     if( !params.debug_mode && (params.rerun_failed || params.rerun_immediately) )
1485     {
1486         set_handlers(0);
1487         update_context( 0, -1, true );
1488         for( i = 0; i < failed_tests->size(); i++ )
1489         {
1490             CvTestInfo info = failed_tests->at(i);
1491             if( (info.code == FAIL_MEMORY_CORRUPTION_BEGIN ||
1492                 info.code == FAIL_MEMORY_CORRUPTION_END ||
1493                 info.code == FAIL_MEMORY_LEAK) && memory_manager )
1494                 memory_manager->start_tracking( info.alloc_index - info.base_alloc_index
1495                                                 + memory_manager->get_alloc_index() );
1496             rng = info.rng_seed;
1497             test->safe_run( info.test_case_idx );
1498         }
1499     }
1500     int nfailed = failed_tests ? (int)failed_tests->size() : 0;
1501     clear();
1502
1503     return nfailed;
1504 }
1505
1506
1507 void CvTS::print_help()
1508 {
1509     ::printf(
1510         "Usage: <test_executable> [{-h|--help}][-l] [-r] [-w] [-t] [-f <config_name>] [-d <data_path>] [-O{0|1}]\n\n"
1511         "-d - specify the test data path\n"
1512         "-f - use parameters from the provided XML/YAML config file\n"
1513         "     instead of the default parameters\n"
1514         "-h or --help - print this help information\n"
1515         "-l - list all the registered tests or subset of the tests,\n"
1516         "     selected in the config file, and exit\n"
1517         "-nc - do not use colors in the console output\n"     
1518         "-O{0|1} - disable/enable on-fly detection of IPP and other\n"
1519         "          supported optimized libs. It's enabled by default\n"
1520         "-r - continue running tests after OS/Hardware exception occured\n"
1521         "-t - switch to the performance testing mode instead of\n"
1522         "     the default algorithmic/correctness testing mode\n"
1523         "-w - write default parameters of the algorithmic or\n"
1524         "     performance (when -t is passed) tests to the specifed\n"
1525         "     config file (see -f) and exit\n\n"
1526         //"Test data path and config file can also be specified by the environment variables 'config' and 'datapath'.\n\n"
1527         );
1528 }
1529
1530
1531 #if defined WIN32 || defined _WIN32
1532 const char* default_data_path = "../tests/cv/testdata/";
1533 #else
1534 const char* default_data_path = "../../../../tests/cv/testdata/";
1535 #endif
1536
1537
1538 int CvTS::read_params( CvFileStorage* fs )
1539 {
1540     CvFileNode* node = fs ? cvGetFileNodeByName( fs, 0, "common" ) : 0;
1541     if(params.debug_mode < 0)
1542         params.debug_mode = cvReadIntByName( fs, node, "debug_mode", 1 ) != 0;
1543     params.skip_header = cvReadIntByName( fs, node, "skip_header", 0 ) != 0;
1544     params.print_only_failed = cvReadIntByName( fs, node, "print_only_failed", 0 ) != 0;
1545     params.rerun_failed = cvReadIntByName( fs, node, "rerun_failed", 0 ) != 0;
1546     params.rerun_immediately = cvReadIntByName( fs, node, "rerun_immediately", 0 ) != 0;
1547     const char* str = cvReadStringByName( fs, node, "filter_mode", "tests" );
1548     params.test_filter_mode = strcmp( str, "functions" ) == 0 ? CHOOSE_FUNCTIONS : CHOOSE_TESTS;
1549     str = cvReadStringByName( fs, node, "test_mode", params.test_mode == TIMING_MODE ? "timing" : "correctness" );
1550     params.test_mode = strcmp( str, "timing" ) == 0 || strcmp( str, "performance" ) == 0 ?
1551                         TIMING_MODE : CORRECTNESS_CHECK_MODE;
1552     str = cvReadStringByName( fs, node, "timing_mode", params.timing_mode == AVG_TIME ? "avg" : "min" );
1553     params.timing_mode = strcmp( str, "average" ) == 0 || strcmp( str, "avg" ) == 0 ? AVG_TIME : MIN_TIME;
1554     params.test_filter_pattern = cvReadStringByName( fs, node, params.test_filter_mode == CHOOSE_FUNCTIONS ?
1555                                                      "functions" : "tests", "" );
1556     params.resource_path = cvReadStringByName( fs, node, "." );
1557     if( params.use_optimized < 0 )
1558         params.use_optimized = cvReadIntByName( fs, node, "use_optimized", -1 );
1559     if( !params.data_path || !params.data_path[0] )
1560     {
1561         const char* data_path =
1562             cvReadStringByName( fs, node, "data_path", default_data_path );
1563         set_data_path(data_path);
1564     }
1565     params.test_case_count_scale = cvReadRealByName( fs, node, "test_case_count_scale", 1. );
1566     if( params.test_case_count_scale <= 0 )
1567         params.test_case_count_scale = 1.;
1568     str = cvReadStringByName( fs, node, "seed", 0 );
1569     params.rng_seed = 0;
1570     if( str && strlen(str) == 16 )
1571     {
1572         params.rng_seed = 0;
1573         for( int i = 0; i < 16; i++ )
1574         {
1575             int c = tolower(str[i]);
1576             if( !isxdigit(c) )
1577             {
1578                 params.rng_seed = 0;
1579                 break;
1580             }
1581             params.rng_seed = params.rng_seed * 16 +
1582                 (str[i] < 'a' ? str[i] - '0' : str[i] - 'a' + 10);
1583         }
1584     }
1585
1586     if( params.rng_seed == 0 )
1587         params.rng_seed = cvGetTickCount();
1588
1589     str = cvReadStringByName( fs, node, "output_file_base_name", 0 );
1590     if( str )
1591         make_output_stream_base_name( str );
1592
1593     return 0;
1594 }
1595
1596
1597 void CvTS::write_default_params( CvFileStorage* fs )
1598 {
1599     read_params(0); // fill parameters with default values
1600
1601     cvWriteInt( fs, "debug_mode", params.debug_mode );
1602     cvWriteInt( fs, "skip_header", params.skip_header );
1603     cvWriteInt( fs, "print_only_failed", params.print_only_failed );
1604     cvWriteInt( fs, "rerun_failed", params.rerun_failed );
1605     cvWriteInt( fs, "rerun_immediately", params.rerun_immediately );
1606     cvWriteString( fs, "filter_mode", params.test_filter_mode == CHOOSE_FUNCTIONS ? "functions" : "tests" );
1607     cvWriteString( fs, "test_mode", params.test_mode == TIMING_MODE ? "timing" : "correctness" );
1608     cvWriteString( fs, "data_path", params.data_path ? params.data_path : default_data_path, 1 );
1609     if( params.test_mode == TIMING_MODE )
1610         cvWriteString( fs, "timing_mode", params.timing_mode == AVG_TIME ? "avg" : "min" );
1611     // test_filter, seed & output_file_base_name are not written
1612 }
1613
1614
1615 void CvTS::enable_output_streams( int stream_mask, int value )
1616 {
1617     for( int i = 0; i < MAX_IDX; i++ )
1618         if( stream_mask & (1 << i) )
1619             output_streams[i].enable = value != 0;
1620 }
1621
1622
1623 void CvTS::update_context( CvTest* test, int test_case_idx, bool update_ts_context )
1624 {
1625     current_test_info.test = test;
1626     current_test_info.test_case_idx = test_case_idx;
1627     current_test_info.alloc_index = 0;
1628     current_test_info.code = 0;
1629     cvSetErrStatus( CV_StsOk );
1630     if( update_ts_context )
1631     {
1632         current_test_info.rng_seed = rng;
1633         current_test_info.base_alloc_index = memory_manager ?
1634             memory_manager->get_alloc_index() : 0;
1635     }
1636 }
1637
1638
1639 void CvTS::set_failed_test_info( int fail_code, int alloc_index )
1640 {
1641     if( fail_code == FAIL_MEMORY_CORRUPTION_BEGIN ||
1642         fail_code == FAIL_MEMORY_CORRUPTION_END ||
1643         current_test_info.code >= 0 )
1644     {
1645         current_test_info.code = fail_code;
1646         current_test_info.alloc_index = alloc_index;
1647     }
1648 }
1649
1650
1651 const char* CvTS::get_libs_info( const char** addon_modules )
1652 {
1653     const char* all_info = 0;
1654     cvGetModuleInfo( 0, &all_info, addon_modules );
1655     return all_info;
1656 }
1657
1658
1659 void CvTS::print_summary_header( int streams )
1660 {
1661     char csv_header[256], *ptr = csv_header;
1662     int i;
1663
1664     printf( streams, "Engine: %s\n", version );
1665     time_t t1;
1666     time( &t1 );
1667     struct tm *t2 = localtime( &t1 );
1668     char buf[1024];
1669     strftime( buf, sizeof(buf)-1, "%c", t2 );
1670     printf( streams, "Execution Date & Time: %s\n", buf );
1671     printf( streams, "Config File: %s\n", config_name );
1672     const char* plugins = 0;
1673     const char* lib_verinfo = get_libs_info( &plugins );
1674     printf( streams, "Tested Libraries: %s\n", lib_verinfo );
1675     printf( streams, "Optimized Low-level Plugin\'s: %s\n", plugins );
1676     printf( streams, "=================================================\n");
1677
1678     sprintf( ptr, "funcName,dataType,channels,size," );
1679     ptr += strlen(ptr);
1680
1681     for( i = 0; i < CvTest::TIMING_EXTRA_PARAMS; i++ )
1682     {
1683         sprintf( ptr, "param%d,", i );
1684         ptr += strlen(ptr);
1685     }
1686
1687     sprintf( ptr, "CPE,Time(uSecs)" );
1688     printf( CSV, "%s\n", csv_header );
1689 }
1690
1691
1692 void CvTS::print_summary_tailer( int streams )
1693 {
1694     printf( streams, "=================================================\n");
1695     if( selected_tests && failed_tests )
1696     {
1697         time_t end_time;
1698         time( &end_time );
1699         double total_time = difftime( end_time, start_time );
1700         printf( streams, "Summary: %d out of %d tests failed\n",
1701             failed_tests->size(), selected_tests->size() );
1702         int minutes = cvFloor(total_time/60.);
1703         int seconds = cvRound(total_time - minutes*60);
1704         int hours = minutes / 60;
1705         minutes %= 60;
1706         printf( streams, "Running time: %02d:%02d:%02d\n", hours, minutes, seconds );
1707     }
1708 }
1709
1710
1711 void CvTS::vprintf( int streams, const char* fmt, va_list l )
1712 {
1713     if( streams )
1714     {
1715         char str[1 << 14];
1716         vsprintf( str, fmt, l );
1717
1718         for( int i = 0; i < MAX_IDX; i++ )
1719         {
1720             if( (streams & (1 << i)) && output_streams[i].enable )
1721             {
1722                 FILE* f = i == CONSOLE_IDX ? stdout :
1723                           i == LOG_IDX ? stderr : output_streams[i].f;
1724                 if( f )
1725                 {
1726                     if( i != CSV_IDX && !(ostream_testname_mask & (1 << i)) && current_test_info.test )
1727                     {
1728                         fprintf( f, "-------------------------------------------------\n" );
1729                         if( i == CONSOLE_IDX || i == SUMMARY_IDX )
1730                                                         fprintf( f, "[%08x%08x]\n", (int)(current_test_info.rng_seed0 >> 32),
1731                                                             (int)(current_test_info.rng_seed0));
1732                         fprintf( f, "%s: ", current_test_info.test->get_name() );
1733                         fflush( f );
1734                         ostream_testname_mask |= 1 << i;
1735                         if( i == LOG_IDX )
1736                             logbufpos = 0;
1737                     }
1738                     fputs( str, f );
1739                     if( i == LOG_IDX )
1740                     {
1741                         size_t len = strlen(str);
1742                         CV_Assert(logbufpos + len < logbufsize);
1743                         strcpy(logbuf + logbufpos, str);
1744                         logbufpos += len;
1745                     }
1746                     if( i == CONSOLE_IDX )
1747                         fflush(f);
1748                 }
1749             }
1750         }
1751     }
1752 }
1753
1754
1755 void CvTS::printf( int streams, const char* fmt, ... )
1756 {
1757     if( streams )
1758     {
1759         va_list l;
1760         va_start( l, fmt );
1761         vprintf( streams, fmt, l );
1762         va_end( l );
1763     }
1764 }
1765
1766 void CvTS::set_color(int color)
1767 {
1768     if( params.color_terminal )
1769         change_color(color);
1770 }
1771
1772 static char* cv_strnstr( const char* str, int len,
1773                          const char* pattern,
1774                          int pattern_len = -1,
1775                          int whole_word = 1 )
1776 {
1777     int i;
1778
1779     if( len < 0 && pattern_len < 0 )
1780         return (char*)strstr( str, pattern );
1781
1782     if( len < 0 )
1783         len = (int)strlen( str );
1784
1785     if( pattern_len < 0 )
1786         pattern_len = (int)strlen( pattern );
1787
1788     for( i = 0; i < len - pattern_len + 1; i++ )
1789     {
1790         int j = i + pattern_len;
1791         if( str[i] == pattern[0] &&
1792             memcmp( str + i, pattern, pattern_len ) == 0 &&
1793             (!whole_word ||
1794             ((i == 0 || (!isalnum(str[i-1]) && str[i-1] != '_')) &&
1795              (j == len || (!isalnum(str[j]) && str[j] != '_')))))
1796             return (char*)(str + i);
1797     }
1798
1799     return 0;
1800 }
1801
1802
1803 int CvTS::filter( CvTest* test )
1804 {
1805     const char* pattern = params.test_filter_pattern;
1806     int inverse = 0;
1807
1808     if( pattern && pattern[0] == '!' )
1809     {
1810         inverse = 1;
1811         pattern++;
1812     }
1813
1814     if( !pattern || strcmp( pattern, "" ) == 0 || strcmp( pattern, "*" ) == 0 )
1815         return 1 ^ inverse;
1816
1817     if( params.test_filter_mode == CHOOSE_TESTS )
1818     {
1819         int found = 0;
1820
1821         while( pattern && *pattern )
1822         {
1823             char *ptr, *endptr = (char*)strchr( pattern, ',' );
1824             int len, have_wildcard;
1825             int t_name_len;
1826
1827             if( endptr )
1828                 *endptr = '\0';
1829
1830             ptr = (char*)strchr( pattern, '*' );
1831             if( ptr )
1832             {
1833                 len = (int)(ptr - pattern);
1834                 have_wildcard = 1;
1835             }
1836             else
1837             {
1838                 len = (int)strlen( pattern );
1839                 have_wildcard = 0;
1840             }
1841
1842             t_name_len = (int)strlen( test->get_name() );
1843             found = (t_name_len == len || (have_wildcard && t_name_len > len)) &&
1844                     (len == 0 || memcmp( test->get_name(), pattern, len ) == 0);
1845             if( endptr )
1846             {
1847                 *endptr = ',';
1848                 pattern = endptr + 1;
1849                 while( isspace(*pattern) )
1850                     pattern++;
1851             }
1852
1853             if( found || !endptr )
1854                 break;
1855         }
1856
1857         return found ^ inverse;
1858     }
1859     else
1860     {
1861         assert( params.test_filter_mode == CHOOSE_FUNCTIONS );
1862         int glob_len = (int)strlen( pattern );
1863         const char* ptr = test->get_func_list();
1864         const char *tmp_ptr;
1865
1866         while( ptr && *ptr )
1867         {
1868             const char* endptr = ptr - 1;
1869             const char* name_ptr;
1870             const char* name_first_match;
1871             int name_len;
1872             char c;
1873
1874             do c = *++endptr;
1875             while( isspace(c) );
1876
1877             if( !c )
1878                 break;
1879
1880             assert( isalpha(c) );
1881             name_ptr = endptr;
1882
1883             do c = *++endptr;
1884             while( isalnum(c) || c == '_' );
1885
1886             if( c == ':' ) // class
1887             {
1888                 assert( endptr[1] == ':' );
1889                 endptr = endptr + 2;
1890                 name_len = (int)(endptr - name_ptr);
1891
1892                 // find the first occurence of the class name
1893                 // in pattern
1894                 name_first_match = cv_strnstr( pattern,
1895                                       glob_len, name_ptr, name_len, 1 );
1896
1897                 if( *endptr == '*' )
1898                 {
1899                     if( name_first_match )
1900                         return 1 ^ inverse;
1901                 }
1902                 else
1903                 {
1904                     assert( *endptr == '{' ); // a list of methods
1905
1906                     if( !name_first_match )
1907                     {
1908                         // skip all the methods, if there is no such a class name
1909                         // in pattern
1910                         endptr = strchr( endptr, '}' );
1911                         assert( endptr != 0 );
1912                         endptr--;
1913                     }
1914
1915                     for( ;; )
1916                     {
1917                         const char* method_name_ptr;
1918                         int method_name_len;
1919
1920                         do c = *++endptr;
1921                         while( isspace(c) );
1922
1923                         if( c == '}' )
1924                             break;
1925                         assert( isalpha(c) );
1926
1927                         method_name_ptr = endptr;
1928
1929                         do c = *++endptr;
1930                         while( isalnum(c) || c == '_' );
1931
1932                         method_name_len = (int)(endptr - method_name_ptr);
1933
1934                         // search for class_name::* or
1935                         // class_name::{...method_name...}
1936                         tmp_ptr = name_first_match;
1937                         do
1938                         {
1939                             const char* tmp_ptr2;
1940                             tmp_ptr += name_len;
1941                             if( *tmp_ptr == '*' )
1942                                 return 1;
1943                             assert( *tmp_ptr == '{' );
1944                             tmp_ptr2 = strchr( tmp_ptr, '}' );
1945                             assert( tmp_ptr2 );
1946
1947                             if( cv_strnstr( tmp_ptr, (int)(tmp_ptr2 - tmp_ptr) + 1,
1948                                              method_name_ptr, method_name_len, 1 ))
1949                                 return 1 ^ inverse;
1950
1951                             tmp_ptr = cv_strnstr( tmp_ptr2, glob_len -
1952                                                    (int)(tmp_ptr2 - pattern),
1953                                                    name_ptr, name_len, 1 );
1954                         }
1955                         while( tmp_ptr );
1956
1957                         endptr--;
1958                         do c = *++endptr;
1959                         while( isspace(c) );
1960
1961                         if( c != ',' )
1962                             endptr--;
1963                     }
1964                 }
1965             }
1966             else
1967             {
1968                 assert( !c || isspace(c) || c == ',' );
1969                 name_len = (int)(endptr - name_ptr);
1970                 tmp_ptr = pattern;
1971
1972                 for(;;)
1973                 {
1974                     const char *tmp_ptr2, *tmp_ptr3;
1975
1976                     tmp_ptr = cv_strnstr( tmp_ptr, glob_len -
1977                         (int)(tmp_ptr - pattern), name_ptr, name_len, 1 );
1978
1979                     if( !tmp_ptr )
1980                         break;
1981
1982                     // make sure it is not a method
1983                     tmp_ptr2 = strchr( tmp_ptr, '}' );
1984                     if( !tmp_ptr2 )
1985                         return 1 ^ inverse;
1986
1987                     tmp_ptr3 = strchr( tmp_ptr, '{' );
1988                     if( tmp_ptr3 < tmp_ptr2 )
1989                         return 1 ^ inverse;
1990
1991                     tmp_ptr = tmp_ptr2 + 1;
1992                 }
1993
1994                 endptr--;
1995             }
1996
1997             do c = *++endptr;
1998             while( isspace(c) );
1999
2000             if( c == ',' )
2001                 endptr++;
2002             ptr = endptr;
2003         }
2004
2005         return 0 ^ inverse;
2006     }
2007 }
2008
2009 /* End of file. */