blob: 771bcbb58d4ad10066dfed35fca33043a2d3c11b [file] [log] [blame]
Dave Pickles74f440e1999-06-06 15:24:04 +00001/*
Dan Kegel39857442006-09-03 21:13:08 -07002 * CMD - Wine-compatible command line interface - built-in functions.
Dave Pickles74f440e1999-06-06 15:24:04 +00003 *
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00004 * Copyright (C) 1999 D A Pickles
Dave Pickles74f440e1999-06-06 15:24:04 +00005 *
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00006 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
Jonathan Ernst360a3f92006-05-18 14:49:52 +020018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard0799c1a2002-03-09 23:29:33 +000019 */
20
21/*
22 * NOTES:
Dave Pickles74f440e1999-06-06 15:24:04 +000023 * On entry to each function, global variables quals, param1, param2 contain
24 * the qualifiers (uppercased and concatenated) and parameters entered, with
25 * environment-variable and batch parameter substitution already done.
26 */
27
28/*
29 * FIXME:
Dave Pickles036a9f71999-07-10 11:36:45 +000030 * - No support for pipes, shell parameters
Dave Pickles74f440e1999-06-06 15:24:04 +000031 * - Lots of functionality missing from builtins
32 * - Messages etc need international support
33 */
34
Mike McCormack7d665672006-01-16 20:41:34 +010035#define WIN32_LEAN_AND_MEAN
36
Dave Pickles74f440e1999-06-06 15:24:04 +000037#include "wcmd.h"
Jason Edmeades69194ce2007-02-26 23:04:40 +000038#include <shellapi.h>
Dave Pickles74f440e1999-06-06 15:24:04 +000039
Dave Pickles036a9f71999-07-10 11:36:45 +000040void WCMD_execute (char *orig_command, char *parameter, char *substitution);
41
Mike McCormack9643b792004-03-22 22:56:58 +000042struct env_stack
43{
44 struct env_stack *next;
45 WCHAR *strings;
46};
47
48struct env_stack *saved_environment;
Jason Edmeades365f86f2007-02-23 22:17:28 +000049struct env_stack *pushd_directories;
Mike McCormack9643b792004-03-22 22:56:58 +000050
Dave Pickles74f440e1999-06-06 15:24:04 +000051extern HINSTANCE hinst;
52extern char *inbuilt[];
Dave Pickles5f8f4f71999-06-26 10:24:08 +000053extern int echo_mode, verify_mode;
Dave Pickles74f440e1999-06-06 15:24:04 +000054extern char quals[MAX_PATH], param1[MAX_PATH], param2[MAX_PATH];
Dave Pickles5f8f4f71999-06-26 10:24:08 +000055extern BATCH_CONTEXT *context;
Dave Picklesebecf502000-08-01 22:02:18 +000056extern DWORD errorlevel;
Dave Pickles74f440e1999-06-06 15:24:04 +000057
58
Dave Pickles74f440e1999-06-06 15:24:04 +000059
60/****************************************************************************
61 * WCMD_clear_screen
62 *
63 * Clear the terminal screen.
64 */
65
Eric Pouechb2f079b2003-02-27 01:41:21 +000066void WCMD_clear_screen (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +000067
Jason Edmeadesa4c214e2002-04-29 17:12:57 +000068 /* Emulate by filling the screen from the top left to bottom right with
69 spaces, then moving the cursor to the top left afterwards */
Jason Edmeadesa4c214e2002-04-29 17:12:57 +000070 CONSOLE_SCREEN_BUFFER_INFO consoleInfo;
71 HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
Dave Pickles74f440e1999-06-06 15:24:04 +000072
Eric Pouechb2f079b2003-02-27 01:41:21 +000073 if (GetConsoleScreenBufferInfo(hStdOut, &consoleInfo))
74 {
75 COORD topLeft;
Mike McCormack516a5772005-08-19 10:04:03 +000076 DWORD screenSize;
77
Eric Pouechb2f079b2003-02-27 01:41:21 +000078 screenSize = consoleInfo.dwSize.X * (consoleInfo.dwSize.Y + 1);
Jason Edmeadesa4c214e2002-04-29 17:12:57 +000079
Eric Pouechb2f079b2003-02-27 01:41:21 +000080 topLeft.X = 0;
81 topLeft.Y = 0;
82 FillConsoleOutputCharacter(hStdOut, ' ', screenSize, topLeft, &screenSize);
83 SetConsoleCursorPosition(hStdOut, topLeft);
84 }
Dave Pickles74f440e1999-06-06 15:24:04 +000085}
86
87/****************************************************************************
88 * WCMD_change_tty
89 *
90 * Change the default i/o device (ie redirect STDin/STDout).
91 */
92
Eric Pouechb2f079b2003-02-27 01:41:21 +000093void WCMD_change_tty (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +000094
95 WCMD_output (nyi);
96
97}
98
99/****************************************************************************
100 * WCMD_copy
101 *
102 * Copy a file or wildcarded set.
103 * FIXME: No wildcard support
Dave Pickles74f440e1999-06-06 15:24:04 +0000104 */
105
Eric Pouechb2f079b2003-02-27 01:41:21 +0000106void WCMD_copy (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000107
108DWORD count;
109WIN32_FIND_DATA fd;
110HANDLE hff;
111BOOL force, status;
Andreas Mohrcf2b9f02005-06-27 09:48:57 +0000112static const char overwrite[] = "Overwrite file (Y/N)?";
Dave Picklesebecf502000-08-01 22:02:18 +0000113char string[8], outpath[MAX_PATH], inpath[MAX_PATH], *infile;
Dave Pickles74f440e1999-06-06 15:24:04 +0000114
Markus Amsler765ff5d2006-10-31 21:11:28 +0100115 if (param1[0] == 0x00) {
116 WCMD_output ("Argument missing\n");
117 return;
118 }
119
Dave Pickles74f440e1999-06-06 15:24:04 +0000120 if ((strchr(param1,'*') != NULL) && (strchr(param1,'%') != NULL)) {
121 WCMD_output ("Wildcards not yet supported\n");
122 return;
123 }
Jason Edmeades13c51172002-04-20 20:54:38 +0000124
125 /* If no destination supplied, assume current directory */
126 if (param2[0] == 0x00) {
127 strcpy(param2, ".");
128 }
129
Dave Pickles74f440e1999-06-06 15:24:04 +0000130 GetFullPathName (param2, sizeof(outpath), outpath, NULL);
Eric Pouechb7923b42006-12-26 17:51:24 +0100131 if (outpath[strlen(outpath) - 1] == '\\')
132 outpath[strlen(outpath) - 1] = '\0';
Dave Picklesebecf502000-08-01 22:02:18 +0000133 hff = FindFirstFile (outpath, &fd);
134 if (hff != INVALID_HANDLE_VALUE) {
135 if (fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
136 GetFullPathName (param1, sizeof(inpath), inpath, &infile);
137 strcat (outpath, "\\");
138 strcat (outpath, infile);
139 }
140 FindClose (hff);
141 }
Jason Edmeades13c51172002-04-20 20:54:38 +0000142
Dave Pickles74f440e1999-06-06 15:24:04 +0000143 force = (strstr (quals, "/Y") != NULL);
144 if (!force) {
145 hff = FindFirstFile (outpath, &fd);
146 if (hff != INVALID_HANDLE_VALUE) {
147 FindClose (hff);
148 WCMD_output (overwrite);
Dave Pickles036a9f71999-07-10 11:36:45 +0000149 ReadFile (GetStdHandle(STD_INPUT_HANDLE), string, sizeof(string), &count, NULL);
Dave Pickles74f440e1999-06-06 15:24:04 +0000150 if (toupper(string[0]) == 'Y') force = TRUE;
151 }
152 else force = TRUE;
153 }
154 if (force) {
155 status = CopyFile (param1, outpath, FALSE);
156 if (!status) WCMD_print_error ();
157 }
158}
159
160/****************************************************************************
161 * WCMD_create_dir
162 *
163 * Create a directory.
Aric Stewart1d5adff2005-12-03 18:02:15 +0100164 *
165 * this works recursivly. so mkdir dir1\dir2\dir3 will create dir1 and dir2 if
166 * they do not already exist.
Dave Pickles74f440e1999-06-06 15:24:04 +0000167 */
168
Aric Stewart1d5adff2005-12-03 18:02:15 +0100169BOOL create_full_path(CHAR* path)
170{
171 int len;
172 CHAR *new_path;
173 BOOL ret = TRUE;
174
175 new_path = HeapAlloc(GetProcessHeap(),0,strlen(path)+1);
176 strcpy(new_path,path);
177
178 while ((len = strlen(new_path)) && new_path[len - 1] == '\\')
179 new_path[len - 1] = 0;
180
181 while (!CreateDirectory(new_path,NULL))
182 {
183 CHAR *slash;
184 DWORD last_error = GetLastError();
185 if (last_error == ERROR_ALREADY_EXISTS)
186 break;
187
188 if (last_error != ERROR_PATH_NOT_FOUND)
189 {
190 ret = FALSE;
191 break;
192 }
193
194 if (!(slash = strrchr(new_path,'\\')) && ! (slash = strrchr(new_path,'/')))
195 {
196 ret = FALSE;
197 break;
198 }
199
200 len = slash - new_path;
201 new_path[len] = 0;
202 if (!create_full_path(new_path))
203 {
204 ret = FALSE;
205 break;
206 }
207 new_path[len] = '\\';
208 }
209 HeapFree(GetProcessHeap(),0,new_path);
210 return ret;
211}
212
Eric Pouechb2f079b2003-02-27 01:41:21 +0000213void WCMD_create_dir (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000214
Markus Amsler765ff5d2006-10-31 21:11:28 +0100215 if (param1[0] == 0x00) {
216 WCMD_output ("Argument missing\n");
217 return;
218 }
Aric Stewart1d5adff2005-12-03 18:02:15 +0100219 if (!create_full_path(param1)) WCMD_print_error ();
Dave Pickles74f440e1999-06-06 15:24:04 +0000220}
221
222/****************************************************************************
223 * WCMD_delete
224 *
225 * Delete a file or wildcarded set.
226 *
227 */
228
229void WCMD_delete (int recurse) {
230
231WIN32_FIND_DATA fd;
232HANDLE hff;
233char fpath[MAX_PATH];
234char *p;
235
Markus Amsler765ff5d2006-10-31 21:11:28 +0100236 if (param1[0] == 0x00) {
237 WCMD_output ("Argument missing\n");
238 return;
239 }
Jason Edmeades409368e2007-02-27 23:19:24 +0000240
241 /* If filename part of parameter is * or *.*, prompt unless
242 /Q supplied. */
243 if (strstr (quals, "/Q") == NULL) {
244
245 char drive[10];
246 char dir[MAX_PATH];
247 char fname[MAX_PATH];
248 char ext[MAX_PATH];
249
250 /* Convert path into actual directory spec */
251 GetFullPathName (param1, sizeof(fpath), fpath, NULL);
252 WCMD_splitpath(fpath, drive, dir, fname, ext);
253
254 /* Only prompt for * and *.*, not *a, a*, *.a* etc */
255 if ((strcmp(fname, "*") == 0) &&
256 (*ext == 0x00 || (strcmp(ext, ".*") == 0))) {
257 BOOL ok;
258 char question[MAXSTRING];
259
260 /* Ask for confirmation */
261 sprintf(question, "%s, ", fpath);
262 ok = WCMD_ask_confirm(question);
263
264 /* Abort if answer is 'N' */
265 if (!ok) return;
266 }
267 }
268
Dave Pickles74f440e1999-06-06 15:24:04 +0000269 hff = FindFirstFile (param1, &fd);
270 if (hff == INVALID_HANDLE_VALUE) {
Uwe Bonnes6b4d9e02002-07-24 19:00:25 +0000271 WCMD_output ("%s :File Not Found\n",param1);
Dave Pickles74f440e1999-06-06 15:24:04 +0000272 return;
273 }
274 if ((strchr(param1,'*') == NULL) && (strchr(param1,'?') == NULL)
275 && (!recurse) && (fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
276 strcat (param1, "\\*");
Jason Edmeadesa8828952002-04-29 23:33:09 +0000277 FindClose(hff);
Dave Pickles74f440e1999-06-06 15:24:04 +0000278 WCMD_delete (1);
279 return;
280 }
281 if ((strchr(param1,'*') != NULL) || (strchr(param1,'?') != NULL)) {
282 strcpy (fpath, param1);
283 do {
284 p = strrchr (fpath, '\\');
285 if (p != NULL) {
286 *++p = '\0';
287 strcat (fpath, fd.cFileName);
288 }
289 else strcpy (fpath, fd.cFileName);
290 if (!(fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
291 if (!DeleteFile (fpath)) WCMD_print_error ();
292 }
293 } while (FindNextFile(hff, &fd) != 0);
294 FindClose (hff);
295 }
296 else {
297 if (!DeleteFile (param1)) WCMD_print_error ();
Jason Edmeadesa8828952002-04-29 23:33:09 +0000298 FindClose (hff);
Dave Pickles74f440e1999-06-06 15:24:04 +0000299 }
300}
301
302/****************************************************************************
303 * WCMD_echo
304 *
305 * Echo input to the screen (or not). We don't try to emulate the bugs
306 * in DOS (try typing "ECHO ON AGAIN" for an example).
307 */
308
Daniel Marmier8e5bb202003-10-09 04:39:01 +0000309void WCMD_echo (const char *command) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000310
Andreas Mohrcf2b9f02005-06-27 09:48:57 +0000311static const char eon[] = "Echo is ON\n", eoff[] = "Echo is OFF\n";
Dave Pickles74f440e1999-06-06 15:24:04 +0000312int count;
313
Mike McCormack8d020102004-03-18 04:01:32 +0000314 if ((command[0] == '.') && (command[1] == 0)) {
315 WCMD_output (newline);
316 return;
317 }
318 if (command[0]==' ')
319 command++;
Dave Pickles74f440e1999-06-06 15:24:04 +0000320 count = strlen(command);
321 if (count == 0) {
322 if (echo_mode) WCMD_output (eon);
323 else WCMD_output (eoff);
324 return;
325 }
Dave Pickles74f440e1999-06-06 15:24:04 +0000326 if (lstrcmpi(command, "ON") == 0) {
327 echo_mode = 1;
328 return;
329 }
330 if (lstrcmpi(command, "OFF") == 0) {
331 echo_mode = 0;
332 return;
333 }
Vincent Béron9a624912002-05-31 23:06:46 +0000334 WCMD_output_asis (command);
Dave Pickles74f440e1999-06-06 15:24:04 +0000335 WCMD_output (newline);
336
337}
338
Dave Pickles036a9f71999-07-10 11:36:45 +0000339/**************************************************************************
Dave Pickles74f440e1999-06-06 15:24:04 +0000340 * WCMD_for
341 *
342 * Batch file loop processing.
Dave Pickles036a9f71999-07-10 11:36:45 +0000343 * FIXME: We don't exhaustively check syntax. Any command which works in MessDOS
344 * will probably work here, but the reverse is not necessarily the case...
Dave Pickles74f440e1999-06-06 15:24:04 +0000345 */
346
Dave Pickles5f8f4f71999-06-26 10:24:08 +0000347void WCMD_for (char *p) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000348
Dave Pickles036a9f71999-07-10 11:36:45 +0000349WIN32_FIND_DATA fd;
350HANDLE hff;
351char *cmd, *item;
352char set[MAX_PATH], param[MAX_PATH];
353int i;
354
355 if (lstrcmpi (WCMD_parameter (p, 1, NULL), "in")
356 || lstrcmpi (WCMD_parameter (p, 3, NULL), "do")
357 || (param1[0] != '%')) {
Dave Pickles5f8f4f71999-06-26 10:24:08 +0000358 WCMD_output ("Syntax error\n");
359 return;
360 }
Dave Pickles036a9f71999-07-10 11:36:45 +0000361 lstrcpyn (set, WCMD_parameter (p, 2, NULL), sizeof(set));
362 WCMD_parameter (p, 4, &cmd);
363 lstrcpy (param, param1);
Dave Pickles74f440e1999-06-06 15:24:04 +0000364
Dave Pickles036a9f71999-07-10 11:36:45 +0000365/*
366 * If the parameter within the set has a wildcard then search for matching files
367 * otherwise do a literal substitution.
368 */
369
370 i = 0;
371 while (*(item = WCMD_parameter (set, i, NULL))) {
372 if (strpbrk (item, "*?")) {
373 hff = FindFirstFile (item, &fd);
374 if (hff == INVALID_HANDLE_VALUE) {
375 return;
376 }
377 do {
378 WCMD_execute (cmd, param, fd.cFileName);
379 } while (FindNextFile(hff, &fd) != 0);
380 FindClose (hff);
Dave Pickles74f440e1999-06-06 15:24:04 +0000381}
Dave Pickles036a9f71999-07-10 11:36:45 +0000382 else {
383 WCMD_execute (cmd, param, item);
384 }
385 i++;
386 }
387}
388
Dave Picklesebecf502000-08-01 22:02:18 +0000389/*****************************************************************************
390 * WCMD_Execute
391 *
Dave Pickles036a9f71999-07-10 11:36:45 +0000392 * Execute a command after substituting variable text for the supplied parameter
393 */
394
395void WCMD_execute (char *orig_cmd, char *param, char *subst) {
396
397char *new_cmd, *p, *s, *dup;
398int size;
399
400 size = lstrlen (orig_cmd);
401 new_cmd = (char *) LocalAlloc (LMEM_FIXED | LMEM_ZEROINIT, size);
402 dup = s = strdup (orig_cmd);
403
404 while ((p = strstr (s, param))) {
405 *p = '\0';
406 size += lstrlen (subst);
407 new_cmd = (char *) LocalReAlloc ((HANDLE)new_cmd, size, 0);
408 strcat (new_cmd, s);
409 strcat (new_cmd, subst);
410 s = p + lstrlen (param);
411 }
412 strcat (new_cmd, s);
413 WCMD_process_command (new_cmd);
414 free (dup);
415 LocalFree ((HANDLE)new_cmd);
416}
417
Dave Pickles74f440e1999-06-06 15:24:04 +0000418
419/**************************************************************************
420 * WCMD_give_help
421 *
422 * Simple on-line help. Help text is stored in the resource file.
423 */
424
425void WCMD_give_help (char *command) {
426
427int i;
428char buffer[2048];
429
430 command = WCMD_strtrim_leading_spaces(command);
431 if (lstrlen(command) == 0) {
Sylvain Petreollec5fe7f02003-07-11 03:49:19 +0000432 LoadString (hinst, 1000, buffer, sizeof(buffer));
433 WCMD_output_asis (buffer);
Dave Pickles74f440e1999-06-06 15:24:04 +0000434 }
435 else {
436 for (i=0; i<=WCMD_EXIT; i++) {
437 if (CompareString (LOCALE_USER_DEFAULT, NORM_IGNORECASE | SORT_STRINGSORT,
Dave Picklesebecf502000-08-01 22:02:18 +0000438 param1, -1, inbuilt[i], -1) == 2) {
439 LoadString (hinst, i, buffer, sizeof(buffer));
Alexandre Julliarddf80b562004-07-30 18:47:55 +0000440 WCMD_output_asis (buffer);
Dave Picklesebecf502000-08-01 22:02:18 +0000441 return;
Dave Pickles74f440e1999-06-06 15:24:04 +0000442 }
443 }
444 WCMD_output ("No help available for %s\n", param1);
445 }
446 return;
447}
448
449/****************************************************************************
Dave Pickles5f8f4f71999-06-26 10:24:08 +0000450 * WCMD_go_to
451 *
452 * Batch file jump instruction. Not the most efficient algorithm ;-)
453 * Prints error message if the specified label cannot be found - the file pointer is
454 * then at EOF, effectively stopping the batch file.
455 * FIXME: DOS is supposed to allow labels with spaces - we don't.
456 */
457
Eric Pouechb2f079b2003-02-27 01:41:21 +0000458void WCMD_goto (void) {
Dave Pickles5f8f4f71999-06-26 10:24:08 +0000459
460char string[MAX_PATH];
461
Markus Amsler765ff5d2006-10-31 21:11:28 +0100462 if (param1[0] == 0x00) {
463 WCMD_output ("Argument missing\n");
464 return;
465 }
Dave Pickles5f8f4f71999-06-26 10:24:08 +0000466 if (context != NULL) {
Jason Edmeades327d7ef2007-02-23 22:19:25 +0000467 char *paramStart = param1;
Jason Edmeades54829242007-02-20 18:00:37 +0000468
469 /* Handle special :EOF label */
470 if (lstrcmpi (":eof", param1) == 0) {
471 context -> skip_rest = TRUE;
472 return;
473 }
474
Jason Edmeades327d7ef2007-02-23 22:19:25 +0000475 /* Support goto :label as well as goto label */
476 if (*paramStart == ':') paramStart++;
477
Dave Pickles5f8f4f71999-06-26 10:24:08 +0000478 SetFilePointer (context -> h, 0, NULL, FILE_BEGIN);
479 while (WCMD_fgets (string, sizeof(string), context -> h)) {
Jason Edmeades327d7ef2007-02-23 22:19:25 +0000480 if ((string[0] == ':') && (lstrcmpi (&string[1], paramStart) == 0)) return;
Dave Pickles5f8f4f71999-06-26 10:24:08 +0000481 }
482 WCMD_output ("Target to GOTO not found\n");
483 }
484 return;
485}
486
Jason Edmeades365f86f2007-02-23 22:17:28 +0000487/*****************************************************************************
488 * WCMD_pushd
489 *
490 * Push a directory onto the stack
491 */
492
493void WCMD_pushd (void) {
494 struct env_stack *curdir;
495 BOOL status;
496 WCHAR *thisdir;
497
498 curdir = LocalAlloc (LMEM_FIXED, sizeof (struct env_stack));
499 thisdir = LocalAlloc (LMEM_FIXED, 1024 * sizeof(WCHAR));
500 if( !curdir || !thisdir ) {
501 LocalFree(curdir);
502 LocalFree(thisdir);
503 WCMD_output ("out of memory\n");
504 return;
505 }
506
507 GetCurrentDirectoryW (1024, thisdir);
508 status = SetCurrentDirectoryA (param1);
509 if (!status) {
510 WCMD_print_error ();
511 LocalFree(curdir);
512 LocalFree(thisdir);
513 return;
514 } else {
515 curdir -> next = pushd_directories;
516 curdir -> strings = thisdir;
517 pushd_directories = curdir;
518 }
519}
520
521
522/*****************************************************************************
523 * WCMD_popd
524 *
525 * Pop a directory from the stack
526 */
527
528void WCMD_popd (void) {
529 struct env_stack *temp = pushd_directories;
530
531 if (!pushd_directories)
532 return;
533
534 /* pop the old environment from the stack, and make it the current dir */
535 pushd_directories = temp->next;
536 SetCurrentDirectoryW(temp->strings);
537 LocalFree (temp->strings);
538 LocalFree (temp);
539}
Dave Pickles5f8f4f71999-06-26 10:24:08 +0000540
541/****************************************************************************
Dave Pickles74f440e1999-06-06 15:24:04 +0000542 * WCMD_if
543 *
544 * Batch file conditional.
Dave Pickles036a9f71999-07-10 11:36:45 +0000545 * FIXME: Much more syntax checking needed!
Dave Pickles74f440e1999-06-06 15:24:04 +0000546 */
547
Dave Pickles036a9f71999-07-10 11:36:45 +0000548void WCMD_if (char *p) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000549
Dave Pickles036a9f71999-07-10 11:36:45 +0000550int negate = 0, test = 0;
551char condition[MAX_PATH], *command, *s;
Dave Pickles74f440e1999-06-06 15:24:04 +0000552
Dave Pickles036a9f71999-07-10 11:36:45 +0000553 if (!lstrcmpi (param1, "not")) {
554 negate = 1;
555 lstrcpy (condition, param2);
556}
557 else {
558 lstrcpy (condition, param1);
559 }
560 if (!lstrcmpi (condition, "errorlevel")) {
Dave Picklesebecf502000-08-01 22:02:18 +0000561 if (errorlevel >= atoi(WCMD_parameter (p, 1+negate, NULL))) test = 1;
Alexandre Julliard36bf7922003-01-15 03:35:32 +0000562 WCMD_parameter (p, 2+negate, &command);
Dave Pickles036a9f71999-07-10 11:36:45 +0000563 }
564 else if (!lstrcmpi (condition, "exist")) {
Jason Edmeadesc79342a2005-02-14 11:01:35 +0000565 if (GetFileAttributesA(WCMD_parameter (p, 1+negate, NULL)) != INVALID_FILE_ATTRIBUTES) {
566 test = 1;
Dave Pickles036a9f71999-07-10 11:36:45 +0000567 }
Alexandre Julliard36bf7922003-01-15 03:35:32 +0000568 WCMD_parameter (p, 2+negate, &command);
Dave Pickles036a9f71999-07-10 11:36:45 +0000569 }
Jason Edmeades758a3972007-02-20 17:47:35 +0000570 else if (!lstrcmpi (condition, "defined")) {
571 if (GetEnvironmentVariableA(WCMD_parameter (p, 1+negate, NULL), NULL, 0) > 0) {
572 test = 1;
573 }
574 WCMD_parameter (p, 2+negate, &command);
575 }
Dave Pickles036a9f71999-07-10 11:36:45 +0000576 else if ((s = strstr (p, "=="))) {
577 s += 2;
578 if (!lstrcmpi (condition, WCMD_parameter (s, 0, NULL))) test = 1;
Alexandre Julliard36bf7922003-01-15 03:35:32 +0000579 WCMD_parameter (s, 1, &command);
Dave Pickles036a9f71999-07-10 11:36:45 +0000580 }
581 else {
582 WCMD_output ("Syntax error\n");
583 return;
584 }
585 if (test != negate) {
Alexandre Julliard36bf7922003-01-15 03:35:32 +0000586 command = strdup (command);
Dave Pickles036a9f71999-07-10 11:36:45 +0000587 WCMD_process_command (command);
588 free (command);
589 }
Dave Pickles74f440e1999-06-06 15:24:04 +0000590}
591
592/****************************************************************************
593 * WCMD_move
594 *
595 * Move a file, directory tree or wildcarded set of files.
Dave Pickles036a9f71999-07-10 11:36:45 +0000596 * FIXME: Needs input and output files to be fully specified.
Dave Pickles74f440e1999-06-06 15:24:04 +0000597 */
598
Eric Pouechb2f079b2003-02-27 01:41:21 +0000599void WCMD_move (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000600
Dave Pickles036a9f71999-07-10 11:36:45 +0000601int status;
Jason Edmeades13c51172002-04-20 20:54:38 +0000602char outpath[MAX_PATH], inpath[MAX_PATH], *infile;
603WIN32_FIND_DATA fd;
604HANDLE hff;
Dave Pickles036a9f71999-07-10 11:36:45 +0000605
Markus Amsler765ff5d2006-10-31 21:11:28 +0100606 if (param1[0] == 0x00) {
607 WCMD_output ("Argument missing\n");
608 return;
609 }
610
Dave Pickles036a9f71999-07-10 11:36:45 +0000611 if ((strchr(param1,'*') != NULL) || (strchr(param1,'%') != NULL)) {
612 WCMD_output ("Wildcards not yet supported\n");
613 return;
Jason Edmeades13c51172002-04-20 20:54:38 +0000614 }
615
616 /* If no destination supplied, assume current directory */
617 if (param2[0] == 0x00) {
618 strcpy(param2, ".");
619 }
620
621 /* If 2nd parm is directory, then use original filename */
622 GetFullPathName (param2, sizeof(outpath), outpath, NULL);
Kim Lilliestierna9d90abe2007-01-27 15:26:03 +0100623 if (outpath[strlen(outpath) - 1] == '\\')
624 outpath[strlen(outpath) - 1] = '\0';
Jason Edmeades13c51172002-04-20 20:54:38 +0000625 hff = FindFirstFile (outpath, &fd);
626 if (hff != INVALID_HANDLE_VALUE) {
627 if (fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
628 GetFullPathName (param1, sizeof(inpath), inpath, &infile);
629 strcat (outpath, "\\");
630 strcat (outpath, infile);
631 }
632 FindClose (hff);
633 }
634
635 status = MoveFile (param1, outpath);
Dave Pickles036a9f71999-07-10 11:36:45 +0000636 if (!status) WCMD_print_error ();
Dave Pickles74f440e1999-06-06 15:24:04 +0000637}
638
639/****************************************************************************
640 * WCMD_pause
641 *
642 * Wait for keyboard input.
643 */
644
Eric Pouechb2f079b2003-02-27 01:41:21 +0000645void WCMD_pause (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000646
647DWORD count;
648char string[32];
649
650 WCMD_output (anykey);
Dave Pickles036a9f71999-07-10 11:36:45 +0000651 ReadFile (GetStdHandle(STD_INPUT_HANDLE), string, sizeof(string), &count, NULL);
Dave Pickles74f440e1999-06-06 15:24:04 +0000652}
653
654/****************************************************************************
655 * WCMD_remove_dir
656 *
657 * Delete a directory.
658 */
659
Eric Pouechb2f079b2003-02-27 01:41:21 +0000660void WCMD_remove_dir (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000661
Markus Amsler765ff5d2006-10-31 21:11:28 +0100662 if (param1[0] == 0x00) {
663 WCMD_output ("Argument missing\n");
664 return;
665 }
Jason Edmeades69194ce2007-02-26 23:04:40 +0000666
667 /* If subdirectory search not supplied, just try to remove
668 and report error if it fails (eg if it contains a file) */
669 if (strstr (quals, "/S") == NULL) {
670 if (!RemoveDirectory (param1)) WCMD_print_error ();
671
672 /* Otherwise use ShFileOp to recursively remove a directory */
673 } else {
674
Jason Edmeades69194ce2007-02-26 23:04:40 +0000675 SHFILEOPSTRUCT lpDir;
Jason Edmeadesfda72292007-02-27 23:18:57 +0000676
677 /* Ask first */
678 if (strstr (quals, "/Q") == NULL) {
679 BOOL ok;
680 char question[MAXSTRING];
681
682 /* Ask for confirmation */
683 sprintf(question, "%s, ", param1);
684 ok = WCMD_ask_confirm(question);
685
686 /* Abort if answer is 'N' */
687 if (!ok) return;
688 }
689
690 /* Do the delete */
Jason Edmeades69194ce2007-02-26 23:04:40 +0000691 lpDir.hwnd = NULL;
692 lpDir.pTo = NULL;
693 lpDir.pFrom = param1;
694 lpDir.fFlags = FOF_SILENT | FOF_NOCONFIRMATION | FOF_NOERRORUI;
695 lpDir.wFunc = FO_DELETE;
696 if (SHFileOperationA(&lpDir)) WCMD_print_error ();
697 }
Dave Pickles74f440e1999-06-06 15:24:04 +0000698}
699
700/****************************************************************************
701 * WCMD_rename
702 *
703 * Rename a file.
704 * FIXME: Needs input and output files to be fully specified.
705 */
706
Eric Pouechb2f079b2003-02-27 01:41:21 +0000707void WCMD_rename (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000708
709int status;
Dave Pickles74f440e1999-06-06 15:24:04 +0000710
Markus Amsler765ff5d2006-10-31 21:11:28 +0100711 if (param1[0] == 0x00 || param2[0] == 0x00) {
712 WCMD_output ("Argument missing\n");
713 return;
714 }
Dave Pickles74f440e1999-06-06 15:24:04 +0000715 if ((strchr(param1,'*') != NULL) || (strchr(param1,'%') != NULL)) {
716 WCMD_output ("Wildcards not yet supported\n");
717 return;
718 }
Dave Pickles74f440e1999-06-06 15:24:04 +0000719 status = MoveFile (param1, param2);
720 if (!status) WCMD_print_error ();
721}
722
723/*****************************************************************************
Mike McCormack9643b792004-03-22 22:56:58 +0000724 * WCMD_dupenv
725 *
726 * Make a copy of the environment.
727 */
Eric Pouech5c2a8912004-11-29 18:00:10 +0000728static WCHAR *WCMD_dupenv( const WCHAR *env )
Mike McCormack9643b792004-03-22 22:56:58 +0000729{
730 WCHAR *env_copy;
731 int len;
732
733 if( !env )
734 return NULL;
735
736 len = 0;
737 while ( env[len] )
738 len += (lstrlenW(&env[len]) + 1);
739
740 env_copy = LocalAlloc (LMEM_FIXED, (len+1) * sizeof (WCHAR) );
741 if (!env_copy)
742 {
743 WCMD_output ("out of memory\n");
744 return env_copy;
745 }
746 memcpy (env_copy, env, len*sizeof (WCHAR));
747 env_copy[len] = 0;
748
749 return env_copy;
750}
751
752/*****************************************************************************
753 * WCMD_setlocal
754 *
755 * setlocal pushes the environment onto a stack
756 * Save the environment as unicode so we don't screw anything up.
757 */
758void WCMD_setlocal (const char *s) {
759 WCHAR *env;
760 struct env_stack *env_copy;
761
762 /* DISABLEEXTENSIONS ignored */
763
764 env_copy = LocalAlloc (LMEM_FIXED, sizeof (struct env_stack));
765 if( !env_copy )
766 {
767 WCMD_output ("out of memory\n");
768 return;
769 }
770
771 env = GetEnvironmentStringsW ();
772
773 env_copy->strings = WCMD_dupenv (env);
774 if (env_copy->strings)
775 {
776 env_copy->next = saved_environment;
777 saved_environment = env_copy;
778 }
779 else
780 LocalFree (env_copy);
781
782 FreeEnvironmentStringsW (env);
783}
784
785/*****************************************************************************
786 * WCMD_strchrW
787 */
Eric Pouech5c2a8912004-11-29 18:00:10 +0000788static inline WCHAR *WCMD_strchrW(WCHAR *str, WCHAR ch)
Mike McCormack9643b792004-03-22 22:56:58 +0000789{
790 while(*str)
791 {
792 if(*str == ch)
793 return str;
794 str++;
795 }
796 return NULL;
797}
798
799/*****************************************************************************
800 * WCMD_endlocal
801 *
802 * endlocal pops the environment off a stack
803 */
804void WCMD_endlocal (void) {
805 WCHAR *env, *old, *p;
806 struct env_stack *temp;
807 int len, n;
808
809 if (!saved_environment)
810 return;
811
812 /* pop the old environment from the stack */
813 temp = saved_environment;
814 saved_environment = temp->next;
815
816 /* delete the current environment, totally */
817 env = GetEnvironmentStringsW ();
818 old = WCMD_dupenv (GetEnvironmentStringsW ());
819 len = 0;
820 while (old[len]) {
821 n = lstrlenW(&old[len]) + 1;
822 p = WCMD_strchrW(&old[len], '=');
823 if (p)
824 {
825 *p++ = 0;
826 SetEnvironmentVariableW (&old[len], NULL);
827 }
828 len += n;
829 }
830 LocalFree (old);
831 FreeEnvironmentStringsW (env);
Jason Edmeadesfda72292007-02-27 23:18:57 +0000832
Mike McCormack9643b792004-03-22 22:56:58 +0000833 /* restore old environment */
834 env = temp->strings;
835 len = 0;
836 while (env[len]) {
837 n = lstrlenW(&env[len]) + 1;
838 p = WCMD_strchrW(&env[len], '=');
839 if (p)
840 {
841 *p++ = 0;
842 SetEnvironmentVariableW (&env[len], p);
843 }
844 len += n;
845 }
846 LocalFree (env);
847 LocalFree (temp);
848}
849
850/*****************************************************************************
Dave Pickles74f440e1999-06-06 15:24:04 +0000851 * WCMD_setshow_attrib
852 *
853 * Display and optionally sets DOS attributes on a file or directory
854 *
855 * FIXME: Wine currently uses the Unix stat() function to get file attributes.
856 * As a result only the Readonly flag is correctly reported, the Archive bit
857 * is always set and the rest are not implemented. We do the Right Thing anyway.
858 *
Dave Pickles036a9f71999-07-10 11:36:45 +0000859 * FIXME: No SET functionality.
860 *
Dave Pickles74f440e1999-06-06 15:24:04 +0000861 */
862
Eric Pouechb2f079b2003-02-27 01:41:21 +0000863void WCMD_setshow_attrib (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000864
865DWORD count;
866HANDLE hff;
867WIN32_FIND_DATA fd;
868char flags[9] = {" "};
869
Dave Pickles036a9f71999-07-10 11:36:45 +0000870 if (param1[0] == '-') {
871 WCMD_output (nyi);
872 return;
873 }
874
Dave Pickles74f440e1999-06-06 15:24:04 +0000875 if (lstrlen(param1) == 0) {
876 GetCurrentDirectory (sizeof(param1), param1);
877 strcat (param1, "\\*");
878 }
879
880 hff = FindFirstFile (param1, &fd);
881 if (hff == INVALID_HANDLE_VALUE) {
Uwe Bonnes6b4d9e02002-07-24 19:00:25 +0000882 WCMD_output ("%s: File Not Found\n",param1);
Dave Pickles74f440e1999-06-06 15:24:04 +0000883 }
884 else {
885 do {
886 if (!(fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
887 if (fd.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN) {
888 flags[0] = 'H';
889 }
890 if (fd.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM) {
891 flags[1] = 'S';
892 }
893 if (fd.dwFileAttributes & FILE_ATTRIBUTE_ARCHIVE) {
894 flags[2] = 'A';
895 }
896 if (fd.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
897 flags[3] = 'R';
898 }
899 if (fd.dwFileAttributes & FILE_ATTRIBUTE_TEMPORARY) {
900 flags[4] = 'T';
901 }
902 if (fd.dwFileAttributes & FILE_ATTRIBUTE_COMPRESSED) {
903 flags[5] = 'C';
904 }
905 WCMD_output ("%s %s\n", flags, fd.cFileName);
906 for (count=0; count < 8; count++) flags[count] = ' ';
907 }
908 } while (FindNextFile(hff, &fd) != 0);
909 }
910 FindClose (hff);
911}
912
913/*****************************************************************************
914 * WCMD_setshow_default
915 *
916 * Set/Show the current default directory
917 */
918
Eric Pouechb2f079b2003-02-27 01:41:21 +0000919void WCMD_setshow_default (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000920
921BOOL status;
922char string[1024];
923
924 if (strlen(param1) == 0) {
925 GetCurrentDirectory (sizeof(string), string);
926 strcat (string, "\n");
927 WCMD_output (string);
928 }
929 else {
930 status = SetCurrentDirectory (param1);
931 if (!status) {
932 WCMD_print_error ();
933 return;
934 }
935 }
936 return;
937}
938
939/****************************************************************************
940 * WCMD_setshow_date
941 *
942 * Set/Show the system date
943 * FIXME: Can't change date yet
944 */
945
Eric Pouechb2f079b2003-02-27 01:41:21 +0000946void WCMD_setshow_date (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +0000947
948char curdate[64], buffer[64];
949DWORD count;
950
951 if (lstrlen(param1) == 0) {
952 if (GetDateFormat (LOCALE_USER_DEFAULT, 0, NULL, NULL,
953 curdate, sizeof(curdate))) {
954 WCMD_output ("Current Date is %s\nEnter new date: ", curdate);
Dave Pickles036a9f71999-07-10 11:36:45 +0000955 ReadFile (GetStdHandle(STD_INPUT_HANDLE), buffer, sizeof(buffer), &count, NULL);
Dave Pickles74f440e1999-06-06 15:24:04 +0000956 if (count > 2) {
957 WCMD_output (nyi);
958 }
959 }
960 else WCMD_print_error ();
961 }
962 else {
963 WCMD_output (nyi);
964 }
965}
966
967/****************************************************************************
Mike McCormackbbe0e2c2003-12-30 19:17:31 +0000968 * WCMD_compare
969 */
Eric Pouech5c2a8912004-11-29 18:00:10 +0000970static int WCMD_compare( const void *a, const void *b )
Mike McCormackbbe0e2c2003-12-30 19:17:31 +0000971{
972 int r;
973 const char * const *str_a = a, * const *str_b = b;
974 r = CompareString( LOCALE_USER_DEFAULT, NORM_IGNORECASE | SORT_STRINGSORT,
975 *str_a, -1, *str_b, -1 );
976 if( r == CSTR_LESS_THAN ) return -1;
977 if( r == CSTR_GREATER_THAN ) return 1;
978 return 0;
979}
980
981/****************************************************************************
982 * WCMD_setshow_sortenv
983 *
984 * sort variables into order for display
Jason Edmeades1c632cd2007-02-26 23:06:11 +0000985 * Optionally only display those who start with a stub
986 * returns the count displayed
Mike McCormackbbe0e2c2003-12-30 19:17:31 +0000987 */
Jason Edmeades1c632cd2007-02-26 23:06:11 +0000988static int WCMD_setshow_sortenv(const char *s, const char *stub)
Mike McCormackbbe0e2c2003-12-30 19:17:31 +0000989{
Jason Edmeades1c632cd2007-02-26 23:06:11 +0000990 UINT count=0, len=0, i, displayedcount=0, stublen=0;
Mike McCormackbbe0e2c2003-12-30 19:17:31 +0000991 const char **str;
992
Jason Edmeades1c632cd2007-02-26 23:06:11 +0000993 if (stub) stublen = strlen(stub);
994
Mike McCormackbbe0e2c2003-12-30 19:17:31 +0000995 /* count the number of strings, and the total length */
996 while ( s[len] ) {
997 len += (lstrlen(&s[len]) + 1);
998 count++;
999 }
1000
1001 /* add the strings to an array */
1002 str = LocalAlloc (LMEM_FIXED | LMEM_ZEROINIT, count * sizeof (char*) );
1003 if( !str )
Jason Edmeades1c632cd2007-02-26 23:06:11 +00001004 return 0;
Mike McCormackbbe0e2c2003-12-30 19:17:31 +00001005 str[0] = s;
1006 for( i=1; i<count; i++ )
1007 str[i] = str[i-1] + lstrlen(str[i-1]) + 1;
1008
1009 /* sort the array */
1010 qsort( str, count, sizeof (char*), WCMD_compare );
1011
1012 /* print it */
Rein Klazesa18ea3d2005-12-01 15:58:16 +01001013 for( i=0; i<count; i++ ) {
Jason Edmeades1c632cd2007-02-26 23:06:11 +00001014 if (!stub || CompareString (LOCALE_USER_DEFAULT,
1015 NORM_IGNORECASE | SORT_STRINGSORT,
1016 str[i], stublen, stub, -1) == 2) {
Rein Klazesa18ea3d2005-12-01 15:58:16 +01001017 WCMD_output_asis(str[i]);
1018 WCMD_output_asis("\n");
Jason Edmeades1c632cd2007-02-26 23:06:11 +00001019 displayedcount++;
1020 }
Rein Klazesa18ea3d2005-12-01 15:58:16 +01001021 }
Mike McCormackbbe0e2c2003-12-30 19:17:31 +00001022
1023 LocalFree( str );
Jason Edmeades1c632cd2007-02-26 23:06:11 +00001024 return displayedcount;
Mike McCormackbbe0e2c2003-12-30 19:17:31 +00001025}
1026
1027/****************************************************************************
Dave Pickles74f440e1999-06-06 15:24:04 +00001028 * WCMD_setshow_env
1029 *
1030 * Set/Show the environment variables
Dave Pickles74f440e1999-06-06 15:24:04 +00001031 */
1032
1033void WCMD_setshow_env (char *s) {
1034
1035LPVOID env;
1036char *p;
1037int status;
1038
1039 if (strlen(param1) == 0) {
1040 env = GetEnvironmentStrings ();
Jason Edmeades1c632cd2007-02-26 23:06:11 +00001041 WCMD_setshow_sortenv( env, NULL );
Dave Pickles74f440e1999-06-06 15:24:04 +00001042 }
1043 else {
1044 p = strchr (s, '=');
1045 if (p == NULL) {
Jason Edmeades1c632cd2007-02-26 23:06:11 +00001046 env = GetEnvironmentStrings ();
1047 if (WCMD_setshow_sortenv( env, s ) == 0) {
Vincent Béron9a624912002-05-31 23:06:46 +00001048 WCMD_output ("Environment variable %s not defined\n", s);
1049 }
Dave Pickles74f440e1999-06-06 15:24:04 +00001050 return;
1051 }
1052 *p++ = '\0';
Jason Edmeadesa5910f42000-08-01 02:14:33 +00001053
Detlef Riekenberga51dcfc2005-07-11 10:23:37 +00001054 if (strlen(p) == 0) p = NULL;
Vincent Béron9a624912002-05-31 23:06:46 +00001055 status = SetEnvironmentVariable (s, p);
Detlef Riekenberga51dcfc2005-07-11 10:23:37 +00001056 if ((!status) & (GetLastError() != ERROR_ENVVAR_NOT_FOUND)) WCMD_print_error();
Dave Pickles74f440e1999-06-06 15:24:04 +00001057 }
Dave Pickles74f440e1999-06-06 15:24:04 +00001058}
1059
1060/****************************************************************************
1061 * WCMD_setshow_path
1062 *
1063 * Set/Show the path environment variable
1064 */
1065
Sylvain Petreollefdd0bfa2003-02-11 22:01:11 +00001066void WCMD_setshow_path (char *command) {
Dave Pickles74f440e1999-06-06 15:24:04 +00001067
1068char string[1024];
1069DWORD status;
1070
1071 if (strlen(param1) == 0) {
1072 status = GetEnvironmentVariable ("PATH", string, sizeof(string));
1073 if (status != 0) {
Rein Klazes0bf64a42005-12-02 11:25:51 +01001074 WCMD_output_asis ( "PATH=");
1075 WCMD_output_asis ( string);
1076 WCMD_output_asis ( "\n");
Dave Pickles74f440e1999-06-06 15:24:04 +00001077 }
1078 else {
1079 WCMD_output ("PATH not found\n");
1080 }
1081 }
1082 else {
Jason Edmeades73587982007-02-20 00:37:47 +00001083 if (*command == '=') command++; /* Skip leading '=' */
Sylvain Petreollefdd0bfa2003-02-11 22:01:11 +00001084 status = SetEnvironmentVariable ("PATH", command);
Dave Pickles74f440e1999-06-06 15:24:04 +00001085 if (!status) WCMD_print_error();
1086 }
1087}
1088
1089/****************************************************************************
1090 * WCMD_setshow_prompt
1091 *
1092 * Set or show the command prompt.
1093 */
1094
Eric Pouechb2f079b2003-02-27 01:41:21 +00001095void WCMD_setshow_prompt (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +00001096
1097char *s;
1098
1099 if (strlen(param1) == 0) {
1100 SetEnvironmentVariable ("PROMPT", NULL);
1101 }
1102 else {
1103 s = param1;
1104 while ((*s == '=') || (*s == ' ')) s++;
1105 if (strlen(s) == 0) {
1106 SetEnvironmentVariable ("PROMPT", NULL);
1107 }
1108 else SetEnvironmentVariable ("PROMPT", s);
1109 }
1110}
1111
1112/****************************************************************************
1113 * WCMD_setshow_time
1114 *
1115 * Set/Show the system time
1116 * FIXME: Can't change time yet
1117 */
1118
Eric Pouechb2f079b2003-02-27 01:41:21 +00001119void WCMD_setshow_time (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +00001120
1121char curtime[64], buffer[64];
1122DWORD count;
Dave Pickles036a9f71999-07-10 11:36:45 +00001123SYSTEMTIME st;
Dave Pickles74f440e1999-06-06 15:24:04 +00001124
1125 if (strlen(param1) == 0) {
Dave Pickles036a9f71999-07-10 11:36:45 +00001126 GetLocalTime(&st);
1127 if (GetTimeFormat (LOCALE_USER_DEFAULT, 0, &st, NULL,
Dave Pickles74f440e1999-06-06 15:24:04 +00001128 curtime, sizeof(curtime))) {
1129 WCMD_output ("Current Time is %s\nEnter new time: ", curtime);
Dave Pickles036a9f71999-07-10 11:36:45 +00001130 ReadFile (GetStdHandle(STD_INPUT_HANDLE), buffer, sizeof(buffer), &count, NULL);
Dave Pickles74f440e1999-06-06 15:24:04 +00001131 if (count > 2) {
1132 WCMD_output (nyi);
1133 }
1134 }
1135 else WCMD_print_error ();
1136 }
1137 else {
1138 WCMD_output (nyi);
1139 }
1140}
1141
1142/****************************************************************************
1143 * WCMD_shift
1144 *
1145 * Shift batch parameters.
1146 */
1147
Eric Pouechb2f079b2003-02-27 01:41:21 +00001148void WCMD_shift (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +00001149
Dave Pickles5f8f4f71999-06-26 10:24:08 +00001150 if (context != NULL) context -> shift_count++;
Dave Pickles74f440e1999-06-06 15:24:04 +00001151
1152}
1153
1154/****************************************************************************
Jason Edmeadesbcc62562002-05-04 18:29:31 +00001155 * WCMD_title
1156 *
1157 * Set the console title
1158 */
1159void WCMD_title (char *command) {
1160 SetConsoleTitle(command);
1161}
1162
1163/****************************************************************************
Dave Pickles74f440e1999-06-06 15:24:04 +00001164 * WCMD_type
1165 *
1166 * Copy a file to standard output.
1167 */
1168
Eric Pouechb2f079b2003-02-27 01:41:21 +00001169void WCMD_type (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +00001170
1171HANDLE h;
1172char buffer[512];
1173DWORD count;
1174
Markus Amsler765ff5d2006-10-31 21:11:28 +01001175 if (param1[0] == 0x00) {
1176 WCMD_output ("Argument missing\n");
1177 return;
1178 }
Dave Pickles74f440e1999-06-06 15:24:04 +00001179 h = CreateFile (param1, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING,
François Gouget12b35262001-01-02 20:40:58 +00001180 FILE_ATTRIBUTE_NORMAL, NULL);
Dave Pickles74f440e1999-06-06 15:24:04 +00001181 if (h == INVALID_HANDLE_VALUE) {
1182 WCMD_print_error ();
1183 return;
1184 }
1185 while (ReadFile (h, buffer, sizeof(buffer), &count, NULL)) {
1186 if (count == 0) break; /* ReadFile reports success on EOF! */
Eric Pouechb2f079b2003-02-27 01:41:21 +00001187 buffer[count] = 0;
1188 WCMD_output_asis (buffer);
Dave Pickles74f440e1999-06-06 15:24:04 +00001189 }
1190 CloseHandle (h);
1191}
1192
1193/****************************************************************************
1194 * WCMD_verify
1195 *
1196 * Display verify flag.
Dave Pickles5f8f4f71999-06-26 10:24:08 +00001197 * FIXME: We don't actually do anything with the verify flag other than toggle
1198 * it...
Dave Pickles74f440e1999-06-06 15:24:04 +00001199 */
1200
Dave Pickles5f8f4f71999-06-26 10:24:08 +00001201void WCMD_verify (char *command) {
Dave Pickles74f440e1999-06-06 15:24:04 +00001202
Andreas Mohrcf2b9f02005-06-27 09:48:57 +00001203static const char von[] = "Verify is ON\n", voff[] = "Verify is OFF\n";
Dave Pickles5f8f4f71999-06-26 10:24:08 +00001204int count;
Dave Pickles74f440e1999-06-06 15:24:04 +00001205
Dave Pickles5f8f4f71999-06-26 10:24:08 +00001206 count = strlen(command);
1207 if (count == 0) {
1208 if (verify_mode) WCMD_output (von);
1209 else WCMD_output (voff);
1210 return;
1211 }
1212 if (lstrcmpi(command, "ON") == 0) {
1213 verify_mode = 1;
1214 return;
1215 }
1216 else if (lstrcmpi(command, "OFF") == 0) {
1217 verify_mode = 0;
1218 return;
1219 }
1220 else WCMD_output ("Verify must be ON or OFF\n");
Dave Pickles74f440e1999-06-06 15:24:04 +00001221}
1222
1223/****************************************************************************
1224 * WCMD_version
1225 *
1226 * Display version info.
1227 */
1228
Eric Pouechb2f079b2003-02-27 01:41:21 +00001229void WCMD_version (void) {
Dave Pickles74f440e1999-06-06 15:24:04 +00001230
1231 WCMD_output (version_string);
1232
1233}
1234
1235/****************************************************************************
1236 * WCMD_volume
1237 *
1238 * Display volume info and/or set volume label. Returns 0 if error.
1239 */
1240
1241int WCMD_volume (int mode, char *path) {
1242
1243DWORD count, serial;
1244char string[MAX_PATH], label[MAX_PATH], curdir[MAX_PATH];
1245BOOL status;
Dave Pickles74f440e1999-06-06 15:24:04 +00001246
1247 if (lstrlen(path) == 0) {
1248 status = GetCurrentDirectory (sizeof(curdir), curdir);
1249 if (!status) {
1250 WCMD_print_error ();
1251 return 0;
1252 }
1253 status = GetVolumeInformation (NULL, label, sizeof(label), &serial, NULL,
1254 NULL, NULL, 0);
1255 }
1256 else {
1257 if ((path[1] != ':') || (lstrlen(path) != 2)) {
Francois Gougetcfc39432004-05-04 04:13:05 +00001258 WCMD_output_asis("Syntax Error\n\n");
Dave Pickles74f440e1999-06-06 15:24:04 +00001259 return 0;
1260 }
1261 wsprintf (curdir, "%s\\", path);
1262 status = GetVolumeInformation (curdir, label, sizeof(label), &serial, NULL,
1263 NULL, NULL, 0);
1264 }
1265 if (!status) {
1266 WCMD_print_error ();
1267 return 0;
1268 }
1269 WCMD_output ("Volume in drive %c is %s\nVolume Serial Number is %04x-%04x\n\n",
1270 curdir[0], label, HIWORD(serial), LOWORD(serial));
1271 if (mode) {
1272 WCMD_output ("Volume label (11 characters, ENTER for none)?");
Dave Pickles036a9f71999-07-10 11:36:45 +00001273 ReadFile (GetStdHandle(STD_INPUT_HANDLE), string, sizeof(string), &count, NULL);
1274 if (count > 1) {
1275 string[count-1] = '\0'; /* ReadFile output is not null-terminated! */
1276 if (string[count-2] == '\r') string[count-2] = '\0'; /* Under Windoze we get CRLF! */
1277 }
Dave Pickles74f440e1999-06-06 15:24:04 +00001278 if (lstrlen(path) != 0) {
1279 if (!SetVolumeLabel (curdir, string)) WCMD_print_error ();
1280 }
1281 else {
1282 if (!SetVolumeLabel (NULL, string)) WCMD_print_error ();
1283 }
1284 }
1285 return 1;
1286}
Jason Edmeadesc3666482007-02-20 17:49:08 +00001287
1288/**************************************************************************
1289 * WCMD_exit
1290 *
1291 * Exit either the process, or just this batch program
1292 *
1293 */
1294
1295void WCMD_exit (void) {
1296
1297 int rc = atoi(param1); /* Note: atoi of empty parameter is 0 */
1298
1299 if (context && lstrcmpi(quals, "/B") == 0) {
1300 errorlevel = rc;
1301 context -> skip_rest = TRUE;
1302 } else {
1303 ExitProcess(rc);
1304 }
1305}
Jason Edmeadesfda72292007-02-27 23:18:57 +00001306
1307/**************************************************************************
1308 * WCMD_ask_confirm
1309 *
1310 * Issue a message and ask 'Are you sure (Y/N)', waiting on a valid
1311 * answer.
1312 *
1313 * Returns True if Y answer is selected
1314 *
1315 */
1316BOOL WCMD_ask_confirm (char *message) {
1317
1318 char msgbuffer[MAXSTRING];
1319 char Ybuffer[MAXSTRING];
1320 char Nbuffer[MAXSTRING];
1321 char answer[MAX_PATH] = "";
1322 DWORD count = 0;
1323
1324 /* Load the translated 'Are you sure', plus valid answers */
1325 LoadString (hinst, WCMD_CONFIRM, msgbuffer, sizeof(msgbuffer));
1326 LoadString (hinst, WCMD_YES, Ybuffer, sizeof(Ybuffer));
1327 LoadString (hinst, WCMD_NO, Nbuffer, sizeof(Nbuffer));
1328
1329 /* Loop waiting on a Y or N */
1330 while (answer[0] != Ybuffer[0] && answer[0] != Nbuffer[0]) {
1331 WCMD_output_asis (message);
1332 WCMD_output_asis (msgbuffer);
1333 WCMD_output_asis (" (");
1334 WCMD_output_asis (Ybuffer);
1335 WCMD_output_asis ("/");
1336 WCMD_output_asis (Nbuffer);
1337 WCMD_output_asis (")?");
1338 ReadFile (GetStdHandle(STD_INPUT_HANDLE), answer, sizeof(answer),
1339 &count, NULL);
1340 answer[0] = toupper(answer[0]);
1341 }
1342
1343 /* Return the answer */
1344 return (answer[0] == Ybuffer[0]);
1345}