mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
81 lines
2 KiB
C++
81 lines
2 KiB
C++
#ifndef BROFILER_H_
|
|
#define BROFILER_H_
|
|
|
|
#include <map>
|
|
#include <utility>
|
|
#include <list>
|
|
#include <Stmt.h>
|
|
|
|
|
|
/**
|
|
* A simple class for managing stats of Bro script coverage across Bro runs.
|
|
*/
|
|
class Brofiler {
|
|
public:
|
|
Brofiler();
|
|
virtual ~Brofiler();
|
|
|
|
/**
|
|
* Imports Bro script Stmt usage information from file pointed to by
|
|
* environment variable BRO_PROFILER_FILE.
|
|
*
|
|
* @return: true if usage info was read, otherwise false.
|
|
*/
|
|
bool ReadStats();
|
|
|
|
/**
|
|
* Combines usage stats from current run with any read from ReadStats(),
|
|
* then writes information to file pointed to by environment variable
|
|
* BRO_PROFILER_FILE. If the value of that env. variable ends with
|
|
* ".XXXXXX" (exactly 6 X's), then it is first passed through mkstemp
|
|
* to get a unique file.
|
|
*
|
|
* @return: true when usage info is written, otherwise false.
|
|
*/
|
|
bool WriteStats();
|
|
|
|
void SetDelim(char d) { delim = d; }
|
|
|
|
void IncIgnoreDepth() { ignoring++; }
|
|
void DecIgnoreDepth() { ignoring--; }
|
|
|
|
void AddStmt(const Stmt* s) { if ( ignoring == 0 ) stmts.push_back(s); }
|
|
|
|
private:
|
|
/**
|
|
* The current, global Brofiler instance creates this list at parse-time.
|
|
*/
|
|
list<const Stmt*> stmts;
|
|
|
|
/**
|
|
* Indicates whether new statments will not be considered as part of
|
|
* coverage statistics because it was marked with the @no-test tag.
|
|
*/
|
|
unsigned int ignoring;
|
|
|
|
/**
|
|
* This maps Stmt location-desc pairs to the total number of times that
|
|
* Stmt has been executed. The map can be initialized from a file at
|
|
* startup time and modified at shutdown time before writing back
|
|
* to a file.
|
|
*/
|
|
map<pair<string, string>, uint64> usage_map;
|
|
|
|
/**
|
|
* The character to use to delimit Brofiler output files. Default is '\t'.
|
|
*/
|
|
char delim;
|
|
|
|
/**
|
|
* A canonicalization routine for Stmt descriptions containing characters
|
|
* that don't agree with the output format of Brofiler.
|
|
*/
|
|
struct canonicalize_desc {
|
|
void operator() (char& c)
|
|
{
|
|
if ( c == '\n' ) c = ' ';
|
|
}
|
|
};
|
|
};
|
|
|
|
#endif /* BROFILER_H_ */
|