-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.cc
182 lines (153 loc) · 4.18 KB
/
log.cc
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
#include "config.h"
#include <iostream>
#include <pqxx/pqxx>
#ifndef HAVE_BOOST_REGEX
#include <regex>
#else
#include <boost/regex.hpp>
using boost::regex;
using boost::smatch;
using boost::regex_match;
#endif
#include <string>
extern "C" {
#include <unistd.h>
}
#include "log.hh"
#include "schema.hh"
#include "gitrev.h"
#include "impedance.hh"
using namespace std;
using namespace pqxx;
struct stats_visitor : prod_visitor {
int nodes = 0;
int maxlevel = 0;
long retries = 0;
map<const char*, long> production_stats;
virtual void visit(struct prod *p) {
nodes++;
if (p->level > maxlevel)
maxlevel = p->level;
production_stats[typeid(*p).name()]++;
retries += p->retries;
}
void report() {
cerr << "production statistics" << endl;
vector<pair<const char *, long> > report;
for (auto p : production_stats)
report.push_back(p);
stable_sort(report.begin(), report.end(),
[](const pair<std::string, long> &a,
const pair<std::string, long> &b)
{ return a.second > b.second; });
for (auto p : report) {
cerr << p.second << "\t" << p.first << endl;
}
}
};
void stats_collecting_logger::generated(prod &query)
{
queries++;
stats_visitor v;
query.accept(&v);
sum_nodes += v.nodes;
sum_height += v.maxlevel;
sum_retries += v.retries;
}
void cerr_logger::report()
{
cerr << endl << "queries: " << queries << endl;
// << " (" << 1000.0*query_count/gen_time.count() << " gen/s, "
// << 1000.0*query_count/query_time.count() << " exec/s)" << endl;
cerr << "AST stats (avg): height = " << sum_height/queries
<< " nodes = " << sum_nodes/queries << endl;
vector<pair<std::string, long> > report;
for (auto e : errors) {
report.push_back(e);
}
stable_sort(report.begin(), report.end(),
[](const pair<std::string, long> &a,
const pair<std::string, long> &b)
{ return a.second > b.second; });
long err_count = 0;
for (auto e : report) {
err_count += e.second;
cerr << e.second << "\t" << e.first << endl;
}
cerr << "error rate: " << (float)err_count/(queries) << endl;
impedance::report();
}
void cerr_logger::generated(prod &p)
{
stats_collecting_logger::generated(p);
if ((10*columns-1) == queries%(10*columns))
report();
}
void cerr_logger::executed(prod &query)
{
(void)query;
if (columns-1 == (queries%columns)) {
cerr << endl;
}
cerr << ".";
}
void cerr_logger::error(prod &query, const dut::failure &e)
{
(void)query;
istringstream err(e.what());
string line;
if (columns-1 == (queries%columns)) {
cerr << endl;
}
getline(err, line);
errors[line]++;
if (dynamic_cast<const dut::timeout *>(&e))
cerr << "t";
else if (dynamic_cast<const dut::syntax *>(&e))
cerr << "s";
else if (dynamic_cast<const dut::broken *>(&e))
cerr << "c";
else
cerr << "e";
}
pqxx_logger::pqxx_logger(std::string target, std::string conninfo, struct schema &s)
{
c = make_shared<pqxx::connection>(conninfo);
work w(*c);
w.exec("set application_name to '" PACKAGE "::log';");
c->prepare("instance",
"insert into instance (rev, target, hostname, version) "
"values ($1, $2, $3, $4) returning id");
char hostname[1024];
gethostname(hostname, sizeof(hostname));
result r = w.prepared("instance")(GITREV)(target)(hostname)(s.version).exec();
id = r[0][0].as<long>(id);
c->prepare("error",
"insert into error (id, msg, query) "
"values (" + to_string(id) + ", $1, $2)");
w.exec("insert into stat (id) values (" + to_string(id) + ")");
c->prepare("stat",
"update stat set generated=$1, level=$2, nodes=$3, updated=now() "
", retries = $4, impedance = $5 "
"where id = " + to_string(id));
w.commit();
}
void pqxx_logger::error(prod &query, const dut::failure &e)
{
work w(*c);
ostringstream s;
s << query;
w.prepared("error")(e.what())(s.str()).exec();
w.commit();
}
void pqxx_logger::generated(prod &query)
{
stats_collecting_logger::generated(query);
if (999 == (queries%1000)) {
work w(*c);
ostringstream s;
impedance::report(s);
w.prepared("stat")(queries)(sum_height/queries)(sum_nodes/queries)(sum_retries/queries)(s.str()).exec();
w.commit();
}
}