Commit Graph

312 Commits (master)

Author SHA1 Message Date
Timothy Stack f2968a7032 [build] missing include ... again 2 years ago
Timothy Stack 45b9745cf2 [build] missing include 2 years ago
Timothy Stack a27198e8ca [regex101] add an integration with regex101
... and a pile of other changes
2 years ago
Timothy Stack 0785a432fa [console] colorize console output 2 years ago
Timothy Stack 292724d7ad [build] remove use of memset 2 years ago
Timothy Stack 5eaf1c4332 [exttm] missed an initialization 2 years ago
Timothy Stack c8799b1c99 [build] missing include 2 years ago
Timothy Stack d82140de52 [date-time-scanner] fix generating with a user-defined format
Fixes #967
2 years ago
Timothy Stack 99c1688c2e [attr_line] use variant instead of a union for attribute values 2 years ago
Timothy Stack 81e63784e7 [modernize] some more cleanups 2 years ago
Timothy Stack b856cd9657 [build] silence some warnings 2 years ago
Timothy Stack 6fff9d60f5 [build] some clang-tidy fixes 2 years ago
Timothy Stack 8b3bb9312e [build] cmake fixes for linux 2 years ago
Timothy Stack 66ef5fdae1 [clang-format] init 2 years ago
Timothy Stack d0ba84d9be [build] run cmake-init and switch from hunter to conan for packages 2 years ago
Timothy Stack 4564e162d0 [build] try to optimize compile time 2 years ago
Peter Schiffer b8a31ae9b4
Add `#include <iterator>` to `string_util.cc`
Lnav fails to build on the next Fedora version due to the following error:
```
make[3]: Entering directory '/builddir/build/BUILD/lnav-0.10.1/src/base'
g++ -std=c++14 -DHAVE_CONFIG_H -I. -I../../src   -Wall -I../../src/ -I../../src/third-party -I../../src/fmtlib     -I../../src/third-party/doctest-root  -I/usr/local/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -D_GNU_SOURCE  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64  -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o string_util.o string_util.cc
make[3]: Leaving directory '/builddir/build/BUILD/lnav-0.10.1/src/base'
string_util.cc: In function 'std::string repeat(const std::string&, size_t)':
string_util.cc:199:22: error: 'ostream_iterator' is not a member of 'std'
  199 |     std::fill_n(std::ostream_iterator<std::string>(os), num, input);
      |                      ^~~~~~~~~~~~~~~~
string_util.cc:38:1: note: 'std::ostream_iterator' is defined in header '<iterator>'; did you forget to '#include <iterator>'?
   37 | #include "string_util.hh"
  +++ |+#include <iterator>
   38 |
```

Reason is probably the updated GNU toolchain, more info:
https://fedoraproject.org/wiki/Changes/GNUToolchainF36

