/* cut.c - print selected ranges from a file * * Copyright 2016 Rob Landley * * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/cut.html * * Deviations from posix: added -DF. We can only accept 512 selections, and * "-" counts as start to end. Using spaces to separate a comma-separated list * is silly and inconsistent with dd, ps, cp, and mount. * * todo: -n, -s with -c USE_CUT(NEWTOY(cut, "b*|c*|f*|F*|C*|O(output-delimiter):d:sDn[!cbf]", TOYFLAG_USR|TOYFLAG_BIN)) config CUT bool "cut" default y help usage: cut [-Ds] [-bcfF LIST] [-dO DELIM] [FILE...] Print selected parts of lines from each FILE to standard output. Each selection LIST is comma separated, either numbers (counting from 1) or dash separated ranges (inclusive, with X- meaning to end of line and -X from start). By default selection ranges are sorted and collated, use -D to prevent that. -b Select bytes -c Select UTF-8 characters -C Select unicode columns -d Use DELIM (default is TAB for -f, run of whitespace for -F) -D Don't sort/collate selections or match -fF lines without delimiter -f Select fields (words) separated by single DELIM character -F Select fields separated by DELIM regex -O Output delimiter (default one space for -F, input delim for -f) -s Skip lines without delimiters */ #define FOR_cut #include "toys.h" GLOBALS( char *d, *O; struct arg_list *select[5]; // we treat them the same, so loop through int pairs; regex_t reg; ) // Return number of bytes to start of first column fitting in columns // invalid sequences are skipped/ignored int unicolumns(char *start, unsigned columns) { int i, j = 0; wchar_t wc; char *s = start, *ss = start; // Skip start, rounding down if we hit a multicolumn char while (jcolumns) break; ss = s; } } } return ss-start; } // Apply selections to an input line, producing output static void cut_line(char **pline, long len) { unsigned *pairs = (void *)toybuf; char *line; int i, j; if (!pline) return; line = *pline; if (len && line[len-1]=='\n') line[--len] = 0; // Loop through selections for (i=0; i=len) continue; if (!end || end>len) end = len; count = end-start; // Find start and end of output string for the relevant selection type if (toys.optflags&FLAG_b) s += start; else if (toys.optflags&FLAG_C) { // crunch_str() currently assumes that combining characters get // escaped, to provide an unambiguous visual representation. // This assumes the input string is null terminated. //if (start) crunch_str(&s, start, 0, 0, 0); //if (!*s) continue; //start = s-line; //ss = s; //crunch_str(&ss, count, 0, 0, 0); //count = ss-s; s += unicolumns(s, start); count = unicolumns(s, end-start); } else if (toys.optflags&FLAG_c) { wchar_t wc; char *sss; // Find start ss = line+len; while (start && s*b) return 1; if (a[1]b[1]) return 1; return 0; } // parse A or A-B or A- or -B static char *get_range(void *data, char *str, int len) { char *end = str; unsigned *pairs = (void *)toybuf, i; // Using toybuf[] to store ranges means we can have 512 selections max. if (TT.pairs == sizeof(toybuf)/sizeof(int)) perror_exit("select limit"); pairs += 2*TT.pairs++; pairs[1] = UINT_MAX; for (i = 0; ;i++) { if (i==2) return end; if (isdigit(*end)) { long long ll = estrtol(end, &end, 10); if (ll<1 || ll>UINT_MAX || errno) return end; pairs[i] = ll; } if (*end++ != '-') break; } if (!i) pairs[1] = pairs[0]; if ((end-str)pairs[1]) return str; // No error return 0; } void cut_main(void) { int i; char buf[8]; // Parse command line arguments if ((toys.optflags&(FLAG_s|FLAG_f|FLAG_F))==FLAG_s) error_exit("-s needs -Ff"); if ((toys.optflags&(FLAG_d|FLAG_f|FLAG_F))==FLAG_d) error_exit("-d needs -Ff"); if (!TT.d) TT.d = (toys.optflags&FLAG_F) ? "[[:space:]][[:space:]]*" : "\t"; if (toys.optflags&FLAG_F) xregcomp(&TT.reg, TT.d, REG_EXTENDED); if (!TT.O) { if (toys.optflags&FLAG_F) TT.O = " "; else if (toys.optflags&FLAG_f) TT.O = TT.d; } // Parse ranges, which are attached to a selection type (only one can be set) for (i = 0; i pairs[to+1]) { to += 2; memcpy(pairs+to, pairs+from, 2*sizeof(unsigned)); } else if (pairs[from+1] > pairs[to+1]) pairs[to+1] = pairs[from+1]; } TT.pairs = (to/2)+1; } // For each argument, loop through lines of file and call cut_line() on each loopfiles_lines(toys.optargs, cut_line); }