X-Git-Url: https://projects.mako.cc/source/wikiq/blobdiff_plain/61ee7626135a5cd0b1379448cc967d3e9022852c..21341e70f9d509aeaaf0cb6a39caf56d704dc838:/wikiq.cpp diff --git a/wikiq.cpp b/wikiq.cpp index 0343dd3..ad9ac48 100644 --- a/wikiq.cpp +++ b/wikiq.cpp @@ -11,7 +11,6 @@ #include #include "expat.h" #include -#include "disorder.h" #include "md5.h" #include "dtl/dtl.hpp" #include @@ -60,6 +59,10 @@ typedef struct { // title regexes vector title_regexes; + // regexes for checking with revisions + vector content_regex_names; + vector content_regexes; + // regexes for looking within diffs vector diff_regex_names; vector diff_regexes; @@ -269,6 +272,15 @@ write_row(revisionData *data) } } + // search the content of the revision for a any of the regexes + vector content_regex_matches; + if (!data->content_regexes.empty()) { + for (vector::iterator r = data->content_regexes.begin(); r != data->content_regexes.end(); ++r) { + pcrecpp::RE& content_regex = *r; + content_regex_matches.push_back(content_regex.PartialMatch(data->text)); + } + } + //vector additions; //vector deletions; string additions; @@ -332,12 +344,16 @@ write_row(revisionData *data) << data->editorid << "\t" << ((data->minor) ? "TRUE" : "FALSE") << "\t" << (unsigned int) data->text_size << "\t" - << shannon_H(data->text, data->text_size) << "\t" << md5_hex_output << "\t" << reverted_to << "\t" << (int) additions.size() << "\t" << (int) deletions.size(); + for (int n = 0; n < data->content_regex_names.size(); ++n) { + cout << "\t" << ((!content_regex_matches.empty() + && content_regex_matches.at(n)) ? "TRUE" : "FALSE"); + } + for (int n = 0; n < data->diff_regex_names.size(); ++n) { cout << "\t" << ((!diff_regex_matches_adds.empty() && diff_regex_matches_adds.at(n)) ? "TRUE" : "FALSE") << "\t" << ((!diff_regex_matches_dels.empty() && diff_regex_matches_dels.at(n)) ? "TRUE" : "FALSE"); @@ -512,6 +528,8 @@ void print_usage(char* argv[]) { << endl << "options:" << endl << " -v verbose mode prints text and comments after each line of tab separated data" << endl + << " -n name of the following regex for content (e.g. -n name -r \"...\")" << endl + << " -r regex to check against content of the revision" << endl << " -N name of the following regex for diffs (e.g. -N name -R \"...\")" << endl << " -R regex to check against diffs (i.e., additions and deletions)" << endl << " -t parse revisions only from pages whose titles match regex(es)" << endl @@ -520,14 +538,15 @@ void print_usage(char* argv[]) { << "a tab-separated stream of revisions on standard out:" << endl << endl << "title, articleid, revid, timestamp, anon, editor, editorid, minor," << endl - << "text_length, text_entropy, text_md5, reversion, additions_size, deletions_size" << endl + << "text_length, text_md5, reversion, additions_size, deletions_size" << endl << ".... and additional fields for each regex executed against add/delete diffs" << endl << endl << "Boolean fields are TRUE/FALSE except in the case of reversion, which is blank" << endl << "unless the article is a revert to a previous revision, in which case, it" << endl << "contains the revision ID of the revision which was reverted to." << endl << endl - << "author: Erik Garrison " << endl; + << "authors: Erik Garrison " << endl + << " Benjamin Mako Hill " << endl; } @@ -541,6 +560,7 @@ main(int argc, char *argv[]) output_type = SIMPLE; char c; string diff_regex_name; + string content_regex_name; // the user data struct which is passed to callback functions revisionData data; @@ -554,6 +574,16 @@ main(int argc, char *argv[]) case 'v': output_type = FULL; break; + case 'n': + content_regex_name = optarg; + break; + case 'r': + data.content_regexes.push_back(pcrecpp::RE(optarg, pcrecpp::UTF8())); + data.content_regex_names.push_back(content_regex_name); + if (!content_regex_name.empty()) { + content_regex_name.clear(); + } + break; case 'N': diff_regex_name = optarg; break; @@ -604,20 +634,30 @@ main(int argc, char *argv[]) cout << "title" << "\t" << "articleid" << "\t" << "revid" << "\t" - << "date" << " " + << "date" << "_" << "time" << "\t" << "anon" << "\t" << "editor" << "\t" << "editor_id" << "\t" << "minor" << "\t" << "text_size" << "\t" - << "text_entropy" << "\t" << "text_md5" << "\t" << "reversion" << "\t" << "additions_size" << "\t" << "deletions_size"; int n = 0; + if (!data.content_regexes.empty()) { + for (vector::iterator r = data.content_regexes.begin(); + r != data.content_regexes.end(); ++r, ++n) { + if (data.content_regex_names.at(n).empty()) { + cout << "\t" << "regex" << n; + } else { + cout << "\t" << data.content_regex_names.at(n); + } + } + } + if (!data.diff_regexes.empty()) { for (vector::iterator r = data.diff_regexes.begin(); r != data.diff_regexes.end(); ++r, ++n) { if (data.diff_regex_names.at(n).empty()) { @@ -629,6 +669,7 @@ main(int argc, char *argv[]) } } } + cout << endl; // shovel data into the parser