2017-05-26 04:48:44 +08:00
/*
* Trace . cpp
*
* This source file is part of the FoundationDB open source project
*
* Copyright 2013 - 2018 Apple Inc . and the FoundationDB project authors
2018-02-22 02:25:11 +08:00
*
2017-05-26 04:48:44 +08:00
* Licensed under the Apache License , Version 2.0 ( the " License " ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
2018-02-22 02:25:11 +08:00
*
2017-05-26 04:48:44 +08:00
* http : //www.apache.org/licenses/LICENSE-2.0
2018-02-22 02:25:11 +08:00
*
2017-05-26 04:48:44 +08:00
* Unless required by applicable law or agreed to in writing , software
* distributed under the License is distributed on an " AS IS " BASIS ,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
* See the License for the specific language governing permissions and
* limitations under the License .
*/
# include "Trace.h"
2018-06-01 04:27:35 +08:00
# include "FileTraceLogWriter.h"
# include "XmlTraceLogFormatter.h"
2017-05-26 04:48:44 +08:00
# include "flow.h"
# include "DeterministicRandom.h"
# include <stdlib.h>
# include <stdarg.h>
# include <time.h>
# include "IThreadPool.h"
# include "ThreadHelper.actor.h"
# include "FastRef.h"
# include "EventTypes.actor.h"
# include "TDMetric.actor.h"
2017-10-03 09:43:11 +08:00
# include "MetricSample.h"
2017-05-26 04:48:44 +08:00
2018-06-29 05:59:23 +08:00
# ifdef _WIN32
# include <windows.h>
# undef max
# undef min
# endif
2017-05-26 04:48:44 +08:00
class DummyThreadPool : public IThreadPool , ReferenceCounted < DummyThreadPool > {
public :
~ DummyThreadPool ( ) { }
DummyThreadPool ( ) : thread ( NULL ) { }
Future < Void > getError ( ) {
return errors . getFuture ( ) ;
}
void addThread ( IThreadPoolReceiver * userData ) {
ASSERT ( ! thread ) ;
thread = userData ;
}
void post ( PThreadAction action ) {
try {
( * action ) ( thread ) ;
} catch ( Error & e ) {
errors . sendError ( e ) ;
} catch ( . . . ) {
errors . sendError ( unknown_error ( ) ) ;
}
}
Future < Void > stop ( ) {
return Void ( ) ;
}
void addref ( ) {
ReferenceCounted < DummyThreadPool > : : addref ( ) ;
}
void delref ( ) {
ReferenceCounted < DummyThreadPool > : : delref ( ) ;
}
private :
IThreadPoolReceiver * thread ;
Promise < Void > errors ;
} ;
struct SuppressionMap {
struct SuppressionInfo {
double endTime ;
int64_t suppressedEventCount ;
SuppressionInfo ( ) : endTime ( 0 ) , suppressedEventCount ( 0 ) { }
} ;
std : : map < std : : string , SuppressionInfo > suppressionMap ;
// Returns -1 if this event is suppressed
int64_t checkAndInsertSuppression ( std : : string type , double duration ) {
2018-05-03 01:44:38 +08:00
ASSERT ( g_network ) ;
2017-05-26 04:48:44 +08:00
if ( suppressionMap . size ( ) > = FLOW_KNOBS - > MAX_TRACE_SUPPRESSIONS ) {
TraceEvent ( SevWarnAlways , " ClearingTraceSuppressionMap " ) ;
suppressionMap . clear ( ) ;
}
auto insertion = suppressionMap . insert ( std : : make_pair ( type , SuppressionInfo ( ) ) ) ;
if ( insertion . second | | insertion . first - > second . endTime < = now ( ) ) {
int64_t suppressedEventCount = insertion . first - > second . suppressedEventCount ;
insertion . first - > second . endTime = now ( ) + duration ;
insertion . first - > second . suppressedEventCount = 0 ;
return suppressedEventCount ;
}
else {
+ + insertion . first - > second . suppressedEventCount ;
return - 1 ;
}
}
} ;
TraceBatch g_traceBatch ;
trace_clock_t g_trace_clock = TRACE_CLOCK_NOW ;
std : : set < StringRef > suppress ;
IRandom * trace_random = NULL ;
LatestEventCache latestEventCache ;
SuppressionMap suppressedEvents ;
2017-11-01 01:35:26 +08:00
static TransientThresholdMetricSample < Standalone < StringRef > > * traceEventThrottlerCache ;
2017-10-03 09:43:11 +08:00
static const char * TRACE_EVENT_THROTTLE_STARTING_TYPE = " TraceEventThrottle_ " ;
2018-07-02 02:30:37 +08:00
static int TRACE_LOG_MAX_PREOPEN_BUFFER = 1000000 ;
static int TRACE_EVENT_MAX_SIZE = 4000 ;
2017-10-03 09:43:11 +08:00
2017-05-26 04:48:44 +08:00
struct TraceLog {
2018-05-03 01:44:38 +08:00
private :
2018-06-27 05:37:21 +08:00
Reference < ITraceLogWriter > logWriter ;
Reference < ITraceLogFormatter > formatter ;
2018-06-01 04:27:35 +08:00
std : : vector < TraceEventFields > eventBuffer ;
int loggedLength ;
int bufferLength ;
2017-05-26 04:48:44 +08:00
bool opened ;
2018-03-28 23:21:22 +08:00
int64_t preopenOverflowCount ;
2017-05-26 04:48:44 +08:00
std : : string basename ;
std : : string logGroup ;
std : : string directory ;
std : : string processName ;
2018-05-03 01:44:38 +08:00
Optional < NetworkAddress > localAddress ;
2017-05-26 04:48:44 +08:00
Reference < IThreadPool > writer ;
uint64_t rollsize ;
Mutex mutex ;
EventMetricHandle < TraceEventNameID > SevErrorNames ;
EventMetricHandle < TraceEventNameID > SevWarnAlwaysNames ;
EventMetricHandle < TraceEventNameID > SevWarnNames ;
EventMetricHandle < TraceEventNameID > SevInfoNames ;
EventMetricHandle < TraceEventNameID > SevDebugNames ;
2018-05-03 01:44:38 +08:00
public :
bool logTraceEventMetrics ;
2017-05-26 04:48:44 +08:00
void initMetrics ( )
{
SevErrorNames . init ( LiteralStringRef ( " TraceEvents.SevError " ) ) ;
SevWarnAlwaysNames . init ( LiteralStringRef ( " TraceEvents.SevWarnAlways " ) ) ;
SevWarnNames . init ( LiteralStringRef ( " TraceEvents.SevWarn " ) ) ;
SevInfoNames . init ( LiteralStringRef ( " TraceEvents.SevInfo " ) ) ;
SevDebugNames . init ( LiteralStringRef ( " TraceEvents.SevDebug " ) ) ;
logTraceEventMetrics = true ;
}
struct BarrierList : ThreadSafeReferenceCounted < BarrierList > {
BarrierList ( ) : ntriggered ( 0 ) { }
void push ( ThreadFuture < Void > f ) {
MutexHolder h ( mutex ) ;
barriers . push_back ( f ) ;
}
void pop ( ) {
MutexHolder h ( mutex ) ;
unsafeTrigger ( 0 ) ;
barriers . pop_front ( ) ;
if ( ntriggered ) ntriggered - - ;
}
void triggerAll ( ) {
MutexHolder h ( mutex ) ;
for ( int i = ntriggered ; i < barriers . size ( ) ; i + + )
unsafeTrigger ( i ) ;
ntriggered = barriers . size ( ) ;
}
private :
Mutex mutex ;
Deque < ThreadFuture < Void > > barriers ;
int ntriggered ;
void unsafeTrigger ( int i ) {
auto b = ( ( ThreadSingleAssignmentVar < Void > * ) barriers [ i ] . getPtr ( ) ) ;
if ( ! b - > isReady ( ) )
b - > send ( Void ( ) ) ;
}
} ;
Reference < BarrierList > barriers ;
struct WriterThread : IThreadPoolReceiver {
2018-06-27 05:37:21 +08:00
WriterThread ( Reference < BarrierList > barriers , Reference < ITraceLogWriter > logWriter , Reference < ITraceLogFormatter > formatter )
2018-06-01 04:27:35 +08:00
: barriers ( barriers ) , logWriter ( logWriter ) , formatter ( formatter ) { }
2017-05-26 04:48:44 +08:00
virtual void init ( ) { }
2018-06-27 05:37:21 +08:00
Reference < ITraceLogWriter > logWriter ;
Reference < ITraceLogFormatter > formatter ;
2017-05-26 04:48:44 +08:00
Reference < BarrierList > barriers ;
struct Open : TypedAction < WriterThread , Open > {
virtual double getTimeEstimate ( ) { return 0 ; }
} ;
void action ( Open & o ) {
2018-06-01 04:27:35 +08:00
logWriter - > open ( ) ;
logWriter - > write ( formatter - > getHeader ( ) ) ;
2018-05-03 01:44:38 +08:00
}
struct Close : TypedAction < WriterThread , Close > {
virtual double getTimeEstimate ( ) { return 0 ; }
} ;
void action ( Close & c ) {
2018-06-01 04:27:35 +08:00
logWriter - > write ( formatter - > getFooter ( ) ) ;
logWriter - > close ( ) ;
2018-05-03 01:44:38 +08:00
}
2018-06-01 04:27:35 +08:00
struct Roll : TypedAction < WriterThread , Roll > {
virtual double getTimeEstimate ( ) { return 0 ; }
} ;
void action ( Roll & c ) {
logWriter - > write ( formatter - > getFooter ( ) ) ;
logWriter - > roll ( ) ;
logWriter - > write ( formatter - > getHeader ( ) ) ;
2017-05-26 04:48:44 +08:00
}
struct Barrier : TypedAction < WriterThread , Barrier > {
virtual double getTimeEstimate ( ) { return 0 ; }
} ;
void action ( Barrier & a ) {
barriers - > pop ( ) ;
}
struct WriteBuffer : TypedAction < WriterThread , WriteBuffer > {
2018-06-01 04:27:35 +08:00
std : : vector < TraceEventFields > events ;
2017-05-26 04:48:44 +08:00
2018-06-01 04:27:35 +08:00
WriteBuffer ( std : : vector < TraceEventFields > events ) : events ( events ) { }
2017-05-26 04:48:44 +08:00
virtual double getTimeEstimate ( ) { return .001 ; }
} ;
void action ( WriteBuffer & a ) {
2018-06-01 04:27:35 +08:00
for ( auto event : a . events ) {
2018-06-09 04:24:30 +08:00
event . validateFormat ( ) ;
2018-06-01 04:27:35 +08:00
logWriter - > write ( formatter - > formatEvent ( event ) ) ;
2017-05-26 04:48:44 +08:00
}
2018-06-01 04:27:35 +08:00
if ( FLOW_KNOBS - > TRACE_SYNC_ENABLED ) {
logWriter - > sync ( ) ;
2017-05-26 04:48:44 +08:00
}
}
} ;
2018-06-01 04:27:35 +08:00
TraceLog ( ) : bufferLength ( 0 ) , loggedLength ( 0 ) , opened ( false ) , preopenOverflowCount ( 0 ) , barriers ( new BarrierList ) , logTraceEventMetrics ( false ) , formatter ( new XmlTraceLogFormatter ( ) ) { }
2017-05-26 04:48:44 +08:00
bool isOpen ( ) const { return opened ; }
2018-05-03 01:44:38 +08:00
void open ( std : : string const & directory , std : : string const & processName , std : : string logGroup , std : : string const & timestamp , uint64_t rs , uint64_t maxLogsSize , Optional < NetworkAddress > na ) {
2017-05-26 04:48:44 +08:00
ASSERT ( ! writer & & ! opened ) ;
this - > directory = directory ;
this - > processName = processName ;
2018-06-29 06:28:58 +08:00
this - > logGroup = logGroup ;
2017-05-26 04:48:44 +08:00
this - > localAddress = na ;
basename = format ( " %s/%s.%s.%s " , directory . c_str ( ) , processName . c_str ( ) , timestamp . c_str ( ) , g_random - > randomAlphaNumeric ( 6 ) . c_str ( ) ) ;
2018-06-27 05:37:21 +08:00
logWriter = Reference < ITraceLogWriter > ( new FileTraceLogWriter ( directory , processName , basename , formatter - > getExtension ( ) , maxLogsSize , [ this ] ( ) { barriers - > triggerAll ( ) ; } ) ) ;
2017-05-26 04:48:44 +08:00
if ( g_network - > isSimulated ( ) )
writer = Reference < IThreadPool > ( new DummyThreadPool ( ) ) ;
else
writer = createGenericThreadPool ( ) ;
2018-06-01 04:27:35 +08:00
writer - > addThread ( new WriterThread ( barriers , logWriter , formatter ) ) ;
2017-05-26 04:48:44 +08:00
rollsize = rs ;
auto a = new WriterThread : : Open ;
writer - > post ( a ) ;
2018-05-03 01:44:38 +08:00
MutexHolder holder ( mutex ) ;
if ( g_network - > isSimulated ( ) ) {
// We don't support early trace logs in simulation.
// This is because we don't know if we're being simulated prior to the network being created, which causes two ambiguities:
//
// 1. We need to employ two different methods to determine the time of an event prior to the network starting for real-world and simulated runs.
// 2. Simulated runs manually insert the Machine field at TraceEvent creation time. Real-world runs add this field at write time.
//
// Without the ability to resolve the ambiguity, we've chosen to always favor the real-world approach and not support such events in simulation.
2018-06-01 04:27:35 +08:00
eventBuffer . clear ( ) ;
2018-05-03 01:44:38 +08:00
}
2018-06-29 06:28:58 +08:00
for ( TraceEventFields & fields : eventBuffer ) {
annotateEvent ( fields ) ;
}
2017-05-26 04:48:44 +08:00
opened = true ;
2018-03-28 23:21:22 +08:00
if ( preopenOverflowCount > 0 ) {
TraceEvent ( SevWarn , " TraceLogPreopenOverflow " ) . detail ( " OverflowEventCount " , preopenOverflowCount ) ;
preopenOverflowCount = 0 ;
}
2017-05-26 04:48:44 +08:00
}
2018-06-29 06:28:58 +08:00
void annotateEvent ( TraceEventFields & fields ) {
2018-05-03 01:44:38 +08:00
if ( localAddress . present ( ) ) {
fields . addField ( " Machine " , format ( " %d.%d.%d.%d:%d " , ( localAddress . get ( ) . ip > > 24 ) & 0xff , ( localAddress . get ( ) . ip > > 16 ) & 0xff , ( localAddress . get ( ) . ip > > 8 ) & 0xff , localAddress . get ( ) . ip & 0xff , localAddress . get ( ) . port ) ) ;
}
2018-06-09 04:24:30 +08:00
fields . addField ( " LogGroup " , logGroup ) ;
2018-06-29 06:28:58 +08:00
}
void writeEvent ( TraceEventFields fields , std : : string trackLatestKey , bool trackError ) {
MutexHolder hold ( mutex ) ;
if ( opened ) {
annotateEvent ( fields ) ;
}
2018-05-12 02:24:20 +08:00
2018-05-03 01:44:38 +08:00
if ( ! trackLatestKey . empty ( ) ) {
fields . addField ( " TrackLatestType " , " Original " ) ;
}
2018-07-02 02:30:37 +08:00
if ( ! isOpen ( ) & & ( preopenOverflowCount > 0 | | bufferLength + fields . sizeBytes ( ) > TRACE_LOG_MAX_PREOPEN_BUFFER ) ) {
2018-03-28 23:21:22 +08:00
+ + preopenOverflowCount ;
return ;
}
2017-05-26 04:48:44 +08:00
// FIXME: What if we are using way too much memory for buffer?
2018-06-01 04:27:35 +08:00
eventBuffer . push_back ( fields ) ;
bufferLength + = fields . sizeBytes ( ) ;
2018-05-03 01:44:38 +08:00
if ( trackError ) {
latestEventCache . setLatestError ( fields ) ;
}
if ( ! trackLatestKey . empty ( ) ) {
latestEventCache . set ( trackLatestKey , fields ) ;
}
2017-05-26 04:48:44 +08:00
}
void log ( int severity , const char * name , UID id , uint64_t event_ts )
{
if ( ! logTraceEventMetrics )
return ;
EventMetricHandle < TraceEventNameID > * m = NULL ;
switch ( severity )
{
case SevError : m = & SevErrorNames ; break ;
case SevWarnAlways : m = & SevWarnAlwaysNames ; break ;
case SevWarn : m = & SevWarnNames ; break ;
case SevInfo : m = & SevInfoNames ; break ;
case SevDebug : m = & SevDebugNames ; break ;
default :
break ;
}
if ( m ! = NULL )
{
( * m ) - > name = StringRef ( ( uint8_t * ) name , strlen ( name ) ) ;
( * m ) - > id = id . toString ( ) ;
( * m ) - > log ( event_ts ) ;
}
}
ThreadFuture < Void > flush ( ) {
2017-11-01 01:35:26 +08:00
traceEventThrottlerCache - > poll ( ) ;
2017-10-03 09:43:11 +08:00
2017-05-26 04:48:44 +08:00
MutexHolder hold ( mutex ) ;
bool roll = false ;
2018-06-01 04:27:35 +08:00
if ( ! eventBuffer . size ( ) ) return Void ( ) ; // SOMEDAY: maybe we still roll the tracefile here?
2017-05-26 04:48:44 +08:00
2018-06-01 04:27:35 +08:00
if ( rollsize & & bufferLength + loggedLength > rollsize ) // SOMEDAY: more conditions to roll
2017-05-26 04:48:44 +08:00
roll = true ;
2018-06-01 04:27:35 +08:00
auto a = new WriterThread : : WriteBuffer ( std : : move ( eventBuffer ) ) ;
loggedLength + = bufferLength ;
eventBuffer = std : : vector < TraceEventFields > ( ) ;
bufferLength = 0 ;
2017-05-26 04:48:44 +08:00
writer - > post ( a ) ;
if ( roll ) {
2018-06-01 04:27:35 +08:00
auto o = new WriterThread : : Roll ;
writer - > post ( o ) ;
2018-05-03 01:44:38 +08:00
std : : vector < TraceEventFields > events = latestEventCache . getAllUnsafe ( ) ;
2017-05-26 04:48:44 +08:00
for ( int idx = 0 ; idx < events . size ( ) ; idx + + ) {
if ( events [ idx ] . size ( ) > 0 ) {
2018-05-12 02:24:20 +08:00
TraceEventFields rolledFields ;
for ( auto itr = events [ idx ] . begin ( ) ; itr ! = events [ idx ] . end ( ) ; + + itr ) {
if ( itr - > first = = " Time " ) {
rolledFields . addField ( " Time " , format ( " %.6f " , ( g_trace_clock = = TRACE_CLOCK_NOW ) ? now ( ) : timer ( ) ) ) ;
rolledFields . addField ( " OriginalTime " , itr - > second ) ;
}
else if ( itr - > first = = " TrackLatestType " ) {
rolledFields . addField ( " TrackLatestType " , " Rolled " ) ;
2018-05-03 01:44:38 +08:00
}
2018-05-12 02:24:20 +08:00
else {
rolledFields . addField ( itr - > first , itr - > second ) ;
2018-05-03 01:44:38 +08:00
}
}
2017-05-26 04:48:44 +08:00
2018-06-01 04:27:35 +08:00
eventBuffer . push_back ( rolledFields ) ;
2017-05-26 04:48:44 +08:00
}
}
2018-06-01 04:27:35 +08:00
loggedLength = 0 ;
2017-05-26 04:48:44 +08:00
}
ThreadFuture < Void > f ( new ThreadSingleAssignmentVar < Void > ) ;
barriers - > push ( f ) ;
writer - > post ( new WriterThread : : Barrier ) ;
return f ;
}
void close ( ) {
if ( opened ) {
2018-05-03 01:44:38 +08:00
MutexHolder hold ( mutex ) ;
2017-05-26 04:48:44 +08:00
2018-05-03 01:44:38 +08:00
// Write remaining contents
2018-06-01 04:27:35 +08:00
auto a = new WriterThread : : WriteBuffer ( std : : move ( eventBuffer ) ) ;
loggedLength + = bufferLength ;
eventBuffer = std : : vector < TraceEventFields > ( ) ;
bufferLength = 0 ;
2018-05-03 01:44:38 +08:00
writer - > post ( a ) ;
2017-05-26 04:48:44 +08:00
2018-05-03 01:44:38 +08:00
auto c = new WriterThread : : Close ( ) ;
writer - > post ( c ) ;
ThreadFuture < Void > f ( new ThreadSingleAssignmentVar < Void > ) ;
barriers - > push ( f ) ;
writer - > post ( new WriterThread : : Barrier ) ;
f . getBlocking ( ) ;
2017-05-26 04:48:44 +08:00
opened = false ;
}
}
~ TraceLog ( ) {
close ( ) ;
2018-05-03 01:44:38 +08:00
if ( writer ) writer - > addref ( ) ; // FIXME: We are not shutting down the writer thread at all, because the ThreadPool shutdown mechanism is blocking (necessarily waits for current work items to finish) and we might not be able to finish everything.
2017-05-26 04:48:44 +08:00
}
} ;
NetworkAddress getAddressIndex ( ) {
// ahm
// if( g_network->isSimulated() )
// return g_simulator.getCurrentProcess()->address;
// else
return g_network - > getLocalAddress ( ) ;
}
// This does not check for simulation, and as such is not safe for external callers
2018-05-03 01:44:38 +08:00
void clearPrefix_internal ( std : : map < std : : string , TraceEventFields > & data , std : : string prefix ) {
2017-05-26 04:48:44 +08:00
auto first = data . lower_bound ( prefix ) ;
auto last = data . lower_bound ( strinc ( prefix ) . toString ( ) ) ;
data . erase ( first , last ) ;
}
void LatestEventCache : : clear ( std : : string prefix ) {
clearPrefix_internal ( latest [ getAddressIndex ( ) ] , prefix ) ;
}
void LatestEventCache : : clear ( ) {
latest [ getAddressIndex ( ) ] . clear ( ) ;
}
2018-06-27 05:37:21 +08:00
void LatestEventCache : : set ( std : : string tag , const TraceEventFields & contents ) {
2017-05-26 04:48:44 +08:00
latest [ getAddressIndex ( ) ] [ tag ] = contents ;
}
2018-05-03 01:44:38 +08:00
TraceEventFields LatestEventCache : : get ( std : : string tag ) {
2017-05-26 04:48:44 +08:00
return latest [ getAddressIndex ( ) ] [ tag ] ;
}
2018-05-03 01:44:38 +08:00
std : : vector < TraceEventFields > allEvents ( std : : map < std : : string , TraceEventFields > const & data ) {
std : : vector < TraceEventFields > all ;
2017-05-26 04:48:44 +08:00
for ( auto it = data . begin ( ) ; it ! = data . end ( ) ; it + + ) {
all . push_back ( it - > second ) ;
}
return all ;
}
2018-05-03 01:44:38 +08:00
std : : vector < TraceEventFields > LatestEventCache : : getAll ( ) {
2017-05-26 04:48:44 +08:00
return allEvents ( latest [ getAddressIndex ( ) ] ) ;
}
// if in simulation, all events from all machines will be returned
2018-05-03 01:44:38 +08:00
std : : vector < TraceEventFields > LatestEventCache : : getAllUnsafe ( ) {
std : : vector < TraceEventFields > all ;
2017-05-26 04:48:44 +08:00
for ( auto it = latest . begin ( ) ; it ! = latest . end ( ) ; + + it ) {
auto m = allEvents ( it - > second ) ;
all . insert ( all . end ( ) , m . begin ( ) , m . end ( ) ) ;
}
return all ;
}
2018-06-27 05:37:21 +08:00
void LatestEventCache : : setLatestError ( const TraceEventFields & contents ) {
2017-05-26 04:48:44 +08:00
if ( TraceEvent : : isNetworkThread ( ) ) { // The latest event cache doesn't track errors that happen on other threads
latestErrors [ getAddressIndex ( ) ] = contents ;
}
}
2018-05-03 01:44:38 +08:00
TraceEventFields LatestEventCache : : getLatestError ( ) {
2017-05-26 04:48:44 +08:00
return latestErrors [ getAddressIndex ( ) ] ;
}
static TraceLog g_traceLog ;
ThreadFuture < Void > flushTraceFile ( ) {
if ( ! g_traceLog . isOpen ( ) )
return Void ( ) ;
return g_traceLog . flush ( ) ;
}
void flushTraceFileVoid ( ) {
if ( g_network & & g_network - > isSimulated ( ) )
flushTraceFile ( ) ;
else {
flushTraceFile ( ) . getBlocking ( ) ;
}
}
void openTraceFile ( const NetworkAddress & na , uint64_t rollsize , uint64_t maxLogsSize , std : : string directory , std : : string baseOfBase , std : : string logGroup ) {
if ( g_traceLog . isOpen ( ) )
return ;
if ( directory . empty ( ) )
directory = " . " ;
if ( baseOfBase . empty ( ) )
baseOfBase = " trace " ;
std : : string baseName = format ( " %s.%03d.%03d.%03d.%03d.%d " , baseOfBase . c_str ( ) , ( na . ip > > 24 ) & 0xff , ( na . ip > > 16 ) & 0xff , ( na . ip > > 8 ) & 0xff , na . ip & 0xff , na . port ) ;
2018-05-03 01:44:38 +08:00
g_traceLog . open ( directory , baseName , logGroup , format ( " %lld " , time ( NULL ) ) , rollsize , maxLogsSize , ! g_network - > isSimulated ( ) ? na : Optional < NetworkAddress > ( ) ) ;
2017-05-26 04:48:44 +08:00
// FIXME
suppress . insert ( LiteralStringRef ( " TLogCommitDurable " ) ) ;
suppress . insert ( LiteralStringRef ( " StorageServerUpdate " ) ) ;
suppress . insert ( LiteralStringRef ( " TLogCommit " ) ) ;
suppress . insert ( LiteralStringRef ( " StorageServerDurable " ) ) ;
suppress . insert ( LiteralStringRef ( " ForgotVersionsBefore " ) ) ;
suppress . insert ( LiteralStringRef ( " FDData " ) ) ;
suppress . insert ( LiteralStringRef ( " FailureDetectionPoll " ) ) ;
suppress . insert ( LiteralStringRef ( " MasterProxyRate " ) ) ;
uncancellable ( recurring ( & flushTraceFile , FLOW_KNOBS - > TRACE_FLUSH_INTERVAL , TaskFlushTrace ) ) ;
g_traceBatch . dump ( ) ;
}
void initTraceEventMetrics ( ) {
g_traceLog . initMetrics ( ) ;
}
void closeTraceFile ( ) {
g_traceLog . close ( ) ;
}
bool traceFileIsOpen ( ) {
return g_traceLog . isOpen ( ) ;
}
bool TraceEvent : : isEnabled ( const char * type , Severity severity ) {
//if (!g_traceLog.isOpen()) return false;
2018-07-02 02:30:37 +08:00
if ( g_network & & severity < FLOW_KNOBS - > MIN_TRACE_SEVERITY ) return false ;
2017-05-26 04:48:44 +08:00
StringRef s ( ( const uint8_t * ) type , strlen ( type ) ) ;
return ! suppress . count ( s ) ;
}
2018-02-14 05:29:08 +08:00
TraceEvent : : TraceEvent ( const char * type , UID id ) : id ( id ) {
2017-05-26 04:48:44 +08:00
init ( SevInfo , type ) ;
detail ( " ID " , id ) ;
}
2018-02-14 05:29:08 +08:00
TraceEvent : : TraceEvent ( Severity severity , const char * type , UID id ) : id ( id ) {
2017-05-26 04:48:44 +08:00
init ( severity , type ) ;
detail ( " ID " , id ) ;
}
2018-02-14 05:29:08 +08:00
TraceEvent : : TraceEvent ( const char * type , const StringRef & zoneId ) {
2017-05-26 04:48:44 +08:00
id = UID ( hashlittle ( zoneId . begin ( ) , zoneId . size ( ) , 0 ) , 0 ) ;
init ( SevInfo , type ) ;
detailext ( " ID " , zoneId ) ;
}
2018-02-14 05:29:08 +08:00
TraceEvent : : TraceEvent ( Severity severity , const char * type , const StringRef & zoneId ) {
2017-05-26 04:48:44 +08:00
id = UID ( hashlittle ( zoneId . begin ( ) , zoneId . size ( ) , 0 ) , 0 ) ;
init ( severity , type ) ;
detailext ( " ID " , zoneId ) ;
}
2018-02-14 05:29:08 +08:00
TraceEvent : : TraceEvent ( const char * type , const Optional < Standalone < StringRef > > & zoneId ) {
2017-05-26 04:48:44 +08:00
id = zoneId . present ( ) ? UID ( hashlittle ( zoneId . get ( ) . begin ( ) , zoneId . get ( ) . size ( ) , 0 ) , 0 ) : UID ( - 1LL , 0 ) ;
init ( SevInfo , type ) ;
detailext ( " ID " , zoneId ) ;
}
2018-02-14 05:29:08 +08:00
TraceEvent : : TraceEvent ( Severity severity , const char * type , const Optional < Standalone < StringRef > > & zoneId ) {
2017-05-26 04:48:44 +08:00
id = zoneId . present ( ) ? UID ( hashlittle ( zoneId . get ( ) . begin ( ) , zoneId . get ( ) . size ( ) , 0 ) , 0 ) : UID ( - 1LL , 0 ) ;
init ( severity , type ) ;
detailext ( " ID " , zoneId ) ;
}
2018-02-14 05:29:08 +08:00
TraceEvent : : TraceEvent ( TraceInterval & interval , UID id ) : id ( id ) {
2018-02-17 08:01:19 +08:00
init ( interval . severity , interval ) ;
2017-05-26 04:48:44 +08:00
detail ( " ID " , id ) ;
}
2018-02-14 05:29:08 +08:00
TraceEvent : : TraceEvent ( Severity severity , TraceInterval & interval , UID id ) : id ( id ) {
2017-05-26 04:48:44 +08:00
init ( severity , interval ) ;
detail ( " ID " , id ) ;
}
bool TraceEvent : : init ( Severity severity , TraceInterval & interval ) {
bool result = init ( severity , interval . type ) ;
switch ( interval . count + + ) {
case 0 : { detail ( " BeginPair " , interval . pairID ) ; break ; }
case 1 : { detail ( " EndPair " , interval . pairID ) ; break ; }
default : ASSERT ( false ) ;
}
return result ;
}
bool TraceEvent : : init ( Severity severity , const char * type ) {
2018-02-14 05:29:08 +08:00
ASSERT ( * type ! = ' \0 ' ) ;
this - > type = type ;
2017-05-26 04:48:44 +08:00
this - > severity = severity ;
2018-06-28 06:51:30 +08:00
enabled = isEnabled ( type , severity ) ;
// Backstop to throttle very spammy trace events
if ( enabled & & g_network & & ! g_network - > isSimulated ( ) & & severity > SevDebug & & isNetworkThread ( ) ) {
if ( traceEventThrottlerCache - > isAboveThreshold ( StringRef ( ( uint8_t * ) type , strlen ( type ) ) ) ) {
enabled = false ;
TraceEvent ( SevWarnAlways , std : : string ( TRACE_EVENT_THROTTLE_STARTING_TYPE ) . append ( type ) . c_str ( ) ) . suppressFor ( 5 ) ;
}
else {
traceEventThrottlerCache - > addAndExpire ( StringRef ( ( uint8_t * ) type , strlen ( type ) ) , 1 , now ( ) + FLOW_KNOBS - > TRACE_EVENT_THROTTLER_SAMPLE_EXPIRY ) ;
}
}
if ( enabled ) {
tmpEventMetric = new DynamicEventMetric ( MetricNameRef ( ) ) ;
2018-03-28 23:21:22 +08:00
double time ;
if ( g_trace_clock = = TRACE_CLOCK_NOW ) {
2018-05-03 01:44:38 +08:00
if ( ! g_network ) {
static double preNetworkTime = timer_monotonic ( ) ;
time = preNetworkTime ;
}
else {
time = now ( ) ;
}
2018-03-28 23:21:22 +08:00
}
else {
time = timer ( ) ;
}
2018-05-03 01:44:38 +08:00
detail ( " Severity " , severity ) ;
detailf ( " Time " , " %.6f " , time ) ;
detail ( " Type " , type ) ;
if ( g_network & & g_network - > isSimulated ( ) ) {
NetworkAddress local = g_network - > getLocalAddress ( ) ;
detailf ( " Machine " , " %d.%d.%d.%d:%d " , ( local . ip > > 24 ) & 0xff , ( local . ip > > 16 ) & 0xff , ( local . ip > > 8 ) & 0xff , local . ip & 0xff , local . port ) ;
}
2018-06-28 06:51:30 +08:00
} else {
tmpEventMetric = nullptr ;
}
2017-05-26 04:48:44 +08:00
return enabled ;
}
TraceEvent & TraceEvent : : error ( class Error const & error , bool includeCancelled ) {
if ( enabled ) {
if ( error . code ( ) = = error_code_actor_cancelled & & ! includeCancelled ) {
// Suppress the entire message
enabled = false ;
} else {
2017-12-16 10:20:33 +08:00
if ( error . isInjectedFault ( ) ) {
2017-05-26 04:48:44 +08:00
detail ( " ErrorIsInjectedFault " , true ) ;
2017-12-16 10:20:33 +08:00
if ( severity = = SevError ) severity = SevWarnAlways ;
}
2017-09-29 03:35:03 +08:00
detail ( " Error " , error . name ( ) ) ;
detail ( " ErrorDescription " , error . what ( ) ) ;
2017-05-26 04:48:44 +08:00
detail ( " ErrorCode " , error . code ( ) ) ;
}
}
return * this ;
}
2018-06-27 05:37:21 +08:00
TraceEvent & TraceEvent : : detailImpl ( std : : string & & key , std : : string & & value , bool writeEventMetricField ) {
2017-05-26 04:48:44 +08:00
if ( enabled ) {
2018-05-03 01:44:38 +08:00
if ( value . size ( ) > 495 ) {
value = value . substr ( 0 , 495 ) + " ... " ;
2017-05-26 04:48:44 +08:00
}
2018-07-02 02:30:37 +08:00
2018-06-27 05:37:21 +08:00
if ( writeEventMetricField ) {
tmpEventMetric - > setField ( key . c_str ( ) , Standalone < StringRef > ( StringRef ( value ) ) ) ;
}
2018-05-03 01:44:38 +08:00
2018-06-27 05:37:21 +08:00
fields . addField ( std : : move ( key ) , std : : move ( value ) ) ;
2018-05-05 04:35:25 +08:00
2018-07-02 02:30:37 +08:00
if ( fields . sizeBytes ( ) > TRACE_EVENT_MAX_SIZE ) {
TraceEvent ( SevError , " TraceEventOverflow " ) . detail ( " TraceFirstBytes " , fields . toString ( ) . substr ( 300 ) ) ;
2018-05-05 06:19:56 +08:00
enabled = false ;
}
2017-05-26 04:48:44 +08:00
}
return * this ;
}
2018-05-05 04:35:25 +08:00
TraceEvent & TraceEvent : : detail ( std : : string key , std : : string value ) {
2018-06-27 05:37:21 +08:00
return detailImpl ( std : : move ( key ) , std : : move ( value ) ) ;
2018-05-05 04:35:25 +08:00
}
2018-05-03 01:44:38 +08:00
TraceEvent & TraceEvent : : detail ( std : : string key , double value ) {
2017-05-26 04:48:44 +08:00
if ( enabled )
2018-05-03 01:44:38 +08:00
tmpEventMetric - > setField ( key . c_str ( ) , value ) ;
2018-06-27 05:37:21 +08:00
return detailfNoMetric ( std : : move ( key ) , " %g " , value ) ;
2017-05-26 04:48:44 +08:00
}
2018-05-03 01:44:38 +08:00
TraceEvent & TraceEvent : : detail ( std : : string key , int value ) {
2017-05-26 04:48:44 +08:00
if ( enabled )
2018-05-03 01:44:38 +08:00
tmpEventMetric - > setField ( key . c_str ( ) , ( int64_t ) value ) ;
2018-06-27 05:37:21 +08:00
return detailfNoMetric ( std : : move ( key ) , " %d " , value ) ;
2017-05-26 04:48:44 +08:00
}
2018-05-03 01:44:38 +08:00
TraceEvent & TraceEvent : : detail ( std : : string key , unsigned value ) {
2017-05-26 04:48:44 +08:00
if ( enabled )
2018-05-03 01:44:38 +08:00
tmpEventMetric - > setField ( key . c_str ( ) , ( int64_t ) value ) ;
2018-06-27 05:37:21 +08:00
return detailfNoMetric ( std : : move ( key ) , " %u " , value ) ;
2017-05-26 04:48:44 +08:00
}
2018-05-03 01:44:38 +08:00
TraceEvent & TraceEvent : : detail ( std : : string key , long int value ) {
2017-05-26 04:48:44 +08:00
if ( enabled )
2018-05-03 01:44:38 +08:00
tmpEventMetric - > setField ( key . c_str ( ) , ( int64_t ) value ) ;
2018-06-27 05:37:21 +08:00
return detailfNoMetric ( std : : move ( key ) , " %ld " , value ) ;
2017-05-26 04:48:44 +08:00
}
2018-05-03 01:44:38 +08:00
TraceEvent & TraceEvent : : detail ( std : : string key , long unsigned int value ) {
2017-05-26 04:48:44 +08:00
if ( enabled )
2018-05-03 01:44:38 +08:00
tmpEventMetric - > setField ( key . c_str ( ) , ( int64_t ) value ) ;
2018-06-27 05:37:21 +08:00
return detailfNoMetric ( std : : move ( key ) , " %lu " , value ) ;
2017-05-26 04:48:44 +08:00
}
2018-05-03 01:44:38 +08:00
TraceEvent & TraceEvent : : detail ( std : : string key , long long int value ) {
2017-05-26 04:48:44 +08:00
if ( enabled )
2018-05-03 01:44:38 +08:00
tmpEventMetric - > setField ( key . c_str ( ) , ( int64_t ) value ) ;
2018-06-27 05:37:21 +08:00
return detailfNoMetric ( std : : move ( key ) , " %lld " , value ) ;
2017-05-26 04:48:44 +08:00
}
2018-05-03 01:44:38 +08:00
TraceEvent & TraceEvent : : detail ( std : : string key , long long unsigned int value ) {
2017-05-26 04:48:44 +08:00
if ( enabled )
2018-05-03 01:44:38 +08:00
tmpEventMetric - > setField ( key . c_str ( ) , ( int64_t ) value ) ;
2018-06-27 05:37:21 +08:00
return detailfNoMetric ( std : : move ( key ) , " %llu " , value ) ;
2017-05-26 04:48:44 +08:00
}
2018-06-27 05:37:21 +08:00
TraceEvent & TraceEvent : : detail ( std : : string key , const NetworkAddress & value ) {
return detailImpl ( std : : move ( key ) , value . toString ( ) ) ;
2017-05-26 04:48:44 +08:00
}
2018-06-27 05:37:21 +08:00
TraceEvent & TraceEvent : : detail ( std : : string key , const UID & value ) {
return detailf ( std : : move ( key ) , " %016llx " , value . first ( ) ) ; // SOMEDAY: Log entire value? We also do this explicitly in some "lists" in various individual TraceEvent calls
2017-05-26 04:48:44 +08:00
}
2018-05-03 01:44:38 +08:00
TraceEvent & TraceEvent : : detailext ( std : : string key , StringRef const & value ) {
2018-06-27 05:37:21 +08:00
return detailImpl ( std : : move ( key ) , value . printable ( ) ) ;
2017-05-26 04:48:44 +08:00
}
2018-06-27 05:37:21 +08:00
TraceEvent & TraceEvent : : detailext ( std : : string key , const Optional < Standalone < StringRef > > & value ) {
return detailImpl ( std : : move ( key ) , ( value . present ( ) ) ? value . get ( ) . printable ( ) : " [not set] " ) ;
2017-05-26 04:48:44 +08:00
}
2018-05-03 01:44:38 +08:00
TraceEvent & TraceEvent : : detailf ( std : : string key , const char * valueFormat , . . . ) {
2017-05-26 04:48:44 +08:00
if ( enabled ) {
va_list args ;
va_start ( args , valueFormat ) ;
2018-05-05 04:35:25 +08:00
std : : string value ;
int result = vsformat ( value , valueFormat , args ) ;
2017-05-26 04:48:44 +08:00
va_end ( args ) ;
2018-05-05 04:35:25 +08:00
ASSERT ( result > = 0 ) ;
2018-06-27 05:37:21 +08:00
detailImpl ( std : : move ( key ) , std : : move ( value ) ) ;
2017-05-26 04:48:44 +08:00
}
return * this ;
}
2018-06-27 05:37:21 +08:00
TraceEvent & TraceEvent : : detailfNoMetric ( std : : string & & key , const char * valueFormat , . . . ) {
2017-05-26 04:48:44 +08:00
if ( enabled ) {
va_list args ;
va_start ( args , valueFormat ) ;
2018-05-05 04:35:25 +08:00
std : : string value ;
int result = vsformat ( value , valueFormat , args ) ;
2017-05-26 04:48:44 +08:00
va_end ( args ) ;
2018-05-05 04:35:25 +08:00
ASSERT ( result > = 0 ) ;
2018-06-27 05:37:21 +08:00
detailImpl ( std : : move ( key ) , std : : move ( value ) , false ) ; // Do NOT write this detail to the event metric, caller of detailfNoMetric should do that itself with the appropriate value type
2017-05-26 04:48:44 +08:00
}
return * this ;
}
TraceEvent & TraceEvent : : trackLatest ( const char * trackingKey ) {
this - > trackingKey = trackingKey ;
ASSERT ( this - > trackingKey . size ( ) ! = 0 & & this - > trackingKey [ 0 ] ! = ' / ' & & this - > trackingKey [ 0 ] ! = ' \\ ' ) ;
return * this ;
}
TraceEvent & TraceEvent : : sample ( double sampleRate , bool logSampleRate ) {
if ( ! g_random ) {
sampleRate = 1.0 ;
}
else {
enabled = enabled & & g_random - > random01 ( ) < sampleRate ;
}
if ( enabled & & logSampleRate ) {
detail ( " SampleRate " , sampleRate ) ;
}
return * this ;
}
TraceEvent & TraceEvent : : suppressFor ( double duration , bool logSuppressedEventCount ) {
if ( g_network ) {
if ( isNetworkThread ( ) ) {
int64_t suppressedEventCount = suppressedEvents . checkAndInsertSuppression ( type , duration ) ;
enabled = enabled & & suppressedEventCount > = 0 ;
if ( enabled & & logSuppressedEventCount ) {
detail ( " SuppressedEventCount " , suppressedEventCount ) ;
}
}
else {
TraceEvent ( SevError , " SuppressionFromNonNetworkThread " ) ;
detail ( " __InvalidSuppression__ " , " " ) ; // Choosing a detail name that is unlikely to collide with other names
}
}
return * this ;
}
TraceEvent & TraceEvent : : GetLastError ( ) {
# ifdef _WIN32
return detailf ( " WinErrorCode " , " %x " , : : GetLastError ( ) ) ;
# elif defined(__unixish__)
return detailf ( " UnixErrorCode " , " %x " , errno ) . detail ( " UnixError " , strerror ( errno ) ) ;
# endif
}
2017-12-16 10:20:33 +08:00
// We're cheating in counting, as in practice, we only use {10,20,30,40}.
static_assert ( SevMaxUsed / 10 + 1 = = 5 , " Please bump eventCounts[5] to SevMaxUsed/10+1 " ) ;
unsigned long TraceEvent : : eventCounts [ 5 ] = { 0 , 0 , 0 , 0 , 0 } ;
unsigned long TraceEvent : : CountEventsLoggedAt ( Severity sev ) {
return TraceEvent : : eventCounts [ sev / 10 ] ;
}
2018-06-27 05:37:21 +08:00
TraceEvent & TraceEvent : : backtrace ( const std : : string & prefix ) {
2017-05-26 04:48:44 +08:00
if ( this - > severity = = SevError ) return * this ; // We'll backtrace this later in ~TraceEvent
2018-06-27 05:37:21 +08:00
return detail ( prefix + " Backtrace " , platform : : get_backtrace ( ) ) ;
2017-05-26 04:48:44 +08:00
}
TraceEvent : : ~ TraceEvent ( ) {
try {
if ( enabled ) {
if ( this - > severity = = SevError ) {
severity = SevInfo ;
backtrace ( ) ;
severity = SevError ;
}
2018-03-28 23:21:22 +08:00
TraceEvent : : eventCounts [ severity / 10 ] + + ;
2018-05-03 01:44:38 +08:00
g_traceLog . writeEvent ( fields , trackingKey , severity > SevWarnAlways ) ;
2018-03-28 23:21:22 +08:00
if ( g_traceLog . isOpen ( ) ) {
2017-05-26 04:48:44 +08:00
// Log Metrics
2018-02-14 05:29:08 +08:00
if ( g_traceLog . logTraceEventMetrics & & isNetworkThread ( ) ) {
2017-05-26 04:48:44 +08:00
// Get the persistent Event Metric representing this trace event and push the fields (details) accumulated in *this to it and then log() it.
// Note that if the event metric is disabled it won't actually be logged BUT any new fields added to it will be registered.
// If the event IS logged, a timestamp will be returned, if not then 0. Either way, pass it through to be used if possible
// in the Sev* event metrics.
uint64_t event_ts = DynamicEventMetric : : getOrCreateInstance ( format ( " TraceEvent.%s " , type ) , StringRef ( ) , true ) - > setFieldsAndLogFrom ( tmpEventMetric ) ;
g_traceLog . log ( severity , type , id , event_ts ) ;
}
}
}
} catch ( Error & e ) {
TraceEvent ( SevError , " TraceEventDestructorError " ) . error ( e , true ) ;
}
delete tmpEventMetric ;
}
thread_local bool TraceEvent : : networkThread = false ;
void TraceEvent : : setNetworkThread ( ) {
2017-11-01 01:35:26 +08:00
traceEventThrottlerCache = new TransientThresholdMetricSample < Standalone < StringRef > > ( FLOW_KNOBS - > TRACE_EVENT_METRIC_UNITS_PER_SAMPLE , FLOW_KNOBS - > TRACE_EVENT_THROTTLER_MSG_LIMIT ) ;
2017-05-26 04:48:44 +08:00
networkThread = true ;
}
bool TraceEvent : : isNetworkThread ( ) {
return networkThread ;
}
TraceInterval & TraceInterval : : begin ( ) {
pairID = trace_random - > randomUniqueID ( ) ;
count = 0 ;
return * this ;
}
void TraceBatch : : addEvent ( const char * name , uint64_t id , const char * location ) {
eventBatch . push_back ( EventInfo ( g_trace_clock = = TRACE_CLOCK_NOW ? now ( ) : timer ( ) , name , id , location ) ) ;
if ( g_network - > isSimulated ( ) | | FLOW_KNOBS - > AUTOMATIC_TRACE_DUMP )
dump ( ) ;
}
void TraceBatch : : addAttach ( const char * name , uint64_t id , uint64_t to ) {
attachBatch . push_back ( AttachInfo ( g_trace_clock = = TRACE_CLOCK_NOW ? now ( ) : timer ( ) , name , id , to ) ) ;
if ( g_network - > isSimulated ( ) | | FLOW_KNOBS - > AUTOMATIC_TRACE_DUMP )
dump ( ) ;
}
void TraceBatch : : addBuggify ( int activated , int line , std : : string file ) {
if ( g_network ) {
buggifyBatch . push_back ( BuggifyInfo ( g_trace_clock = = TRACE_CLOCK_NOW ? now ( ) : timer ( ) , activated , line , file ) ) ;
if ( g_network - > isSimulated ( ) | | FLOW_KNOBS - > AUTOMATIC_TRACE_DUMP )
dump ( ) ;
} else {
buggifyBatch . push_back ( BuggifyInfo ( 0 , activated , line , file ) ) ;
}
}
void TraceBatch : : dump ( ) {
if ( ! g_traceLog . isOpen ( ) )
return ;
2018-05-03 01:44:38 +08:00
std : : string machine ;
if ( g_network - > isSimulated ( ) ) {
NetworkAddress local = g_network - > getLocalAddress ( ) ;
machine = format ( " %d.%d.%d.%d:%d " , ( local . ip > > 24 ) & 0xff , ( local . ip > > 16 ) & 0xff , ( local . ip > > 8 ) & 0xff , local . ip & 0xff , local . port ) ;
}
2017-05-26 04:48:44 +08:00
for ( int i = 0 ; i < attachBatch . size ( ) ; i + + ) {
2018-05-03 01:44:38 +08:00
if ( g_network - > isSimulated ( ) ) {
attachBatch [ i ] . fields . addField ( " Machine " , machine ) ;
}
g_traceLog . writeEvent ( attachBatch [ i ] . fields , " " , false ) ;
2017-05-26 04:48:44 +08:00
}
for ( int i = 0 ; i < eventBatch . size ( ) ; i + + ) {
2018-05-03 01:44:38 +08:00
if ( g_network - > isSimulated ( ) ) {
eventBatch [ i ] . fields . addField ( " Machine " , machine ) ;
}
g_traceLog . writeEvent ( eventBatch [ i ] . fields , " " , false ) ;
2017-05-26 04:48:44 +08:00
}
for ( int i = 0 ; i < buggifyBatch . size ( ) ; i + + ) {
2018-05-03 01:44:38 +08:00
if ( g_network - > isSimulated ( ) ) {
buggifyBatch [ i ] . fields . addField ( " Machine " , machine ) ;
}
g_traceLog . writeEvent ( buggifyBatch [ i ] . fields , " " , false ) ;
2017-05-26 04:48:44 +08:00
}
g_traceLog . flush ( ) ;
eventBatch . clear ( ) ;
attachBatch . clear ( ) ;
buggifyBatch . clear ( ) ;
}
2018-05-03 01:44:38 +08:00
TraceBatch : : EventInfo : : EventInfo ( double time , const char * name , uint64_t id , const char * location ) {
fields . addField ( " Severity " , format ( " %d " , ( int ) SevInfo ) ) ;
fields . addField ( " Time " , format ( " %.6f " , time ) ) ;
fields . addField ( " Type " , name ) ;
fields . addField ( " ID " , format ( " %016 " PRIx64 , id ) ) ;
fields . addField ( " Location " , location ) ;
}
TraceBatch : : AttachInfo : : AttachInfo ( double time , const char * name , uint64_t id , uint64_t to ) {
fields . addField ( " Severity " , format ( " %d " , ( int ) SevInfo ) ) ;
fields . addField ( " Time " , format ( " %.6f " , time ) ) ;
fields . addField ( " Type " , name ) ;
fields . addField ( " ID " , format ( " %016 " PRIx64 , id ) ) ;
fields . addField ( " To " , format ( " %016 " PRIx64 , to ) ) ;
}
TraceBatch : : BuggifyInfo : : BuggifyInfo ( double time , int activated , int line , std : : string file ) {
fields . addField ( " Severity " , format ( " %d " , ( int ) SevInfo ) ) ;
fields . addField ( " Time " , format ( " %.6f " , time ) ) ;
fields . addField ( " Type " , " BuggifySection " ) ;
fields . addField ( " Activated " , format ( " %d " , activated ) ) ;
2018-06-27 05:37:21 +08:00
fields . addField ( " File " , std : : move ( file ) ) ;
2018-05-03 01:44:38 +08:00
fields . addField ( " Line " , format ( " %d " , line ) ) ;
}
2018-06-01 04:27:35 +08:00
TraceEventFields : : TraceEventFields ( ) : bytes ( 0 ) { }
2018-06-27 05:37:21 +08:00
void TraceEventFields : : addField ( const std : : string & key , const std : : string & value ) {
2018-06-01 04:27:35 +08:00
bytes + = key . size ( ) + value . size ( ) ;
2018-05-03 01:44:38 +08:00
fields . push_back ( std : : make_pair ( key , value ) ) ;
}
2018-06-27 05:37:21 +08:00
void TraceEventFields : : addField ( std : : string & & key , std : : string & & value ) {
bytes + = key . size ( ) + value . size ( ) ;
fields . push_back ( std : : make_pair ( std : : move ( key ) , std : : move ( value ) ) ) ;
}
2018-05-03 01:44:38 +08:00
size_t TraceEventFields : : size ( ) const {
return fields . size ( ) ;
2018-06-01 04:27:35 +08:00
}
size_t TraceEventFields : : sizeBytes ( ) const {
return bytes ;
2018-05-03 01:44:38 +08:00
}
TraceEventFields : : FieldIterator TraceEventFields : : begin ( ) const {
return fields . cbegin ( ) ;
}
TraceEventFields : : FieldIterator TraceEventFields : : end ( ) const {
return fields . cend ( ) ;
}
const TraceEventFields : : Field & TraceEventFields : : operator [ ] ( int index ) const {
ASSERT ( index > = 0 & & index < size ( ) ) ;
return fields . at ( index ) ;
}
bool TraceEventFields : : tryGetValue ( std : : string key , std : : string & outValue ) const {
for ( auto itr = begin ( ) ; itr ! = end ( ) ; + + itr ) {
if ( itr - > first = = key ) {
outValue = itr - > second ;
return true ;
}
}
return false ;
}
std : : string TraceEventFields : : getValue ( std : : string key ) const {
std : : string value ;
if ( tryGetValue ( key , value ) ) {
return value ;
}
else {
throw attribute_not_found ( ) ;
}
}
std : : string TraceEventFields : : toString ( ) const {
std : : string str ;
bool first = true ;
for ( auto itr = begin ( ) ; itr ! = end ( ) ; + + itr ) {
if ( ! first ) {
str + = " , " ;
}
first = false ;
str + = format ( " \" %s \" = \" %s \" " , itr - > first . c_str ( ) , itr - > second . c_str ( ) ) ;
}
return str ;
}
2018-06-09 04:24:30 +08:00
2018-06-09 07:22:22 +08:00
bool validateField ( const char * key , bool allowUnderscores ) {
if ( ( key [ 0 ] < ' A ' | | key [ 0 ] > ' Z ' ) & & key [ 0 ] ! = ' _ ' ) {
2018-06-09 04:24:30 +08:00
return false ;
}
const char * underscore = strchr ( key , ' _ ' ) ;
2018-06-09 07:22:22 +08:00
while ( underscore ) {
if ( ! allowUnderscores | | ( ( underscore [ 1 ] < ' A ' | | underscore [ 1 ] > ' Z ' ) & & key [ 0 ] ! = ' _ ' & & key [ 0 ] ! = ' \0 ' ) ) {
2018-06-09 04:24:30 +08:00
return false ;
}
2018-06-09 07:22:22 +08:00
2018-06-09 04:24:30 +08:00
underscore = strchr ( & underscore [ 1 ] , ' _ ' ) ;
}
return true ;
}
void TraceEventFields : : validateFormat ( ) const {
if ( g_network & & g_network - > isSimulated ( ) ) {
for ( Field field : fields ) {
if ( ! validateField ( field . first . c_str ( ) , false ) ) {
fprintf ( stderr , " Trace event detail name `%s' is invalid in: \n \t %s \n " , field . first . c_str ( ) , toString ( ) . c_str ( ) ) ;
}
if ( field . first = = " Type " & & ! validateField ( field . second . c_str ( ) , true ) ) {
fprintf ( stderr , " Trace event detail Type `%s' is invalid \n " , field . second . c_str ( ) ) ;
}
}
}
2018-06-29 06:28:58 +08:00
}