forked from tsoding/nobuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nobuild.h
856 lines (710 loc) · 23.7 KB
/
nobuild.h
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
// Copyright 2021 Alexey Kutepov <[email protected]>
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
// ============================================================
//
// nobuild — 0.3.0-dev — Header only library for writing build recipes in C.
//
// https://github.com/tsoding/nobuild
//
// ============================================================
#ifndef NOBUILD_H_
#define NOBUILD_H_
#ifndef _WIN32
#define _POSIX_C_SOURCE 200809L
#endif // _WIN32
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <errno.h>
#ifdef _WIN32
# define WIN32_LEAN_AND_MEAN
# include "windows.h"
# include <process.h>
// minirent.h HEADER BEGIN ////////////////////////////////////////
// Copyright 2021 Alexey Kutepov <[email protected]>
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
// ============================================================
//
// minirent — 0.0.1 — A subset of dirent interface for Windows.
//
// https://github.com/tsoding/minirent
//
// ============================================================
//
// ChangeLog (https://semver.org/ is implied)
//
// 0.0.1 First Official Release
#ifndef MINIRENT_H_
#define MINIRENT_H_
#define WIN32_LEAN_AND_MEAN
#include "windows.h"
struct dirent
{
char d_name[MAX_PATH+1];
};
typedef struct DIR DIR;
DIR *opendir(const char *dirpath);
struct dirent *readdir(DIR *dirp);
int closedir(DIR *dirp);
#endif // MINIRENT_H_
// minirent.h HEADER END ////////////////////////////////////////
#else
# include <sys/stat.h>
# include <sys/types.h>
# include <sys/wait.h>
# include <unistd.h>
# include <dirent.h>
# include <fcntl.h>
#endif // _WIN32
// TODO(#1): no way to disable echo in nobuild scripts
// TODO(#2): no way to ignore fails
#ifdef _WIN32
# define PATH_SEP "\\"
#else
# define PATH_SEP "/"
#endif // _WIN32
#define PATH_SEP_LEN (sizeof(PATH_SEP) - 1)
#define FOREACH_VARGS_CSTR(param, arg, args, body) \
do { \
va_start(args, param); \
for (const char *arg = va_arg(args, const char *); \
arg != NULL; \
arg = va_arg(args, const char *)) \
{ \
body; \
} \
va_end(args); \
} while(0)
#define FOREACH_VARGS(param, arg, args, body) \
do { \
WARN("DEPRECATED: Please don't use FOREACH_VARGS(...). Please use FOREACH_VARGS_CSTR(...) instead. FOREACH_VARGS(...) will be removed on the next major release."); \
va_start(args, param); \
for (const char *arg = va_arg(args, const char *); \
arg != NULL; \
arg = va_arg(args, const char *)) \
{ \
body; \
} \
va_end(args); \
} while(0)
#define FOREACH_ARRAY(type, item, items, body) \
do { \
for (size_t i = 0; \
i < sizeof(items) / sizeof((items)[0]); \
++i) \
{ \
type item = items[i]; \
body; \
} \
} while(0)
#define FOREACH_FILE_IN_DIR(file, dirpath, body) \
do { \
struct dirent *dp = NULL; \
DIR *dir = opendir(dirpath); \
while ((dp = readdir(dir))) { \
const char *file = dp->d_name; \
body; \
} \
closedir(dir); \
} while(0)
// TODO(#5): there is no way to redirect the output of CMD to a file
#define CMD(...) \
do { \
INFO(JOIN(" ", __VA_ARGS__)); \
cmd_impl(69, __VA_ARGS__, NULL); \
} while(0)
const char *concat_impl(int ignore, ...);
const char *concat_sep_impl(const char *sep, ...);
const char *build__join(const char *sep, ...);
int nobuild__ends_with(const char *str, const char *postfix);
int nobuild__is_dir(const char *path);
void mkdirs_impl(int ignore, ...);
void cmd_impl(int ignore, ...);
void nobuild_exec(const char **argv);
const char *remove_ext(const char *path);
char *shift(int *argc, char ***argv);
void nobuild__rm(const char *path);
#ifndef _WIN32
void nobuild__posix_wait_for_pid(pid_t pid);
#endif
typedef enum {
PIPE_ARG_END,
PIPE_ARG_IN,
PIPE_ARG_OUT,
PIPE_ARG_CHAIN,
} Pipe_Arg_Type;
typedef struct {
Pipe_Arg_Type type;
const char** args;
} Pipe_Arg;
void nobuild__pipe(int ignore, ...);
Pipe_Arg nobuild__make_pipe_arg(Pipe_Arg_Type type, ...);
#define PIPE(...) nobuild__pipe(69, __VA_ARGS__, nobuild__make_pipe_arg(PIPE_ARG_END, NULL))
// TODO(#17): IN and OUT are already taken by WinAPI
#define IN(path) nobuild__make_pipe_arg(PIPE_ARG_IN, path, NULL)
#define OUT(path) nobuild__make_pipe_arg(PIPE_ARG_OUT, path, NULL)
#define CHAIN(...) nobuild__make_pipe_arg(PIPE_ARG_CHAIN, __VA_ARGS__, NULL)
#define CONCAT(...) concat_impl(69, __VA_ARGS__, NULL)
#define CONCAT_SEP(sep, ...) build__deprecated_concat_sep(sep, __VA_ARGS__, NULL)
#define JOIN(sep, ...) build__join(sep, __VA_ARGS__, NULL)
#define PATH(...) JOIN(PATH_SEP, __VA_ARGS__)
#define MKDIRS(...) mkdirs_impl(69, __VA_ARGS__, NULL)
#define NOEXT(path) nobuild__remove_ext(path)
#define ENDS_WITH(str, postfix) nobuild__ends_with(str, postfix)
#define IS_DIR(path) nobuild__is_dir(path)
#define RM(path) \
do { \
INFO("rm %s", path); \
nobuild__rm(path); \
} while(0)
void nobuild_log(FILE *stream, const char *tag, const char *fmt, ...);
void nobuild_vlog(FILE *stream, const char *tag, const char *fmt, va_list args);
void INFO(const char *fmt, ...);
void WARN(const char *fmt, ...);
void ERRO(const char *fmt, ...);
void PANIC(const char *fmt, ...);
#endif // NOBUILD_H_
#ifdef NOBUILD_IMPLEMENTATION
#ifdef _WIN32
// minirent.h IMPLEMENTATION BEGIN ////////////////////////////////////////
struct DIR
{
HANDLE hFind;
WIN32_FIND_DATA data;
struct dirent *dirent;
};
DIR *opendir(const char *dirpath)
{
assert(dirpath);
char buffer[MAX_PATH];
snprintf(buffer, MAX_PATH, "%s\\*", dirpath);
DIR *dir = (DIR*)calloc(1, sizeof(DIR));
dir->hFind = FindFirstFile(buffer, &dir->data);
if (dir->hFind == INVALID_HANDLE_VALUE) {
errno = ENOSYS;
goto fail;
}
return dir;
fail:
if (dir) {
free(dir);
}
return NULL;
}
struct dirent *readdir(DIR *dirp)
{
assert(dirp);
if (dirp->dirent == NULL) {
dirp->dirent = (struct dirent*)calloc(1, sizeof(struct dirent));
} else {
if(!FindNextFile(dirp->hFind, &dirp->data)) {
if (GetLastError() != ERROR_NO_MORE_FILES) {
errno = ENOSYS;
}
return NULL;
}
}
memset(dirp->dirent->d_name, 0, sizeof(dirp->dirent->d_name));
strncpy(
dirp->dirent->d_name,
dirp->data.cFileName,
sizeof(dirp->dirent->d_name) - 1);
return dirp->dirent;
}
int closedir(DIR *dirp)
{
assert(dirp);
if(!FindClose(dirp->hFind)) {
errno = ENOSYS;
return -1;
}
if (dirp->dirent) {
free(dirp->dirent);
}
free(dirp);
return 0;
}
// minirent.h IMPLEMENTATION END ////////////////////////////////////////
#endif // _WIN32
const char *build__join(const char *sep, ...)
{
const size_t sep_len = strlen(sep);
size_t length = 0;
size_t seps_count = 0;
va_list args;
FOREACH_VARGS_CSTR(sep, arg, args, {
length += strlen(arg);
seps_count += 1;
});
assert(length > 0);
seps_count -= 1;
char *result = malloc(length + seps_count * sep_len + 1);
length = 0;
FOREACH_VARGS_CSTR(sep, arg, args, {
size_t n = strlen(arg);
memcpy(result + length, arg, n);
length += n;
if (seps_count > 0) {
memcpy(result + length, sep, sep_len);
length += sep_len;
seps_count -= 1;
}
});
result[length] = '\0';
return result;
}
const char *build__deprecated_concat_sep(const char *sep, ...)
{
WARN("DEPRECATED: Please don't use `CONCAT_SEP(sep, ...)`. Please use JOIN(sep, ...) instead. `CONCAT_SEP(sep, ...)` will be removed in the next major release.");
const size_t sep_len = strlen(sep);
size_t length = 0;
size_t seps_count = 0;
va_list args;
FOREACH_VARGS_CSTR(sep, arg, args, {
length += strlen(arg);
seps_count += 1;
});
assert(length > 0);
seps_count -= 1;
char *result = malloc(length + seps_count * sep_len + 1);
length = 0;
FOREACH_VARGS_CSTR(sep, arg, args, {
size_t n = strlen(arg);
memcpy(result + length, arg, n);
length += n;
if (seps_count > 0) {
memcpy(result + length, sep, sep_len);
length += sep_len;
seps_count -= 1;
}
});
result[length] = '\0';
return result;
}
const char *concat_sep_impl(const char *sep, ...)
{
WARN("DEPRECATED: Please don't use `concat_sep_impl(sep, ...)`. Please use JOIN(sep, ...) instead. `concat_sep_impl(sep, ...)` will be removed in the next major release.");
const size_t sep_len = strlen(sep);
size_t length = 0;
size_t seps_count = 0;
va_list args;
FOREACH_VARGS_CSTR(sep, arg, args, {
length += strlen(arg);
seps_count += 1;
});
assert(length > 0);
seps_count -= 1;
char *result = malloc(length + seps_count * sep_len + 1);
length = 0;
FOREACH_VARGS_CSTR(sep, arg, args, {
size_t n = strlen(arg);
memcpy(result + length, arg, n);
length += n;
if (seps_count > 0) {
memcpy(result + length, sep, sep_len);
length += sep_len;
seps_count -= 1;
}
});
result[length] = '\0';
return result;
}
void mkdirs_impl(int ignore, ...)
{
size_t length = 0;
size_t seps_count = 0;
va_list args;
FOREACH_VARGS_CSTR(ignore, arg, args, {
length += strlen(arg);
seps_count += 1;
});
assert(length > 0);
seps_count -= 1;
char *result = malloc(length + seps_count * PATH_SEP_LEN + 1);
length = 0;
FOREACH_VARGS_CSTR(ignore, arg, args, {
size_t n = strlen(arg);
memcpy(result + length, arg, n);
length += n;
if (seps_count > 0) {
memcpy(result + length, PATH_SEP, PATH_SEP_LEN);
length += PATH_SEP_LEN;
seps_count -= 1;
}
result[length] = '\0';
INFO("mkdirs %s", result);
if (mkdir(result, 0755) < 0) {
if (errno == EEXIST) {
WARN("directory %s already exists", result);
} else {
PANIC("could not create directory %s: %s", result, strerror(errno));
}
}
});
}
// TODO(#4): there is no way to remove a file
const char *concat_impl(int ignore, ...)
{
size_t length = 0;
va_list args;
FOREACH_VARGS_CSTR(ignore, arg, args, {
length += strlen(arg);
});
char *result = malloc(length + 1);
length = 0;
FOREACH_VARGS_CSTR(ignore, arg, args, {
size_t n = strlen(arg);
memcpy(result + length, arg, n);
length += n;
});
result[length] = '\0';
return result;
}
void nobuild_exec(const char **argv)
{
#ifdef _WIN32
intptr_t status = _spawnvp(_P_WAIT, argv[0], (char * const*) argv);
if (status < 0) {
PANIC("could not start child process: %s", strerror(errno));
}
if (status > 0) {
PANIC("command exited with exit code %d", status);
}
#else
pid_t cpid = fork();
if (cpid == -1) {
PANIC("could not fork a child process: %s", strerror(errno));
}
if (cpid == 0) {
if (execvp(argv[0], (char * const*) argv) < 0) {
PANIC("could not execute child process: %s", strerror(errno));
}
} else {
nobuild__posix_wait_for_pid(cpid);
}
#endif // _WIN32
}
void cmd_impl(int ignore, ...)
{
size_t argc = 0;
va_list args;
FOREACH_VARGS_CSTR(ignore, arg, args, {
argc += 1;
});
const char **argv = malloc(sizeof(const char*) * (argc + 1));
argc = 0;
FOREACH_VARGS_CSTR(ignore, arg, args, {
argv[argc++] = arg;
});
argv[argc] = NULL;
assert(argc >= 1);
nobuild_exec(argv);
}
const char *nobuild__remove_ext(const char *path)
{
size_t n = strlen(path);
while (n > 0 && path[n - 1] != '.') {
n -= 1;
}
if (n > 0) {
char *result = malloc(n);
memcpy(result, path, n);
result[n - 1] = '\0';
return result;
} else {
return path;
}
}
const char *remove_ext(const char *path)
{
WARN("DEPRECATED: Please use `NOEXT(path)` instead of `remove_ext(path)`. `remove_ext(path)` will be removed in the next major release.");
nobuild__remove_ext(path);
return NULL;
}
char *shift(int *argc, char ***argv)
{
assert(*argc > 0);
char *result = **argv;
*argv += 1;
*argc -= 1;
return result;
}
void nobuild_log(FILE *stream, const char *tag, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
nobuild_vlog(stream, tag, fmt, args);
va_end(args);
}
void nobuild_vlog(FILE *stream, const char *tag, const char *fmt, va_list args)
{
fprintf(stream, "[%s] ", tag);
vfprintf(stream, fmt, args);
fprintf(stream, "\n");
}
void INFO(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
nobuild_vlog(stdout, "INFO", fmt, args);
va_end(args);
}
void WARN(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
nobuild_vlog(stderr, "WARN", fmt, args);
va_end(args);
}
void ERRO(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
nobuild_vlog(stderr, "ERRO", fmt, args);
va_end(args);
}
void PANIC(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
nobuild_vlog(stderr, "ERRO", fmt, args);
va_end(args);
exit(1);
}
int nobuild__ends_with(const char *str, const char *postfix)
{
const size_t str_n = strlen(str);
const size_t postfix_n = strlen(postfix);
return postfix_n <= str_n && strcmp(str + str_n - postfix_n, postfix) == 0;
}
int nobuild__is_dir(const char *path)
{
#ifdef _WIN32
DWORD dwAttrib = GetFileAttributes(path);
return (dwAttrib != INVALID_FILE_ATTRIBUTES &&
(dwAttrib & FILE_ATTRIBUTE_DIRECTORY));
#else
struct stat statbuf = {0};
if (stat(path, &statbuf) < 0) {
if (errno == ENOENT) {
return 0;
}
PANIC("could not retrieve information about file %s: %s",
path, strerror(errno));
}
return S_ISDIR(statbuf.st_mode);
#endif // _WIN32
}
void nobuild__rm(const char *path)
{
if (IS_DIR(path)) {
FOREACH_FILE_IN_DIR(file, path, {
if (strcmp(file, ".") != 0 && strcmp(file, "..") != 0) {
nobuild__rm(PATH(path, file));
}
});
if (rmdir(path) < 0) {
if (errno == ENOENT) {
WARN("directory %s does not exist");
} else {
PANIC("could not remove directory %s: %s", path, strerror(errno));
}
}
} else {
if (unlink(path) < 0) {
if (errno == ENOENT) {
WARN("file %s does not exist");
} else {
PANIC("could not remove file %s: %s", path, strerror(errno));
}
}
}
}
#ifdef _WIN32
void nobuild__pipe(int ignore, ...)
{
PANIC("TODO(#14): piping is not implemented on Windows at all");
}
#else
void nobuild__pipe(int ignore, ...)
{
const char *input_filepath = NULL;
const char *output_filepath = NULL;
size_t cmds_count = 0;
va_list args;
va_start(args, ignore);
{
Pipe_Arg arg = va_arg(args, Pipe_Arg);
while (arg.type != PIPE_ARG_END) {
switch (arg.type) {
case PIPE_ARG_IN: {
if (input_filepath == NULL) {
input_filepath = arg.args[0];
} else {
// TODO(#15): PIPE does not report where exactly a syntactic error has happened
PANIC("input file was already set for the pipe");
}
} break;
case PIPE_ARG_OUT: {
if (output_filepath == NULL) {
output_filepath = arg.args[0];
} else {
PANIC("output file was already set for the pipe");
}
} break;
case PIPE_ARG_CHAIN: {
cmds_count += 1;
} break;
case PIPE_ARG_END:
default: {
assert(0 && "unreachable");
}
}
arg = va_arg(args, Pipe_Arg);
}
}
va_end(args);
if (cmds_count == 0) {
PANIC("no chains provided for the pipe");
}
Pipe_Arg *cmds = malloc(sizeof(Pipe_Arg) * cmds_count);
pid_t *cpids = malloc(sizeof(pid_t) * cmds_count);
cmds_count = 0;
va_start(args, ignore);
{
Pipe_Arg arg = va_arg(args, Pipe_Arg);
while (arg.type != PIPE_ARG_END) {
if (arg.type == PIPE_ARG_CHAIN) {
cmds[cmds_count++] = arg;
}
arg = va_arg(args, Pipe_Arg);
}
}
va_end(args);
// TODO(#16): input/output piping is not implemented for Linux
for (size_t i = 0; i < cmds_count; ++i) {
cpids[i] = fork();
if (cpids[i] < 0) {
PANIC("could not fork a child: %s", strerror(errno));
}
if (cpids[i] == 0) {
// Chain is first and there is input file
if (i == 0) {
if (input_filepath != NULL) {
int fdin = open(input_filepath, O_RDONLY);
if (fdin < 0) {
PANIC("could not open file %s: %s", input_filepath, strerror(errno));
}
if (dup2(fdin, STDIN_FILENO) < 0) {
PANIC("could not duplication file descriptor for %s: %s",
input_filepath, strerror(errno));
}
}
} else {
assert(0 && "input piping is not implemented");
}
// Chain is last and there is output file
if (i == cmds_count - 1) {
if (output_filepath != NULL) {
int fdout = open(output_filepath,
O_WRONLY | O_CREAT | O_TRUNC,
S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
if (fdout < 0) {
PANIC("could not open file %s: %s", output_filepath, strerror(errno));
}
if (dup2(fdout, STDOUT_FILENO) < 0) {
PANIC("could not duplication file descriptor for %s: %s",
output_filepath, strerror(errno));
}
}
} else {
assert(0 && "output piping is not implemented");
}
if (execvp(cmds[i].args[0], (char * const*) cmds[i].args) < 0) {
PANIC("could not execute command: %s", strerror(errno));
}
}
}
for (size_t i = 0; i < cmds_count; ++i) {
nobuild__posix_wait_for_pid(cpids[i]);
}
}
#endif // _WIN32
#ifndef _WIN32
void nobuild__posix_wait_for_pid(pid_t pid)
{
for (;;) {
int wstatus = 0;
waitpid(pid, &wstatus, 0);
if (WIFEXITED(wstatus)) {
int exit_status = WEXITSTATUS(wstatus);
if (exit_status != 0) {
PANIC("command exited with exit code %d", exit_status);
}
break;
}
if (WIFSIGNALED(wstatus)) {
PANIC("command process was terminated by %s", strsignal(WTERMSIG(wstatus)));
}
}
}
#endif
Pipe_Arg nobuild__make_pipe_arg(Pipe_Arg_Type type, ...)
{
Pipe_Arg result = {
.type = type
};
va_list args;
size_t count = 0;
FOREACH_VARGS_CSTR(type, arg, args, {
count += 1;
});
result.args = malloc(sizeof(const char*) * (count + 1));
count = 0;
FOREACH_VARGS_CSTR(type, arg, args, {
result.args[count++] = arg;
});
result.args[count] = NULL;
return result;
}
#endif // NOBUILD_IMPLEMENTATION