2013-05-03 06:02:03 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2007-2012, Timothy Stack
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
2013-05-28 04:35:00 +00:00
|
|
|
*
|
2013-05-03 06:02:03 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
2013-05-28 04:35:00 +00:00
|
|
|
*
|
2013-05-03 06:02:03 +00:00
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of Timothy Stack nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
2013-05-28 04:35:00 +00:00
|
|
|
*
|
2013-05-03 06:02:03 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
2022-03-16 22:38:08 +00:00
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
2013-05-03 06:02:03 +00:00
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
#include "hist_source.hh"
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2020-11-20 05:36:51 +00:00
|
|
|
#include "base/math_util.hh"
|
2022-03-16 22:38:08 +00:00
|
|
|
#include "config.h"
|
2022-03-25 23:38:11 +00:00
|
|
|
#include "fmt/chrono.h"
|
2018-10-11 12:50:28 +00:00
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
nonstd::optional<vis_line_t>
|
|
|
|
hist_source2::row_for_time(struct timeval tv_bucket)
|
2018-10-11 12:50:28 +00:00
|
|
|
{
|
|
|
|
std::map<int64_t, struct bucket_block>::iterator iter;
|
|
|
|
int retval = 0;
|
|
|
|
time_t time_bucket = rounddown(tv_bucket.tv_sec, this->hs_time_slice);
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
for (iter = this->hs_blocks.begin(); iter != this->hs_blocks.end(); ++iter)
|
|
|
|
{
|
|
|
|
struct bucket_block& bb = iter->second;
|
2018-10-11 12:50:28 +00:00
|
|
|
|
|
|
|
if (time_bucket < bb.bb_buckets[0].b_time) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (time_bucket > bb.bb_buckets[bb.bb_used].b_time) {
|
|
|
|
retval += bb.bb_used + 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned int lpc = 0; lpc <= bb.bb_used; lpc++, retval++) {
|
|
|
|
if (time_bucket <= bb.bb_buckets[lpc].b_time) {
|
2021-09-08 04:08:01 +00:00
|
|
|
return vis_line_t(retval);
|
2018-10-11 12:50:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-09-08 04:08:01 +00:00
|
|
|
return vis_line_t(retval);
|
2018-10-11 12:50:28 +00:00
|
|
|
}
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void
|
|
|
|
hist_source2::text_value_for_line(textview_curses& tc,
|
|
|
|
int row,
|
|
|
|
std::string& value_out,
|
|
|
|
text_sub_source::line_flags_t flags)
|
2018-10-11 12:50:28 +00:00
|
|
|
{
|
2022-03-16 22:38:08 +00:00
|
|
|
bucket_t& bucket = this->find_bucket(row);
|
2018-10-11 12:50:28 +00:00
|
|
|
struct tm bucket_tm;
|
|
|
|
|
2022-03-25 23:38:11 +00:00
|
|
|
value_out.clear();
|
2020-11-10 06:17:17 +00:00
|
|
|
if (gmtime_r(&bucket.b_time, &bucket_tm) != nullptr) {
|
2022-03-25 23:38:11 +00:00
|
|
|
fmt::format_to(std::back_inserter(value_out),
|
|
|
|
FMT_STRING(" {:%a %b %d %H:%M:%S} "),
|
|
|
|
bucket_tm);
|
2022-03-16 22:38:08 +00:00
|
|
|
} else {
|
2018-10-11 12:50:28 +00:00
|
|
|
log_error("no time?");
|
|
|
|
}
|
2022-03-25 23:38:11 +00:00
|
|
|
fmt::format_to(
|
|
|
|
std::back_inserter(value_out),
|
|
|
|
FMT_STRING(" {:8L} normal {:8L} errors {:8L} warnings {:8L} marks"),
|
|
|
|
rint(bucket.b_values[HT_NORMAL].hv_value),
|
|
|
|
rint(bucket.b_values[HT_ERROR].hv_value),
|
|
|
|
rint(bucket.b_values[HT_WARNING].hv_value),
|
|
|
|
rint(bucket.b_values[HT_MARK].hv_value));
|
2018-10-11 12:50:28 +00:00
|
|
|
}
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void
|
|
|
|
hist_source2::text_attrs_for_line(textview_curses& tc,
|
|
|
|
int row,
|
|
|
|
string_attrs_t& value_out)
|
2018-10-11 12:50:28 +00:00
|
|
|
{
|
2022-03-16 22:38:08 +00:00
|
|
|
bucket_t& bucket = this->find_bucket(row);
|
2018-10-11 12:50:28 +00:00
|
|
|
int left = 0;
|
|
|
|
|
|
|
|
for (int lpc = 0; lpc < HT__MAX; lpc++) {
|
2022-03-16 22:38:08 +00:00
|
|
|
this->hs_chart.chart_attrs_for_value(tc,
|
|
|
|
left,
|
|
|
|
(const hist_type_t) lpc,
|
|
|
|
bucket.b_values[lpc].hv_value,
|
|
|
|
value_out);
|
2018-10-11 12:50:28 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-17 18:04:23 +00:00
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void
|
|
|
|
hist_source2::add_value(time_t row,
|
|
|
|
hist_source2::hist_type_t htype,
|
|
|
|
double value)
|
2020-11-17 18:04:23 +00:00
|
|
|
{
|
2021-04-24 21:38:26 +00:00
|
|
|
if (row < this->hs_last_row) {
|
|
|
|
log_error("time mismatch %ld %ld", row, this->hs_last_row);
|
|
|
|
}
|
|
|
|
|
2020-11-17 18:04:23 +00:00
|
|
|
require(row >= this->hs_last_row);
|
|
|
|
|
|
|
|
row = rounddown(row, this->hs_time_slice);
|
|
|
|
if (row != this->hs_last_row) {
|
|
|
|
this->end_of_row();
|
|
|
|
|
|
|
|
this->hs_last_bucket += 1;
|
|
|
|
this->hs_last_row = row;
|
|
|
|
}
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
bucket_t& bucket = this->find_bucket(this->hs_last_bucket);
|
2020-11-17 18:04:23 +00:00
|
|
|
bucket.b_time = row;
|
|
|
|
bucket.b_values[htype].hv_value += value;
|
|
|
|
}
|
2022-03-13 22:49:41 +00:00
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void
|
|
|
|
hist_source2::init()
|
2022-03-13 22:49:41 +00:00
|
|
|
{
|
2022-03-16 22:38:08 +00:00
|
|
|
view_colors& vc = view_colors::singleton();
|
2022-03-13 22:49:41 +00:00
|
|
|
|
|
|
|
this->hs_chart
|
|
|
|
.with_attrs_for_ident(HT_NORMAL,
|
|
|
|
vc.attrs_for_role(view_colors::VCR_TEXT))
|
|
|
|
.with_attrs_for_ident(HT_WARNING,
|
|
|
|
vc.attrs_for_role(view_colors::VCR_WARNING))
|
|
|
|
.with_attrs_for_ident(HT_ERROR,
|
|
|
|
vc.attrs_for_role(view_colors::VCR_ERROR))
|
|
|
|
.with_attrs_for_ident(HT_MARK,
|
|
|
|
vc.attrs_for_role(view_colors::VCR_KEYWORD));
|
|
|
|
}
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void
|
|
|
|
hist_source2::clear()
|
2022-03-13 22:49:41 +00:00
|
|
|
{
|
|
|
|
this->hs_line_count = 0;
|
|
|
|
this->hs_last_bucket = -1;
|
|
|
|
this->hs_last_row = -1;
|
|
|
|
this->hs_blocks.clear();
|
|
|
|
this->hs_chart.clear();
|
|
|
|
this->init();
|
|
|
|
}
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void
|
|
|
|
hist_source2::end_of_row()
|
2022-03-13 22:49:41 +00:00
|
|
|
{
|
|
|
|
if (this->hs_last_bucket >= 0) {
|
2022-03-16 22:38:08 +00:00
|
|
|
bucket_t& last_bucket = this->find_bucket(this->hs_last_bucket);
|
2022-03-13 22:49:41 +00:00
|
|
|
|
|
|
|
for (int lpc = 0; lpc < HT__MAX; lpc++) {
|
2022-03-16 22:38:08 +00:00
|
|
|
this->hs_chart.add_value((const hist_type_t) lpc,
|
|
|
|
last_bucket.b_values[lpc].hv_value);
|
2022-03-13 22:49:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
nonstd::optional<struct timeval>
|
|
|
|
hist_source2::time_for_row(vis_line_t row)
|
2022-03-13 22:49:41 +00:00
|
|
|
{
|
|
|
|
if (row < 0 || row > this->hs_line_count) {
|
|
|
|
return nonstd::nullopt;
|
|
|
|
}
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
bucket_t& bucket = this->find_bucket(row);
|
2022-03-13 22:49:41 +00:00
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
return timeval{bucket.b_time, 0};
|
2022-03-13 22:49:41 +00:00
|
|
|
}
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
hist_source2::bucket_t&
|
|
|
|
hist_source2::find_bucket(int64_t index)
|
2022-03-13 22:49:41 +00:00
|
|
|
{
|
2022-03-16 22:38:08 +00:00
|
|
|
struct bucket_block& bb = this->hs_blocks[index / BLOCK_SIZE];
|
2022-03-13 22:49:41 +00:00
|
|
|
unsigned int intra_block_index = index % BLOCK_SIZE;
|
|
|
|
bb.bb_used = std::max(intra_block_index, bb.bb_used);
|
|
|
|
this->hs_line_count = std::max(this->hs_line_count, index + 1);
|
|
|
|
return bb.bb_buckets[intra_block_index];
|
|
|
|
}
|