You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mblaze/mscan.c

271 lines
5.3 KiB
C

#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 700
#endif
#include <sys/ioctl.h>
8 years ago
#include <sys/stat.h>
#include <sys/types.h>
#include <errno.h>
8 years ago
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
8 years ago
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <wchar.h>
#include <locale.h>
8 years ago
#include "blaze822.h"
static int cols;
static wchar_t replacement = L'?';
static char *cur;
static char *aliases[32];
static int alias_idx;
static int Iflag;
static int curyear;
static int curyday;
8 years ago
void
u8putstr(FILE *out, char *s, ssize_t l, int pad)
8 years ago
{
while (*s && l > 0) {
if (*s == '\t')
*s = ' ';
if (*s >= 32 && *s < 127) {
putc(*s, out);
s++;
l--;
} else {
wchar_t wc;
int r = mbtowc(&wc, s, 4);
if (r < 0) {
r = 1;
wc = replacement;
}
s += r;
l -= wcwidth(wc);
if (l >= 0)
fprintf(out, "%lc", wc);
}
8 years ago
}
if (pad)
while (l-- > 0)
putc(' ', out);
}
int
itsme(char *v)
{
int i;
char *disp, *addr;
while ((v = blaze822_addr(v, &disp, &addr)))
for (i = 0; addr && i < alias_idx; i++)
if (strcmp(aliases[i], addr) == 0)
return 1;
return 0;
}
void
8 years ago
oneline(char *file)
{
int metawidth = 38;
static int init;
if (!init) {
// delay loading of the seq until we need to scan the first
// file, in case someone in the pipe updated the map before
char *seq = blaze822_seq_open(0);
blaze822_seq_load(seq);
cur = blaze822_seq_cur();
init = 1;
}
8 years ago
int indent = 0;
while (*file == ' ' || *file == '\t') {
8 years ago
indent++;
file++;
}
indent *= 2;
char *e = file + strlen(file) - 1;
while (file < e && (*e == ' ' || *e == '\t'))
*e-- = 0;
8 years ago
struct message *msg = blaze822(file);
if (!msg) {
int p = cols-metawidth-3-indent;
printf("%*.*s\\_ %*.*s\n", -metawidth - indent, metawidth + indent, "",
-p, p, file);
return;
8 years ago
}
char flag1, flag2, flag3;
8 years ago
char *f = strstr(file, ":2,");
8 years ago
if (!f)
f = "";
if (cur && strcmp(cur, file) == 0)
flag1 = '>';
else if (!strchr(f, 'S'))
8 years ago
flag1 = '.';
else if (strchr(f, 'T'))
flag1 = 'x';
else
flag1 = ' ';
if (strchr(f, 'F'))
flag2 = '*';
8 years ago
else if (strchr(f, 'R'))
flag2 = '-';
else
flag2 = ' ';
char date[32];
8 years ago
char *v;
if ((v = blaze822_hdr(msg, "date"))) {
time_t t = blaze822_date(v);
if (t != -1) {
struct tm *tm;
tm = localtime(&t);
if (Iflag > 1) {
strftime(date, sizeof date,
"%Y-%m-%d %H:%M:%S", tm);
metawidth += 9;
} else if (Iflag || tm->tm_year != curyear)
strftime(date, sizeof date, "%Y-%m-%d", tm);
else if (tm->tm_yday != curyday)
strftime(date, sizeof date, "%a %b %e", tm);
else
strftime(date, sizeof date, "%a %H:%M", tm);
} else {
strcpy(date, "(invalid)");
8 years ago
}
} else {
strcpy(date, "(unknown)");
8 years ago
// mtime perhaps?
}
flag3 = ' ';
if (alias_idx) {
if ((v = blaze822_hdr(msg, "to")) && itsme(v))
flag3 = '>';
else if ((v = blaze822_hdr(msg, "cc")) && itsme(v))
flag3 = '+';
else if ((v = blaze822_hdr(msg, "resent-to")) && itsme(v))
flag3 = ':';
}
8 years ago
char *from = "(unknown)";
char to[256];
8 years ago
if ((v = blaze822_hdr(msg, "from"))) {
if (itsme(v)) {
snprintf(to, sizeof to, "TO:%s", v);
from = to;
flag3 = '<';
} else {
char *disp, *addr;
blaze822_addr(v, &disp, &addr);
if (disp)
from = disp;
else if (addr)
from = addr;
}
8 years ago
}
char fromdec[64];
blaze822_decode_rfc2047(fromdec, from, sizeof fromdec - 1, "UTF-8");
8 years ago
fromdec[sizeof fromdec - 1] = 0;
char *subj = "(no subject)";
char subjdec[100];
if ((v = blaze822_hdr(msg, "subject"))) {
subj = v;
8 years ago
}
blaze822_decode_rfc2047(subjdec, subj, sizeof subjdec - 1, "UTF-8");
8 years ago
long lineno = blaze822_seq_find(file);
if (lineno)
printf("%c%c %-3ld %-10s ", flag1, flag2, lineno, date);
else
printf("%c%c %-10s ", flag1, flag2, date);
u8putstr(stdout, fromdec, 16, 1);
printf(" %c ", flag3);
8 years ago
int z;
if (indent > 18) {
printf("..%2d.. ", indent/2);
indent = 20;
} else {
for (z = 0; z < indent; z++)
printf(" ");
}
u8putstr(stdout, subjdec, cols-metawidth-indent, 0);
8 years ago
printf("\n");
blaze822_free(msg);
8 years ago
}
int
main(int argc, char *argv[])
{
int c;
while ((c = getopt(argc, argv, "I")) != -1)
switch(c) {
case 'I': Iflag++; break;
default:
fprintf(stderr, "Usage: mscan [-I] [msgs...]\n");
exit(1);
}
time_t now = time(0);
struct tm *tm = localtime(&now);
curyear = tm->tm_year;
curyday = tm->tm_yday;
setlocale(LC_ALL, ""); // for wcwidth later
if (wcwidth(0xFFFD) > 0)
replacement = 0xFFFD;
struct winsize w;
if (ioctl(1, TIOCGWINSZ, &w) == 0)
cols = w.ws_col;
if (getenv("COLUMNS"))
cols = atoi(getenv("COLUMNS"));
if (cols <= 40)
cols = 80;
char *f = blaze822_home_file(".santoku/profile");
struct message *config = blaze822(f);
if (config) {
char *v, *d, *a;
if ((v = blaze822_hdr(config, "local-mailbox")))
while (alias_idx < (int)(sizeof aliases / sizeof aliases[0]) &&
(v = blaze822_addr(v, &d, &a)))
if (a)
aliases[alias_idx++] = strdup(a);
if ((v = blaze822_hdr(config, "alternate-mailboxes")))
while (alias_idx < (int)(sizeof aliases / sizeof aliases[0]) &&
(v = blaze822_addr(v, &d, &a)))
if (a)
aliases[alias_idx++] = strdup(a);
}
long i;
if (argc == optind && isatty(0))
i = blaze822_loop1(":", oneline);
else
i = blaze822_loop(argc-optind, argv+optind, oneline);
fprintf(stderr, "%ld mails scanned\n", i);
8 years ago
return 0;
}