This repository was archived by the owner on Mar 24, 2025. It is now read-only.
forked from fastbuild/fastbuild
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathFLog.cpp
383 lines (322 loc) · 11.3 KB
/
FLog.cpp
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
// FLog
//------------------------------------------------------------------------------
// Includes
//------------------------------------------------------------------------------
#include "Tools/FBuild/FBuildCore/PrecompiledHeader.h"
#include "FLog.h"
#include "Tools/FBuild/FBuildCore/WorkerPool/WorkerThread.h"
#include "Tools/FBuild/FBuildCore/FBuild.h"
#include "Core/Env/Types.h"
#include "Core/FileIO/FileStream.h"
#include "Core/Process/Mutex.h"
#include "Core/Process/Process.h"
#include "Core/Profile/Profile.h"
#include "Core/Time/Time.h"
#include "Core/Tracing/Tracing.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#if defined( __WINDOWS__ ) && defined( DEBUG )
#include <windows.h> // for OutputDebugStringA
#endif
#if defined( __LINUX__ ) || defined( __APPLE__ )
// TODO:LINUX TODO:MAC Clean up this _itoa_s mess
void _itoa_s( int value, char * buffer, int bufferSize, int base )
{
(void)bufferSize;
ASSERT( base == 10 ); (void)base;
sprintf( buffer, "%i", value );
}
#endif
// Static Data
//------------------------------------------------------------------------------
/*static*/ bool FLog::s_ShowInfo = false;
/*static*/ bool FLog::s_ShowBuildCommands = true;
/*static*/ bool FLog::s_ShowErrors = true;
/*static*/ bool FLog::s_ShowProgress = false;
/*static*/ bool FLog::s_MonitorEnabled = false;
/*static*/ AStackString< 64 > FLog::m_ProgressText;
static AStackString< 72 > g_ClearLineString( "\r \r" );
static AStackString< 64 > g_OutputString( "\r99.9 % [....................] " );
static Mutex g_MonitorMutex;
static FileStream * g_MonitorFileStream = nullptr;
// Defines
//------------------------------------------------------------------------------
#define FBUILD_MONITOR_VERSION uint32_t( 1 )
// Info
//------------------------------------------------------------------------------
/*static*/ void FLog::Info( const char * formatString, ... )
{
AStackString< 8192 > buffer;
va_list args;
va_start(args, formatString);
buffer.VFormat( formatString, args );
va_end( args );
Output( "Info:", buffer.Get() );
}
// Build
//------------------------------------------------------------------------------
/*static*/ void FLog::Build( const char * formatString, ... )
{
AStackString< 8192 > buffer;
va_list args;
va_start(args, formatString);
buffer.VFormat( formatString, args );
va_end( args );
Tracing::Output( buffer.Get() );
}
// Monitor
//------------------------------------------------------------------------------
/*static*/ void FLog::Monitor( const char * formatString, ... )
{
// Is monitoring enabled?
if ( g_MonitorFileStream == nullptr )
{
return; // No - nothing to do
}
PROFILE_SECTION( "FLog::Monitor" )
AStackString< 1024 > buffer;
va_list args;
va_start( args, formatString );
buffer.VFormat( formatString, args );
va_end( args );
AStackString< 1024 > finalBuffer;
finalBuffer.Format( "%" PRIu64 " %s", Time::GetCurrentFileTime(), buffer.Get() );
MutexHolder lock( g_MonitorMutex );
g_MonitorFileStream->WriteBuffer( finalBuffer.Get(), finalBuffer.GetLength() );
}
// BuildDirect
//------------------------------------------------------------------------------
/*static*/ void FLog::BuildDirect( const char * message )
{
Tracing::Output( message );
}
// Warning
//------------------------------------------------------------------------------
/*static*/ void FLog::Warning( const char * formatString, ... )
{
AStackString< 8192 > buffer;
va_list args;
va_start(args, formatString);
buffer.VFormat( formatString, args );
va_end( args );
Output( "Warning:", buffer.Get() );
}
// Error
//------------------------------------------------------------------------------
/*static*/ void FLog::Error( const char * formatString, ... )
{
// we prevent output here, rather than where the macros is inserted
// as an error being output is not the normal code path, and a check
// before calling this function would bloat the code
if ( FLog::ShowErrors() == false )
{
return;
}
AStackString< 8192 > buffer;
va_list args;
va_start(args, formatString);
buffer.VFormat( formatString, args );
va_end( args );
Output( "Error:", buffer.Get() );
}
// ErrorDirect
//------------------------------------------------------------------------------
/*static*/ void FLog::ErrorDirect( const char * message )
{
if ( FLog::ShowErrors() == false )
{
return;
}
Tracing::Output( message );
}
// Output - write to stdout and debugger
//------------------------------------------------------------------------------
/*static*/ void FLog::Output( const char * type, const char * message )
{
if( type == nullptr )
{
OUTPUT( "%s", message );
return;
}
AStackString< 1024 > buffer( message );
if ( buffer.IsEmpty() )
{
return;
}
if ( buffer[ buffer.GetLength() - 1 ] != '\n' )
{
buffer += '\n';
}
OUTPUT( "%s", buffer.Get() );
}
// StartBuild
//------------------------------------------------------------------------------
/*static*/ void FLog::StartBuild()
{
if ( FBuild::Get().GetOptions().m_EnableMonitor )
{
// TODO:B Change the monitoring log path
// - it's not uniquified per instance
// - we already have a .fbuild.tmp folder we should use
AStackString<> fullPath;
FBuild::GetTempDir( fullPath );
fullPath += "FastBuild";
if ( FileIO::DirectoryCreate( fullPath ) )
{
fullPath += "/FastBuildLog.log";
ASSERT( g_MonitorFileStream == nullptr );
MutexHolder lock( g_MonitorMutex );
g_MonitorFileStream = new FileStream();
if ( g_MonitorFileStream->Open( fullPath.Get(), FileStream::WRITE_ONLY ) )
{
Monitor( "START_BUILD %u %u\n", FBUILD_MONITOR_VERSION, Process::GetCurrentId() );
}
else
{
Error( "Couldn't open monitor file for write at %s", fullPath.Get() );
delete g_MonitorFileStream;
g_MonitorFileStream = nullptr;
}
}
else
{
Error( "Couldn't create directory for monitor file at %s", fullPath.Get() );
}
}
Tracing::AddCallbackOutput( &TracingOutputCallback );
}
// StopBuild
//------------------------------------------------------------------------------
/*static*/ void FLog::StopBuild()
{
if ( g_MonitorFileStream )
{
MutexHolder lock( g_MonitorMutex );
Monitor( "STOP_BUILD\n" );
g_MonitorFileStream->Close();
delete g_MonitorFileStream;
g_MonitorFileStream = nullptr;
}
Tracing::RemoveCallbackOutput( &TracingOutputCallback );
if ( s_ShowProgress )
{
fputs( g_ClearLineString.Get(), stdout );
m_ProgressText.Clear();
}
}
// OutputProgress
//------------------------------------------------------------------------------
/*static*/ void FLog::OutputProgress( float time,
float percentage,
uint32_t numJobs,
uint32_t numJobsActive,
uint32_t numJobsDist,
uint32_t numJobsDistActive )
{
PROFILE_FUNCTION
ASSERT( s_ShowProgress );
// format progress % (we know it never goes above 99.9%)
uint32_t intPerc = (uint32_t)( percentage * 10.0f ); // 0 to 999
uint32_t hundreds = ( intPerc / 100 ); intPerc -= ( hundreds * 100 );
uint32_t tens = ( intPerc / 10 ); intPerc -= ( tens * 10 );
uint32_t ones = intPerc;
m_ProgressText = g_OutputString;
m_ProgressText[ 1 ] = ( hundreds > 0 ) ? ( '0' + (char)hundreds ) : ' ';
m_ProgressText[ 2 ] = '0' + (char)tens;
m_ProgressText[ 4 ] = '0' + (char)ones;
// 20 column output (100/20 = 5% per char)
uint32_t numStarsDone = (uint32_t)( percentage * 20.0f / 100.0f ); // 20 columns
for ( uint32_t i=0; i<20; ++i )
{
m_ProgressText[ 9 + i ] = ( i < numStarsDone ) ? '*' : '-';
}
// time " [%um] %02us"
uint32_t timeTakenMinutes = uint32_t( time / 60.0f );
uint32_t timeTakenSeconds = (uint32_t)time - ( timeTakenMinutes * 60 );
if ( timeTakenMinutes > 0 )
{
char buffer[ 8 ];
_itoa_s( timeTakenMinutes, buffer, 8, 10 );
m_ProgressText += buffer;
m_ProgressText.Append( "m ", 2 );
}
char buffer[ 8 ];
_itoa_s( timeTakenSeconds, buffer, 8, 10 );
if ( timeTakenSeconds < 10 ) { m_ProgressText += '0'; }
m_ProgressText += buffer;
m_ProgressText += 's';
// active/available jobs " (%u/%u)"
m_ProgressText.Append( " (", 2 );
_itoa_s( numJobsActive, buffer, 8, 10 );
m_ProgressText += buffer;
m_ProgressText += '/';
_itoa_s( numJobsActive + numJobs, buffer, 8, 10 );
m_ProgressText += buffer;
m_ProgressText += ')';
// distributed status "+(%u/%u)"
if ( FBuild::Get().GetOptions().m_AllowDistributed )
{
m_ProgressText.Append( "+(", 2 );
_itoa_s( numJobsDistActive, buffer, 8, 10 );
m_ProgressText += buffer;
m_ProgressText += '/';
_itoa_s( numJobsDistActive + numJobsDist, buffer, 8, 10 );
m_ProgressText += buffer;
m_ProgressText += ')';
}
m_ProgressText.Append( " \b\b\b", 7 ); // extra whitespace when string shortens
// if build aborting, override all output
if ( FBuild::Get().GetStopBuild() )
{
m_ProgressText.Format( "\rBUILD ABORTED - STOPPING (%u) ", numJobsActive );
m_ProgressText += " \b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b";
}
// animation
static int animIndex = 0;
static char anim[] = { '\\', '|', '/', '-', '\\', '|', '/', '-' };
m_ProgressText += anim[ ( animIndex++ ) % 8 ];
// finally print it
fwrite( m_ProgressText.Get(), 1, m_ProgressText.GetLength(), stdout );
}
// ClearProgress
//------------------------------------------------------------------------------
/*static*/ void FLog::ClearProgress()
{
fwrite( g_ClearLineString.Get(), 1, g_ClearLineString.GetLength(), stdout );
}
// TracingOutputCallback
//------------------------------------------------------------------------------
/*static*/ bool FLog::TracingOutputCallback( const char * message )
{
uint32_t threadIndex = WorkerThread::GetThreadIndex();
AStackString< 2048 > tmp;
if ( s_ShowProgress )
{
// clear previous progress message
tmp += g_ClearLineString;
}
// print output and then progress
if ( threadIndex > 0 )
{
char buffer[ 8 ];
_itoa_s( threadIndex, buffer, 8, 10 );
tmp += buffer;
tmp += '>';
if ( threadIndex < 10 )
{
tmp += ' '; // keep output aligned when there are > 9 threads
}
}
tmp += message;
// output to debugger if present
#ifdef DEBUG
#ifdef __WINDOWS__
OutputDebugStringA( message );
#endif
#endif
tmp += m_ProgressText;
fwrite( tmp.Get(), 1, tmp.GetLength(), stdout );
return false; // tell tracing not to output it again
}
//------------------------------------------------------------------------------