// The contents of this file are subject to the Mozilla Public License // Version 1.0 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at // http://www.mozilla.org/MPL/ // // Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations // under the License. // // The Original Code is the Berkeley Open Infrastructure for Network Computing. // // The Initial Developer of the Original Code is the SETI@home project. // Portions created by the SETI@home project are Copyright (C) 2002 // University of California at Berkeley. All Rights Reserved. // // Contributor(s): // #include "windows_cpp.h" #include #include #ifdef macintosh #include "seti_mac.h" #else #include #endif #ifdef MAC_OS_X #include #include #endif #include #include #include #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_DIRENT_H #include #endif #ifdef HAVE_SYS_RESOURCE_H #include #endif #ifdef _WIN32 #include #include #endif #include "util.h" #include "error_numbers.h" #include "filesys.h" #ifdef HAVE_DIRENT_H DIR* dirp; #endif #ifdef _WIN32 static char path[256]; static HANDLE handle; static int first; #endif char failed_file[256]; // routines for enumerating the entries in a directory int dir_open(char* p) { if(p==NULL) { fprintf(stderr, "error: dir_open: unexpected NULL pointer p\n"); return ERR_NULL; } #ifdef HAVE_DIRENT_H dirp = opendir(p); if (!dirp) return ERR_OPENDIR; #endif #ifdef _WIN32 strcpy(path, p); strcat(path, "\\*"); first = 1; handle = INVALID_HANDLE_VALUE; #endif #ifdef macintosh SayErr("\pdir_open called (empty function)"); /* CAF Temp */ #endif return 0; } int dir_scan(char* p) { if(p==NULL) { fprintf(stderr, "error: dir_scan: unexpected NULL pointer p\n"); return ERR_NULL; } #ifdef HAVE_DIRENT_H while (1) { dirent* dp = readdir(dirp); if (dp) { if (dp->d_name[0] == '.') continue; if (p) strcpy(p, dp->d_name); return 0; } else { closedir(dirp); dirp = 0; return -1; } } #endif #ifdef _WIN32 WIN32_FIND_DATA data; while (1) { if (first) { first = 0; handle = FindFirstFile(path, &data); if (handle == INVALID_HANDLE_VALUE) { return -1; } else { if (data.cFileName[0] == '.') continue; if (p) strcpy(p, data.cFileName); return 0; } } else { if (FindNextFile(handle, &data)) { if (data.cFileName[0] == '.') continue; if (p) strcpy(p, data.cFileName); return 0; } else { FindClose(handle); handle = INVALID_HANDLE_VALUE; return 1; } } } #endif #ifdef macintosh SayErr("\pdir_scan called (empty function)"); /* CAF Temp */ return 1; #endif } void dir_close() { #ifdef HAVE_DIRENT_H if (dirp) { closedir(dirp); dirp = 0; } #endif #ifdef _WIN32 if (handle == INVALID_HANDLE_VALUE) { FindClose(handle); handle = INVALID_HANDLE_VALUE; } #endif #ifdef macintosh SayErr("\pdir_close called (empty function)"); /* CAF Temp */ #endif } int file_delete(char* path) { int retval,i; if(path==NULL) { fprintf(stderr, "error: file_delete: unexpected NULL pointer path\n"); return ERR_NULL; } for (i=0; i<2; i++) { #ifdef HAVE_UNISTD_H retval = unlink(path); #endif #if ( defined(_WIN32) || defined(macintosh) ) retval = remove(path); #endif if (!retval) break; if (i==0) boinc_sleep(3); } if (retval) { strcpy(failed_file, path); return ERR_UNLINK; } return 0; } // get file size int file_size(char* path, int& size) { struct stat sbuf; int retval; if(path==NULL) { fprintf(stderr, "error: file_size: unexpected NULL pointer path\n"); return ERR_NULL; } retval = stat(path, &sbuf); if (retval) return retval; size = sbuf.st_size; return 0; } /* boinc_link creates a file (new) which contains an XML reference to existing. */ int boinc_link( char *existing, char *new_link ) { FILE *fp; if(existing==NULL) { fprintf(stderr, "error: boinc_link: unexpected NULL pointer existing\n"); return ERR_NULL; } if(new_link==NULL) { fprintf(stderr, "error: boinc_link: unexpected NULL pointer new_link\n"); return ERR_NULL; } fp = fopen( new_link, "wb" ); if (!fp) return ERR_FOPEN; rewind( fp ); fprintf( fp, "%s\n", existing ); fclose( fp ); return 0; } int clean_out_dir(char* dirpath) { char filename[256], path[256]; int retval; if(dirpath==NULL) { fprintf(stderr, "error: clean_out_dir: unexpected NULL pointer dirpath\n"); return ERR_NULL; } retval = dir_open(dirpath); if (retval) return retval; while (1) { retval = dir_scan(filename); if (retval) break; sprintf(path, "%s/%s", dirpath, filename); retval = file_delete(path); if (retval) { dir_close(); return retval; } } dir_close(); return 0; }