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/test/test_grep_proc2.cc

164 lines
3.7 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.
*/
15 years ago
#include "config.h"
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "grep_proc.hh"
using namespace std;
static struct {
int l_number;
const char *l_value;
} MS_LINES[] = {
{ 10, "" },
{ 11, "" },
{ 12, "" },
{ 13, "" },
{ 0, "" },
{ 1, "" },
{ 2, "" },
};
class my_source : public grep_proc_source {
public:
my_source() : ms_current_line(0) { };
bool grep_value_for_line(int line_number, string &value_out) {
bool retval = true;
assert(line_number == MS_LINES[this->ms_current_line].l_number);
value_out = MS_LINES[this->ms_current_line].l_value;
this->ms_current_line += 1;
return retval;
};
int ms_current_line;
};
class my_sleeper_source : public grep_proc_source {
bool grep_value_for_line(int line_number, string &value_out) {
sleep(1000);
return true;
};
};
class my_sink : public grep_proc_sink {
public:
my_sink() : ms_finished(false) { };
void grep_match(grep_proc &gp,
grep_line_t line,
int start,
int end) {
};
void grep_end(grep_proc &gp) {
this->ms_finished = true;
};
bool ms_finished;
};
static fd_set READFDS;
static int MAXFD;
static void looper(grep_proc &gp)
{
my_sink msink;
gp.set_sink(&msink);
while (!msink.ms_finished) {
fd_set rfds = READFDS;
select(MAXFD + 1, &rfds, NULL, NULL, NULL);
gp.check_fd_set(rfds);
}
}
int main(int argc, char *argv[])
{
int eoff, retval = EXIT_SUCCESS;
const char *errptr;
pcre *code;
FD_ZERO(&READFDS);
code = pcre_compile("foobar",
PCRE_CASELESS,
&errptr,
&eoff,
NULL);
pcre_refcount(code, 1);
15 years ago
assert(code != NULL);
{
my_source ms;
grep_proc gp(code, ms, MAXFD, READFDS);
gp.queue_request(grep_line_t(10), grep_line_t(14));
gp.queue_request(grep_line_t(0), grep_line_t(3));
gp.start();
looper(gp);
}
{
my_sleeper_source mss;
grep_proc *gp = new grep_proc(code, mss, MAXFD, READFDS);
int status;
gp->queue_request();
gp->start();
assert(wait3(&status, WNOHANG, NULL) == 0);
delete gp;
assert(wait(&status) == -1);
assert(errno == ECHILD);
}
free(code);
15 years ago
return retval;
}