all repos — cgit @ 05b13194b4b40a2614692125d5037ef20c5fb20e

a hyperfast web frontend for git written in c

parsing.c (view raw)

  1/* config.c: parsing of config files
  2 *
  3 * Copyright (C) 2006 Lars Hjemli
  4 *
  5 * Licensed under GNU General Public License v2
  6 *   (see COPYING for full license text)
  7 */
  8
  9#include "cgit.h"
 10
 11int next_char(FILE *f)
 12{
 13	int c = fgetc(f);
 14	if (c=='\r') {
 15		c = fgetc(f);
 16		if (c!='\n') {
 17			ungetc(c, f);
 18			c = '\r';
 19		}
 20	}
 21	return c;
 22}
 23
 24void skip_line(FILE *f)
 25{
 26	int c;
 27
 28	while((c=next_char(f)) && c!='\n' && c!=EOF)
 29		;
 30}
 31
 32int read_config_line(FILE *f, char *line, const char **value, int bufsize)
 33{
 34	int i = 0, isname = 0;
 35
 36	*value = NULL;
 37	while(i<bufsize-1) {
 38		int c = next_char(f);
 39		if (!isname && (c=='#' || c==';')) {
 40			skip_line(f);
 41			continue;
 42		}
 43		if (!isname && isspace(c))
 44			continue;
 45
 46		if (c=='=' && !*value) {
 47			line[i] = 0;
 48			*value = &line[i+1];
 49		} else if (c=='\n' && !isname) {
 50			i = 0;
 51			continue;
 52		} else if (c=='\n' || c==EOF) {
 53			line[i] = 0;
 54			break;
 55		} else {
 56			line[i]=c;
 57		}
 58		isname = 1;
 59		i++;
 60	}
 61	line[i+1] = 0;
 62	return i;
 63}
 64
 65int cgit_read_config(const char *filename, configfn fn)
 66{
 67	int ret = 0, len;
 68	char line[256];
 69	const char *value;
 70	FILE *f = fopen(filename, "r");
 71
 72	if (!f)
 73		return -1;
 74
 75	while((len = read_config_line(f, line, &value, sizeof(line))) > 0)
 76		(*fn)(line, value);
 77
 78	fclose(f);
 79	return ret;
 80}
 81
 82int cgit_parse_query(char *txt, configfn fn)
 83{
 84	char *t, *value = NULL, c;
 85
 86	if (!txt)
 87		return 0;
 88
 89	t = txt = xstrdup(txt);
 90 
 91	while((c=*t) != '\0') {
 92		if (c=='=') {
 93			*t = '\0';
 94			value = t+1;
 95		} else if (c=='+') {
 96			*t = ' ';
 97		} else if (c=='&') {
 98			*t = '\0';
 99			(*fn)(txt, value);
100			txt = t+1;
101			value = NULL;
102		}
103		t++;
104	}
105	if (t!=txt)
106		(*fn)(txt, value);
107	return 0;
108}
109
110char *substr(const char *head, const char *tail)
111{
112	char *buf;
113
114	buf = xmalloc(tail - head + 1);
115	strncpy(buf, head, tail - head);
116	buf[tail - head] = '\0';
117	return buf;
118}
119
120struct commitinfo *cgit_parse_commit(struct commit *commit)
121{
122	struct commitinfo *ret;
123	char *p = commit->buffer, *t = commit->buffer;
124
125	ret = xmalloc(sizeof(*ret));
126	ret->commit = commit;
127
128	if (strncmp(p, "tree ", 5))
129		die("Bad commit: %s", sha1_to_hex(commit->object.sha1));
130	else
131		p += 46; // "tree " + hex[40] + "\n"
132
133	while (!strncmp(p, "parent ", 7))
134		p += 48; // "parent " + hex[40] + "\n"
135
136	if (!strncmp(p, "author ", 7)) {
137		p += 7;
138		t = strchr(p, '<') - 1;
139		ret->author = substr(p, t);
140		p = t;
141		t = strchr(t, '>') + 1;
142		ret->author_email = substr(p, t);
143		ret->author_date = atol(++t);
144		p = strchr(t, '\n') + 1;
145	}
146
147	if (!strncmp(p, "committer ", 9)) {
148		p += 9;
149		t = strchr(p, '<') - 1;
150		ret->committer = substr(p, t);
151		p = t;
152		t = strchr(t, '>') + 1;
153		ret->committer_email = substr(p, t);
154		ret->committer_date = atol(++t);
155		p = strchr(t, '\n') + 1;
156	}
157
158	while (*p == '\n')
159		p = strchr(p, '\n') + 1;
160
161	t = strchr(p, '\n');
162	ret->subject = substr(p, t);
163	p = t + 1;
164
165	while (*p == '\n')
166		p = strchr(p, '\n') + 1;
167	ret->msg = p;
168
169	return ret;
170}