2002-09-27 23:43:29 +00:00
|
|
|
// 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 <stdio.h>
|
|
|
|
|
|
|
|
#include "client_state.h"
|
|
|
|
#include "error_numbers.h"
|
|
|
|
#include "file_names.h"
|
|
|
|
#include "filesys.h"
|
|
|
|
|
|
|
|
#include "account.h"
|
|
|
|
|
|
|
|
int CLIENT_STATE::parse_account_files() {
|
|
|
|
DIRREF dir;
|
|
|
|
char name[256];
|
|
|
|
PROJECT* project;
|
|
|
|
FILE* f;
|
|
|
|
|
|
|
|
dir = dir_open(".");
|
2003-03-11 00:49:07 +00:00
|
|
|
while (dir_scan(name, dir, sizeof(name)) == 0) {
|
2002-09-27 23:43:29 +00:00
|
|
|
if (is_account_file(name)) {
|
|
|
|
f = fopen(name, "r");
|
|
|
|
if (!f) continue;
|
|
|
|
project = new PROJECT;
|
|
|
|
project->parse_account(f);
|
|
|
|
projects.push_back(project);
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dir_close(dir);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-02-13 22:49:26 +00:00
|
|
|
int CLIENT_STATE::add_project(char* master_url, char* authenticator) {
|
2002-12-06 19:44:31 +00:00
|
|
|
char path[256];
|
|
|
|
PROJECT* project;
|
|
|
|
FILE* f;
|
2003-02-06 19:01:49 +00:00
|
|
|
int retval;
|
2002-12-06 19:44:31 +00:00
|
|
|
|
2003-02-06 19:01:49 +00:00
|
|
|
// check if this project is already running
|
2003-02-13 22:49:26 +00:00
|
|
|
//
|
|
|
|
if (lookup_project(master_url)) return -1;
|
2002-12-06 19:44:31 +00:00
|
|
|
|
2003-02-06 19:01:49 +00:00
|
|
|
// create project state
|
2003-02-13 22:49:26 +00:00
|
|
|
//
|
2003-05-13 18:55:07 +00:00
|
|
|
project = new PROJECT;
|
|
|
|
strcpy(project->master_url, master_url);
|
|
|
|
strcpy(project->authenticator, authenticator);
|
|
|
|
project->tentative = true;
|
|
|
|
retval = project->write_account_file();
|
2003-03-08 23:48:05 +00:00
|
|
|
if (retval) return retval;
|
2003-05-13 18:55:07 +00:00
|
|
|
|
2002-12-06 19:44:31 +00:00
|
|
|
get_account_filename(master_url, path);
|
|
|
|
f = fopen(path, "r");
|
|
|
|
if (!f) return ERR_FOPEN;
|
|
|
|
retval = project->parse_account(f);
|
|
|
|
fclose(f);
|
2003-05-13 18:55:07 +00:00
|
|
|
if (retval) return retval;
|
2002-12-06 19:44:31 +00:00
|
|
|
|
2003-02-06 19:01:49 +00:00
|
|
|
// remove any old files
|
2003-02-13 22:49:26 +00:00
|
|
|
//
|
2003-02-06 19:01:49 +00:00
|
|
|
retval = remove_project_dir(*project);
|
2002-12-06 19:44:31 +00:00
|
|
|
|
2003-02-06 19:01:49 +00:00
|
|
|
retval = make_project_dir(*project);
|
2003-02-13 22:49:26 +00:00
|
|
|
if (retval) return retval;
|
2002-12-06 19:44:31 +00:00
|
|
|
projects.push_back(project);
|
2003-02-06 19:01:49 +00:00
|
|
|
return 0;
|
2002-12-06 19:44:31 +00:00
|
|
|
}
|
|
|
|
|
2003-05-13 18:55:07 +00:00
|
|
|
#if 0
|
|
|
|
// Wrong approach.
|
|
|
|
// The user must detach and reattach.
|
|
|
|
// In any case the following has a major bug:
|
|
|
|
// the call to remove_project_dir() won't work because
|
|
|
|
// it gets the new, not the old, project URL
|
|
|
|
//
|
2003-02-13 22:49:26 +00:00
|
|
|
int CLIENT_STATE::change_project(
|
|
|
|
int index, char* master_url, char* authenticator
|
|
|
|
) {
|
2002-12-06 19:44:31 +00:00
|
|
|
char path[256];
|
|
|
|
PROJECT* project;
|
|
|
|
FILE* f;
|
2003-02-06 19:01:49 +00:00
|
|
|
int retval;
|
2002-12-06 19:44:31 +00:00
|
|
|
|
2003-02-06 19:01:49 +00:00
|
|
|
// check if this project is already running
|
2003-02-13 22:49:26 +00:00
|
|
|
//
|
|
|
|
if (lookup_project(master_url)) return -1;
|
2002-12-06 19:44:31 +00:00
|
|
|
|
2003-05-13 18:55:07 +00:00
|
|
|
// delete old account file
|
2003-02-13 22:49:26 +00:00
|
|
|
//
|
2003-02-06 19:01:49 +00:00
|
|
|
project = projects[index];
|
2002-12-06 19:44:31 +00:00
|
|
|
get_account_filename(project->master_url, path);
|
2003-02-06 19:01:49 +00:00
|
|
|
retval = file_delete(path);
|
2002-12-06 19:44:31 +00:00
|
|
|
|
2003-02-06 19:01:49 +00:00
|
|
|
// create project state
|
2003-02-13 22:49:26 +00:00
|
|
|
//
|
2003-03-08 23:48:05 +00:00
|
|
|
retval = write_account_file(master_url, authenticator);
|
|
|
|
if (retval) return retval;
|
2002-12-06 19:44:31 +00:00
|
|
|
get_account_filename(master_url, path);
|
|
|
|
f = fopen(path, "r");
|
|
|
|
if (!f) return ERR_FOPEN;
|
|
|
|
retval = project->parse_account(f);
|
|
|
|
fclose(f);
|
2003-02-13 22:49:26 +00:00
|
|
|
if (retval) return retval;
|
2003-02-06 19:01:49 +00:00
|
|
|
|
|
|
|
// remove any old files
|
|
|
|
retval = remove_project_dir(*project);
|
|
|
|
|
|
|
|
retval = make_project_dir(*project);
|
|
|
|
if(retval) {
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
return 0;
|
2002-12-06 19:44:31 +00:00
|
|
|
}
|
|
|
|
|
2003-05-13 18:55:07 +00:00
|
|
|
// TODO: see if any activities are in progress for this project, and stop them
|
|
|
|
//
|
|
|
|
int CLIENT_STATE::quit_project(PROJECT* project) {
|
|
|
|
PROJECT* p;
|
2003-02-06 19:01:49 +00:00
|
|
|
vector <PROJECT*>::iterator iter;
|
2003-05-13 18:55:07 +00:00
|
|
|
char path[256];
|
|
|
|
int retval;
|
2003-02-06 19:01:49 +00:00
|
|
|
|
|
|
|
// find project and remove it from the vector
|
2003-05-13 18:55:07 +00:00
|
|
|
//
|
2003-02-20 00:58:55 +00:00
|
|
|
for (iter = projects.begin(); iter != projects.end(); iter++) {
|
2003-05-13 18:55:07 +00:00
|
|
|
p = *iter;
|
|
|
|
if (p == project) {
|
2003-02-06 19:01:49 +00:00
|
|
|
projects.erase(iter);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-13 18:55:07 +00:00
|
|
|
// delete account file
|
|
|
|
//
|
2002-12-06 19:44:31 +00:00
|
|
|
get_account_filename(project->master_url, path);
|
2003-02-06 19:01:49 +00:00
|
|
|
retval = file_delete(path);
|
2002-12-06 19:44:31 +00:00
|
|
|
|
2003-05-13 18:55:07 +00:00
|
|
|
// if tentative, there are no activities so we can safely delete everything
|
|
|
|
//
|
|
|
|
if (project->tentative) {
|
|
|
|
// remove project directory and its contents
|
|
|
|
//
|
|
|
|
remove_project_dir(*project);
|
|
|
|
delete project;
|
|
|
|
} else {
|
2002-12-06 19:44:31 +00:00
|
|
|
#ifdef _WIN32
|
2003-05-13 18:55:07 +00:00
|
|
|
AfxMessageBox("Please restart the client to complete the quit.", MB_OK, 0);
|
2002-12-06 19:44:31 +00:00
|
|
|
#endif
|
2003-05-13 18:55:07 +00:00
|
|
|
}
|
2003-02-06 19:01:49 +00:00
|
|
|
return 0;
|
2002-12-06 19:44:31 +00:00
|
|
|
}
|
2003-05-14 21:17:58 +00:00
|
|
|
#endif
|