mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
c0684a97cc
Fixup the release makefile a bit.
83 lines
1.9 KiB
C++
83 lines
1.9 KiB
C++
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <assert.h>
|
|
|
|
#include <sqlite3.h>
|
|
|
|
#include "lnav.hh"
|
|
#include "auto_mem.hh"
|
|
#include "sqlite-extension-func.h"
|
|
#include "regexp_vtab.hh"
|
|
|
|
struct callback_state {
|
|
int cs_row;
|
|
};
|
|
|
|
struct _lnav_data lnav_data;
|
|
|
|
static int sql_callback(void *ptr,
|
|
int ncols,
|
|
char **colvalues,
|
|
char **colnames)
|
|
{
|
|
struct callback_state *cs = (struct callback_state *)ptr;
|
|
|
|
printf("Row %d:\n", cs->cs_row);
|
|
for (int lpc = 0; lpc < ncols; lpc++) {
|
|
printf(" Column %10s: %s\n", colnames[lpc], colvalues[lpc]);
|
|
}
|
|
|
|
cs->cs_row += 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
std::string execute_any(exec_context &ec, const std::string &cmdline_with_mode)
|
|
{
|
|
return "";
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int retval = EXIT_SUCCESS;
|
|
auto_mem<sqlite3> db(sqlite3_close);
|
|
|
|
log_argv(argc, argv);
|
|
|
|
if (argc != 2) {
|
|
fprintf(stderr, "error: expecting an SQL statement\n");
|
|
retval = EXIT_FAILURE;
|
|
}
|
|
else if (sqlite3_open(":memory:", db.out()) != SQLITE_OK) {
|
|
fprintf(stderr, "error: unable to make sqlite memory database\n");
|
|
retval = EXIT_FAILURE;
|
|
}
|
|
else {
|
|
auto_mem<char> errmsg(sqlite3_free);
|
|
struct callback_state state;
|
|
|
|
memset(&state, 0, sizeof(state));
|
|
|
|
{
|
|
int register_collation_functions(sqlite3 * db);
|
|
|
|
register_sqlite_funcs(db.in(), sqlite_registration_funcs);
|
|
register_collation_functions(db.in());
|
|
}
|
|
|
|
register_regexp_vtab(db.in());
|
|
|
|
if (sqlite3_exec(db.in(),
|
|
argv[1],
|
|
sql_callback,
|
|
&state,
|
|
errmsg.out()) != SQLITE_OK) {
|
|
fprintf(stderr, "error: sqlite3_exec failed -- %s\n", errmsg.in());
|
|
retval = EXIT_FAILURE;
|
|
}
|
|
}
|
|
|
|
return retval;
|
|
}
|