mirror of https://github.com/BOINC/boinc.git
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
|
// This file is part of BOINC.
|
||
|
// http://boinc.berkeley.edu
|
||
|
// Copyright (C) 2011 University of California
|
||
|
//
|
||
|
// BOINC is free software; you can redistribute it and/or modify it
|
||
|
// under the terms of the GNU Lesser General Public License
|
||
|
// as published by the Free Software Foundation,
|
||
|
// either version 3 of the License, or (at your option) any later version.
|
||
|
//
|
||
|
// BOINC is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
// See the GNU Lesser General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU Lesser General Public License
|
||
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
// cancel_jobs min-ID max-ID
|
||
|
//
|
||
|
// cancel jobs from min-ID to max-ID inclusive
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "backend_lib.h"
|
||
|
#include "sched_config.h"
|
||
|
|
||
|
void usage() {
|
||
|
fprintf(stderr, "Usage: cancel_jobs min-ID max-ID\n");
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
|
if (argc != 3) usage();
|
||
|
int min_id = atoi(argv[1]);
|
||
|
int max_id = atoi(argv[2]);
|
||
|
if (!min_id || !max_id) usage();
|
||
|
|
||
|
int retval = config.parse_file();
|
||
|
if (retval) exit(1);
|
||
|
|
||
|
retval = boinc_db.open(
|
||
|
config.db_name, config.db_host, config.db_user, config.db_passwd
|
||
|
);
|
||
|
if (retval) {
|
||
|
printf("boinc_db.open: %s\n", boincerror(retval));
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
retval = cancel_jobs(min_id, max_id);
|
||
|
if (retval) {
|
||
|
fprintf(stderr, "cancel_jobs() failed: %s\n", boincerror(retval));
|
||
|
exit(retval);
|
||
|
}
|
||
|
}
|