123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- /**
- remove.c - Remove files safely on Windows
-
- Copyright (c) All Rights Reserved. See details at the end of the file.
- */
- /********************************* Includes ***********************************/
- /*
- Suppress MS VS warnings
- */
- #define _CRT_SECURE_NO_WARNINGS
- /* Work-around to allow the windows 7.* SDK to be used with VS 2012 */
- #if _MSC_VER >= 1700
- #define SAL_SUPP_H
- #define SPECSTRING_SUPP_H
- #endif
- #include "me.h"
- #include <stdio.h>
- #include <direct.h>
- #include <windows.h>
- /*********************************** Locals ***********************************/
- #define PROGRAM ME_NAME " Removal Program"
- #define MPR_MAX_FNAME 1024
- static char *fileList[] = {
- "appWeb.conf",
- "*.obj",
- "*.lib",
- "*.dll",
- "*.pdb",
- "*.exe",
- "*.def",
- "*.exp",
- "*.idb",
- "*.plg",
- "*.res",
- "*.ncb",
- "*.opt",
- "*.bak",
- "*.0",
- "*.1",
- "*.2",
- "*.3",
- "*.4",
- "*.5",
- "*.6",
- "*.7",
- "*.8",
- "*.9",
- "make.dep",
- "install.log",
- ".port.log",
- 0
- };
- /***************************** Forward Declarations ***************************/
- static int initWindow();
- static void cleanup();
- static void recursiveRemove(char *dir, char *pattern);
- static int match(char *file, char *pat);
- static char *mprGetDirName(char *buf, int bufsize, const char *path);
- static int mprStrcpy(char *dest, int destMax, const char *src);
- /*********************************** Code *************************************/
- int APIENTRY WinMain(HINSTANCE inst, HINSTANCE junk, char *args, int junk2)
- {
- char dir[MPR_MAX_FNAME], moduleBuf[MPR_MAX_FNAME], tmp[MPR_MAX_FNAME];
- char *cp;
- int errflg, sleepMsecs, removeOk;
- errflg = 0;
- sleepMsecs = 0;
- removeOk = 0;
- /*
- Get the directory above bin
- */
- GetModuleFileName(0, moduleBuf, sizeof(moduleBuf) - 1);
- mprGetDirName(tmp, sizeof(tmp), moduleBuf);
- mprGetDirName(dir, sizeof(dir), tmp);
- _chdir(dir);
- if (args && *args) {
- if (strstr(args, "-r") != 0) {
- removeOk++;
- }
- if ((cp = strstr(args, "-s")) != 0) {
- do {
- cp++;
- } while (isspace(*cp));
- sleepMsecs = atoi(cp) * 1000;
- }
- }
- /*
- We use removeOk to ensure that someone just running the program won't do anything bad.
- */
- if (errflg || !removeOk) {
- fprintf(stderr, "Bad Usage");
- return FALSE;
- }
- cleanup();
- /*
- Some products (services) take a while to exit. This is a convenient way to pause before removing
- */
- if (sleepMsecs) {
- printf("sleeping for %d msec\n", sleepMsecs);
- Sleep(sleepMsecs);
- }
- return 0;
- }
- /*
- Cleanup temporary files
- */
- static void cleanup()
- {
- char *file;
- char home[MPR_MAX_FNAME];
- int i;
- _getcwd(home, sizeof(home) - 1);
- for (i = 0; fileList[i]; i++) {
- file = fileList[i];
- recursiveRemove(home, file);
- }
- }
- /*
- Remove a file
- */
- static void recursiveRemove(char *dir, char *pattern)
- {
- HANDLE handle;
- WIN32_FIND_DATA data;
- char saveDir[MPR_MAX_FNAME];
- saveDir[sizeof(saveDir) - 1] = '\0';
- _getcwd(saveDir, sizeof(saveDir) - 1);
- _chdir(dir);
- handle = FindFirstFile("*.*", &data);
- while (FindNextFile(handle, &data)) {
- if (strcmp(data.cFileName, "..") == 0 ||
- strcmp(data.cFileName, ".") == 0) {
- continue;
- }
- if (data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
- recursiveRemove(data.cFileName, pattern);
- /*
- This will fail if there are files remaining in the directory.
- */
- printf("Removing directory %s\n", data.cFileName);
- RemoveDirectory(data.cFileName);
- continue;
- }
- if (match(data.cFileName, pattern)) {
- printf("Delete: %s\n", data.cFileName);
- DeleteFile(data.cFileName);
- }
- }
- FindClose(handle);
- _chdir(saveDir);
- }
- /*
- Simple wild-card matching
- */
- static int match(char *file, char *pat)
- {
- char fileBuf[MPR_MAX_FNAME], patBuf[MPR_MAX_FNAME];
- char *patExt;
- char *fileExt;
- mprStrcpy(fileBuf, sizeof(fileBuf), file);
- file = fileBuf;
- mprStrcpy(patBuf, sizeof(patBuf), pat);
- pat = patBuf;
- if (strcmp(file, pat) == 0) {
- return 1;
- }
- if ((fileExt = strrchr(file, '.')) != 0) {
- *fileExt++ = '\0';
- }
- if ((patExt = strrchr(pat, '.')) != 0) {
- *patExt++ = '\0';
- }
- if (*pat == '*' || strcmp(pat, file) == 0) {
- if (patExt && *patExt == '*') {
- return 1;
- } else {
- if (fileExt && strcmp(fileExt, patExt) == 0) {
- return 1;
- }
- }
- }
- return 0;
- }
- /*
- Return the directory portion of a pathname into the users buffer.
- */
- static char *mprGetDirName(char *buf, int bufsize, const char *path)
- {
- char *cp;
- int dlen;
- cp = strrchr(path, '/');
- if (cp == 0) {
- #if ME_WIN_LIKE
- cp = strrchr(path, '\\');
- if (cp == 0)
- #endif
- {
- buf[0] = '\0';
- return buf;
- }
- }
- if (cp == path && cp[1] == '\0') {
- strcpy(buf, ".");
- return buf;
- }
- dlen = (int) (cp - path);
- if (dlen < bufsize) {
- if (dlen == 0) {
- dlen++;
- }
- memcpy(buf, path, dlen);
- buf[dlen] = '\0';
- return buf;
- }
- return 0;
- }
- static int mprStrcpy(char *dest, int destMax, const char *src)
- {
- int len;
- len = (int) strlen(src);
- if (destMax > 0 && len >= destMax && len > 0) {
- return -1;
- }
- if (len > 0) {
- memcpy(dest, src, len);
- dest[len] = '\0';
- } else {
- *dest = '\0';
- len = 0;
- }
- return len;
- }
- /*
- @copy default
- Copyright (c) Embedthis Software LLC, 2003-2014. All Rights Reserved.
- This software is distributed under commercial and open source licenses.
- You may use the Embedthis Open Source license or you may acquire a
- commercial license from Embedthis Software. You agree to be fully bound
- by the terms of either license. Consult the LICENSE.md distributed with
- this software for full details and other copyrights.
- Local variables:
- tab-width: 4
- c-basic-offset: 4
- End:
- vim: sw=4 ts=4 expandtab
- @end
- */
|