You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lnav/src/db_sub_source.hh

171 lines
5.3 KiB
C++

#include <utility>
/**
* Copyright (c) 2007-2012, Timothy Stack
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * 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.
*
* 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;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
15 years ago
#ifndef __db_sub_source_hh
#define __db_sub_source_hh
#include <string>
#include <vector>
#include <iterator>
#include <algorithm>
15 years ago
#include <sqlite3.h>
#include "textview_curses.hh"
15 years ago
#include "hist_source.hh"
class db_label_source : public text_sub_source, public text_time_translator {
15 years ago
public:
db_label_source() : dls_time_column_index(-1) {
};
15 years ago
~db_label_source() { };
bool has_log_time_column() const {
return !this->dls_time_column.empty();
};
size_t text_line_count() {
return this->dls_rows.size();
};
size_t text_size_for_line(textview_curses &tc, int line, line_flags_t flags) {
return this->text_line_width(tc);
};
size_t text_line_width(textview_curses &curses) {
size_t retval = 0;
for (auto &dls_header : this->dls_headers) {
retval += dls_header.hm_column_size;
}
return retval;
};
void text_value_for_line(textview_curses &tc,
int row,
std::string &label_out,
line_flags_t flags);
void text_attrs_for_line(textview_curses &tc, int row, string_attrs_t &sa);
void push_header(const std::string &colstr, int type, bool graphable);
/* TODO: add support for left and right justification... numbers should */
/* be right justified and strings should be left. */
void push_column(const char *colstr);
void clear();
long column_name_to_index(const std::string &name) const {
std::vector<header_meta>::const_iterator iter;
iter = std::find(this->dls_headers.begin(),
this->dls_headers.end(),
name);
if (iter == this->dls_headers.end()) {
return -1;
}
return std::distance(this->dls_headers.begin(), iter);
};
int row_for_time(struct timeval time_bucket) {
std::vector<struct timeval>::iterator iter;
iter = std::lower_bound(this->dls_time_column.begin(),
this->dls_time_column.end(),
time_bucket);
if (iter != this->dls_time_column.end()) {
return std::distance(this->dls_time_column.begin(), iter);
}
return -1;
};
struct timeval time_for_row(int row) {
if ((row < 0) || (((size_t) row) >= this->dls_time_column.size())) {
return { -1, 0 };
}
return this->dls_time_column[row];
};
struct header_meta {
header_meta(std::string name)
: hm_name(std::move(name)),
hm_column_type(SQLITE3_TEXT),
hm_graphable(false),
hm_log_time(false),
hm_column_size(0) {
};
bool operator==(const std::string &name) const {
return this->hm_name == name;
};
std::string hm_name;
int hm_column_type;
unsigned int hm_sub_type{0};
bool hm_graphable;
bool hm_log_time;
size_t hm_column_size;
};
stacked_bar_chart<std::string> dls_chart;
std::vector<header_meta> dls_headers;
std::vector<std::vector<const char *> > dls_rows;
std::vector<struct timeval> dls_time_column;
int dls_time_column_index;
static const char *NULL_STR;
15 years ago
};
class db_overlay_source : public list_overlay_source {
public:
db_overlay_source() : dos_active(false), dos_labels(nullptr) {
};
size_t list_overlay_count(const listview_curses &lv);
bool list_value_for_overlay(const listview_curses &lv,
int y, int bottom,
vis_line_t row,
attr_line_t &value_out);
bool dos_active;
db_label_source *dos_labels;
std::vector<attr_line_t> dos_lines;
};
15 years ago
#endif