]> git.saurik.com Git - apple/xnu.git/blame - SETUP/json_compilation_db/json_compilation_db.c
xnu-3247.1.106.tar.gz
[apple/xnu.git] / SETUP / json_compilation_db / json_compilation_db.c
CommitLineData
3e170ce0
A
1/*
2 * Copyright (c) 2013 Apple Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24/*
25 * json_compilation_db is a helper tool that takes a compiler invocation, and
26 * appends it in JSON format to the specified database.
27 */
28
29#include <stdio.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include <string.h>
33#include <stdbool.h>
34#include <errno.h>
35#include <err.h>
36#include <sysexits.h>
37
38#include <sys/stat.h>
39#include <sys/fcntl.h>
40#include <sys/param.h>
41
42void usage(void);
43char *escape_string(const char *);
44
45/*
46 * We support appending to two databases.
47 *
48 * 0-byte: ""
49 *
50 * or
51 *
52 * "["
53 * "{"
54 * " ..."
55 * "}"
56 * "]"
57 */
58
59int main(int argc, char * argv[])
60{
61 struct stat sb;
62 int ret;
63 int dstfd;
64 FILE *dst = NULL;
65 const char *json_output = NULL;
66 const char *cwd = NULL;
67 const char *input_file = NULL;
68 char start[2];
69 size_t read_bytes;
70 int i;
71 size_t input_file_len;
72
73 if (argc < 5) {
74 usage();
75 }
76
77 json_output = argv[1];
78 cwd = argv[2];
79 input_file = argv[3];
80
81 argv += 4;
82 argc -= 4;
83
84 input_file_len = strlen(input_file);
85 if (!(input_file_len > 2 && 0 == strcmp(".c", input_file + input_file_len - 2)) &&
86 !(input_file_len > 3 && 0 == strcmp(".cp", input_file + input_file_len - 3)) &&
87 !(input_file_len > 4 && 0 == strcmp(".cpp", input_file + input_file_len - 4))) {
88 /* Not a C/C++ file, just skip it */
89 return 0;
90 }
91
92 dstfd = open(json_output, O_RDWR | O_CREAT | O_EXLOCK, DEFFILEMODE);
93 if (dstfd < 0)
94 err(EX_NOINPUT, "open(%s)", json_output);
95
96 ret = fstat(dstfd, &sb);
97 if (ret < 0)
98 err(EX_NOINPUT, "fstat(%s)", json_output);
99
100 if (!S_ISREG(sb.st_mode))
101 err(EX_USAGE, "%s is not a regular file", json_output);
102
103 dst = fdopen(dstfd, "w+");
104 if (dst == NULL)
105 err(EX_UNAVAILABLE, "fdopen");
106
107 read_bytes = fread(start, sizeof(start[0]), sizeof(start)/sizeof(start[0]), dst);
108 if ((read_bytes != sizeof(start)) || (0 != memcmp(start, "[\n", sizeof(start)/sizeof(start[0])))) {
109 /* no JSON start, we don't really care why */
110 ret = fseeko(dst, 0, SEEK_SET);
111 if (ret < 0)
112 err(EX_UNAVAILABLE, "fseeko");
113
114 ret = fputs("[", dst);
115 if (ret < 0)
116 err(EX_UNAVAILABLE, "fputs");
117 } else {
118 /* has at least two bytes at the start. Seek to 3 bytes before the end */
119 ret = fseeko(dst, -3, SEEK_END);
120 if (ret < 0)
121 err(EX_UNAVAILABLE, "fseeko");
122
123 ret = fputs(",", dst);
124 if (ret < 0)
125 err(EX_UNAVAILABLE, "fputs");
126 }
127
128 fprintf(dst, "\n");
129 fprintf(dst, "{\n");
130 fprintf(dst, " \"directory\": \"%s\",\n", cwd);
131 fprintf(dst, " \"file\": \"%s\",\n", input_file);
132 fprintf(dst, " \"command\": \"");
133 for (i=0; i < argc; i++) {
134 bool needs_escape = strchr(argv[i], '\\') || strchr(argv[i], '"') || strchr(argv[i], ' ');
135
136 if (needs_escape) {
137 char *escaped_string = escape_string(argv[i]);
138 fprintf(dst, "%s\\\"%s\\\"", i == 0 ? "" : " ", escaped_string);
139 free(escaped_string);
140 } else {
141 fprintf(dst, "%s%s", i == 0 ? "" : " ", argv[i]);
142 }
143 }
144 fprintf(dst, "\"\n");
145 fprintf(dst, "}\n");
146 fprintf(dst, "]\n");
147
148 ret = fclose(dst);
149 if (ret < 0)
150 err(EX_UNAVAILABLE, "fclose");
151
152 return 0;
153}
154
155void usage(void)
156{
157 fprintf(stderr, "Usage: %s <json_output> <cwd> <input_file> <compiler> [<invocation> ...]\n", getprogname());
158 exit(EX_USAGE);
159}
160
161/*
162 * A valid JSON string can't contain \ or ", so we look for these in our argv[] array (which
163 * our parent shell would have done shell metacharacter evaluation on, and escape just these.
164 * The entire string is put in \" escaped quotes to handle spaces that are valid JSON
165 * but should be used for grouping when running the compiler for real.
166 */
167char *
168escape_string(const char *input)
169{
170 size_t len = strlen(input);
171 size_t i, j;
172 char *output = malloc(len * 4 + 1);
173
174 for (i=0, j=0; i < len; i++) {
175 char ch = input[i];
176
177 if (ch == '\\' || ch == '"') {
178 output[j++] = '\\';
179 output[j++] = '\\'; /* output \\ in JSON, which the final shell will see as \ */
180 output[j++] = '\\'; /* escape \ or ", which the final shell will see and pass to the compiler */
181 }
182 output[j++] = ch;
183 }
184
185 output[j] = '\0';
186
187 return output;
188}