This patch fixes the issue.
2 years ago
Cristian Chiru 084b88b6f4 Fix func signature 2 years ago
Cristian Chiru b23e0ad508 Fix lnav homedir for windows 2 years ago
Cristian Chiru e2fe64e536 Fix for building on msys2; Closes #795 2 years ago
Timothy Stack 8bb034eeeb [pcap] initial pcap support
Fixes #12
3 years ago
Timothy Stack f74214b9b6 [sql] add a gunzip() SQL function 3 years ago
Timothy Stack 7627c41802 [build] missing file 3 years ago
Timothy Stack 19fd336e9a [formats] add logfmt 3 years ago
Timothy Stack 008b1c827b [build] fix some 32-bit build issues 3 years ago
Timothy Stack dc0b7ff631 [cmake] run cmake-format 3 years ago
Timothy Stack b884f732f2 [json-ext] json_contains() should accept null
Related to #447
3 years ago
Timothy Stack 954e368974 [build] rejigger doctest inclusion a bit 3 years ago
Timothy Stack 2edc3c8382 [lnav_log] fix issue when the debug log file couldn't be opened
Related to #866
3 years ago
Timothy Stack b2f11ac27f [intern] some cleanup 3 years ago
Timothy Stack 0de76b29c8 [files] fix refreshing files with errors and auto-switching to text view
Fixes #909
3 years ago
Timothy Stack 211f10535c [cmds] add --view flag 3 years ago
Timothy Stack 76ce111d48 [test] fix a leak 3 years ago
Timothy Stack d3d527d290 [tests] adding some more coverage 3 years ago
Timothy Stack 8f7b08c9c5 [logfile] add notes for automatic decisions and fix compile errors
Fixes #864
3 years ago
Timothy Stack 108dc1b77a [build] more stacktrace 3 years ago
Timothy Stack 9231e812d7 [build] disable backward 3 years ago
Timothy Stack 399cf83fc5 [ras] add backward-cpp 3 years ago
Timothy Stack be51a4e3de [arc/remote] use a single work directory for archive/remote files 3 years ago
Timothy Stack d2b5690e0c [readline] improve filename completion 3 years ago
Timothy Stack 98677eb09a [remote] some more tweaks and add tab-completion 3 years ago
Timothy Stack 681f771bb7 [remote] add preview for remote :open 3 years ago
Timothy Stack ab671d5834 [lnav_log] add a thread-local prefix for messages 3 years ago
Timothy Stack 04676d75b7 [build] missing include 3 years ago
Timothy Stack f050c7b0a7 [remote] start to wire up remote support 3 years ago
Timothy Stack 444e7e3289 [remote] draft of the tailer 3 years ago
Timothy Stack d31aa845f5 [base] refactor duration2str 3 years ago
Timothy Stack d15c1103cf [build] bump deps and add a missing include 3 years ago
Timothy Stack 0658b9ef57 [tests] move some test code around 3 years ago
Timothy Stack d183247a31 [tests] add some tests for time-ago stuff 3 years ago
Timothy Stack 32ddc76624 [time] use a 64-bit time_t in some places 3 years ago
Timothy Stack c0ed59e61e [sqlite] implement .dump SQL command 3 years ago
Timothy Stack 92e20ffd51 [reltime] add support for weekdays and having timeslice() return NULL when a time is out-of-range 3 years ago
Timothy Stack f6128240ab [sql] add lnav_top_file() SQL function 3 years ago
Timothy Stack d45d7d6c58 [docs] add report generation to cookbook 3 years ago
Timothy Stack 9575f9c7d7 [view_curses] fix color pair allocation
fixes #839
3 years ago
Timothy Stack f5c72736cb [docs] some more doc text 3 years ago
Timothy Stack 0f238f7972 [docs] add some more text to arch docs and other tweaks 3 years ago
Timothy Stack f5e88b7158 [docs] add ARCHITECTURE.md and various other things 3 years ago
Timothy Stack fd40b55e0a [docs] some more README.md files 3 years ago
Timothy Stack a4368223ea some docs and test fixup 3 years ago
Timothy Stack b847ae7164 [tests] more coverage 3 years ago
Timothy Stack 49ebde5953 [build] remove pcrecpp and other stuff
Linking against a binary c++ lib suuuucckkkkkssss...
3 years ago
Timothy Stack 215c08f632 [build] missed curl_looper subclassing isc::service 3 years ago
Timothy Stack 50b63559ce [build] need a cast... 3 years ago
Timothy Stack 775d2443a6 [injector] fix some init issues 3 years ago
Timothy Stack eea5220191 [build] missing include 3 years ago
Timothy Stack cac1175973 [services] initial pass at injecting services and a bunch of other stuff 3 years ago
Timothy Stack 56bee6f4c9 [archive] remove old unpacked archives and a bunch of other stuff 3 years ago
Timothy Stack 8235f9af5d [tests] try to make scripty output readable 4 years ago
Timothy Stack 6d8a9f2121 [debt] try to fix leak 4 years ago
Timothy Stack 9a073e80e7 [result] fix Result.map() issue with copying the value when the result was in error 4 years ago
Timothy Stack 4ff2b710d5 [log_format] change w3c_log to put extra columns into a JSON column 4 years ago
Timothy Stack 3a11140b27 [humanize] handle a zero value explicitly since log() doesn't like it (doh...) 4 years ago
Timothy Stack e6df0fba0a [humanize] something seems wrong 4 years ago
Timothy Stack 730233e356 [debt] some more leak plugging
Defect Number:
    Reviewed By:
   Testing Done:
