2
2
3
3
#include " mull/Bitcode.h"
4
4
#include " mull/Diagnostics/Diagnostics.h"
5
- #include " mull/ExecutionResult.h"
6
5
#include " mull/Result.h"
7
6
8
7
#include < llvm/IR/DebugInfoMetadata.h>
@@ -82,13 +81,15 @@ void mull::SQLiteReporter::reportResults(const Result &result) {
82
81
sqlite3_reset (insertInformationStmt);
83
82
}
84
83
85
- const char *query = " INSERT INTO mutant VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8, ?9, ?10)" ;
84
+ const char *query =
85
+ " INSERT INTO mutant VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8, ?9, ?10, ?11, ?12)" ;
86
86
sqlite3_stmt *stmt;
87
87
sqlite3_prepare (database, query, -1 , &stmt, nullptr );
88
88
89
89
for (auto &mutationResult : result.getMutationResults ()) {
90
90
auto mutant = mutationResult->getMutant ();
91
- auto &location = mutant->getSourceLocation ();
91
+ auto location = mutant->getSourceLocation ();
92
+ auto endLocation = mutant->getEndLocation ();
92
93
93
94
ExecutionResult execution = mutationResult->getExecutionResult ();
94
95
@@ -100,11 +101,12 @@ void mull::SQLiteReporter::reportResults(const Result &result) {
100
101
sqlite3_bind_text (stmt, index ++, location.directory .c_str (), -1 , SQLITE_TRANSIENT);
101
102
sqlite3_bind_int (stmt, index ++, location.line );
102
103
sqlite3_bind_int (stmt, index ++, location.column );
104
+ sqlite3_bind_int (stmt, index ++, endLocation.line );
105
+ sqlite3_bind_int (stmt, index ++, endLocation.column );
103
106
sqlite3_bind_int (stmt, index ++, execution.status );
104
107
sqlite3_bind_int64 (stmt, index ++, execution.runningTime );
105
108
sqlite3_bind_text (stmt, index ++, execution.stdoutOutput .c_str (), -1 , SQLITE_TRANSIENT);
106
109
sqlite3_bind_text (stmt, index ++, execution.stderrOutput .c_str (), -1 , SQLITE_TRANSIENT);
107
-
108
110
sqlite3_step (stmt);
109
111
sqlite3_clear_bindings (stmt);
110
112
sqlite3_reset (stmt);
@@ -118,20 +120,22 @@ void mull::SQLiteReporter::reportResults(const Result &result) {
118
120
}
119
121
120
122
static const char *CreateTables = R"CreateTables(
121
- CREATE TABLE mutant (
123
+ CREATE TABLE IF NOT EXISTS mutant (
122
124
mutant_id TEXT,
123
125
mutator TEXT,
124
126
filename TEXT,
125
127
directory TEXT,
126
128
line_number INT,
127
129
column_number INT,
130
+ end_line_number INT,
131
+ end_column_number INT,
128
132
status INT,
129
133
duration INT,
130
134
stdout TEXT,
131
135
stderr TEXT
132
136
);
133
137
134
- CREATE TABLE information (
138
+ CREATE TABLE IF NOT EXISTS information (
135
139
key TEXT,
136
140
value TEXT
137
141
);
@@ -140,3 +144,60 @@ CREATE TABLE information (
140
144
static void createTables (mull::Diagnostics &diagnostics, sqlite3 *database) {
141
145
sqlite_exec (diagnostics, database, CreateTables);
142
146
}
147
+
148
+ RawReport mull::SQLiteReporter::loadRawReport (const std::string &databasePath) {
149
+ sqlite3 *database;
150
+ sqlite3_open (databasePath.c_str (), &database);
151
+
152
+ std::unordered_map<std::string, std::string> information;
153
+ sqlite3_stmt *selectInfoStmt;
154
+ sqlite3_prepare (database, " select * from information" , -1 , &selectInfoStmt, nullptr );
155
+ while (sqlite3_step (selectInfoStmt) == SQLITE_ROW) {
156
+ auto key = sqlite3_column_text (selectInfoStmt, 0 );
157
+ auto value = sqlite3_column_text (selectInfoStmt, 1 );
158
+ information[reinterpret_cast <char const *>(key)] = reinterpret_cast <char const *>(value);
159
+ }
160
+ sqlite3_finalize (selectInfoStmt);
161
+
162
+ std::unordered_map<std::string, std::vector<ExecutionResult>> mapping;
163
+
164
+ sqlite3_stmt *selectMutantsStmt;
165
+ sqlite3_prepare (database, " select * from mutant" , -1 , &selectMutantsStmt, nullptr );
166
+ while (sqlite3_step (selectMutantsStmt) == SQLITE_ROW) {
167
+ int index = 0 ;
168
+ std::string mutant_id =
169
+ reinterpret_cast <char const *>(sqlite3_column_text (selectInfoStmt, index ++));
170
+ std::string mutator =
171
+ reinterpret_cast <char const *>(sqlite3_column_text (selectInfoStmt, index ++));
172
+ std::string filename =
173
+ reinterpret_cast <char const *>(sqlite3_column_text (selectInfoStmt, index ++));
174
+ std::string directory =
175
+ reinterpret_cast <char const *>(sqlite3_column_text (selectInfoStmt, index ++));
176
+ auto line_number = sqlite3_column_int (selectInfoStmt, index ++);
177
+ auto column_number = sqlite3_column_int (selectInfoStmt, index ++);
178
+ auto end_line_number = sqlite3_column_int (selectInfoStmt, index ++);
179
+ auto end_column_number = sqlite3_column_int (selectInfoStmt, index ++);
180
+ auto status = sqlite3_column_int (selectInfoStmt, index ++);
181
+ auto duration = sqlite3_column_int64 (selectInfoStmt, index ++);
182
+ std::string stdout_string =
183
+ reinterpret_cast <char const *>(sqlite3_column_text (selectInfoStmt, index ++));
184
+ std::string stderr_string =
185
+ reinterpret_cast <char const *>(sqlite3_column_text (selectInfoStmt, index ++));
186
+
187
+ ExecutionResult executionResult;
188
+ executionResult.runningTime = duration;
189
+ executionResult.stdoutOutput = stdout_string;
190
+ executionResult.stderrOutput = stderr_string;
191
+ executionResult.status = static_cast <ExecutionStatus>(status);
192
+
193
+ SourceLocation location (directory, filename, directory, filename, line_number, column_number);
194
+ SourceLocation endLocation (
195
+ directory, filename, directory, filename, end_line_number, end_column_number);
196
+ mapping[mutant_id].push_back (executionResult);
197
+ }
198
+ sqlite3_finalize (selectMutantsStmt);
199
+
200
+ sqlite3_close (database);
201
+
202
+ return { .info = std::move (information), .executionResults = std::move (mapping) };
203
+ }
0 commit comments