0
I Use This!
Inactive

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Jun 03, 2024 — Jun 03, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
csv-bin-cat, csv-bin-cut: to-do notes added. More... about 8 years ago
csv-bin-cat: minor, better error message if no arguments given. Clean up help and comments. More... about 8 years ago
csv-bin-cat: make unit tests to use canned data; data generation took a few seconds each time. More... about 8 years ago
csv-bin-cat: fix the '--count' handling, now all unit tests pass. More... about 8 years ago
csv-bin-cat: fix the '--skip' implementation. More... about 8 years ago
csv-bin-cat: test on multiple files, test '--count' and '--skip' options. Some tests _fail_, to be continued. More... about 8 years ago
csv-bin-cat: remove old, commented-out prototype code. More... about 8 years ago
csv-bin-cat: first unit test. More... about 8 years ago
csv-bin-cat: bug-fixes, properly handle eof, handle multiple output fields. Still likely incomplete but can be unit tested already. More... about 8 years ago
csv-bin-cat: first version that compiles and works in simplest cases (does not work yet for more complex scenarios). More... about 8 years ago
csv-bin-cat: start implementation, but still mostly at '--help'-design. More... about 8 years ago
csv-bin-cat: first draft, does nothing yet, design by '--help'. More... about 8 years ago
io-tee: flushing pipe on exit added More... about 8 years ago
csv-time; enable conversion of user given format More... about 8 years ago
comma-timeout-group: minor, calculate nanosecond component of duration only when duration is below the maximal value in the first place, zero otherwise. More... about 8 years ago
comma-timeout-group: check duration and if needed set to the system's max supported value (e.g. 32-bit) More... about 8 years ago
comma-process-util: fixed validating (and starting up) processes on sluggish systems More... about 8 years ago
bash: made kill commands more portable More... about 8 years ago
csv-format: added repeat operation, like 2i,3f --count 2 -> 2i,3f,2i,3f More... over 8 years ago
comma-test-util: reverting comma_test_commands(), it cannot be improved More... over 8 years ago
Merge branch 'master' of https://github.com/acfr/comma More... over 8 years ago
csv-enumerate: --help written More... over 8 years ago
csv-enumerate: --help written More... over 8 years ago
csv-enumerate: count output added to --map More... over 8 years ago
csv-enumerate implemented More... over 8 years ago
Revert "comma-test-util: comma_status_command now check status of the whole pipeline for each test" PIPESTATUS is not returned from eval. More... over 8 years ago
csv/applications: remove most plain uses of signal_flag. It is unnecessary and potentially dangerous because under some circumstances the current implementation could "loose" signals altogether: by default, signal_flag handles SIGPIPE. This signal is sent when the output of the application in question disappears: write into a pipe, the pipe reader is gone, get SIGPIPE in return. However, the output is often buffered and not flushed. Therefore, the SIGPIPE is sent not in the inner application loop when writes are done, but only later when buffers are flushed. In case of small to moderate data, the flush happens only when the application exits, which is well past the point where the signal flag is checked. Therefore, the flag is set but never checked and the application exits with a normal exit code effectively ignoring the signal. More... over 8 years ago
add microseconds to csv-time output More... over 8 years ago
Remove signal_flag.h from applications that do not use it. More... over 8 years ago
comma-test-util: comma_status_command now check status of the whole pipeline for each test More... over 8 years ago