cosmopolitan/third_party/tree/info.c
Justine Tunney fa20edc44d
Reduce header complexity
- Remove most __ASSEMBLER__ __LINKER__ ifdefs
- Rename libc/intrin/bits.h to libc/serialize.h
- Block pthread cancelation in fchmodat() polyfill
- Remove `clang-format off` statements in third_party
2023-11-28 14:39:42 -08:00

199 lines
5.2 KiB
C

/* $Copyright: $
* Copyright (c) 1996 - 2023 by Steve Baker (ice@mama.indstate.edu)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "libc/sysv/consts/s.h"
#include "libc/calls/calls.h"
#include "libc/mem/mem.h"
#include "third_party/tree/tree.h"
/**
* TODO: Make a "filenote" command for info comments.
* maybe TODO: Support language extensions (i.e. .info.en, .info.gr, etc)
* # comments
* pattern
* pattern
* info messages
* more info
*/
extern FILE *outfile;
extern const struct linedraw *linedraw;
extern char xpattern[PATH_MAX];
struct infofile *infostack = NULL;
struct comment *new_comment(struct pattern *phead, char **line, int lines)
{
int i;
struct comment *com = xmalloc(sizeof(struct comment));
com->pattern = phead;
com->desc = xmalloc(sizeof(char *) * (lines+1));
for(i=0; i < lines; i++) com->desc[i] = line[i];
com->desc[i] = NULL;
com->next = NULL;
return com;
}
struct infofile *new_infofile(char *path, bool checkparents)
{
struct stat st;
char buf[PATH_MAX], rpath[PATH_MAX];
struct infofile *inf;
struct comment *chead = NULL, *cend = NULL, *com;
struct pattern *phead = NULL, *pend = NULL, *p;
char *line[PATH_MAX];
FILE *fp;
int i, lines = 0;
i = stat(path, &st);
if (i < 0 || !S_ISREG(st.st_mode)) {
snprintf(buf, PATH_MAX, "%s/.info", path);
fp = fopen(buf, "r");
if (fp == NULL && checkparents) {
strcpy(rpath, path);
while ((fp == NULL) && (strcmp(rpath, "/") != 0)) {
snprintf(buf, PATH_MAX, "%.*s/..", PATH_MAX-4, rpath);
if (realpath(buf, rpath) == NULL) break;
snprintf(buf, PATH_MAX, "%.*s/.info", PATH_MAX-7, rpath);
fp = fopen(buf, "r");
}
}
} else fp = fopen(path, "r");
if (fp == NULL) return NULL;
while (fgets(buf, PATH_MAX, fp) != NULL) {
if (buf[0] == '#') continue;
gittrim(buf);
if (strlen(buf) < 1) continue;
if (buf[0] == '\t') {
line[lines++] = scopy(buf+1);
} else {
if (lines) {
/* Save previous pattern/message: */
if (phead) {
com = new_comment(phead, line, lines);
if (!chead) chead = cend = com;
else cend = cend->next = com;
} else {
/* Accumulated info message lines w/ no associated pattern? */
for(i=0; i < lines; i++) free(line[i]);
}
/* Reset for next pattern/message: */
phead = pend = NULL;
lines = 0;
}
p = new_pattern(buf);
if (phead == NULL) phead = pend = p;
else pend = pend->next = p;
}
}
if (phead) {
com = new_comment(phead, line, lines);
if (!chead) chead = cend = com;
else cend = cend->next = com;
} else {
for(i=0; i < lines; i++) free(line[i]);
}
fclose(fp);
inf = xmalloc(sizeof(struct infofile));
inf->comments = chead;
inf->path = scopy(path);
inf->next = NULL;
return inf;
}
void push_infostack(struct infofile *inf)
{
if (inf == NULL) return;
inf->next = infostack;
infostack = inf;
}
struct infofile *pop_infostack(void)
{
struct infofile *inf;
struct comment *cn, *cc;
struct pattern *p, *c;
int i;
inf = infostack;
if (inf == NULL) return NULL;
infostack = infostack->next;
for(cn = cc = inf->comments; cn != NULL; cc = cn) {
cn = cn->next;
for(p=c=cc->pattern; p != NULL; c = p) {
p=p->next;
free(c->pattern);
}
for(i=0; cc->desc[i] != NULL; i++) free(cc->desc[i]);
free(cc->desc);
free(cc);
}
free(inf->path);
free(inf);
return NULL;
}
/**
* Returns an info pointer if a path matches a pattern.
* top == 1 if called in a directory with a .info file.
*/
struct comment *infocheck(char *path, char *name, int top, int isdir)
{
struct infofile *inf = infostack;
struct comment *com;
struct pattern *p;
if (inf == NULL) return NULL;
for(inf = infostack; inf != NULL; inf = inf->next) {
int fpos = sprintf(xpattern, "%s/", inf->path);
for(com = inf->comments; com != NULL; com = com->next) {
for(p = com->pattern; p != NULL; p = p->next) {
if (patmatch(path, p->pattern, isdir) == 1) return com;
if (top && patmatch(name, p->pattern, isdir) == 1) return com;
sprintf(xpattern + fpos, "%s", p->pattern);
if (patmatch(path, xpattern, isdir) == 1) return com;
}
}
top = 0;
}
return NULL;
}
void printcomment(int line, int lines, char *s)
{
if (lines == 1) fprintf(outfile, "%s ", linedraw->csingle);
else {
if (line == 0) fprintf(outfile, "%s ", linedraw->ctop);
else if (line < 2) {
fprintf(outfile, "%s ", (lines==2)? linedraw->cbot : linedraw->cmid);
} else {
fprintf(outfile, "%s ", (line == lines-1)? linedraw->cbot : linedraw->cext);
}
}
fprintf(outfile, "%s\n", s);
}