#csv #data #cli

app datamars

A Rust rewrite of https://www.gnu.org/software/datamash/

7 unstable releases (3 breaking)

0.4.0 Aug 20, 2022
0.3.0 Aug 3, 2022
0.2.3 Jul 25, 2022
0.2.1 Jun 26, 2022
0.1.0 Jun 6, 2022

#1695 in Math

Apache-2.0

19KB
547 lines

datamars

My own copy of GNU datamash.

This software is pre-alpha and it's missing quite a lot of features.

Installation

If you want the latest version, use cargo install datamars.

Note: the executable is called ms.

Implementation details

the algorithm basically goes down like this:

args = parse_args()
# parse ops
ops = build_operation_objects(args.ops)

groups = dict(str->list[ops])

for line in file: 
    parts = line.split(args.delimiter)
    group = groupby(parts) if grouping is defined else default
        
    if group not in groups:
        # build new objects for every group
        groups.add_group(group, ops)
        
    for op in groups[group]:
        op.process(parts)
        
for group in groups:
    print(group, [op.result() for op in group])

There is a set of operations for every group. Operations keep the running state for a group. The operations update the state for every new entry in the group - but only the state that is needed, eg no calculation of squared deviations. Should be pretty fast.

Dependencies

~3MB
~63K SLoC