2003-07-01 20:37:09 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
2002-04-30 22:22:54 +00:00
|
|
|
// 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
|
2003-07-01 20:37:09 +00:00
|
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
2004-03-04 11:41:43 +00:00
|
|
|
// The contents of this file are subject to the BOINC 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://boinc.berkeley.edu/license_1.0.txt
|
2003-07-01 20:37:09 +00:00
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
// 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
|
2003-07-01 20:37:09 +00:00
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
2003-07-01 20:37:09 +00:00
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
// Contributor(s):
|
|
|
|
//
|
2003-07-01 20:37:09 +00:00
|
|
|
|
2003-12-24 21:50:41 +00:00
|
|
|
#ifndef _FILESYS_
|
|
|
|
#define _FILESYS_
|
|
|
|
|
2004-03-04 11:41:43 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
|
|
|
|
struct DIR_DESC {
|
|
|
|
char path[256];
|
|
|
|
bool first;
|
|
|
|
void* handle;
|
|
|
|
};
|
|
|
|
typedef DIR_DESC *DIRREF;
|
|
|
|
#define PATH_SEPARATOR "\\"
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
2004-02-28 19:11:40 +00:00
|
|
|
#include <stdio.h>
|
2003-06-24 00:17:36 +00:00
|
|
|
#include <string>
|
|
|
|
using std::string;
|
2004-01-08 00:27:59 +00:00
|
|
|
|
2002-07-30 23:44:22 +00:00
|
|
|
#ifdef HAVE_DIRENT_H
|
|
|
|
#include <dirent.h>
|
2003-09-03 15:51:57 +00:00
|
|
|
typedef DIR *DIRREF;
|
2002-08-09 21:43:19 +00:00
|
|
|
#endif
|
2004-01-08 00:27:59 +00:00
|
|
|
|
2002-08-24 00:41:25 +00:00
|
|
|
#define PATH_SEPARATOR "/"
|
2004-03-04 11:41:43 +00:00
|
|
|
|
2002-07-30 23:44:22 +00:00
|
|
|
#endif
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2004-01-08 00:27:59 +00:00
|
|
|
// TODO TODO TODO
|
|
|
|
// remove this code - the DirScanner class does the same thing.
|
|
|
|
// But need to rewrite a couple of places that use it
|
|
|
|
//
|
2003-11-08 00:56:55 +00:00
|
|
|
extern DIRREF dir_open(const char*);
|
2003-03-11 00:49:07 +00:00
|
|
|
extern int dir_scan(char*, DIRREF, int);
|
2003-06-24 00:17:36 +00:00
|
|
|
int dir_scan(string&, DIRREF);
|
2002-08-09 21:43:19 +00:00
|
|
|
extern void dir_close(DIRREF);
|
2004-01-08 00:27:59 +00:00
|
|
|
|
2004-01-04 06:48:40 +00:00
|
|
|
extern int boinc_delete_file(const char*);
|
2003-11-08 00:56:55 +00:00
|
|
|
extern int file_size(const char*, double&);
|
|
|
|
extern int clean_out_dir(const char*);
|
|
|
|
extern int dir_size(const char* dirpath, double&);
|
2003-12-24 00:50:51 +00:00
|
|
|
extern FILE* boinc_fopen(const char* path, const char* mode);
|
2004-03-01 19:11:12 +00:00
|
|
|
extern int boinc_file_exists(const char* path);
|
2003-11-08 00:56:55 +00:00
|
|
|
extern int boinc_copy(const char* orig, const char* newf);
|
|
|
|
extern int boinc_rename(const char* old, const char* newf);
|
|
|
|
extern int boinc_mkdir(const char*);
|
|
|
|
extern int boinc_rmdir(const char*);
|
2002-08-24 00:41:25 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
extern void full_path(char* relname, char* path);
|
|
|
|
#endif
|
2003-06-14 20:24:29 +00:00
|
|
|
extern int get_filesystem_info(double& total, double& free);
|
2003-06-24 00:17:36 +00:00
|
|
|
|
|
|
|
class DirScanner {
|
|
|
|
#ifdef _WIN32
|
2003-06-24 20:13:02 +00:00
|
|
|
string dir;
|
2003-06-24 00:17:36 +00:00
|
|
|
bool first;
|
|
|
|
void* handle;
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_DIRENT_H
|
|
|
|
DIR* dirp;
|
|
|
|
#endif
|
|
|
|
public:
|
|
|
|
DirScanner(string const& path);
|
|
|
|
~DirScanner();
|
|
|
|
bool scan(string& name); // return true if file returned
|
|
|
|
};
|
2003-12-24 21:50:41 +00:00
|
|
|
|
2004-01-04 06:48:40 +00:00
|
|
|
#endif
|
|
|
|
|