2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
|
|
|
//
|
|
|
|
// This 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 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This software 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.
|
|
|
|
//
|
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
2005-01-29 23:29:54 +00:00
|
|
|
// dir_hier_path filename
|
|
|
|
//
|
|
|
|
// Run this in a project's root directory.
|
|
|
|
// Prints the absolute path of the file in the download hierarchy
|
|
|
|
|
2005-11-21 18:34:44 +00:00
|
|
|
#include "config.h"
|
2004-08-05 11:35:09 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
#include "sched_config.h"
|
2005-01-08 07:44:22 +00:00
|
|
|
#include "sched_util.h"
|
2004-08-05 11:35:09 +00:00
|
|
|
|
2005-02-16 23:17:43 +00:00
|
|
|
int main(int /*argc*/, char** argv) {
|
2004-08-05 11:35:09 +00:00
|
|
|
SCHED_CONFIG config;
|
|
|
|
char path[256];
|
|
|
|
int retval;
|
|
|
|
|
2004-12-06 22:41:19 +00:00
|
|
|
retval = config.parse_file(".");
|
|
|
|
if (retval) {
|
|
|
|
fprintf(stderr, "Can't find config.xml; run this in project root dir\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2004-08-05 11:35:09 +00:00
|
|
|
|
2005-09-23 21:09:00 +00:00
|
|
|
dir_hier_path(argv[1], "", config.uldl_dir_fanout, path);
|
2005-01-29 23:29:54 +00:00
|
|
|
printf("%s%s\n", config.download_dir, 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$";
|