1
1
mirror of https://github.com/tstack/lnav.git synced 2024-09-11 13:05:51 +03:00
lnav/test/drive_data_scanner.cc

255 lines
8.2 KiB
C++
Raw Normal View History

2013-05-03 10:02:03 +04:00
/**
* Copyright (c) 2007-2012, Timothy Stack
*
* All rights reserved.
2013-06-03 18:45:19 +04: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:
2013-06-03 18:45:19 +04: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.
2013-06-03 18:45:19 +04: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;
* 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.
*/
2011-06-13 18:46:03 +04:00
2022-02-20 02:35:40 +03:00
#ifdef __CYGWIN__
#include <alloca.h>
#endif
2011-06-13 18:46:03 +04:00
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <fstream>
#include <iostream>
2011-06-13 18:46:03 +04:00
2021-10-03 09:17:33 +03:00
#include "base/injector.hh"
#include "textview_curses.hh"
2011-06-13 18:46:03 +04:00
#include "data_scanner.hh"
#include "data_parser.hh"
2013-06-03 18:45:19 +04:00
#include "log_format.hh"
2013-06-29 22:00:34 +04:00
#include "log_format_loader.hh"
#include "pretty_printer.hh"
#include "shared_buffer.hh"
#include "elem_to_json.hh"
#include "../src/data_parser.hh"
#include "../src/view_curses.hh"
2011-06-13 18:46:03 +04:00
using namespace std;
const char *TMP_NAME = "scanned.tmp";
2011-06-13 18:46:03 +04:00
int main(int argc, char *argv[])
{
2013-06-03 18:45:19 +04:00
int c, retval = EXIT_SUCCESS;
bool prompt = false, is_log = false, pretty_print = false;
2013-06-03 18:45:19 +04:00
2021-10-03 09:17:33 +03:00
{
static auto builtin_formats =
injector::get<std::vector<std::shared_ptr<log_format>>>();
auto& root_formats = log_format::get_root_formats();
log_format::get_root_formats().insert(
root_formats.begin(), builtin_formats.begin(), builtin_formats.end());
builtin_formats.clear();
}
2013-06-29 22:00:34 +04:00
{
2020-10-21 08:55:46 +03:00
std::vector<ghc::filesystem::path> paths;
vector<string> errors;
2013-06-29 22:00:34 +04:00
load_formats(paths, errors);
2013-06-29 22:00:34 +04:00
}
while ((c = getopt(argc, argv, "pPl")) != -1) {
2013-06-03 18:45:19 +04:00
switch (c) {
case 'p':
prompt = true;
break;
case 'P':
pretty_print = true;
break;
case 'l':
is_log = true;
break;
2013-06-03 18:45:19 +04:00
default:
retval = EXIT_FAILURE;
break;
}
2011-06-13 18:46:03 +04:00
}
2013-06-03 18:45:19 +04:00
argc -= optind;
argv += optind;
2013-06-03 18:45:19 +04:00
if (retval != EXIT_SUCCESS) {}
else if (argc < 1) {
fprintf(stderr, "error: expecting file name argument(s)\n");
2013-06-03 18:45:19 +04:00
retval = EXIT_FAILURE;
}
else {
for (int lpc = 0; lpc < argc; lpc++) {
2021-02-26 09:22:16 +03:00
std::unique_ptr<ifstream> in_ptr;
istream *in;
2021-02-26 09:22:16 +03:00
FILE *out;
2013-06-03 18:45:19 +04:00
if (strcmp(argv[lpc], "-") == 0) {
in = &cin;
2013-06-03 18:45:19 +04:00
}
else {
2021-02-26 09:22:16 +03:00
auto ifs = std::make_unique<ifstream>(argv[lpc]);
2013-06-03 18:45:19 +04:00
if (!ifs->is_open()) {
fprintf(stderr, "error: unable to open file\n");
retval = EXIT_FAILURE;
}
else {
2021-02-26 09:22:16 +03:00
in_ptr = std::move(ifs);
in = in_ptr.get();
}
2013-06-03 18:45:19 +04:00
}
2021-02-26 09:22:16 +03:00
if ((out = fopen(TMP_NAME, "w")) == nullptr) {
fprintf(stderr, "error: unable to temporary file for writing\n");
retval = EXIT_FAILURE;
2013-06-03 18:45:19 +04:00
}
else {
shared_ptr<log_format> format;
char *log_line;
bool found = false;
char cmd[2048];
string line;
int rc;
getline(*in, line);
if (strcmp(argv[lpc], "-") == 0) {
line = " " + line;
}
2013-06-03 18:45:19 +04:00
log_line = (char *)alloca(line.length());
strcpy(log_line, &line[13]);
string sub_line = line.substr(13);
struct line_range body(0, sub_line.length());
shared_buffer share_manager;
shared_buffer_ref sbr;
sbr.share(share_manager, (char *)sub_line.c_str(), sub_line.size());
2013-06-03 18:45:19 +04:00
auto &root_formats = log_format::get_root_formats();
vector<std::shared_ptr<log_format>>::iterator iter;
vector<logline> index;
2013-06-03 18:45:19 +04:00
if (is_log) {
for (iter = root_formats.begin();
iter != root_formats.end() && !found;
++iter) {
line_info li = { {13}};
logfile *lf = nullptr; // XXX
(*iter)->clear();
if ((*iter)->scan(*lf, index, li, sbr) == log_format::SCAN_MATCH) {
format = (*iter)->specialized();
found = true;
}
}
if (!found) {
fprintf(stderr, "error: log sample does not match\n");
return EXIT_FAILURE;
}
}
2013-06-03 18:45:19 +04:00
vector<logline_value> ll_values;
string_attrs_t sa;
2013-06-03 18:45:19 +04:00
2021-02-26 09:22:16 +03:00
if (format.get() != nullptr) {
format->annotate(0, sbr, sa, ll_values);
body = find_string_attr_range(sa, &SA_BODY);
}
2013-06-03 18:45:19 +04:00
data_parser::TRACE_FILE = fopen("scanned.dpt", "w");
data_scanner ds(sub_line, body.lr_start, sub_line.length());
data_parser dp(&ds);
string msg_format;
dp.dp_msg_format = &msg_format;
dp.parse();
dp.print(out, dp.dp_pairs);
fprintf(out, "msg :%s\n", sub_line.c_str() + body.lr_start);
fprintf(out, "format :%s\n", msg_format.c_str());
if (pretty_print) {
data_scanner ds2(sub_line, body.lr_start, sub_line.length());
pretty_printer pp(&ds2, sa);
attr_line_t pretty_out;
pp.append_to(pretty_out);
fprintf(out, "\n--\n%s", pretty_out.get_string().c_str());
}
auto_mem<yajl_gen_t> gen(yajl_gen_free);
2021-02-26 09:22:16 +03:00
gen = yajl_gen_alloc(nullptr);
yajl_gen_config(gen.in(), yajl_gen_beautify, true);
elements_to_json(gen, dp, &dp.dp_pairs);
const unsigned char *buf;
size_t len;
yajl_gen_get_buf(gen, &buf, &len);
fwrite(buf, 1, len, out);
fclose(out);
sprintf(cmd, "diff -u %s %s", argv[lpc], TMP_NAME);
rc = system(cmd);
if (rc != 0) {
if (prompt) {
char resp[4];
printf("\nOriginal line:\n%s\n", sub_line.c_str() + body.lr_start);
printf("Would you like to update the original file? (y/N) ");
fflush(stdout);
2015-04-02 23:44:27 +03:00
log_perror(scanf("%3s", resp));
2013-06-05 06:45:04 +04:00
if (strcasecmp(resp, "y") == 0) {
rename(TMP_NAME, argv[lpc]);
}
else{
retval = EXIT_FAILURE;
}
2013-06-03 18:45:19 +04:00
}
else {
fprintf(stderr, "error: mismatch\n");
2013-06-03 18:45:19 +04:00
retval = EXIT_FAILURE;
}
}
fclose(data_parser::TRACE_FILE);
2021-02-26 09:22:16 +03:00
data_parser::TRACE_FILE = nullptr;
2013-06-03 18:45:19 +04:00
}
}
}
return retval;
2011-06-13 18:46:03 +04:00
}