Assignments
Assignments
ProgressBar.inl
Go to the documentation of this file.
1/*
2Copyright (c) 2006, Michael Kazhdan and Matthew Bolitho
3All rights reserved.
4
5Redistribution and use in source and binary forms, with or without modification,
6are permitted provided that the following conditions are met:
7
8Redistributions of source code must retain the above copyright notice, this list of
9conditions and the following disclaimer. Redistributions in binary form must reproduce
10the above copyright notice, this list of conditions and the following disclaimer
11in the documentation and/or other materials provided with the distribution.
12
13Neither the name of the Johns Hopkins University nor the names of its contributors
14may be used to endorse or promote products derived from this software without specific
15prior written permission.
16
17THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
18EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES
19OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
20SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
22TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
25ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
26DAMAGE.
27*/
28
30// ProgressBar //
32inline ProgressBar::ProgressBar( int bins , size_t total , const char *header )
33{
34 _startTime = std::chrono::high_resolution_clock::now();
35 _bins = bins;
36 _total = total;
37 _header = header;
38 _idx = 0;
39 _previousTime = -1;
40}
41
42inline void ProgressBar::update( bool output )
43{
44 if( output ) print();
45 _idx++;
46}
47inline void ProgressBar::print( void )
48{
49 int currentBin = int( (_idx*_bins) / (_total-1 ) );
50 double currentTime;
51 {
52 std::chrono::high_resolution_clock::time_point now = std::chrono::high_resolution_clock::now();
53 std::chrono::duration< double > duration = std::chrono::duration_cast< std::chrono::duration< double > >( now - _startTime );
54 currentTime = duration.count();
55 }
56 if( int( currentTime*10 ) != int( _previousTime*10 ) )
57 {
58 printf( "\r[" );
59 for( int i=0 ; i<currentBin ; i++ ) printf( "." );
60 for( int i=currentBin ; i<_bins ; i++ ) printf( " " );
61 printf( "] %s: %.1f (s)\r" , _header , currentTime );
62 _previousTime = currentTime;
63 }
64}
65inline ProgressBar::~ProgressBar( void )
66{
67 double currentTime;
68 {
69 std::chrono::high_resolution_clock::time_point now = std::chrono::high_resolution_clock::now();
70 std::chrono::duration< double > duration = std::chrono::duration_cast< std::chrono::duration< double > >( now - _startTime );
71 currentTime = duration.count();
72 }
73 {
74 printf( "[" );
75 for( int i=0 ; i<_bins ; i++ ) printf( "." );
76 printf( "] %s: %.1f (s)\n" , _header , currentTime );
77 }
78}