4 years ago
Timothy Stack 32f112b8de [formats] add w3c extended log format impl
Fiexes #798
4 years ago
Timothy Stack 22c2e95df0 [filters] sql filter
Related to #568
4 years ago
Timothy Stack 9a431f5354 [build] missing vec 4 years ago
Timothy Stack fa9a66152f [build] missing include 4 years ago
Timothy Stack 8e629b166a [build] some more compiler profiling
Defect Number:
    Reviewed By:
   Testing Done:
4 years ago
Timothy Stack 5bffcb4c3e [build] missing include again... 4 years ago
Timothy Stack d1a84b3606 [build] missing include 4 years ago
Timothy Stack 51d1204a96 [arc] add content hash to archive temp dir and tech debt 4 years ago
Timothy Stack 0765c07010 [view] migrate view_action stuff to function objects 4 years ago
Timothy Stack 9d87cfa2f0 [debt] more tech debt 4 years ago
Timothy Stack f192cb7c3e [input_dispatcher] fix handling of unicode input
Fixes #791
4 years ago
Timothy Stack db8a3c4d38 [debt] doing some cleanup
Defect Number:
    Reviewed By:
   Testing Done:
4 years ago
Timothy Stack e4ea9ca584 [arc] report errors when opening archives 4 years ago
Timothy Stack df3df8369c [session] stages 4 years ago
Timothy Stack 5e42b4cb8a [debt] include cleanup 4 years ago
Timothy Stack 0dff822ade [debt] remove pthreadpp.hh 4 years ago
Timothy Stack 7b77a612c2 [files] make file scanning async 4 years ago
Timothy Stack dfd18a4be5 [view] add files view 4 years ago
Timothy Stack 579e4274f9 [files] initial impl for opening archives 4 years ago
Timothy Stack 276f71423e [readline] add alternate enter command 4 years ago
Timothy Stack 6ec90c521b [build] dump crash log during build 4 years ago
Timothy Stack 8ff80ceff0 [lnav_log] shorten file name to the base name 4 years ago
Suresh Sundriyal 70847429fa [freebsd] Remove the use of basename from log_msg.
Fix
4 years ago
Timothy Stack 37b9b346a9 [logger] fix for queue.h removal change 4 years ago
Timothy Stack e8e89ad0fd [build] remove queue.h refs 4 years ago
Suresh Sundriyal 908c41cb64 Fix compiler warnings about unused variables. 4 years ago
Timothy Stack 0940e97b2b [nits] fix some naming issues
Fixes #169
4 years ago
Timothy Stack 3da3ec799a [session] allow the name 4 years ago
Timothy Stack 138a506b1a [perf] a few performance tweaks 4 years ago
Timothy Stack 10b8d64b03 [lnav_log] fix lldb arguments 5 years ago
Timothy Stack 73e902f7d8 [json-log] handle invalid json log lines
Header from folded patch 'foldme1.patch':

[local] foldme
5 years ago
Timothy Stack 9a05b9d186 [config] pay attention to XDG_CONFIG_HOME
Fixes #105
5 years ago
Timothy Stack 91dd8a84ec [cmake] enable jit for libpcre 5 years ago
Timothy Stack 02c53976b4 Some refactoring for the line buffer and other cleanups
Fixes #649
5 years ago
Timothy Stack 0918063640 [cleanup] some modernization 5 years ago
Timothy Stack fb7d6eafaf [build] some refactoring of files 5 years ago