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;
|
2022-03-16 22:38:08 +00: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 06:02:03 +00: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.
|
|
|
|
*/
|
2011-06-06 02:05:46 +00:00
|
|
|
|
2020-08-31 05:13:56 +00:00
|
|
|
#ifndef sequence_sink_hh
|
|
|
|
#define sequence_sink_hh
|
2011-06-06 02:05:46 +00:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include "bookmarks.hh"
|
|
|
|
#include "grep_proc.hh"
|
2018-10-11 12:50:28 +00:00
|
|
|
#include "listview_curses.hh"
|
2022-03-16 22:38:08 +00:00
|
|
|
#include "sequence_matcher.hh"
|
2011-06-06 02:05:46 +00:00
|
|
|
|
2018-05-17 14:06:50 +00:00
|
|
|
class sequence_sink : public grep_proc_sink<vis_line_t> {
|
2011-06-06 02:05:46 +00:00
|
|
|
public:
|
2022-03-16 22:38:08 +00:00
|
|
|
sequence_sink(sequence_matcher& sm, bookmark_vector<vis_line_t>& bv)
|
|
|
|
: ss_matcher(sm), ss_bookmarks(bv){};
|
2011-06-06 02:05:46 +00:00
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void grep_match(grep_proc<vis_line_t>& gp,
|
2018-05-17 14:06:50 +00:00
|
|
|
vis_line_t line,
|
2013-05-28 04:35:00 +00:00
|
|
|
int start,
|
|
|
|
int end)
|
|
|
|
{
|
|
|
|
this->ss_line_values.clear();
|
2011-06-06 02:05:46 +00:00
|
|
|
};
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void grep_capture(grep_proc<vis_line_t>& gp,
|
2018-05-17 14:06:50 +00:00
|
|
|
vis_line_t line,
|
2013-05-28 04:35:00 +00:00
|
|
|
int start,
|
|
|
|
int end,
|
2022-03-16 22:38:08 +00:00
|
|
|
char* capture)
|
2013-05-28 04:35:00 +00:00
|
|
|
{
|
|
|
|
if (start == -1) {
|
|
|
|
this->ss_line_values.push_back("");
|
2022-03-16 22:38:08 +00:00
|
|
|
} else {
|
2013-05-28 04:35:00 +00:00
|
|
|
this->ss_line_values.push_back(std::string(capture));
|
|
|
|
}
|
2011-06-06 02:05:46 +00:00
|
|
|
};
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void grep_match_end(grep_proc<vis_line_t>& gp, vis_line_t line)
|
2013-05-28 04:35:00 +00:00
|
|
|
{
|
|
|
|
sequence_matcher::id_t line_id;
|
|
|
|
|
|
|
|
this->ss_matcher.identity(this->ss_line_values, line_id);
|
2011-06-06 02:05:46 +00:00
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
std::vector<vis_line_t>& line_state = this->ss_state[line_id];
|
|
|
|
if (this->ss_matcher.match(this->ss_line_values, line_state, line)) {
|
2018-05-17 14:06:50 +00:00
|
|
|
std::vector<vis_line_t>::iterator iter;
|
2011-06-06 02:05:46 +00:00
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
for (iter = line_state.begin(); iter != line_state.end(); ++iter) {
|
2013-05-28 04:35:00 +00:00
|
|
|
this->ss_bookmarks.insert_once(vis_line_t(*iter));
|
|
|
|
}
|
|
|
|
line_state.clear();
|
|
|
|
}
|
2011-06-06 02:05:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2022-03-16 22:38:08 +00:00
|
|
|
sequence_matcher& ss_matcher;
|
|
|
|
bookmark_vector<vis_line_t>& ss_bookmarks;
|
|
|
|
std::vector<std::string> ss_line_values;
|
2018-05-17 14:06:50 +00:00
|
|
|
std::map<sequence_matcher::id_t, std::vector<vis_line_t> > ss_state;
|
2011-06-06 02:05:46 +00:00
|
|
|
};
|
|
|
|
#endif
|