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
|
|
|
|
//
|
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-10-16 19:03:49 +00:00
|
|
|
#include "cpp.h"
|
2002-06-06 18:42:01 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2002-10-06 00:43:54 +00:00
|
|
|
#include <afxwin.h>
|
2002-06-06 18:42:01 +00:00
|
|
|
#endif
|
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/stat.h>
|
2002-06-21 06:52:47 +00:00
|
|
|
#include <ctype.h>
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2002-08-24 00:41:25 +00:00
|
|
|
#include "filesys.h"
|
2002-07-11 01:09:53 +00:00
|
|
|
#include "error_numbers.h"
|
2003-07-03 05:01:29 +00:00
|
|
|
#include "message.h"
|
2003-03-08 23:48:05 +00:00
|
|
|
#include "util.h"
|
2002-06-21 06:52:47 +00:00
|
|
|
|
2003-07-03 05:01:29 +00:00
|
|
|
#include "file_names.h"
|
|
|
|
|
2002-12-19 00:37:19 +00:00
|
|
|
void escape_project_url(char *in, char* out) {
|
2003-05-20 00:03:39 +00:00
|
|
|
escape_url_readable(in, out);
|
2003-06-24 00:17:36 +00:00
|
|
|
char& last = out[strlen(out)-1];
|
|
|
|
// remove trailing _
|
|
|
|
if (last == '_') {
|
|
|
|
last = '\0';
|
|
|
|
}
|
2002-09-25 18:33:26 +00:00
|
|
|
}
|
|
|
|
|
2004-01-04 06:48:40 +00:00
|
|
|
void get_project_dir(PROJECT* p, char* path) {
|
|
|
|
char buf[256];
|
|
|
|
escape_project_url(p->master_url, buf);
|
|
|
|
sprintf(path, "%s%s%s", PROJECTS_DIR, PATH_SEPARATOR, buf);
|
|
|
|
}
|
|
|
|
|
2002-07-15 23:21:20 +00:00
|
|
|
// Gets the pathname of a file
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
void get_pathname(FILE_INFO* fip, char* path) {
|
|
|
|
PROJECT* p = fip->project;
|
2002-06-21 06:52:47 +00:00
|
|
|
char buf[256];
|
2002-08-05 00:29:34 +00:00
|
|
|
|
2002-07-05 05:33:40 +00:00
|
|
|
// for testing purposes, it's handy to allow a FILE_INFO without
|
|
|
|
// an associated PROJECT.
|
|
|
|
//
|
|
|
|
if (p) {
|
2004-01-04 06:48:40 +00:00
|
|
|
get_project_dir(p, buf);
|
|
|
|
sprintf(path, "%s%s%s", buf, PATH_SEPARATOR, fip->name);
|
2002-07-05 05:33:40 +00:00
|
|
|
} else {
|
2004-01-04 06:48:40 +00:00
|
|
|
strcpy(path, fip->name);
|
2002-07-05 05:33:40 +00:00
|
|
|
}
|
2002-04-30 22:22:54 +00:00
|
|
|
}
|
|
|
|
|
2002-07-15 23:21:20 +00:00
|
|
|
// Returns the location of a numbered slot directory
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
void get_slot_dir(int slot, char* path) {
|
2002-09-25 18:33:26 +00:00
|
|
|
sprintf(path, "%s%s%d", SLOTS_DIR, PATH_SEPARATOR, slot);
|
2002-04-30 22:22:54 +00:00
|
|
|
}
|
|
|
|
|
2002-07-15 23:21:20 +00:00
|
|
|
// Create the directory for the project p
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
int make_project_dir(PROJECT& p) {
|
2004-01-04 06:48:40 +00:00
|
|
|
char buf[256];
|
2002-06-21 06:52:47 +00:00
|
|
|
|
2003-05-13 18:55:07 +00:00
|
|
|
boinc_mkdir(PROJECTS_DIR);
|
2004-01-04 06:48:40 +00:00
|
|
|
get_project_dir(&p, buf);
|
|
|
|
boinc_mkdir(buf);
|
2002-04-30 22:22:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-12-02 20:52:22 +00:00
|
|
|
int remove_project_dir(PROJECT& p) {
|
2004-01-04 06:48:40 +00:00
|
|
|
char buf[256];
|
2002-12-02 20:52:22 +00:00
|
|
|
|
2004-01-04 06:48:40 +00:00
|
|
|
get_project_dir(&p, buf);
|
|
|
|
clean_out_dir(buf);
|
|
|
|
boinc_rmdir(buf);
|
2002-12-02 20:52:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-07-15 23:21:20 +00:00
|
|
|
// Create the slot directory for the specified slot #
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
int make_slot_dir(int slot) {
|
|
|
|
char buf[256];
|
2002-07-11 01:09:53 +00:00
|
|
|
if(slot<0) {
|
2003-07-03 05:01:29 +00:00
|
|
|
msg_printf(NULL, MSG_ERROR, "make_slot_dir(): negative slot\n");
|
2002-07-11 01:09:53 +00:00
|
|
|
return ERR_NEG;
|
|
|
|
}
|
2003-05-13 18:55:07 +00:00
|
|
|
boinc_mkdir(SLOTS_DIR);
|
2002-04-30 22:22:54 +00:00
|
|
|
get_slot_dir(slot, buf);
|
2003-05-13 18:55:07 +00:00
|
|
|
boinc_mkdir(buf);
|
2002-04-30 22:22:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2002-06-06 18:42:01 +00:00
|
|
|
|
2002-09-26 05:57:10 +00:00
|
|
|
void get_account_filename(char* master_url, char* path) {
|
|
|
|
char buf[256];
|
|
|
|
escape_project_url(master_url, buf);
|
|
|
|
sprintf(path, "account_%s.xml", buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_account_file(char* filename) {
|
|
|
|
return (strstr(filename, "account_") == filename);
|
|
|
|
}
|