|
diff --git a/shared.c b/shared.c index cce0af4..783604b 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -53,24 +53,26 @@ struct cgit_repo *cgit_add_repo(const char *url) |
53 | ret->path = NULL; |
53 | ret->path = NULL; |
54 | ret->desc = "[no description]"; |
54 | ret->desc = "[no description]"; |
55 | ret->owner = NULL; |
55 | ret->owner = NULL; |
56 | ret->group = ctx.cfg.repo_group; |
56 | ret->group = ctx.cfg.repo_group; |
57 | ret->defbranch = "master"; |
57 | ret->defbranch = "master"; |
58 | ret->snapshots = ctx.cfg.snapshots; |
58 | ret->snapshots = ctx.cfg.snapshots; |
59 | ret->enable_log_filecount = ctx.cfg.enable_log_filecount; |
59 | ret->enable_log_filecount = ctx.cfg.enable_log_filecount; |
60 | ret->enable_log_linecount = ctx.cfg.enable_log_linecount; |
60 | ret->enable_log_linecount = ctx.cfg.enable_log_linecount; |
61 | ret->max_stats = ctx.cfg.max_stats; |
61 | ret->max_stats = ctx.cfg.max_stats; |
62 | ret->module_link = ctx.cfg.module_link; |
62 | ret->module_link = ctx.cfg.module_link; |
63 | ret->readme = NULL; |
63 | ret->readme = NULL; |
64 | ret->mtime = -1; |
64 | ret->mtime = -1; |
| |
65 | ret->commit_filter = ctx.cfg.commit_filter; |
| |
66 | ret->source_filter = ctx.cfg.source_filter; |
65 | return ret; |
67 | return ret; |
66 | } |
68 | } |
67 | |
69 | |
68 | struct cgit_repo *cgit_get_repoinfo(const char *url) |
70 | struct cgit_repo *cgit_get_repoinfo(const char *url) |
69 | { |
71 | { |
70 | int i; |
72 | int i; |
71 | struct cgit_repo *repo; |
73 | struct cgit_repo *repo; |
72 | |
74 | |
73 | for (i=0; i<cgit_repolist.count; i++) { |
75 | for (i=0; i<cgit_repolist.count; i++) { |
74 | repo = &cgit_repolist.repos[i]; |
76 | repo = &cgit_repolist.repos[i]; |
75 | if (!strcmp(repo->url, url)) |
77 | if (!strcmp(repo->url, url)) |
76 | return repo; |
78 | return repo; |
@@ -346,12 +348,47 @@ int cgit_parse_snapshots_mask(const char *str) |
346 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
348 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
347 | sl = strlen(f->suffix); |
349 | sl = strlen(f->suffix); |
348 | if((tl == sl && !strncmp(f->suffix, str, tl)) || |
350 | if((tl == sl && !strncmp(f->suffix, str, tl)) || |
349 | (tl == sl-1 && !strncmp(f->suffix+1, str, tl-1))) { |
351 | (tl == sl-1 && !strncmp(f->suffix+1, str, tl-1))) { |
350 | rv |= f->bit; |
352 | rv |= f->bit; |
351 | break; |
353 | break; |
352 | } |
354 | } |
353 | } |
355 | } |
354 | str += tl; |
356 | str += tl; |
355 | } |
357 | } |
356 | return rv; |
358 | return rv; |
357 | } |
359 | } |
| |
360 | |
| |
361 | int cgit_open_filter(struct cgit_filter *filter) |
| |
362 | { |
| |
363 | |
| |
364 | filter->old_stdout = chk_positive(dup(STDOUT_FILENO), |
| |
365 | "Unable to duplicate STDOUT"); |
| |
366 | chk_zero(pipe(filter->pipe_fh), "Unable to create pipe to subprocess"); |
| |
367 | filter->pid = chk_non_negative(fork(), "Unable to create subprocess"); |
| |
368 | if (filter->pid == 0) { |
| |
369 | close(filter->pipe_fh[1]); |
| |
370 | chk_non_negative(dup2(filter->pipe_fh[0], STDIN_FILENO), |
| |
371 | "Unable to use pipe as STDIN"); |
| |
372 | execvp(filter->cmd, filter->argv); |
| |
373 | die("Unable to exec subprocess %s: %s (%d)", filter->cmd, |
| |
374 | strerror(errno), errno); |
| |
375 | } |
| |
376 | close(filter->pipe_fh[0]); |
| |
377 | chk_non_negative(dup2(filter->pipe_fh[1], STDOUT_FILENO), |
| |
378 | "Unable to use pipe as STDOUT"); |
| |
379 | close(filter->pipe_fh[1]); |
| |
380 | return 0; |
| |
381 | } |
| |
382 | |
| |
383 | int cgit_close_filter(struct cgit_filter *filter) |
| |
384 | { |
| |
385 | chk_non_negative(dup2(filter->old_stdout, STDOUT_FILENO), |
| |
386 | "Unable to restore STDOUT"); |
| |
387 | close(filter->old_stdout); |
| |
388 | if (filter->pid < 0) |
| |
389 | return 0; |
| |
390 | waitpid(filter->pid, &filter->exitstatus, 0); |
| |
391 | if (WIFEXITED(filter->exitstatus) && !WEXITSTATUS(filter->exitstatus)) |
| |
392 | return 0; |
| |
393 | die("Subprocess %s exited abnormally", filter->cmd); |
| |
394 | } |
|