1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
| | #include "cache.h"
#include "parse-options.h"
#include "stdio.h"
#include "strbuf.h"
#include "time.h"
#include "help.h"
#include "compat/compiler.h"
#include "run-command.h"
static void get_git_remote_https_version_info(struct strbuf *version_info)
{
struct child_process cp = CHILD_PROCESS_INIT;
argv_array_push(&cp.args, "git");
argv_array_push(&cp.args, "remote-https");
argv_array_push(&cp.args, "--build-info");
if (capture_command(&cp, version_info, 0))
strbuf_addstr(version_info, "'git-remote-https --build-info' not supported\n");
}
static void get_system_info(struct strbuf *sys_info)
{
struct utsname uname_info;
/* get git version from native cmd */
strbuf_addstr(sys_info, "git version:\n");
get_version_info(sys_info, 1);
strbuf_complete_line(sys_info);
/* system call for other version info */
strbuf_addstr(sys_info, "uname -a: ");
if (uname(&uname_info))
strbuf_addf(sys_info, "uname() failed with code %d\n", errno);
else
strbuf_addf(sys_info, "%s %s %s %s\n",
uname_info.sysname,
uname_info.release,
uname_info.version,
uname_info.machine);
strbuf_addstr(sys_info, "compiler info: ");
get_compiler_info(sys_info);
strbuf_complete_line(sys_info);
strbuf_addstr(sys_info, "git-remote-https --build-info:\n");
get_git_remote_https_version_info(sys_info);
strbuf_complete_line(sys_info);
}
static const char * const bugreport_usage[] = {
N_("git bugreport [-o|--output-directory <file>] [-s|--suffix <format>]"),
NULL
};
static int get_bug_template(struct strbuf *template)
{
const char template_text[] = N_(
"Thank you for filling out a Git bug report!\n"
"Please answer the following questions to help us understand your issue.\n"
"\n"
"What did you do before the bug happened? (Steps to reproduce your issue)\n"
"\n"
"What did you expect to happen? (Expected behavior)\n"
"\n"
"What happened instead? (Actual behavior)\n"
"\n"
"What's different between what you expected and what actually happened?\n"
"\n"
"Anything else you want to add:\n"
"\n"
"Please review the rest of the bug report below.\n"
"You can delete any lines you don't wish to share.\n");
strbuf_addstr(template, template_text);
return 0;
}
static void get_header(struct strbuf *buf, const char *title)
{
strbuf_addf(buf, "\n\n[%s]\n", title);
}
int cmd_main(int argc, const char **argv)
{
struct strbuf buffer = STRBUF_INIT;
struct strbuf report_path = STRBUF_INIT;
FILE *report;
time_t now = time(NULL);
char *option_output = NULL;
char *option_suffix = "%F-%H%M";
struct stat statbuf;
const struct option bugreport_options[] = {
OPT_STRING('o', "output-directory", &option_output, N_("path"),
N_("specify a destination for the bugreport file")),
OPT_STRING('s', "suffix", &option_suffix, N_("format"),
N_("specify a strftime format suffix for the filename")),
OPT_END()
};
argc = parse_options(argc, argv, "", bugreport_options,
bugreport_usage, 0);
if (option_output) {
strbuf_addstr(&report_path, option_output);
strbuf_complete(&report_path, '/');
}
strbuf_addstr(&report_path, "git-bugreport-");
strbuf_addftime(&report_path, option_suffix, localtime(&now), 0, 0);
strbuf_addstr(&report_path, ".txt");
if (!stat(report_path.buf, &statbuf))
die("'%s' already exists", report_path.buf);
get_bug_template(&buffer);
get_header(&buffer, "System Info");
get_system_info(&buffer);
report = fopen_for_writing(report_path.buf);
if (report == NULL) {
strbuf_release(&report_path);
die("couldn't open '%s' for writing", report_path.buf);
}
strbuf_write(&buffer, report);
fclose(report);
fprintf(stderr, _("Created new report at '%s'.\n"), report_path.buf);
UNLEAK(buffer);
UNLEAK(report_path);
return -launch_editor(report_path.buf, NULL, NULL);
}
|