1 | /* $Id: kmkbuiltin.h 3169 2018-03-21 11:27:47Z bird $ */
|
---|
2 | /** @file
|
---|
3 | * kMk Builtin command handling.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (c) 2005-2016 knut st. osmundsen <bird-kBuild-spamx@anduin.net>
|
---|
8 | *
|
---|
9 | * This file is part of kBuild.
|
---|
10 | *
|
---|
11 | * kBuild is free software; you can redistribute it and/or modify
|
---|
12 | * it under the terms of the GNU General Public License as published by
|
---|
13 | * the Free Software Foundation; either version 3 of the License, or
|
---|
14 | * (at your option) any later version.
|
---|
15 | *
|
---|
16 | * kBuild is distributed in the hope that it will be useful,
|
---|
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
19 | * GNU General Public License for more details.
|
---|
20 | *
|
---|
21 | * You should have received a copy of the GNU General Public License
|
---|
22 | * along with kBuild. If not, see <http://www.gnu.org/licenses/>
|
---|
23 | *
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___kmk_kmkbuiltin_h___
|
---|
27 | #define ___kmk_kmkbuiltin_h___
|
---|
28 |
|
---|
29 | #ifdef _MSC_VER
|
---|
30 | # ifndef pid_t /* see config.h.win */
|
---|
31 | # define pid_t intptr_t /* Note! sub_proc.c needs it to be pointer sized. */
|
---|
32 | # endif
|
---|
33 | #else
|
---|
34 | # include <sys/types.h>
|
---|
35 | #endif
|
---|
36 |
|
---|
37 | /* For the GNU/hurd weirdo. */
|
---|
38 | #ifndef PATH_MAX
|
---|
39 | # ifdef MAXPATHLEN
|
---|
40 | # define PATH_MAX MAXPATHLEN
|
---|
41 | # else
|
---|
42 | # define PATH_MAX 4096
|
---|
43 | # endif
|
---|
44 | #endif
|
---|
45 | #ifndef MAXPATHLEN
|
---|
46 | # define MAXPATHLEN PATH_MAX
|
---|
47 | #endif
|
---|
48 |
|
---|
49 | /** This is for telling fopen() to get a close-on-exec handle.
|
---|
50 | * @todo glibc 2.7+ and recent cygwin supports 'e' for doing this. */
|
---|
51 | #ifndef KMK_FOPEN_NO_INHERIT_MODE
|
---|
52 | # ifdef _MSC_VER
|
---|
53 | # define KMK_FOPEN_NO_INHERIT_MODE "N"
|
---|
54 | # else
|
---|
55 | # define KMK_FOPEN_NO_INHERIT_MODE ""
|
---|
56 | # endif
|
---|
57 | #endif
|
---|
58 |
|
---|
59 | #include "kbuild_version.h"
|
---|
60 |
|
---|
61 | struct child;
|
---|
62 | int kmk_builtin_command(const char *pszCmd, struct child *pChild, char ***ppapszArgvToSpawn, pid_t *pPidSpawned);
|
---|
63 | int kmk_builtin_command_parsed(int argc, char **argv, struct child *pChild, char ***ppapszArgvToSpawn, pid_t *pPidSpawned);
|
---|
64 |
|
---|
65 | /**
|
---|
66 | * kmk built-in command entry.
|
---|
67 | */
|
---|
68 | typedef struct KMKBUILTINENTRY
|
---|
69 | {
|
---|
70 | union
|
---|
71 | {
|
---|
72 | struct
|
---|
73 | {
|
---|
74 | char cch;
|
---|
75 | char sz[15];
|
---|
76 | } s;
|
---|
77 | size_t cchAndStart;
|
---|
78 | } uName;
|
---|
79 | union
|
---|
80 | {
|
---|
81 | uintptr_t uPfn;
|
---|
82 | #define FN_SIG_MAIN 0
|
---|
83 | int (* pfnMain)(int argc, char **argv, char **envp);
|
---|
84 | #define FN_SIG_MAIN_SPAWNS 1
|
---|
85 | int (* pfnMainSpawns)(int argc, char **argv, char **envp, struct child *pChild, pid_t *pPid);
|
---|
86 | #define FN_SIG_MAIN_TO_SPAWN 2
|
---|
87 | int (* pfnMainToSpawn)(int argc, char **argv, char **envp, char ***ppapszArgvToSpawn);
|
---|
88 | } u;
|
---|
89 | size_t uFnSignature : 8;
|
---|
90 | size_t fMpSafe : 1;
|
---|
91 | size_t fNeedEnv : 1;
|
---|
92 | } KMKBUILTINENTRY;
|
---|
93 | /** Pointer to kmk built-in command entry. */
|
---|
94 | typedef KMKBUILTINENTRY const *PCKMKBUILTINENTRY;
|
---|
95 |
|
---|
96 | extern int kmk_builtin_append(int argc, char **argv, char **envp);
|
---|
97 | extern int kmk_builtin_cp(int argc, char **argv, char **envp);
|
---|
98 | extern int kmk_builtin_cat(int argc, char **argv, char **envp);
|
---|
99 | extern int kmk_builtin_chmod(int argc, char **argv, char **envp);
|
---|
100 | extern int kmk_builtin_cmp(int argc, char **argv, char **envp);
|
---|
101 | extern int kmk_builtin_dircache(int argc, char **argv, char **envp);
|
---|
102 | extern int kmk_builtin_echo(int argc, char **argv, char **envp);
|
---|
103 | extern int kmk_builtin_expr(int argc, char **argv, char **envp);
|
---|
104 | extern int kmk_builtin_install(int argc, char **argv, char **envp);
|
---|
105 | extern int kmk_builtin_ln(int argc, char **argv, char **envp);
|
---|
106 | extern int kmk_builtin_md5sum(int argc, char **argv, char **envp);
|
---|
107 | extern int kmk_builtin_mkdir(int argc, char **argv, char **envp);
|
---|
108 | extern int kmk_builtin_mv(int argc, char **argv, char **envp);
|
---|
109 | extern int kmk_builtin_printf(int argc, char **argv, char **envp);
|
---|
110 | extern int kmk_builtin_redirect(int argc, char **argv, char **envp, struct child *pChild, pid_t *pPidSpawned);
|
---|
111 | extern int kmk_builtin_rm(int argc, char **argv, char **envp);
|
---|
112 | extern int kmk_builtin_rmdir(int argc, char **argv, char **envp);
|
---|
113 | extern int kmk_builtin_sleep(int argc, char **argv, char **envp);
|
---|
114 | extern int kmk_builtin_test(int argc, char **argv, char **envp
|
---|
115 | #ifndef kmk_builtin_test
|
---|
116 | , char ***ppapszArgvSpawn
|
---|
117 | #endif
|
---|
118 | );
|
---|
119 | extern int kmk_builtin_touch(int argc, char **argv, char **envp);
|
---|
120 | #ifdef KBUILD_OS_WINDOWS
|
---|
121 | extern int kmk_builtin_kSubmit(int argc, char **argv, char **envp, struct child *pChild, pid_t *pPidSpawned);
|
---|
122 | extern int kSubmitSubProcGetResult(intptr_t pvUser, int *prcExit, int *piSigNo);
|
---|
123 | extern int kSubmitSubProcKill(intptr_t pvUser, int iSignal);
|
---|
124 | extern void kSubmitSubProcCleanup(intptr_t pvUser);
|
---|
125 | #endif
|
---|
126 | extern int kmk_builtin_kDepIDB(int argc, char **argv, char **envp);
|
---|
127 | extern int kmk_builtin_kDepObj(int argc, char **argv, char **envp);
|
---|
128 |
|
---|
129 | extern char *kmk_builtin_func_printf(char *o, char **argv, const char *funcname);
|
---|
130 |
|
---|
131 | /* common-env-and-cwd-opt.c: */
|
---|
132 | extern int kBuiltinOptEnvSet(char ***ppapszEnv, unsigned *pcEnvVars, unsigned *pcAllocatedEnvVars,
|
---|
133 | int cVerbosity, const char *pszValue);
|
---|
134 | extern int kBuiltinOptEnvAppend(char ***ppapszEnv, unsigned *pcEnvVars, unsigned *pcAllocatedEnvVars,
|
---|
135 | int cVerbosity, const char *pszValue);
|
---|
136 | extern int kBuiltinOptEnvPrepend(char ***ppapszEnv, unsigned *pcEnvVars, unsigned *pcAllocatedEnvVars,
|
---|
137 | int cVerbosity, const char *pszValue);
|
---|
138 | extern int kBuiltinOptEnvUnset(char **papszEnv, unsigned *pcEnvVars, int cVerbosity, const char *pszVarToRemove);
|
---|
139 | extern int kBuiltinOptChDir(char *pszCwd, size_t cbCwdBuf, const char *pszValue);
|
---|
140 |
|
---|
141 | #endif
|
---|
142 |
|
---|