Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1 | /* |
Dan Kegel | 3985744 | 2006-09-03 21:13:08 -0700 | [diff] [blame] | 2 | * CMD - Wine-compatible command line interface - built-in functions. |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 3 | * |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 4 | * Copyright (C) 1999 D A Pickles |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 5 | * |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 6 | * 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 Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | /* |
| 22 | * NOTES: |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 23 | * 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 Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 30 | * - No support for pipes, shell parameters |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 31 | * - Lots of functionality missing from builtins |
| 32 | * - Messages etc need international support |
| 33 | */ |
| 34 | |
Mike McCormack | 7d66567 | 2006-01-16 20:41:34 +0100 | [diff] [blame] | 35 | #define WIN32_LEAN_AND_MEAN |
| 36 | |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 37 | #include "wcmd.h" |
Jason Edmeades | 69194ce | 2007-02-26 23:04:40 +0000 | [diff] [blame] | 38 | #include <shellapi.h> |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 39 | |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 40 | void WCMD_execute (char *orig_command, char *parameter, char *substitution); |
| 41 | |
Mike McCormack | 9643b79 | 2004-03-22 22:56:58 +0000 | [diff] [blame] | 42 | struct env_stack |
| 43 | { |
| 44 | struct env_stack *next; |
| 45 | WCHAR *strings; |
| 46 | }; |
| 47 | |
| 48 | struct env_stack *saved_environment; |
Jason Edmeades | 365f86f | 2007-02-23 22:17:28 +0000 | [diff] [blame] | 49 | struct env_stack *pushd_directories; |
Mike McCormack | 9643b79 | 2004-03-22 22:56:58 +0000 | [diff] [blame] | 50 | |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 51 | extern HINSTANCE hinst; |
| 52 | extern char *inbuilt[]; |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 53 | extern int echo_mode, verify_mode; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 54 | extern char quals[MAX_PATH], param1[MAX_PATH], param2[MAX_PATH]; |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 55 | extern BATCH_CONTEXT *context; |
Dave Pickles | ebecf50 | 2000-08-01 22:02:18 +0000 | [diff] [blame] | 56 | extern DWORD errorlevel; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 57 | |
| 58 | |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 59 | |
| 60 | /**************************************************************************** |
| 61 | * WCMD_clear_screen |
| 62 | * |
| 63 | * Clear the terminal screen. |
| 64 | */ |
| 65 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 66 | void WCMD_clear_screen (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 67 | |
Jason Edmeades | a4c214e | 2002-04-29 17:12:57 +0000 | [diff] [blame] | 68 | /* 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 Edmeades | a4c214e | 2002-04-29 17:12:57 +0000 | [diff] [blame] | 70 | CONSOLE_SCREEN_BUFFER_INFO consoleInfo; |
| 71 | HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 72 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 73 | if (GetConsoleScreenBufferInfo(hStdOut, &consoleInfo)) |
| 74 | { |
| 75 | COORD topLeft; |
Mike McCormack | 516a577 | 2005-08-19 10:04:03 +0000 | [diff] [blame] | 76 | DWORD screenSize; |
| 77 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 78 | screenSize = consoleInfo.dwSize.X * (consoleInfo.dwSize.Y + 1); |
Jason Edmeades | a4c214e | 2002-04-29 17:12:57 +0000 | [diff] [blame] | 79 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 80 | topLeft.X = 0; |
| 81 | topLeft.Y = 0; |
| 82 | FillConsoleOutputCharacter(hStdOut, ' ', screenSize, topLeft, &screenSize); |
| 83 | SetConsoleCursorPosition(hStdOut, topLeft); |
| 84 | } |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | /**************************************************************************** |
| 88 | * WCMD_change_tty |
| 89 | * |
| 90 | * Change the default i/o device (ie redirect STDin/STDout). |
| 91 | */ |
| 92 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 93 | void WCMD_change_tty (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 94 | |
| 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 Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 104 | */ |
| 105 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 106 | void WCMD_copy (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 107 | |
| 108 | DWORD count; |
| 109 | WIN32_FIND_DATA fd; |
| 110 | HANDLE hff; |
| 111 | BOOL force, status; |
Andreas Mohr | cf2b9f0 | 2005-06-27 09:48:57 +0000 | [diff] [blame] | 112 | static const char overwrite[] = "Overwrite file (Y/N)?"; |
Dave Pickles | ebecf50 | 2000-08-01 22:02:18 +0000 | [diff] [blame] | 113 | char string[8], outpath[MAX_PATH], inpath[MAX_PATH], *infile; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 114 | |
Markus Amsler | 765ff5d | 2006-10-31 21:11:28 +0100 | [diff] [blame] | 115 | if (param1[0] == 0x00) { |
| 116 | WCMD_output ("Argument missing\n"); |
| 117 | return; |
| 118 | } |
| 119 | |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 120 | if ((strchr(param1,'*') != NULL) && (strchr(param1,'%') != NULL)) { |
| 121 | WCMD_output ("Wildcards not yet supported\n"); |
| 122 | return; |
| 123 | } |
Jason Edmeades | 13c5117 | 2002-04-20 20:54:38 +0000 | [diff] [blame] | 124 | |
| 125 | /* If no destination supplied, assume current directory */ |
| 126 | if (param2[0] == 0x00) { |
| 127 | strcpy(param2, "."); |
| 128 | } |
| 129 | |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 130 | GetFullPathName (param2, sizeof(outpath), outpath, NULL); |
Eric Pouech | b7923b4 | 2006-12-26 17:51:24 +0100 | [diff] [blame] | 131 | if (outpath[strlen(outpath) - 1] == '\\') |
| 132 | outpath[strlen(outpath) - 1] = '\0'; |
Dave Pickles | ebecf50 | 2000-08-01 22:02:18 +0000 | [diff] [blame] | 133 | 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 Edmeades | 13c5117 | 2002-04-20 20:54:38 +0000 | [diff] [blame] | 142 | |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 143 | 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 Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 149 | ReadFile (GetStdHandle(STD_INPUT_HANDLE), string, sizeof(string), &count, NULL); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 150 | 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 Stewart | 1d5adff | 2005-12-03 18:02:15 +0100 | [diff] [blame] | 164 | * |
| 165 | * this works recursivly. so mkdir dir1\dir2\dir3 will create dir1 and dir2 if |
| 166 | * they do not already exist. |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 167 | */ |
| 168 | |
Aric Stewart | 1d5adff | 2005-12-03 18:02:15 +0100 | [diff] [blame] | 169 | BOOL 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 Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 213 | void WCMD_create_dir (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 214 | |
Markus Amsler | 765ff5d | 2006-10-31 21:11:28 +0100 | [diff] [blame] | 215 | if (param1[0] == 0x00) { |
| 216 | WCMD_output ("Argument missing\n"); |
| 217 | return; |
| 218 | } |
Aric Stewart | 1d5adff | 2005-12-03 18:02:15 +0100 | [diff] [blame] | 219 | if (!create_full_path(param1)) WCMD_print_error (); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | /**************************************************************************** |
| 223 | * WCMD_delete |
| 224 | * |
| 225 | * Delete a file or wildcarded set. |
| 226 | * |
| 227 | */ |
| 228 | |
| 229 | void WCMD_delete (int recurse) { |
| 230 | |
| 231 | WIN32_FIND_DATA fd; |
| 232 | HANDLE hff; |
| 233 | char fpath[MAX_PATH]; |
| 234 | char *p; |
| 235 | |
Markus Amsler | 765ff5d | 2006-10-31 21:11:28 +0100 | [diff] [blame] | 236 | if (param1[0] == 0x00) { |
| 237 | WCMD_output ("Argument missing\n"); |
| 238 | return; |
| 239 | } |
Jason Edmeades | 409368e | 2007-02-27 23:19:24 +0000 | [diff] [blame^] | 240 | |
| 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 Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 269 | hff = FindFirstFile (param1, &fd); |
| 270 | if (hff == INVALID_HANDLE_VALUE) { |
Uwe Bonnes | 6b4d9e0 | 2002-07-24 19:00:25 +0000 | [diff] [blame] | 271 | WCMD_output ("%s :File Not Found\n",param1); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 272 | return; |
| 273 | } |
| 274 | if ((strchr(param1,'*') == NULL) && (strchr(param1,'?') == NULL) |
| 275 | && (!recurse) && (fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) { |
| 276 | strcat (param1, "\\*"); |
Jason Edmeades | a882895 | 2002-04-29 23:33:09 +0000 | [diff] [blame] | 277 | FindClose(hff); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 278 | 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 Edmeades | a882895 | 2002-04-29 23:33:09 +0000 | [diff] [blame] | 298 | FindClose (hff); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 299 | } |
| 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 Marmier | 8e5bb20 | 2003-10-09 04:39:01 +0000 | [diff] [blame] | 309 | void WCMD_echo (const char *command) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 310 | |
Andreas Mohr | cf2b9f0 | 2005-06-27 09:48:57 +0000 | [diff] [blame] | 311 | static const char eon[] = "Echo is ON\n", eoff[] = "Echo is OFF\n"; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 312 | int count; |
| 313 | |
Mike McCormack | 8d02010 | 2004-03-18 04:01:32 +0000 | [diff] [blame] | 314 | if ((command[0] == '.') && (command[1] == 0)) { |
| 315 | WCMD_output (newline); |
| 316 | return; |
| 317 | } |
| 318 | if (command[0]==' ') |
| 319 | command++; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 320 | count = strlen(command); |
| 321 | if (count == 0) { |
| 322 | if (echo_mode) WCMD_output (eon); |
| 323 | else WCMD_output (eoff); |
| 324 | return; |
| 325 | } |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 326 | 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éron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 334 | WCMD_output_asis (command); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 335 | WCMD_output (newline); |
| 336 | |
| 337 | } |
| 338 | |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 339 | /************************************************************************** |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 340 | * WCMD_for |
| 341 | * |
| 342 | * Batch file loop processing. |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 343 | * 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 Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 345 | */ |
| 346 | |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 347 | void WCMD_for (char *p) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 348 | |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 349 | WIN32_FIND_DATA fd; |
| 350 | HANDLE hff; |
| 351 | char *cmd, *item; |
| 352 | char set[MAX_PATH], param[MAX_PATH]; |
| 353 | int i; |
| 354 | |
| 355 | if (lstrcmpi (WCMD_parameter (p, 1, NULL), "in") |
| 356 | || lstrcmpi (WCMD_parameter (p, 3, NULL), "do") |
| 357 | || (param1[0] != '%')) { |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 358 | WCMD_output ("Syntax error\n"); |
| 359 | return; |
| 360 | } |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 361 | lstrcpyn (set, WCMD_parameter (p, 2, NULL), sizeof(set)); |
| 362 | WCMD_parameter (p, 4, &cmd); |
| 363 | lstrcpy (param, param1); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 364 | |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 365 | /* |
| 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 Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 381 | } |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 382 | else { |
| 383 | WCMD_execute (cmd, param, item); |
| 384 | } |
| 385 | i++; |
| 386 | } |
| 387 | } |
| 388 | |
Dave Pickles | ebecf50 | 2000-08-01 22:02:18 +0000 | [diff] [blame] | 389 | /***************************************************************************** |
| 390 | * WCMD_Execute |
| 391 | * |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 392 | * Execute a command after substituting variable text for the supplied parameter |
| 393 | */ |
| 394 | |
| 395 | void WCMD_execute (char *orig_cmd, char *param, char *subst) { |
| 396 | |
| 397 | char *new_cmd, *p, *s, *dup; |
| 398 | int 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 Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 418 | |
| 419 | /************************************************************************** |
| 420 | * WCMD_give_help |
| 421 | * |
| 422 | * Simple on-line help. Help text is stored in the resource file. |
| 423 | */ |
| 424 | |
| 425 | void WCMD_give_help (char *command) { |
| 426 | |
| 427 | int i; |
| 428 | char buffer[2048]; |
| 429 | |
| 430 | command = WCMD_strtrim_leading_spaces(command); |
| 431 | if (lstrlen(command) == 0) { |
Sylvain Petreolle | c5fe7f0 | 2003-07-11 03:49:19 +0000 | [diff] [blame] | 432 | LoadString (hinst, 1000, buffer, sizeof(buffer)); |
| 433 | WCMD_output_asis (buffer); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 434 | } |
| 435 | else { |
| 436 | for (i=0; i<=WCMD_EXIT; i++) { |
| 437 | if (CompareString (LOCALE_USER_DEFAULT, NORM_IGNORECASE | SORT_STRINGSORT, |
Dave Pickles | ebecf50 | 2000-08-01 22:02:18 +0000 | [diff] [blame] | 438 | param1, -1, inbuilt[i], -1) == 2) { |
| 439 | LoadString (hinst, i, buffer, sizeof(buffer)); |
Alexandre Julliard | df80b56 | 2004-07-30 18:47:55 +0000 | [diff] [blame] | 440 | WCMD_output_asis (buffer); |
Dave Pickles | ebecf50 | 2000-08-01 22:02:18 +0000 | [diff] [blame] | 441 | return; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 442 | } |
| 443 | } |
| 444 | WCMD_output ("No help available for %s\n", param1); |
| 445 | } |
| 446 | return; |
| 447 | } |
| 448 | |
| 449 | /**************************************************************************** |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 450 | * 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 Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 458 | void WCMD_goto (void) { |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 459 | |
| 460 | char string[MAX_PATH]; |
| 461 | |
Markus Amsler | 765ff5d | 2006-10-31 21:11:28 +0100 | [diff] [blame] | 462 | if (param1[0] == 0x00) { |
| 463 | WCMD_output ("Argument missing\n"); |
| 464 | return; |
| 465 | } |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 466 | if (context != NULL) { |
Jason Edmeades | 327d7ef | 2007-02-23 22:19:25 +0000 | [diff] [blame] | 467 | char *paramStart = param1; |
Jason Edmeades | 5482924 | 2007-02-20 18:00:37 +0000 | [diff] [blame] | 468 | |
| 469 | /* Handle special :EOF label */ |
| 470 | if (lstrcmpi (":eof", param1) == 0) { |
| 471 | context -> skip_rest = TRUE; |
| 472 | return; |
| 473 | } |
| 474 | |
Jason Edmeades | 327d7ef | 2007-02-23 22:19:25 +0000 | [diff] [blame] | 475 | /* Support goto :label as well as goto label */ |
| 476 | if (*paramStart == ':') paramStart++; |
| 477 | |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 478 | SetFilePointer (context -> h, 0, NULL, FILE_BEGIN); |
| 479 | while (WCMD_fgets (string, sizeof(string), context -> h)) { |
Jason Edmeades | 327d7ef | 2007-02-23 22:19:25 +0000 | [diff] [blame] | 480 | if ((string[0] == ':') && (lstrcmpi (&string[1], paramStart) == 0)) return; |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 481 | } |
| 482 | WCMD_output ("Target to GOTO not found\n"); |
| 483 | } |
| 484 | return; |
| 485 | } |
| 486 | |
Jason Edmeades | 365f86f | 2007-02-23 22:17:28 +0000 | [diff] [blame] | 487 | /***************************************************************************** |
| 488 | * WCMD_pushd |
| 489 | * |
| 490 | * Push a directory onto the stack |
| 491 | */ |
| 492 | |
| 493 | void 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 | |
| 528 | void 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 Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 540 | |
| 541 | /**************************************************************************** |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 542 | * WCMD_if |
| 543 | * |
| 544 | * Batch file conditional. |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 545 | * FIXME: Much more syntax checking needed! |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 546 | */ |
| 547 | |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 548 | void WCMD_if (char *p) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 549 | |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 550 | int negate = 0, test = 0; |
| 551 | char condition[MAX_PATH], *command, *s; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 552 | |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 553 | 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 Pickles | ebecf50 | 2000-08-01 22:02:18 +0000 | [diff] [blame] | 561 | if (errorlevel >= atoi(WCMD_parameter (p, 1+negate, NULL))) test = 1; |
Alexandre Julliard | 36bf792 | 2003-01-15 03:35:32 +0000 | [diff] [blame] | 562 | WCMD_parameter (p, 2+negate, &command); |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 563 | } |
| 564 | else if (!lstrcmpi (condition, "exist")) { |
Jason Edmeades | c79342a | 2005-02-14 11:01:35 +0000 | [diff] [blame] | 565 | if (GetFileAttributesA(WCMD_parameter (p, 1+negate, NULL)) != INVALID_FILE_ATTRIBUTES) { |
| 566 | test = 1; |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 567 | } |
Alexandre Julliard | 36bf792 | 2003-01-15 03:35:32 +0000 | [diff] [blame] | 568 | WCMD_parameter (p, 2+negate, &command); |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 569 | } |
Jason Edmeades | 758a397 | 2007-02-20 17:47:35 +0000 | [diff] [blame] | 570 | 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 Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 576 | else if ((s = strstr (p, "=="))) { |
| 577 | s += 2; |
| 578 | if (!lstrcmpi (condition, WCMD_parameter (s, 0, NULL))) test = 1; |
Alexandre Julliard | 36bf792 | 2003-01-15 03:35:32 +0000 | [diff] [blame] | 579 | WCMD_parameter (s, 1, &command); |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 580 | } |
| 581 | else { |
| 582 | WCMD_output ("Syntax error\n"); |
| 583 | return; |
| 584 | } |
| 585 | if (test != negate) { |
Alexandre Julliard | 36bf792 | 2003-01-15 03:35:32 +0000 | [diff] [blame] | 586 | command = strdup (command); |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 587 | WCMD_process_command (command); |
| 588 | free (command); |
| 589 | } |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | /**************************************************************************** |
| 593 | * WCMD_move |
| 594 | * |
| 595 | * Move a file, directory tree or wildcarded set of files. |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 596 | * FIXME: Needs input and output files to be fully specified. |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 597 | */ |
| 598 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 599 | void WCMD_move (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 600 | |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 601 | int status; |
Jason Edmeades | 13c5117 | 2002-04-20 20:54:38 +0000 | [diff] [blame] | 602 | char outpath[MAX_PATH], inpath[MAX_PATH], *infile; |
| 603 | WIN32_FIND_DATA fd; |
| 604 | HANDLE hff; |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 605 | |
Markus Amsler | 765ff5d | 2006-10-31 21:11:28 +0100 | [diff] [blame] | 606 | if (param1[0] == 0x00) { |
| 607 | WCMD_output ("Argument missing\n"); |
| 608 | return; |
| 609 | } |
| 610 | |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 611 | if ((strchr(param1,'*') != NULL) || (strchr(param1,'%') != NULL)) { |
| 612 | WCMD_output ("Wildcards not yet supported\n"); |
| 613 | return; |
Jason Edmeades | 13c5117 | 2002-04-20 20:54:38 +0000 | [diff] [blame] | 614 | } |
| 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 Lilliestierna | 9d90abe | 2007-01-27 15:26:03 +0100 | [diff] [blame] | 623 | if (outpath[strlen(outpath) - 1] == '\\') |
| 624 | outpath[strlen(outpath) - 1] = '\0'; |
Jason Edmeades | 13c5117 | 2002-04-20 20:54:38 +0000 | [diff] [blame] | 625 | 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 Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 636 | if (!status) WCMD_print_error (); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | /**************************************************************************** |
| 640 | * WCMD_pause |
| 641 | * |
| 642 | * Wait for keyboard input. |
| 643 | */ |
| 644 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 645 | void WCMD_pause (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 646 | |
| 647 | DWORD count; |
| 648 | char string[32]; |
| 649 | |
| 650 | WCMD_output (anykey); |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 651 | ReadFile (GetStdHandle(STD_INPUT_HANDLE), string, sizeof(string), &count, NULL); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | /**************************************************************************** |
| 655 | * WCMD_remove_dir |
| 656 | * |
| 657 | * Delete a directory. |
| 658 | */ |
| 659 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 660 | void WCMD_remove_dir (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 661 | |
Markus Amsler | 765ff5d | 2006-10-31 21:11:28 +0100 | [diff] [blame] | 662 | if (param1[0] == 0x00) { |
| 663 | WCMD_output ("Argument missing\n"); |
| 664 | return; |
| 665 | } |
Jason Edmeades | 69194ce | 2007-02-26 23:04:40 +0000 | [diff] [blame] | 666 | |
| 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 Edmeades | 69194ce | 2007-02-26 23:04:40 +0000 | [diff] [blame] | 675 | SHFILEOPSTRUCT lpDir; |
Jason Edmeades | fda7229 | 2007-02-27 23:18:57 +0000 | [diff] [blame] | 676 | |
| 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 Edmeades | 69194ce | 2007-02-26 23:04:40 +0000 | [diff] [blame] | 691 | 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 Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 698 | } |
| 699 | |
| 700 | /**************************************************************************** |
| 701 | * WCMD_rename |
| 702 | * |
| 703 | * Rename a file. |
| 704 | * FIXME: Needs input and output files to be fully specified. |
| 705 | */ |
| 706 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 707 | void WCMD_rename (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 708 | |
| 709 | int status; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 710 | |
Markus Amsler | 765ff5d | 2006-10-31 21:11:28 +0100 | [diff] [blame] | 711 | if (param1[0] == 0x00 || param2[0] == 0x00) { |
| 712 | WCMD_output ("Argument missing\n"); |
| 713 | return; |
| 714 | } |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 715 | if ((strchr(param1,'*') != NULL) || (strchr(param1,'%') != NULL)) { |
| 716 | WCMD_output ("Wildcards not yet supported\n"); |
| 717 | return; |
| 718 | } |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 719 | status = MoveFile (param1, param2); |
| 720 | if (!status) WCMD_print_error (); |
| 721 | } |
| 722 | |
| 723 | /***************************************************************************** |
Mike McCormack | 9643b79 | 2004-03-22 22:56:58 +0000 | [diff] [blame] | 724 | * WCMD_dupenv |
| 725 | * |
| 726 | * Make a copy of the environment. |
| 727 | */ |
Eric Pouech | 5c2a891 | 2004-11-29 18:00:10 +0000 | [diff] [blame] | 728 | static WCHAR *WCMD_dupenv( const WCHAR *env ) |
Mike McCormack | 9643b79 | 2004-03-22 22:56:58 +0000 | [diff] [blame] | 729 | { |
| 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 | */ |
| 758 | void 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 Pouech | 5c2a891 | 2004-11-29 18:00:10 +0000 | [diff] [blame] | 788 | static inline WCHAR *WCMD_strchrW(WCHAR *str, WCHAR ch) |
Mike McCormack | 9643b79 | 2004-03-22 22:56:58 +0000 | [diff] [blame] | 789 | { |
| 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 | */ |
| 804 | void 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 Edmeades | fda7229 | 2007-02-27 23:18:57 +0000 | [diff] [blame] | 832 | |
Mike McCormack | 9643b79 | 2004-03-22 22:56:58 +0000 | [diff] [blame] | 833 | /* 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 Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 851 | * 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 Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 859 | * FIXME: No SET functionality. |
| 860 | * |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 861 | */ |
| 862 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 863 | void WCMD_setshow_attrib (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 864 | |
| 865 | DWORD count; |
| 866 | HANDLE hff; |
| 867 | WIN32_FIND_DATA fd; |
| 868 | char flags[9] = {" "}; |
| 869 | |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 870 | if (param1[0] == '-') { |
| 871 | WCMD_output (nyi); |
| 872 | return; |
| 873 | } |
| 874 | |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 875 | 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 Bonnes | 6b4d9e0 | 2002-07-24 19:00:25 +0000 | [diff] [blame] | 882 | WCMD_output ("%s: File Not Found\n",param1); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 883 | } |
| 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 Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 919 | void WCMD_setshow_default (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 920 | |
| 921 | BOOL status; |
| 922 | char 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 Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 946 | void WCMD_setshow_date (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 947 | |
| 948 | char curdate[64], buffer[64]; |
| 949 | DWORD 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 Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 955 | ReadFile (GetStdHandle(STD_INPUT_HANDLE), buffer, sizeof(buffer), &count, NULL); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 956 | 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 McCormack | bbe0e2c | 2003-12-30 19:17:31 +0000 | [diff] [blame] | 968 | * WCMD_compare |
| 969 | */ |
Eric Pouech | 5c2a891 | 2004-11-29 18:00:10 +0000 | [diff] [blame] | 970 | static int WCMD_compare( const void *a, const void *b ) |
Mike McCormack | bbe0e2c | 2003-12-30 19:17:31 +0000 | [diff] [blame] | 971 | { |
| 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 Edmeades | 1c632cd | 2007-02-26 23:06:11 +0000 | [diff] [blame] | 985 | * Optionally only display those who start with a stub |
| 986 | * returns the count displayed |
Mike McCormack | bbe0e2c | 2003-12-30 19:17:31 +0000 | [diff] [blame] | 987 | */ |
Jason Edmeades | 1c632cd | 2007-02-26 23:06:11 +0000 | [diff] [blame] | 988 | static int WCMD_setshow_sortenv(const char *s, const char *stub) |
Mike McCormack | bbe0e2c | 2003-12-30 19:17:31 +0000 | [diff] [blame] | 989 | { |
Jason Edmeades | 1c632cd | 2007-02-26 23:06:11 +0000 | [diff] [blame] | 990 | UINT count=0, len=0, i, displayedcount=0, stublen=0; |
Mike McCormack | bbe0e2c | 2003-12-30 19:17:31 +0000 | [diff] [blame] | 991 | const char **str; |
| 992 | |
Jason Edmeades | 1c632cd | 2007-02-26 23:06:11 +0000 | [diff] [blame] | 993 | if (stub) stublen = strlen(stub); |
| 994 | |
Mike McCormack | bbe0e2c | 2003-12-30 19:17:31 +0000 | [diff] [blame] | 995 | /* 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 Edmeades | 1c632cd | 2007-02-26 23:06:11 +0000 | [diff] [blame] | 1004 | return 0; |
Mike McCormack | bbe0e2c | 2003-12-30 19:17:31 +0000 | [diff] [blame] | 1005 | 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 Klazes | a18ea3d | 2005-12-01 15:58:16 +0100 | [diff] [blame] | 1013 | for( i=0; i<count; i++ ) { |
Jason Edmeades | 1c632cd | 2007-02-26 23:06:11 +0000 | [diff] [blame] | 1014 | if (!stub || CompareString (LOCALE_USER_DEFAULT, |
| 1015 | NORM_IGNORECASE | SORT_STRINGSORT, |
| 1016 | str[i], stublen, stub, -1) == 2) { |
Rein Klazes | a18ea3d | 2005-12-01 15:58:16 +0100 | [diff] [blame] | 1017 | WCMD_output_asis(str[i]); |
| 1018 | WCMD_output_asis("\n"); |
Jason Edmeades | 1c632cd | 2007-02-26 23:06:11 +0000 | [diff] [blame] | 1019 | displayedcount++; |
| 1020 | } |
Rein Klazes | a18ea3d | 2005-12-01 15:58:16 +0100 | [diff] [blame] | 1021 | } |
Mike McCormack | bbe0e2c | 2003-12-30 19:17:31 +0000 | [diff] [blame] | 1022 | |
| 1023 | LocalFree( str ); |
Jason Edmeades | 1c632cd | 2007-02-26 23:06:11 +0000 | [diff] [blame] | 1024 | return displayedcount; |
Mike McCormack | bbe0e2c | 2003-12-30 19:17:31 +0000 | [diff] [blame] | 1025 | } |
| 1026 | |
| 1027 | /**************************************************************************** |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1028 | * WCMD_setshow_env |
| 1029 | * |
| 1030 | * Set/Show the environment variables |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1031 | */ |
| 1032 | |
| 1033 | void WCMD_setshow_env (char *s) { |
| 1034 | |
| 1035 | LPVOID env; |
| 1036 | char *p; |
| 1037 | int status; |
| 1038 | |
| 1039 | if (strlen(param1) == 0) { |
| 1040 | env = GetEnvironmentStrings (); |
Jason Edmeades | 1c632cd | 2007-02-26 23:06:11 +0000 | [diff] [blame] | 1041 | WCMD_setshow_sortenv( env, NULL ); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1042 | } |
| 1043 | else { |
| 1044 | p = strchr (s, '='); |
| 1045 | if (p == NULL) { |
Jason Edmeades | 1c632cd | 2007-02-26 23:06:11 +0000 | [diff] [blame] | 1046 | env = GetEnvironmentStrings (); |
| 1047 | if (WCMD_setshow_sortenv( env, s ) == 0) { |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1048 | WCMD_output ("Environment variable %s not defined\n", s); |
| 1049 | } |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1050 | return; |
| 1051 | } |
| 1052 | *p++ = '\0'; |
Jason Edmeades | a5910f4 | 2000-08-01 02:14:33 +0000 | [diff] [blame] | 1053 | |
Detlef Riekenberg | a51dcfc | 2005-07-11 10:23:37 +0000 | [diff] [blame] | 1054 | if (strlen(p) == 0) p = NULL; |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1055 | status = SetEnvironmentVariable (s, p); |
Detlef Riekenberg | a51dcfc | 2005-07-11 10:23:37 +0000 | [diff] [blame] | 1056 | if ((!status) & (GetLastError() != ERROR_ENVVAR_NOT_FOUND)) WCMD_print_error(); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1057 | } |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1058 | } |
| 1059 | |
| 1060 | /**************************************************************************** |
| 1061 | * WCMD_setshow_path |
| 1062 | * |
| 1063 | * Set/Show the path environment variable |
| 1064 | */ |
| 1065 | |
Sylvain Petreolle | fdd0bfa | 2003-02-11 22:01:11 +0000 | [diff] [blame] | 1066 | void WCMD_setshow_path (char *command) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1067 | |
| 1068 | char string[1024]; |
| 1069 | DWORD status; |
| 1070 | |
| 1071 | if (strlen(param1) == 0) { |
| 1072 | status = GetEnvironmentVariable ("PATH", string, sizeof(string)); |
| 1073 | if (status != 0) { |
Rein Klazes | 0bf64a4 | 2005-12-02 11:25:51 +0100 | [diff] [blame] | 1074 | WCMD_output_asis ( "PATH="); |
| 1075 | WCMD_output_asis ( string); |
| 1076 | WCMD_output_asis ( "\n"); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1077 | } |
| 1078 | else { |
| 1079 | WCMD_output ("PATH not found\n"); |
| 1080 | } |
| 1081 | } |
| 1082 | else { |
Jason Edmeades | 7358798 | 2007-02-20 00:37:47 +0000 | [diff] [blame] | 1083 | if (*command == '=') command++; /* Skip leading '=' */ |
Sylvain Petreolle | fdd0bfa | 2003-02-11 22:01:11 +0000 | [diff] [blame] | 1084 | status = SetEnvironmentVariable ("PATH", command); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1085 | if (!status) WCMD_print_error(); |
| 1086 | } |
| 1087 | } |
| 1088 | |
| 1089 | /**************************************************************************** |
| 1090 | * WCMD_setshow_prompt |
| 1091 | * |
| 1092 | * Set or show the command prompt. |
| 1093 | */ |
| 1094 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 1095 | void WCMD_setshow_prompt (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1096 | |
| 1097 | char *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 Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 1119 | void WCMD_setshow_time (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1120 | |
| 1121 | char curtime[64], buffer[64]; |
| 1122 | DWORD count; |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 1123 | SYSTEMTIME st; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1124 | |
| 1125 | if (strlen(param1) == 0) { |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 1126 | GetLocalTime(&st); |
| 1127 | if (GetTimeFormat (LOCALE_USER_DEFAULT, 0, &st, NULL, |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1128 | curtime, sizeof(curtime))) { |
| 1129 | WCMD_output ("Current Time is %s\nEnter new time: ", curtime); |
Dave Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 1130 | ReadFile (GetStdHandle(STD_INPUT_HANDLE), buffer, sizeof(buffer), &count, NULL); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1131 | 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 Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 1148 | void WCMD_shift (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1149 | |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 1150 | if (context != NULL) context -> shift_count++; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1151 | |
| 1152 | } |
| 1153 | |
| 1154 | /**************************************************************************** |
Jason Edmeades | bcc6256 | 2002-05-04 18:29:31 +0000 | [diff] [blame] | 1155 | * WCMD_title |
| 1156 | * |
| 1157 | * Set the console title |
| 1158 | */ |
| 1159 | void WCMD_title (char *command) { |
| 1160 | SetConsoleTitle(command); |
| 1161 | } |
| 1162 | |
| 1163 | /**************************************************************************** |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1164 | * WCMD_type |
| 1165 | * |
| 1166 | * Copy a file to standard output. |
| 1167 | */ |
| 1168 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 1169 | void WCMD_type (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1170 | |
| 1171 | HANDLE h; |
| 1172 | char buffer[512]; |
| 1173 | DWORD count; |
| 1174 | |
Markus Amsler | 765ff5d | 2006-10-31 21:11:28 +0100 | [diff] [blame] | 1175 | if (param1[0] == 0x00) { |
| 1176 | WCMD_output ("Argument missing\n"); |
| 1177 | return; |
| 1178 | } |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1179 | h = CreateFile (param1, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, |
François Gouget | 12b3526 | 2001-01-02 20:40:58 +0000 | [diff] [blame] | 1180 | FILE_ATTRIBUTE_NORMAL, NULL); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1181 | 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 Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 1187 | buffer[count] = 0; |
| 1188 | WCMD_output_asis (buffer); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1189 | } |
| 1190 | CloseHandle (h); |
| 1191 | } |
| 1192 | |
| 1193 | /**************************************************************************** |
| 1194 | * WCMD_verify |
| 1195 | * |
| 1196 | * Display verify flag. |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 1197 | * FIXME: We don't actually do anything with the verify flag other than toggle |
| 1198 | * it... |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1199 | */ |
| 1200 | |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 1201 | void WCMD_verify (char *command) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1202 | |
Andreas Mohr | cf2b9f0 | 2005-06-27 09:48:57 +0000 | [diff] [blame] | 1203 | static const char von[] = "Verify is ON\n", voff[] = "Verify is OFF\n"; |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 1204 | int count; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1205 | |
Dave Pickles | 5f8f4f7 | 1999-06-26 10:24:08 +0000 | [diff] [blame] | 1206 | 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 Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1221 | } |
| 1222 | |
| 1223 | /**************************************************************************** |
| 1224 | * WCMD_version |
| 1225 | * |
| 1226 | * Display version info. |
| 1227 | */ |
| 1228 | |
Eric Pouech | b2f079b | 2003-02-27 01:41:21 +0000 | [diff] [blame] | 1229 | void WCMD_version (void) { |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1230 | |
| 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 | |
| 1241 | int WCMD_volume (int mode, char *path) { |
| 1242 | |
| 1243 | DWORD count, serial; |
| 1244 | char string[MAX_PATH], label[MAX_PATH], curdir[MAX_PATH]; |
| 1245 | BOOL status; |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1246 | |
| 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 Gouget | cfc3943 | 2004-05-04 04:13:05 +0000 | [diff] [blame] | 1258 | WCMD_output_asis("Syntax Error\n\n"); |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1259 | 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 Pickles | 036a9f7 | 1999-07-10 11:36:45 +0000 | [diff] [blame] | 1273 | 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 Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1278 | 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 Edmeades | c366648 | 2007-02-20 17:49:08 +0000 | [diff] [blame] | 1287 | |
| 1288 | /************************************************************************** |
| 1289 | * WCMD_exit |
| 1290 | * |
| 1291 | * Exit either the process, or just this batch program |
| 1292 | * |
| 1293 | */ |
| 1294 | |
| 1295 | void 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 Edmeades | fda7229 | 2007-02-27 23:18:57 +0000 | [diff] [blame] | 1306 | |
| 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 | */ |
| 1316 | BOOL 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 | } |