wininet/tests: Check null pointer in InternetGetSecurityInfoByURLW.
[wine.git] / programs / cmd / wcmd.h
blobd4d97a0067e2a65ed6c590962904ce80fbeba2e3
1 /*
2 * CMD - Wine-compatible command line interface.
4 * Copyright (C) 1999 D A Pickles
5 * Copyright (C) 2007 J Edmeades
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #define IDI_ICON1 1
23 #include <windows.h>
24 #include <windef.h>
25 #ifndef RC_INVOKED
26 #include <string.h>
27 #include <stdlib.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <ctype.h>
31 #include <wine/unicode.h>
33 /* msdn specified max for Win XP */
34 #define MAXSTRING 8192
36 /* Data structure to hold commands delimitors/separators */
38 typedef enum _CMDdelimiters {
39 CMD_NONE, /* End of line or single & */
40 CMD_ONFAILURE, /* || */
41 CMD_ONSUCCESS, /* && */
42 CMD_PIPE /* Single | */
43 } CMD_DELIMITERS;
45 /* Data structure to hold commands to be processed */
47 typedef struct _CMD_LIST {
48 WCHAR *command; /* Command string to execute */
49 WCHAR *redirects; /* Redirects in place */
50 struct _CMD_LIST *nextcommand; /* Next command string to execute */
51 CMD_DELIMITERS prevDelim; /* Previous delimiter */
52 int bracketDepth;/* How deep bracketing have we got to */
53 WCHAR pipeFile[MAX_PATH]; /* Where to get input from for pipes */
54 } CMD_LIST;
56 void WCMD_assoc (const WCHAR *, BOOL);
57 void WCMD_batch (WCHAR *, WCHAR *, BOOL, WCHAR *, HANDLE);
58 void WCMD_call (WCHAR *command);
59 void WCMD_change_tty (void);
60 void WCMD_choice (const WCHAR *);
61 void WCMD_clear_screen (void);
62 void WCMD_color (void);
63 void WCMD_copy (WCHAR *);
64 void WCMD_create_dir (WCHAR *);
65 BOOL WCMD_delete (WCHAR *);
66 void WCMD_directory (WCHAR *);
67 void WCMD_echo (const WCHAR *);
68 void WCMD_endlocal (void);
69 void WCMD_enter_paged_mode(const WCHAR *);
70 void WCMD_exit (CMD_LIST **cmdList);
71 void WCMD_for (WCHAR *, CMD_LIST **cmdList);
72 void WCMD_give_help (const WCHAR *args);
73 void WCMD_goto (CMD_LIST **cmdList);
74 void WCMD_if (WCHAR *, CMD_LIST **cmdList);
75 void WCMD_leave_paged_mode(void);
76 void WCMD_more (WCHAR *);
77 void WCMD_move (void);
78 WCHAR* WINAPIV WCMD_format_string (const WCHAR *format, ...);
79 void WINAPIV WCMD_output (const WCHAR *format, ...);
80 void WINAPIV WCMD_output_stderr (const WCHAR *format, ...);
81 void WCMD_output_asis (const WCHAR *message);
82 void WCMD_output_asis_stderr (const WCHAR *message);
83 void WCMD_pause (void);
84 void WCMD_popd (void);
85 void WCMD_print_error (void);
86 void WCMD_pushd (const WCHAR *args);
87 void WCMD_remove_dir (WCHAR *command);
88 void WCMD_rename (void);
89 void WCMD_run_program (WCHAR *command, BOOL called);
90 void WCMD_setlocal (const WCHAR *args);
91 void WCMD_setshow_date (void);
92 void WCMD_setshow_default (const WCHAR *args);
93 void WCMD_setshow_env (WCHAR *command);
94 void WCMD_setshow_path (const WCHAR *args);
95 void WCMD_setshow_prompt (void);
96 void WCMD_setshow_time (void);
97 void WCMD_shift (const WCHAR *args);
98 void WCMD_start (WCHAR *args);
99 void WCMD_title (const WCHAR *);
100 void WCMD_type (WCHAR *);
101 void WCMD_verify (const WCHAR *args);
102 void WCMD_version (void);
103 int WCMD_volume (BOOL set_label, const WCHAR *args);
104 void WCMD_mklink(WCHAR *args);
106 static inline BOOL WCMD_is_console_handle(HANDLE h)
108 return (((DWORD_PTR)h) & 3) == 3;
110 WCHAR *WCMD_fgets (WCHAR *buf, DWORD n, HANDLE stream);
111 WCHAR *WCMD_parameter (WCHAR *s, int n, WCHAR **start, BOOL raw, BOOL wholecmdline);
112 WCHAR *WCMD_parameter_with_delims (WCHAR *s, int n, WCHAR **start, BOOL raw,
113 BOOL wholecmdline, const WCHAR *delims);
114 WCHAR *WCMD_skip_leading_spaces (WCHAR *string);
115 BOOL WCMD_keyword_ws_found(const WCHAR *keyword, int len, const WCHAR *ptr);
116 void WCMD_HandleTildaModifiers(WCHAR **start, BOOL atExecute);
118 void WCMD_splitpath(const WCHAR* path, WCHAR* drv, WCHAR* dir, WCHAR* name, WCHAR* ext);
119 WCHAR *WCMD_strip_quotes(WCHAR *cmd);
120 WCHAR *WCMD_LoadMessage(UINT id);
121 void WCMD_strsubstW(WCHAR *start, const WCHAR* next, const WCHAR* insert, int len);
122 BOOL WCMD_ReadFile(const HANDLE hIn, WCHAR *intoBuf, const DWORD maxChars, LPDWORD charsRead);
124 WCHAR *WCMD_ReadAndParseLine(const WCHAR *initialcmd, CMD_LIST **output, HANDLE readFrom);
125 CMD_LIST *WCMD_process_commands(CMD_LIST *thisCmd, BOOL oneBracket, BOOL retrycall);
126 void WCMD_free_commands(CMD_LIST *cmds);
127 void WCMD_execute (const WCHAR *orig_command, const WCHAR *redirects,
128 CMD_LIST **cmdList, BOOL retrycall);
130 void *heap_alloc(size_t);
132 static inline BOOL heap_free(void *mem)
134 return HeapFree(GetProcessHeap(), 0, mem);
137 static inline WCHAR *heap_strdupW(const WCHAR *str)
139 WCHAR *ret = NULL;
141 if(str) {
142 size_t size;
144 size = (strlenW(str)+1)*sizeof(WCHAR);
145 ret = heap_alloc(size);
146 memcpy(ret, str, size);
149 return ret;
152 static inline BOOL ends_with_backslash( const WCHAR *path )
154 return path[0] && path[strlenW(path) - 1] == '\\';
157 /* Data structure to hold context when executing batch files */
159 typedef struct _BATCH_CONTEXT {
160 WCHAR *command; /* The command which invoked the batch file */
161 HANDLE h; /* Handle to the open batch file */
162 WCHAR *batchfileW; /* Name of same */
163 int shift_count[10]; /* Offset in terms of shifts for %0 - %9 */
164 struct _BATCH_CONTEXT *prev_context; /* Pointer to the previous context block */
165 BOOL skip_rest; /* Skip the rest of the batch program and exit */
166 CMD_LIST *toExecute; /* Commands left to be executed */
167 } BATCH_CONTEXT;
169 /* Data structure to handle building lists during recursive calls */
171 struct env_stack
173 struct env_stack *next;
174 union {
175 int stackdepth; /* Only used for pushd and popd */
176 WCHAR cwd; /* Only used for set/endlocal */
177 } u;
178 WCHAR *strings;
179 HANDLE batchhandle; /* Used to ensure set/endlocals stay in scope */
180 BOOL delayedsubst; /* Is delayed substitution in effect */
183 /* Data structure to save setlocal and pushd information */
185 typedef struct _DIRECTORY_STACK
187 struct _DIRECTORY_STACK *next;
188 WCHAR *dirName;
189 WCHAR *fileName;
190 } DIRECTORY_STACK;
192 /* Data structure to for loop variables during for body execution, bearing
193 in mind that for loops can be nested */
194 #define MAX_FOR_VARIABLES 52
195 #define FOR_VAR_IDX(c) (((c)>='a'&&(c)<='z')?((c)-'a'):\
196 ((c)>='A'&&(c)<='Z')?(26+(c)-'A'):-1)
198 typedef struct _FOR_CONTEXT {
199 WCHAR *variable[MAX_FOR_VARIABLES]; /* a-z then A-Z */
200 } FOR_CONTEXT;
203 * Global variables quals, param1, param2 contain the current qualifiers
204 * (uppercased and concatenated) and parameters entered, with environment
205 * variables and batch parameters substitution already done.
207 extern WCHAR quals[MAX_PATH], param1[MAXSTRING], param2[MAXSTRING];
208 extern DWORD errorlevel;
209 extern BATCH_CONTEXT *context;
210 extern FOR_CONTEXT forloopcontext;
211 extern BOOL delayedsubst;
213 #endif /* !RC_INVOKED */
216 * Serial nos of builtin commands. These constants must be in step with
217 * the list of strings defined in wcmd.rc, and WCMD_EXIT *must* always be
218 * the last one.
220 * Yes it *would* be nice to use an enumeration here, but the Resource
221 * Compiler won't accept resource IDs from enumerations :-(
224 #define WCMD_CALL 0
225 #define WCMD_CD 1
226 #define WCMD_CHDIR 2
227 #define WCMD_CLS 3
228 #define WCMD_COPY 4
229 #define WCMD_CTTY 5
230 #define WCMD_DATE 6
231 #define WCMD_DEL 7
232 #define WCMD_DIR 8
233 #define WCMD_ECHO 9
234 #define WCMD_ERASE 10
235 #define WCMD_FOR 11
236 #define WCMD_GOTO 12
237 #define WCMD_HELP 13
238 #define WCMD_IF 14
239 #define WCMD_LABEL 15
240 #define WCMD_MD 16
241 #define WCMD_MKDIR 17
242 #define WCMD_MOVE 18
243 #define WCMD_PATH 19
244 #define WCMD_PAUSE 20
245 #define WCMD_PROMPT 21
246 #define WCMD_REM 22
247 #define WCMD_REN 23
248 #define WCMD_RENAME 24
249 #define WCMD_RD 25
250 #define WCMD_RMDIR 26
251 #define WCMD_SET 27
252 #define WCMD_SHIFT 28
253 #define WCMD_START 29
254 #define WCMD_TIME 30
255 #define WCMD_TITLE 31
256 #define WCMD_TYPE 32
257 #define WCMD_VERIFY 33
258 #define WCMD_VER 34
259 #define WCMD_VOL 35
261 #define WCMD_ENDLOCAL 36
262 #define WCMD_SETLOCAL 37
263 #define WCMD_PUSHD 38
264 #define WCMD_POPD 39
265 #define WCMD_ASSOC 40
266 #define WCMD_COLOR 41
267 #define WCMD_FTYPE 42
268 #define WCMD_MORE 43
269 #define WCMD_CHOICE 44
270 #define WCMD_MKLINK 45
272 /* Must be last in list */
273 #define WCMD_EXIT 46
275 /* Some standard messages */
276 extern const WCHAR newlineW[];
277 extern const WCHAR spaceW[];
278 extern const WCHAR nullW[];
279 extern const WCHAR dotW[];
280 extern const WCHAR dotdotW[];
281 extern const WCHAR starW[];
282 extern const WCHAR slashW[];
283 extern const WCHAR equalW[];
284 extern WCHAR anykey[];
285 extern WCHAR version_string[];
287 /* Translated messages */
288 #define WCMD_ALLHELP 1000
289 #define WCMD_CONFIRM 1001
290 #define WCMD_YES 1002
291 #define WCMD_NO 1003
292 #define WCMD_NOASSOC 1004
293 #define WCMD_NOFTYPE 1005
294 #define WCMD_OVERWRITE 1006
295 #define WCMD_MORESTR 1007
296 #define WCMD_TRUNCATEDLINE 1008
297 #define WCMD_NYI 1009
298 #define WCMD_NOARG 1010
299 #define WCMD_SYNTAXERR 1011
300 #define WCMD_FILENOTFOUND 1012
301 #define WCMD_NOCMDHELP 1013
302 #define WCMD_NOTARGET 1014
303 #define WCMD_CURRENTDATE 1015
304 #define WCMD_CURRENTTIME 1016
305 #define WCMD_NEWDATE 1017
306 #define WCMD_NEWTIME 1018
307 #define WCMD_MISSINGENV 1019
308 #define WCMD_READFAIL 1020
309 #define WCMD_CALLINSCRIPT 1021
310 #define WCMD_ALL 1022
311 #define WCMD_DELPROMPT 1023
312 #define WCMD_ECHOPROMPT 1024
313 #define WCMD_VERIFYPROMPT 1025
314 #define WCMD_VERIFYERR 1026
315 #define WCMD_ARGERR 1027
316 #define WCMD_VOLUMESERIALNO 1028
317 #define WCMD_VOLUMEPROMPT 1029
318 #define WCMD_NOPATH 1030
319 #define WCMD_ANYKEY 1031
320 #define WCMD_CONSTITLE 1032
321 #define WCMD_VERSION 1033
322 #define WCMD_MOREPROMPT 1034
323 #define WCMD_LINETOOLONG 1035
324 #define WCMD_VOLUMELABEL 1036
325 #define WCMD_VOLUMENOLABEL 1037
326 #define WCMD_YESNO 1038
327 #define WCMD_YESNOALL 1039
328 #define WCMD_NO_COMMAND_FOUND 1040
329 #define WCMD_DIVIDEBYZERO 1041
330 #define WCMD_NOOPERAND 1042
331 #define WCMD_NOOPERATOR 1043
332 #define WCMD_BADPAREN 1044
333 #define WCMD_BADHEXOCT 1045