logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/

wc.c (6828B)


  1. // utils-std: Collection of commonly available Unix tools
  2. // SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
  3. // SPDX-License-Identifier: MPL-2.0
  4. #define _POSIX_C_SOURCE 200809L
  5. #include "../config.h" // HAS_*
  6. #include "../lib/bitmasks.h"
  7. #include "../lib/getopt_nolong.h"
  8. #include <ctype.h> // isspace
  9. #include <errno.h>
  10. #include <fcntl.h> // posix_fadvise
  11. #include <locale.h> // setlocale
  12. #include <stdbool.h>
  13. #include <stdint.h> // uint8_t
  14. #include <stdio.h> // fprintf, fopen
  15. #include <stdlib.h> // abort
  16. #include <string.h> // strchr, strerror
  17. #include <sys/stat.h>
  18. #include <unistd.h> // getopt
  19. #include <wchar.h>
  20. #include <wctype.h> // iswspace
  21. #ifdef HAS_GETOPT_LONG
  22. #include <getopt.h>
  23. #endif
  24. #define WC_BUFSIZ 16320
  25. static char buf[WC_BUFSIZ] = "";
  26. const char *argv0 = "wc";
  27. static enum {
  28. WC_OPT_C = 1 << 0,
  29. WC_OPT_L = 1 << 1,
  30. WC_OPT_W = 1 << 2,
  31. WC_OPT_ALL = WC_OPT_C | WC_OPT_L | WC_OPT_W,
  32. } wc_opts = 0;
  33. off_t total_bytes = 0, total_lines = 0, total_words = 0;
  34. static void
  35. print_counts(off_t lines, off_t words, off_t bytes, const char *filename)
  36. {
  37. const char *fmt = "%ld";
  38. if(FIELD_MATCH(wc_opts, WC_OPT_L))
  39. {
  40. printf(fmt, lines);
  41. fmt = " %ld";
  42. }
  43. if(FIELD_MATCH(wc_opts, WC_OPT_W))
  44. {
  45. printf(fmt, words);
  46. fmt = " %ld";
  47. }
  48. if(FIELD_MATCH(wc_opts, WC_OPT_C))
  49. {
  50. printf(fmt, bytes);
  51. }
  52. if(filename != NULL) printf(" %s", filename);
  53. printf("\n");
  54. }
  55. static int
  56. wc_file_bytes(int fd, char *filename)
  57. {
  58. off_t bytes = 0, lines = 0, words = 0, wordlen = 0;
  59. ssize_t nread = -1;
  60. if(FIELD_MATCH(wc_opts, WC_OPT_L) || FIELD_MATCH(wc_opts, WC_OPT_W))
  61. {
  62. while((nread = read(fd, buf, WC_BUFSIZ)) > 0)
  63. {
  64. bytes += nread;
  65. for(ssize_t i = 0; i < nread; i++)
  66. {
  67. int c = buf[i];
  68. if(c == '\n') lines++;
  69. if(isspace(c))
  70. {
  71. if(wordlen > 0)
  72. {
  73. words++;
  74. wordlen = 0;
  75. }
  76. }
  77. else
  78. {
  79. wordlen++;
  80. }
  81. }
  82. }
  83. }
  84. else
  85. {
  86. struct stat status;
  87. if(fstat(fd, &status) < 0)
  88. {
  89. fprintf(stderr,
  90. "%s: error: Failed getting status for file '%s': %s\n",
  91. argv0,
  92. filename,
  93. strerror(errno));
  94. return 1;
  95. }
  96. if(S_ISREG(status.st_mode) && status.st_size != 0)
  97. {
  98. bytes += status.st_size;
  99. }
  100. else
  101. {
  102. while((nread = read(fd, buf, WC_BUFSIZ)) > 0)
  103. bytes += nread;
  104. }
  105. }
  106. if(nread < 0 && errno != 0)
  107. {
  108. fprintf(stderr,
  109. "%s: error: Failed reading from file '%s': %s\n",
  110. argv0,
  111. filename != NULL ? filename : "<stdin>",
  112. strerror(errno));
  113. return -1;
  114. }
  115. if(wordlen > 0) words++;
  116. total_bytes += bytes, total_lines += lines, total_words += words;
  117. print_counts(lines, words, bytes, filename);
  118. return 0;
  119. }
  120. static int
  121. wc_file_chars(int fd, char *filename)
  122. {
  123. off_t chars = 0, lines = 0, words = 0, wordlen = 0;
  124. FILE *file = fdopen(fd, "r");
  125. if(file == NULL)
  126. {
  127. fprintf(stderr,
  128. "%s: error: Failed getting file stream for file '%s': %s\n",
  129. argv0,
  130. filename,
  131. strerror(errno));
  132. return -1;
  133. }
  134. if(setvbuf(file, buf, _IOFBF, WC_BUFSIZ) != 0)
  135. {
  136. fprintf(stderr,
  137. "%s: warning: Failed setting a new buffer for <stdin>: %s\n",
  138. argv0,
  139. strerror(errno));
  140. errno = 0;
  141. }
  142. while(true)
  143. {
  144. wint_t c = getwc(file);
  145. if(c == WEOF)
  146. {
  147. if(errno != 0)
  148. {
  149. fprintf(stderr,
  150. "%s: error: Failed reading from file '%s': %s\n",
  151. argv0,
  152. filename != NULL ? filename : "<stdin>",
  153. strerror(errno));
  154. return -1;
  155. }
  156. break;
  157. }
  158. chars++;
  159. if(c == '\n') lines++;
  160. if(iswspace(c))
  161. {
  162. if(wordlen > 0)
  163. {
  164. words++;
  165. wordlen = 0;
  166. }
  167. }
  168. else
  169. {
  170. wordlen++;
  171. }
  172. }
  173. if(wordlen > 0) words++;
  174. print_counts(lines, words, chars, filename);
  175. return 0;
  176. }
  177. static void
  178. usage(void)
  179. {
  180. fprintf(stderr, "Usage: wc [-c|-m] [-lw] [file...]\n");
  181. }
  182. int
  183. main(int argc, char *argv[])
  184. {
  185. char *lc_all = setlocale(LC_ALL, "");
  186. if(lc_all == NULL)
  187. {
  188. fprintf(stderr,
  189. "%s: warning: Failed loading locales. setlocale(LC_ALL, \"\"): %s\n",
  190. argv0,
  191. strerror(errno));
  192. }
  193. errno = 0;
  194. int (*wc_file)(int, char *) = &wc_file_bytes;
  195. #ifdef HAS_GETOPT_LONG
  196. // Strictly for GNUisms compatibility so no long-only options
  197. // clang-format off
  198. static struct option opts[] = {
  199. {"bytes", no_argument, 0, 'c'},
  200. {"lines", no_argument, 0, 'l'},
  201. {"chars", no_argument, 0, 'm'},
  202. {"words", no_argument, 0, 'w'},
  203. {0, 0, 0, 0},
  204. };
  205. // clang-format on
  206. // Need + as first character to get POSIX-style option parsing
  207. for(int c = -1; (c = getopt_long(argc, argv, "+:clmw", opts, NULL)) != -1;)
  208. #else
  209. for(int c = -1; (c = getopt_nolong(argc, argv, ":clmw")) != -1;)
  210. #endif
  211. {
  212. switch(c)
  213. {
  214. case 'c':
  215. wc_opts |= WC_OPT_C;
  216. wc_file = wc_file_bytes;
  217. break;
  218. case 'l':
  219. wc_opts |= WC_OPT_L;
  220. break;
  221. case 'm':
  222. wc_opts |= WC_OPT_C;
  223. wc_file = wc_file_chars;
  224. break;
  225. case 'w':
  226. wc_opts |= WC_OPT_W;
  227. break;
  228. case ':':
  229. fprintf(stderr, "%s: error: Missing operand for option: '-%c'\n", argv0, optopt);
  230. usage();
  231. return 1;
  232. case '?':
  233. if(!got_long_opt) fprintf(stderr, "%s: error: Unrecognised option: '-%c'\n", argv0, optopt);
  234. usage();
  235. return 1;
  236. default:
  237. abort();
  238. }
  239. }
  240. if(wc_opts == 0) wc_opts = WC_OPT_ALL;
  241. argc -= optind;
  242. argv += optind;
  243. if((errno = posix_fadvise(STDIN_FILENO, 0, 0, POSIX_FADV_SEQUENTIAL)) != 0)
  244. {
  245. if(errno != ESPIPE)
  246. {
  247. fprintf(stderr,
  248. "%s: warning: Failure from posix_fadvise sequential for <stdin>: %s\n",
  249. argv0,
  250. strerror(errno));
  251. }
  252. errno = 0;
  253. }
  254. if(argc < 1)
  255. {
  256. if(wc_file(STDIN_FILENO, NULL) < 0) return 1;
  257. }
  258. for(int i = 0; i < argc; i++)
  259. {
  260. char *path = argv[i];
  261. if(path[0] == '-' && path[1] == 0)
  262. {
  263. if(wc_file(STDIN_FILENO, NULL) < 0) return 1;
  264. continue;
  265. }
  266. // https://www.austingroupbugs.net/view.php?id=251
  267. if(strchr(path, '\n') != NULL)
  268. fprintf(
  269. stderr,
  270. "%s: warning: Filename '%s' contains a newline while wc(1) uses newlines as separators\n",
  271. argv0,
  272. path);
  273. int arg_fd = open(path, O_RDONLY | O_NOCTTY);
  274. if(arg_fd < 0)
  275. {
  276. fprintf(stderr, "%s: error: Failed opening file '%s': %s\n", argv0, path, strerror(errno));
  277. return 1;
  278. }
  279. if((errno = posix_fadvise(arg_fd, 0, 0, POSIX_FADV_SEQUENTIAL)) != 0)
  280. {
  281. fprintf(stderr,
  282. "%s: warning: Failure from posix_fadvise sequential for file '%s': %s\n",
  283. argv0,
  284. path,
  285. strerror(errno));
  286. errno = 0;
  287. }
  288. if(wc_file(arg_fd, path) < 0) return 1;
  289. if(close(arg_fd) < 0)
  290. {
  291. fprintf(stderr, "%s: error: Failed closing file '%s': %s\n", argv0, path, strerror(errno));
  292. return 1;
  293. }
  294. }
  295. if(argc > 1) print_counts(total_lines, total_words, total_bytes, "total");
  296. return 0;
  297. }