2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2005-01-20 23:22:22 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// 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.
|
2005-01-20 23:22:22 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2005-01-20 23:22:22 +00:00
|
|
|
|
2005-01-29 23:29:54 +00:00
|
|
|
// dir_hier_path filename
|
|
|
|
//
|
|
|
|
// Run this in a project's root directory.
|
2006-04-04 20:03:59 +00:00
|
|
|
// Prints the absolute path of the file in the download hierarchy,
|
|
|
|
// and creates the directory if needed.
|
2005-01-29 23:29:54 +00:00
|
|
|
|
2005-11-21 18:34:44 +00:00
|
|
|
#include "config.h"
|
2009-02-26 00:23:23 +00:00
|
|
|
#include <cstdio>
|
2004-08-05 11:35:09 +00:00
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
#include "sched_config.h"
|
2005-01-08 07:44:22 +00:00
|
|
|
#include "sched_util.h"
|
2009-05-07 13:54:51 +00:00
|
|
|
#include "str_util.h"
|
2004-08-05 11:35:09 +00:00
|
|
|
|
2007-01-14 23:04:27 +00:00
|
|
|
|
|
|
|
const char *usage =
|
|
|
|
"\nUsage: dir_hier_path <filename>\n"
|
|
|
|
" Run this in a project's root directory.\n"
|
|
|
|
" Prints the absolute path of the file in the download hierarchy,\n"
|
|
|
|
" and creates the directory if needed.\n\n";
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2004-08-05 11:35:09 +00:00
|
|
|
char path[256];
|
|
|
|
int retval;
|
|
|
|
|
2007-01-14 23:04:27 +00:00
|
|
|
if ( (argc == 1) || !strcmp(argv[1], "-h") || !strcmp(argv[1],"--help") || (argc != 2) ) {
|
|
|
|
printf (usage);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2009-05-07 13:54:51 +00:00
|
|
|
retval = config.parse_file();
|
2004-12-06 22:41:19 +00:00
|
|
|
if (retval) {
|
2009-05-07 13:54:51 +00:00
|
|
|
fprintf(stderr, "Can't parse config.xml: %s\n", boincerror(retval));
|
2004-12-06 22:41:19 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2004-08-05 11:35:09 +00:00
|
|
|
|
2006-06-14 20:17:35 +00:00
|
|
|
retval = dir_hier_path(
|
|
|
|
argv[1], config.download_dir, config.uldl_dir_fanout, path, true
|
|
|
|
);
|
|
|
|
if (retval) {
|
|
|
|
fprintf(stderr, "dir_hier_path(): %d\n", retval);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
printf("%s\n", path);
|
2004-08-05 11:35:09 +00:00
|
|
|
}
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_c683969ea8 = "$Id$";
|