forked from tstack/lnav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate-extension-functions.cc
226 lines (191 loc) · 7.14 KB
/
state-extension-functions.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/**
* Copyright (c) 2013, 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.
*
* @file state-extension-functions.cc
*/
#include <string>
#include <stdint.h>
#include "base/opt_util.hh"
#include "config.h"
#include "lnav.hh"
#include "sql_util.hh"
#include "sqlite3.h"
#include "vtab_module.hh"
static std::optional<int64_t>
sql_log_top_line()
{
const auto& tc = lnav_data.ld_views[LNV_LOG];
if (tc.get_inner_height() == 0_vl) {
return std::nullopt;
}
return (int64_t) tc.get_selection();
}
static std::optional<int64_t>
sql_log_msg_line()
{
const auto& tc = lnav_data.ld_views[LNV_LOG];
if (tc.get_inner_height() == 0_vl) {
return std::nullopt;
}
auto top_line = tc.get_selection();
auto line_pair_opt = lnav_data.ld_log_source.find_line_with_file(top_line);
if (!line_pair_opt) {
return std::nullopt;
}
auto ll = line_pair_opt.value().second;
while (ll->is_continued()) {
--ll;
top_line -= 1_vl;
}
return (int64_t) top_line;
}
static std::optional<std::string>
sql_log_top_datetime()
{
const auto& tc = lnav_data.ld_views[LNV_LOG];
if (tc.get_inner_height() == 0_vl) {
return std::nullopt;
}
auto top_ri = lnav_data.ld_log_source.time_for_row(
lnav_data.ld_views[LNV_LOG].get_selection());
if (!top_ri) {
return std::nullopt;
}
char buffer[64];
sql_strftime(buffer, sizeof(buffer), top_ri->ri_time);
return buffer;
}
static std::optional<std::string>
sql_lnav_top_file()
{
auto top_view_opt = lnav_data.ld_view_stack.top();
if (!top_view_opt) {
return std::nullopt;
}
auto* top_view = top_view_opt.value();
return top_view->map_top_row([](const auto& al) {
return get_string_attr(al.get_attrs(), logline::L_FILE) |
[](const auto wrapper) {
auto lf = wrapper.get();
return std::make_optional(lf->get_filename());
};
});
}
static const char*
sql_lnav_version()
{
return PACKAGE_VERSION;
}
static int64_t
sql_error(const char* str, std::optional<string_fragment> reason)
{
auto um = lnav::console::user_message::error(str);
if (reason) {
um.with_reason(reason->to_string());
}
throw um;
}
static std::optional<std::string>
sql_echoln(std::optional<std::string> arg)
{
if (arg) {
auto& ec = lnav_data.ld_exec_context;
auto outfile = ec.get_output();
if (outfile) {
fmt::print(outfile.value(), FMT_STRING("{}\n"), arg.value());
if (outfile.value() == stdout) {
lnav_data.ld_stdout_used = true;
}
}
}
return arg;
}
int
state_extension_functions(struct FuncDef** basic_funcs,
struct FuncDefAgg** agg_funcs)
{
static struct FuncDef state_funcs[] = {
sqlite_func_adapter<decltype(&sql_log_top_line), sql_log_top_line>::
builder(
help_text(
"log_top_line",
"Return the number of the focused line of the log view.")
.sql_function()
.with_prql_path({"lnav", "view", "top_line"})),
sqlite_func_adapter<decltype(&sql_log_msg_line), sql_log_msg_line>::
builder(help_text("log_msg_line",
"Return the starting line number of the focused "
"log message.")
.sql_function()
.with_prql_path({"lnav", "view", "msg_line"})),
sqlite_func_adapter<decltype(&sql_log_top_datetime),
sql_log_top_datetime>::
builder(help_text("log_top_datetime",
"Return the timestamp of the line at the top of "
"the log view.")
.sql_function()
.with_prql_path({"lnav", "view", "top_datetime"})),
sqlite_func_adapter<decltype(&sql_lnav_top_file), sql_lnav_top_file>::
builder(help_text("lnav_top_file",
"Return the name of the file that the top line "
"in the current view came from.")
.sql_function()
.with_prql_path({"lnav", "view", "top_file"})),
sqlite_func_adapter<decltype(&sql_lnav_version), sql_lnav_version>::
builder(
help_text("lnav_version", "Return the current version of lnav")
.sql_function()
.with_prql_path({"lnav", "version"})),
sqlite_func_adapter<decltype(&sql_error), sql_error>::builder(
help_text("raise_error",
"Raises an error with the given message when executed")
.sql_function()
.with_parameter({"msg", "The error message"})
.with_parameter(
help_text("reason", "The reason the error occurred")
.optional())
.with_example({
"To raise an error if a variable is not set",
"SELECT ifnull($val, raise_error('please set $val', "
"'because'))",
}))
.with_flags(SQLITE_UTF8),
sqlite_func_adapter<decltype(&sql_echoln), sql_echoln>::builder(
help_text("echoln",
"Echo the argument to the current output file and return "
"it")
.sql_function()
.with_parameter(
{"value", "The value to write to the current output file"})
.with_tags({"io"}))
.with_flags(SQLITE_UTF8),
{nullptr},
};
*basic_funcs = state_funcs;
return SQLITE_OK;
}