1
1
mirror of https://github.com/tstack/lnav.git synced 2024-10-27 05:28:35 +03:00
lnav/test/drive_grep_proc.cc

159 lines
4.6 KiB
C++
Raw Normal View History

2013-05-03 10:02:03 +04:00
/**
* Copyright (c) 2007-2012, Timothy Stack
*
* All rights reserved.
2022-03-17 01:38:08 +03:00
*
2013-05-03 10:02:03 +04:00
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
2022-03-17 01:38:08 +03:00
*
2013-05-03 10:02:03 +04: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.
2022-03-17 01:38:08 +03:00
*
2013-05-03 10:02:03 +04: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-17 01:38:08 +03: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 10:02:03 +04: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.
*/
2009-09-14 05:07:32 +04:00
2022-03-17 01:38:08 +03:00
#include <fcntl.h>
2009-09-14 05:07:32 +04:00
#include <stdio.h>
#include <stdlib.h>
2022-03-17 01:38:08 +03:00
#include <string.h>
2009-09-14 05:07:32 +04:00
#include <sys/stat.h>
2022-03-17 01:38:08 +03:00
#include <sys/types.h>
#include <unistd.h>
2009-09-14 05:07:32 +04:00
2022-03-17 01:38:08 +03:00
#include "config.h"
2009-09-14 05:07:32 +04:00
#include "grep_proc.hh"
#include "line_buffer.hh"
#include "listview_curses.hh"
2009-09-14 05:07:32 +04:00
using namespace std;
class my_source : public grep_proc_source<vis_line_t> {
2009-09-14 05:07:32 +04:00
public:
2022-03-17 01:38:08 +03:00
my_source(auto_fd& fd)
{
this->ms_buffer.set_fd(fd);
2009-09-14 05:07:32 +04:00
};
2022-03-17 01:38:08 +03:00
bool grep_value_for_line(vis_line_t line_number, string& value_out)
{
bool retval = false;
try {
auto load_result = this->ms_buffer.load_next_line(this->ms_range);
if (load_result.isOk()) {
auto li = load_result.unwrap();
this->ms_range = li.li_file_range;
if (!li.li_file_range.empty()) {
2022-03-17 01:38:08 +03:00
auto read_result
= this->ms_buffer.read_range(li.li_file_range)
.then([&value_out](auto sbr) {
value_out = to_string(sbr);
});
retval = read_result.isOk();
}
}
2022-03-17 01:38:08 +03:00
} catch (line_buffer::error& e) {
fprintf(stderr,
"error: source buffer error %d %s\n",
this->ms_buffer.get_fd(),
strerror(e.e_err));
}
return retval;
2009-09-14 05:07:32 +04:00
};
2009-09-14 05:07:32 +04:00
private:
line_buffer ms_buffer;
file_range ms_range;
2009-09-14 05:07:32 +04:00
};
class my_sink : public grep_proc_sink<vis_line_t> {
2009-09-14 05:07:32 +04:00
public:
2022-03-17 01:38:08 +03:00
my_sink() : ms_finished(false){};
2022-03-17 01:38:08 +03:00
void grep_match(grep_proc<vis_line_t>& gp,
vis_line_t line,
int start,
int end)
{
printf("%d:%d:%d\n", (int) line, start, end);
2009-09-14 05:07:32 +04:00
};
2022-03-17 01:38:08 +03:00
void grep_capture(grep_proc<vis_line_t>& gp,
vis_line_t line,
int start,
int end,
2022-03-17 01:38:08 +03:00
char* capture)
{
fprintf(stderr, "%d(%d:%d)%s\n", (int) line, start, end, capture);
2009-09-14 05:07:32 +04:00
};
2022-03-17 01:38:08 +03:00
void grep_end(grep_proc<vis_line_t>& gp)
{
this->ms_finished = true;
2009-09-14 05:07:32 +04:00
};
bool ms_finished;
};
2022-03-17 01:38:08 +03:00
int
main(int argc, char* argv[])
2009-09-14 05:07:32 +04:00
{
int retval = EXIT_SUCCESS;
2022-03-17 01:38:08 +03:00
const char* errptr;
2009-09-14 05:07:32 +04:00
auto_fd fd;
2022-03-17 01:38:08 +03:00
pcre* code;
2009-09-14 05:07:32 +04:00
int eoff;
2009-09-14 05:07:32 +04:00
if (argc < 3) {
fprintf(stderr, "error: expecting pattern and file arguments\n");
retval = EXIT_FAILURE;
} else if ((fd = open(argv[2], O_RDONLY)) == -1) {
perror("open");
retval = EXIT_FAILURE;
2022-03-17 01:38:08 +03:00
} else if ((code
= pcre_compile(argv[1], PCRE_CASELESS, &errptr, &eoff, NULL))
== NULL)
{
fprintf(stderr, "error: invalid pattern -- %s\n", errptr);
} else {
my_source ms(fd);
my_sink msink;
grep_proc<vis_line_t> gp(code, ms);
gp.set_sink(&msink);
gp.queue_request();
gp.start();
while (!msink.ms_finished) {
vector<struct pollfd> pollfds;
gp.update_poll_set(pollfds);
poll(&pollfds[0], pollfds.size(), -1);
gp.check_poll_set(pollfds);
}
2009-09-14 05:07:32 +04:00
}
2009-09-14 05:07:32 +04:00
return retval;
}