]> git.proxmox.com Git - libgit2.git/blame - src/message.c
New upstream version 1.3.0+dfsg.1
[libgit2.git] / src / message.c
CommitLineData
458b9450 1/*
359fc2d2 2 * Copyright (C) the libgit2 contributors. All rights reserved.
458b9450 3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7
8#include "message.h"
9
10static size_t line_length_without_trailing_spaces(const char *line, size_t len)
11{
12 while (len) {
13 unsigned char c = line[len - 1];
0f49200c 14 if (!git__isspace(c))
458b9450 15 break;
16 len--;
17 }
18
19 return len;
20}
21
22/* Greatly inspired from git.git "stripspace" */
23/* see https://github.com/git/git/blob/497215d8811ac7b8955693ceaad0899ecd894ed2/builtin/stripspace.c#L4-67 */
49e369b2 24int git_message_prettify(git_buf *message_out, const char *message, int strip_comments, char comment_char)
458b9450 25{
fd5faae3
VM
26 const size_t message_len = strlen(message);
27
458b9450 28 int consecutive_empty_lines = 0;
29 size_t i, line_length, rtrimmed_line_length;
30 char *next_newline;
c25aa7cd 31 int error;
458b9450 32
c25aa7cd
PP
33 if ((error = git_buf_sanitize(message_out)) < 0)
34 return error;
e1d7f003 35
458b9450 36 for (i = 0; i < strlen(message); i += line_length) {
fd5faae3
VM
37 next_newline = memchr(message + i, '\n', message_len - i);
38
39 if (next_newline != NULL) {
40 line_length = next_newline - (message + i) + 1;
41 } else {
42 line_length = message_len - i;
43 }
458b9450 44
49e369b2 45 if (strip_comments && line_length && message[i] == comment_char)
458b9450 46 continue;
47
48 rtrimmed_line_length = line_length_without_trailing_spaces(message + i, line_length);
49
50 if (!rtrimmed_line_length) {
51 consecutive_empty_lines++;
52 continue;
53 }
54
55 if (consecutive_empty_lines > 0 && message_out->size > 0)
b1e2ba27 56 git_buf_putc(message_out, '\n');
458b9450 57
58 consecutive_empty_lines = 0;
59 git_buf_put(message_out, message + i, rtrimmed_line_length);
60 git_buf_putc(message_out, '\n');
61 }
62
b1e2ba27 63 return git_buf_oom(message_out) ? -1 : 0;
458b9450 64}