mirror of
https://github.com/tstack/lnav
synced 2024-11-05 21:21:19 +00:00
402 lines
12 KiB
C++
402 lines
12 KiB
C++
/**
|
|
* 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.
|
|
*
|
|
* @file logfile_sub_source.hh
|
|
*/
|
|
|
|
#ifndef __logfile_sub_source_hh
|
|
#define __logfile_sub_source_hh
|
|
|
|
#include <limits.h>
|
|
|
|
#include <map>
|
|
#include <list>
|
|
#include <sstream>
|
|
#include <vector>
|
|
#include <algorithm>
|
|
|
|
#include "strong_int.hh"
|
|
#include "logfile.hh"
|
|
#include "bookmarks.hh"
|
|
#include "textview_curses.hh"
|
|
|
|
STRONG_INT_TYPE(int, content_line);
|
|
|
|
/**
|
|
* Delegate class that merges the contents of multiple log files into a single
|
|
* source of data for a text view.
|
|
*/
|
|
class logfile_sub_source
|
|
: public text_sub_source {
|
|
public:
|
|
|
|
class observer
|
|
: public logfile_observer {
|
|
public:
|
|
virtual void logfile_sub_source_filtering(logfile_sub_source &lss,
|
|
content_line_t cl,
|
|
size_t total) = 0;
|
|
};
|
|
|
|
static bookmark_type_t BM_ERRORS;
|
|
static bookmark_type_t BM_WARNINGS;
|
|
static bookmark_type_t BM_FILES;
|
|
|
|
logfile_sub_source();
|
|
virtual ~logfile_sub_source();
|
|
|
|
const filter_stack_t &get_filters(void) const
|
|
{
|
|
return this->lss_filters;
|
|
};
|
|
|
|
void add_filter(logfile_filter *filter) {
|
|
this->lss_filters.push_back(filter);
|
|
this->lss_filter_generation += 1;
|
|
};
|
|
|
|
void clear_filters(void) {
|
|
this->lss_filters.clear();
|
|
this->lss_filter_generation += 1;
|
|
};
|
|
|
|
void set_filter_enabled(logfile_filter *filter, bool enabled) {
|
|
if (enabled) {
|
|
filter->enable();
|
|
}
|
|
else {
|
|
filter->disable();
|
|
}
|
|
this->lss_filter_generation += 1;
|
|
}
|
|
|
|
logfile_filter *get_filter(std::string id)
|
|
{
|
|
filter_stack_t::iterator iter;
|
|
logfile_filter * retval = NULL;
|
|
|
|
for (iter = this->lss_filters.begin();
|
|
iter != this->lss_filters.end() && (*iter)->get_id() != id;
|
|
iter++) { }
|
|
if (iter != this->lss_filters.end()) {
|
|
retval = *iter;
|
|
}
|
|
|
|
return retval;
|
|
};
|
|
|
|
void toggle_scrub(void) { this->lss_flags ^= F_SCRUB; };
|
|
|
|
void toggle_time_offset(void) { this->lss_flags ^= F_TIME_OFFSET; };
|
|
|
|
size_t text_line_count()
|
|
{
|
|
return this->lss_index.size();
|
|
};
|
|
void text_value_for_line(textview_curses &tc,
|
|
int row,
|
|
std::string &value_out,
|
|
bool raw);
|
|
|
|
void text_attrs_for_line(textview_curses &tc,
|
|
int row,
|
|
string_attrs_t &value_out);
|
|
|
|
void text_mark(bookmark_type_t *bm, int line, bool added)
|
|
{
|
|
content_line_t cl = this->lss_index[line];
|
|
std::vector<content_line_t>::iterator lb;
|
|
|
|
lb = std::lower_bound(this->lss_user_marks[bm].begin(),
|
|
this->lss_user_marks[bm].end(),
|
|
cl);
|
|
if (added) {
|
|
if (lb == this->lss_user_marks[bm].end() || *lb != cl) {
|
|
this->lss_user_marks[bm].insert(lb, cl);
|
|
}
|
|
}
|
|
else if (lb != this->lss_user_marks[bm].end() && *lb == cl) {
|
|
assert(lb != this->lss_user_marks[bm].end());
|
|
|
|
this->lss_user_marks[bm].erase(lb);
|
|
}
|
|
};
|
|
|
|
void text_clear_marks(bookmark_type_t *bm)
|
|
{
|
|
this->lss_user_marks[bm].clear();
|
|
};
|
|
|
|
bool insert_file(logfile *lf)
|
|
{
|
|
std::vector<logfile_data>::iterator existing;
|
|
|
|
assert(lf->size() < MAX_LINES_PER_FILE);
|
|
|
|
existing = std::find_if(this->lss_files.begin(),
|
|
this->lss_files.end(),
|
|
logfile_data_eq(NULL));
|
|
if (existing == this->lss_files.end()) {
|
|
if (this->lss_files.size() >= MAX_FILES) {
|
|
return false;
|
|
}
|
|
|
|
this->lss_files.push_back(logfile_data(lf));
|
|
this->lss_index.clear();
|
|
}
|
|
else {
|
|
existing->ld_file = lf;
|
|
}
|
|
|
|
return true;
|
|
};
|
|
|
|
void remove_file(logfile *lf)
|
|
{
|
|
std::vector<logfile_data>::iterator iter;
|
|
|
|
iter = std::find_if(this->lss_files.begin(),
|
|
this->lss_files.end(),
|
|
logfile_data_eq(lf));
|
|
if (iter != this->lss_files.end()) {
|
|
bookmarks<content_line_t>::type::iterator mark_iter;
|
|
int file_index = iter - this->lss_files.begin();
|
|
|
|
iter->clear();
|
|
for (mark_iter = this->lss_user_marks.begin();
|
|
mark_iter != this->lss_user_marks.end();
|
|
++mark_iter) {
|
|
content_line_t mark_curr = content_line_t(
|
|
file_index * MAX_LINES_PER_FILE);
|
|
content_line_t mark_end = content_line_t(
|
|
(file_index + 1) * MAX_LINES_PER_FILE);
|
|
bookmark_vector<content_line_t>::iterator bv_iter;
|
|
bookmark_vector<content_line_t> & bv =
|
|
mark_iter->second;
|
|
|
|
while ((bv_iter =
|
|
std::lower_bound(bv.begin(), bv.end(),
|
|
mark_curr)) != bv.end()) {
|
|
if (*bv_iter >= mark_end) {
|
|
break;
|
|
}
|
|
mark_iter->second.erase(bv_iter);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
bool rebuild_index(observer *obs = NULL, bool force = false);
|
|
|
|
void text_update_marks(vis_bookmarks &bm);
|
|
|
|
void toggle_user_mark(bookmark_type_t *bm,
|
|
vis_line_t start_line,
|
|
vis_line_t end_line = vis_line_t(-1))
|
|
{
|
|
if (end_line == -1) {
|
|
end_line = start_line;
|
|
}
|
|
if (start_line > end_line) {
|
|
std::swap(start_line, end_line);
|
|
}
|
|
for (vis_line_t curr_line = start_line; curr_line <= end_line;
|
|
++curr_line) {
|
|
bookmark_vector<content_line_t> &bv =
|
|
this->lss_user_marks[bm];
|
|
bookmark_vector<content_line_t>::iterator iter;
|
|
|
|
iter = bv.insert_once(this->at(curr_line));
|
|
if (iter == bv.end()) {}
|
|
else {
|
|
bv.erase(iter);
|
|
}
|
|
}
|
|
};
|
|
|
|
void set_user_mark(bookmark_type_t *bm, content_line_t cl)
|
|
{
|
|
this->lss_user_marks[bm].insert_once(cl);
|
|
};
|
|
|
|
bookmarks<content_line_t>::type &get_user_bookmarks(void)
|
|
{
|
|
return this->lss_user_marks;
|
|
};
|
|
|
|
int get_filtered_count() const { return this->lss_filtered_count; };
|
|
|
|
logfile *find(const char *fn, content_line_t &line_base);
|
|
|
|
logfile *find(content_line_t &line)
|
|
{
|
|
logfile *retval;
|
|
|
|
retval = this->lss_files[line / MAX_LINES_PER_FILE].ld_file;
|
|
line = content_line_t(line % MAX_LINES_PER_FILE);
|
|
|
|
return retval;
|
|
};
|
|
|
|
logline *find_line(content_line_t line)
|
|
{
|
|
logline *retval = NULL;
|
|
logfile *lf = this->find(line);
|
|
|
|
if (lf != NULL) {
|
|
logfile::iterator ll_iter = lf->begin() + line;
|
|
|
|
retval = &(*ll_iter);
|
|
}
|
|
|
|
return retval;
|
|
};
|
|
|
|
vis_line_t find_from_time(time_t start);
|
|
|
|
content_line_t at(vis_line_t vl) { return this->lss_index[vl]; };
|
|
|
|
/**
|
|
* Container for logfile references that keeps of how many lines in the
|
|
* logfile have been indexed.
|
|
*/
|
|
struct logfile_data {
|
|
logfile_data(logfile *lf = NULL)
|
|
: ld_file(lf),
|
|
ld_lines_indexed(0) { };
|
|
|
|
bool operator<(const logfile_data &rhs)
|
|
{
|
|
if (this->ld_file == rhs.ld_file) {
|
|
return false;
|
|
}
|
|
if (this->ld_file == NULL) {
|
|
return true;
|
|
}
|
|
if (this->ld_file != NULL) {
|
|
return true;
|
|
}
|
|
return (*this->ld_file) < (*rhs.ld_file);
|
|
};
|
|
|
|
void clear(void)
|
|
{
|
|
if (this->ld_file != NULL) {
|
|
delete this->ld_file;
|
|
}
|
|
this->ld_file = NULL;
|
|
};
|
|
|
|
logfile *ld_file;
|
|
size_t ld_lines_indexed;
|
|
struct {
|
|
content_line_t ld_start;
|
|
content_line_t ld_last;
|
|
} ld_indexing;
|
|
};
|
|
|
|
typedef std::vector<logfile_data>::iterator iterator;
|
|
|
|
iterator begin()
|
|
{
|
|
return this->lss_files.begin();
|
|
};
|
|
|
|
iterator end()
|
|
{
|
|
return this->lss_files.end();
|
|
};
|
|
|
|
static const size_t MAX_LINES_PER_FILE = 4 * 1024 * 1024;
|
|
static const size_t MAX_FILES = INT_MAX / MAX_LINES_PER_FILE;
|
|
|
|
private:
|
|
enum {
|
|
B_SCRUB,
|
|
B_TIME_OFFSET,
|
|
};
|
|
|
|
enum {
|
|
F_SCRUB = (1L << B_SCRUB),
|
|
F_TIME_OFFSET = (1L << B_TIME_OFFSET),
|
|
};
|
|
|
|
struct logline_cmp {
|
|
logline_cmp(logfile_sub_source & lc)
|
|
: llss_controller(lc) { };
|
|
bool operator()(const content_line_t &lhs, const content_line_t &rhs)
|
|
{
|
|
logline *ll_lhs = this->llss_controller.find_line(lhs);
|
|
logline *ll_rhs = this->llss_controller.find_line(rhs);
|
|
|
|
return (*ll_lhs) < (*ll_rhs);
|
|
};
|
|
bool operator()(const content_line_t &lhs, const time_t &rhs)
|
|
{
|
|
logline *ll_lhs = this->llss_controller.find_line(lhs);
|
|
|
|
return ll_lhs->get_time() < rhs;
|
|
};
|
|
|
|
logfile_sub_source & llss_controller;
|
|
};
|
|
|
|
/**
|
|
* Functor for comparing the ld_file field of the logfile_data struct.
|
|
*/
|
|
struct logfile_data_eq {
|
|
logfile_data_eq(logfile *lf) : lde_file(lf) { };
|
|
|
|
bool operator()(const logfile_data &ld)
|
|
{
|
|
return this->lde_file == ld.ld_file;
|
|
}
|
|
|
|
logfile *lde_file;
|
|
};
|
|
|
|
unsigned long lss_flags;
|
|
std::vector<logfile_data> lss_files;
|
|
|
|
filter_stack_t lss_filters;
|
|
uint8_t lss_filter_generation;
|
|
int lss_filtered_count;
|
|
|
|
std::vector<content_line_t> lss_index;
|
|
|
|
bookmarks<content_line_t>::type lss_user_marks;
|
|
|
|
logfile * lss_token_file;
|
|
std::string lss_token_value;
|
|
int lss_scrub_len;
|
|
int lss_token_offset;
|
|
int lss_token_date_end;
|
|
logfile::iterator lss_token_line;
|
|
};
|
|
#endif
|