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;
|
|
|
|
* 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.
|
|
|
|
*/
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2020-08-31 05:13:56 +00:00
|
|
|
#ifndef vtab_impl_hh
|
|
|
|
#define vtab_impl_hh
|
2009-09-14 01:07:32 +00:00
|
|
|
|
|
|
|
#include <sqlite3.h>
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
2009-10-06 21:14:49 +00:00
|
|
|
#include <vector>
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2011-06-18 20:42:07 +00:00
|
|
|
#include "logfile_sub_source.hh"
|
|
|
|
|
2020-11-20 05:36:51 +00:00
|
|
|
class textview_curses;
|
|
|
|
|
2010-11-22 05:44:45 +00:00
|
|
|
enum {
|
|
|
|
VT_COL_LINE_NUMBER,
|
2013-06-26 03:43:27 +00:00
|
|
|
VT_COL_PARTITION,
|
2010-11-22 05:44:45 +00:00
|
|
|
VT_COL_LOG_TIME,
|
2016-03-03 14:05:26 +00:00
|
|
|
VT_COL_LOG_ACTUAL_TIME,
|
2010-11-22 05:44:45 +00:00
|
|
|
VT_COL_IDLE_MSECS,
|
|
|
|
VT_COL_LEVEL,
|
2014-03-02 07:40:12 +00:00
|
|
|
VT_COL_MARK,
|
2018-05-17 14:06:50 +00:00
|
|
|
VT_COL_LOG_COMMENT,
|
|
|
|
VT_COL_LOG_TAGS,
|
2019-02-15 06:42:44 +00:00
|
|
|
VT_COL_FILTERS,
|
2010-11-22 05:44:45 +00:00
|
|
|
VT_COL_MAX
|
|
|
|
};
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
class logfile_sub_source;
|
|
|
|
|
2011-06-18 20:42:07 +00:00
|
|
|
struct log_cursor {
|
|
|
|
vis_line_t lc_curr_line;
|
2013-05-28 04:35:00 +00:00
|
|
|
int lc_sub_index;
|
2014-03-11 15:18:51 +00:00
|
|
|
vis_line_t lc_end_line;
|
|
|
|
|
|
|
|
void update(unsigned char op, vis_line_t vl, bool exact = true);
|
|
|
|
|
|
|
|
void set_eof() {
|
|
|
|
this->lc_curr_line = this->lc_end_line = vis_line_t(0);
|
|
|
|
};
|
|
|
|
|
|
|
|
bool is_eof() const {
|
2016-04-08 13:21:58 +00:00
|
|
|
return this->lc_curr_line >= this->lc_end_line;
|
2014-03-11 15:18:51 +00:00
|
|
|
};
|
2011-06-18 20:42:07 +00:00
|
|
|
};
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
class log_vtab_impl {
|
|
|
|
public:
|
|
|
|
struct vtab_column {
|
2015-08-06 06:18:19 +00:00
|
|
|
vtab_column(const std::string name = "",
|
2013-09-10 13:20:37 +00:00
|
|
|
int type = SQLITE3_TEXT,
|
2020-09-24 05:36:47 +00:00
|
|
|
const std::string collator = "",
|
2017-04-09 08:57:19 +00:00
|
|
|
bool hidden = false,
|
2018-11-15 05:46:49 +00:00
|
|
|
const std::string comment = "",
|
|
|
|
unsigned int subtype = 0)
|
2017-04-09 08:57:19 +00:00
|
|
|
: vc_name(name),
|
|
|
|
vc_type(type),
|
|
|
|
vc_collator(collator),
|
|
|
|
vc_hidden(hidden),
|
2018-11-15 05:46:49 +00:00
|
|
|
vc_comment(comment),
|
|
|
|
vc_subtype(subtype) {
|
2017-04-09 08:57:19 +00:00
|
|
|
};
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2015-08-06 06:18:19 +00:00
|
|
|
std::string vc_name;
|
2013-05-28 04:35:00 +00:00
|
|
|
int vc_type;
|
2020-09-24 05:36:47 +00:00
|
|
|
std::string vc_collator;
|
2013-10-11 13:22:29 +00:00
|
|
|
bool vc_hidden;
|
2017-04-09 08:57:19 +00:00
|
|
|
std::string vc_comment;
|
2018-11-15 05:46:49 +00:00
|
|
|
int vc_subtype;
|
2009-09-14 01:07:32 +00:00
|
|
|
};
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2018-11-15 05:46:49 +00:00
|
|
|
static std::pair<int, unsigned int> logline_value_to_sqlite_type(logline_value::kind_t kind);
|
2017-04-23 14:11:21 +00:00
|
|
|
|
2015-10-03 04:24:52 +00:00
|
|
|
log_vtab_impl(const intern_string_t name) : vi_supports_indexes(true), vi_name(name) {
|
2014-02-01 14:41:11 +00:00
|
|
|
this->vi_attrs.resize(128);
|
|
|
|
};
|
2020-11-17 18:04:23 +00:00
|
|
|
virtual ~log_vtab_impl() = default;
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2020-11-10 06:17:17 +00:00
|
|
|
const intern_string_t get_name() const
|
2013-05-28 04:35:00 +00:00
|
|
|
{
|
|
|
|
return this->vi_name;
|
2009-09-14 01:07:32 +00:00
|
|
|
};
|
2011-06-18 20:42:07 +00:00
|
|
|
|
2020-11-10 06:17:17 +00:00
|
|
|
std::string get_table_statement();
|
2014-02-24 19:43:50 +00:00
|
|
|
|
2018-02-07 19:06:59 +00:00
|
|
|
virtual bool is_valid(log_cursor &lc, logfile_sub_source &lss) {
|
|
|
|
content_line_t cl(lss.at(lc.lc_curr_line));
|
2018-04-03 14:36:09 +00:00
|
|
|
std::shared_ptr<logfile> lf = lss.find(cl);
|
2019-03-21 14:46:51 +00:00
|
|
|
auto lf_iter = lf->begin() + cl;
|
2018-02-07 19:06:59 +00:00
|
|
|
|
|
|
|
if (lf_iter->is_continued()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2015-07-18 03:39:06 +00:00
|
|
|
virtual bool next(log_cursor &lc, logfile_sub_source &lss) = 0;
|
|
|
|
|
2017-04-09 08:57:19 +00:00
|
|
|
virtual void get_columns(std::vector<vtab_column> &cols) const { };
|
2015-07-18 03:39:06 +00:00
|
|
|
|
2016-12-10 15:21:24 +00:00
|
|
|
virtual void get_foreign_keys(std::vector<std::string> &keys_inout) const
|
2015-07-18 03:39:06 +00:00
|
|
|
{
|
2019-03-13 23:37:41 +00:00
|
|
|
keys_inout.emplace_back("log_line");
|
|
|
|
keys_inout.emplace_back("min(log_line)");
|
|
|
|
keys_inout.emplace_back("log_mark");
|
2015-07-18 03:39:06 +00:00
|
|
|
};
|
|
|
|
|
2018-04-03 14:36:09 +00:00
|
|
|
virtual void extract(std::shared_ptr<logfile> lf,
|
2019-03-13 23:37:41 +00:00
|
|
|
uint64_t line_number,
|
2015-07-18 03:39:06 +00:00
|
|
|
shared_buffer_ref &line,
|
|
|
|
std::vector<logline_value> &values)
|
|
|
|
{
|
2016-03-10 14:03:32 +00:00
|
|
|
log_format *format = lf->get_format();
|
2015-07-18 03:39:06 +00:00
|
|
|
|
|
|
|
this->vi_attrs.clear();
|
2019-03-13 23:37:41 +00:00
|
|
|
format->annotate(line_number, line, this->vi_attrs, values, false);
|
2015-07-18 03:39:06 +00:00
|
|
|
};
|
|
|
|
|
2015-10-03 04:24:52 +00:00
|
|
|
bool vi_supports_indexes;
|
2015-07-18 03:39:06 +00:00
|
|
|
int vi_column_count;
|
2016-03-10 14:03:32 +00:00
|
|
|
string_attrs_t vi_attrs;
|
2015-07-18 03:39:06 +00:00
|
|
|
protected:
|
|
|
|
const intern_string_t vi_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
class log_format_vtab_impl : public log_vtab_impl {
|
|
|
|
|
|
|
|
public:
|
|
|
|
log_format_vtab_impl(const log_format &format) :
|
|
|
|
log_vtab_impl(format.get_name()), lfvi_format(format) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-05-28 04:35:00 +00:00
|
|
|
virtual bool next(log_cursor &lc, logfile_sub_source &lss)
|
|
|
|
{
|
|
|
|
lc.lc_curr_line = lc.lc_curr_line + vis_line_t(1);
|
|
|
|
lc.lc_sub_index = 0;
|
2011-06-18 20:42:07 +00:00
|
|
|
|
2014-03-11 15:18:51 +00:00
|
|
|
if (lc.is_eof()) {
|
2013-05-28 04:35:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
2013-05-24 14:55:56 +00:00
|
|
|
|
2020-11-17 18:04:23 +00:00
|
|
|
auto cl = content_line_t(lss.at(lc.lc_curr_line));
|
|
|
|
auto lf = lss.find(cl);
|
|
|
|
auto lf_iter = lf->begin() + cl;
|
2015-07-18 03:39:06 +00:00
|
|
|
uint8_t mod_id = lf_iter->get_module_id();
|
2011-06-18 20:42:07 +00:00
|
|
|
|
2016-03-25 06:58:25 +00:00
|
|
|
if (lf_iter->is_continued()) {
|
2013-05-28 04:35:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
2011-06-18 20:42:07 +00:00
|
|
|
|
2013-05-28 04:35:00 +00:00
|
|
|
log_format *format = lf->get_format();
|
2015-07-18 03:39:06 +00:00
|
|
|
if (format->get_name() == this->lfvi_format.get_name()) {
|
|
|
|
return true;
|
|
|
|
} else if (mod_id && mod_id == this->lfvi_format.lf_mod_index) {
|
|
|
|
// XXX
|
2013-05-28 04:35:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2011-06-18 20:42:07 +00:00
|
|
|
};
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2015-07-18 03:39:06 +00:00
|
|
|
protected:
|
|
|
|
const log_format &lfvi_format;
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
};
|
|
|
|
|
2013-05-24 14:55:56 +00:00
|
|
|
typedef int (*sql_progress_callback_t)(const log_cursor &lc);
|
2020-04-25 14:32:05 +00:00
|
|
|
typedef void (*sql_progress_finished_callback_t)();
|
2013-05-24 14:55:56 +00:00
|
|
|
|
2018-05-17 14:06:50 +00:00
|
|
|
extern struct _log_vtab_data {
|
|
|
|
sql_progress_callback_t lvd_progress;
|
2020-04-25 14:32:05 +00:00
|
|
|
sql_progress_finished_callback_t lvd_finished;
|
2018-05-17 14:06:50 +00:00
|
|
|
std::string lvd_source;
|
|
|
|
int lvd_line_number{0};
|
|
|
|
} log_vtab_data;
|
2015-09-04 04:23:29 +00:00
|
|
|
|
|
|
|
class sql_progress_guard {
|
|
|
|
public:
|
2018-05-17 14:06:50 +00:00
|
|
|
sql_progress_guard(sql_progress_callback_t cb,
|
2020-04-25 14:32:05 +00:00
|
|
|
sql_progress_finished_callback_t fcb,
|
2018-05-17 14:06:50 +00:00
|
|
|
const std::string &source,
|
|
|
|
int line_number) {
|
|
|
|
log_vtab_data.lvd_progress = cb;
|
2020-04-25 14:32:05 +00:00
|
|
|
log_vtab_data.lvd_finished = fcb;
|
2018-05-17 14:06:50 +00:00
|
|
|
log_vtab_data.lvd_source = source;
|
|
|
|
log_vtab_data.lvd_line_number = line_number;
|
2015-09-04 04:23:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
~sql_progress_guard() {
|
2020-04-25 14:32:05 +00:00
|
|
|
if (log_vtab_data.lvd_finished) {
|
|
|
|
log_vtab_data.lvd_finished();
|
|
|
|
}
|
|
|
|
log_vtab_data.lvd_progress = nullptr;
|
|
|
|
log_vtab_data.lvd_finished = nullptr;
|
2018-05-17 14:06:50 +00:00
|
|
|
log_vtab_data.lvd_source.clear();
|
|
|
|
log_vtab_data.lvd_line_number = 0;
|
2015-09-04 04:23:29 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
class log_vtab_manager {
|
|
|
|
public:
|
2020-12-01 07:42:37 +00:00
|
|
|
typedef std::map<intern_string_t, std::shared_ptr<log_vtab_impl>>::const_iterator iterator;
|
2013-06-12 13:59:48 +00:00
|
|
|
|
2013-05-24 14:55:56 +00:00
|
|
|
log_vtab_manager(sqlite3 *db,
|
2013-06-26 03:43:27 +00:00
|
|
|
textview_curses &tc,
|
2015-09-04 04:23:29 +00:00
|
|
|
logfile_sub_source &lss);
|
2020-12-01 18:28:20 +00:00
|
|
|
~log_vtab_manager();
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2013-06-26 03:43:27 +00:00
|
|
|
textview_curses *get_view() const { return &this->vm_textview; };
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
logfile_sub_source *get_source() { return &this->vm_source; };
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2020-12-01 07:42:37 +00:00
|
|
|
std::string register_vtab(std::shared_ptr<log_vtab_impl> vi);
|
2015-06-03 13:36:58 +00:00
|
|
|
std::string unregister_vtab(intern_string_t name);
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2020-12-01 07:42:37 +00:00
|
|
|
std::shared_ptr<log_vtab_impl> lookup_impl(intern_string_t name) const
|
2013-05-28 04:35:00 +00:00
|
|
|
{
|
2017-04-09 09:32:07 +00:00
|
|
|
auto iter = this->vm_impls.find(name);
|
|
|
|
|
|
|
|
if (iter != this->vm_impls.end()) {
|
2020-12-01 07:42:37 +00:00
|
|
|
return iter->second;
|
2017-04-09 09:32:07 +00:00
|
|
|
}
|
2020-12-01 07:42:37 +00:00
|
|
|
return nullptr;
|
2009-09-14 01:07:32 +00:00
|
|
|
};
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2013-06-16 01:07:50 +00:00
|
|
|
iterator begin() const
|
|
|
|
{
|
2013-06-12 13:59:48 +00:00
|
|
|
return this->vm_impls.begin();
|
|
|
|
};
|
|
|
|
|
2013-06-16 01:07:50 +00:00
|
|
|
iterator end() const
|
|
|
|
{
|
2013-06-12 13:59:48 +00:00
|
|
|
return this->vm_impls.end();
|
|
|
|
};
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
private:
|
2013-05-28 04:35:00 +00:00
|
|
|
sqlite3 * vm_db;
|
2013-06-26 03:43:27 +00:00
|
|
|
textview_curses &vm_textview;
|
2009-09-14 01:07:32 +00:00
|
|
|
logfile_sub_source &vm_source;
|
2020-12-01 07:42:37 +00:00
|
|
|
std::map<intern_string_t, std::shared_ptr<log_vtab_impl>> vm_impls;
|
2009-09-14 01:07:32 +00:00
|
|
|
};
|
|
|
|
#endif
|