1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/*****************************************************************************\
* $Id: tpl.c 1081 2008-11-26 01:24:31Z garlick $
*****************************************************************************
* Copyright (C) 2004-2008 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Jim Garlick <garlick@llnl.gov>
* UCRL-CODE-2002-008.
*
* This file is part of PowerMan, a remote power management program.
* For details, see <http://www.llnl.gov/linux/powerman/>.
*
* PowerMan is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* PowerMan 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 General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with PowerMan; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\*****************************************************************************/
/*
* Test driver for pluglist module.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <libgen.h>
#include "list.h"
#include "xtypes.h"
#include "pluglist.h"
#include "hostlist.h"
#include "error.h"
#include "xmalloc.h"
void usage(void)
{
fprintf(stderr, "Usage: tpl [-f plug_to_find] [-p fixed_plugs] nodelist [pluglist]\n");
exit(1);
}
int main(int argc, char *argv[])
{
extern int optind;
extern char *optarg;
int c;
PlugList pl = NULL;
char *hwplugs = NULL;
char *nodelist = NULL;
char *pluglist = NULL;
char *findplug = NULL;
err_init(basename(argv[0]));
while ((c = getopt(argc, argv, "p:f:")) != EOF) {
switch (c) {
case 'p':
hwplugs = optarg;
break;
case 'f':
findplug = optarg;
break;
default:
usage();
}
}
if (argc - optind == 0)
usage();
nodelist = argv[optind++];
if (argc - optind == 1)
pluglist = argv[optind++];
if (argc - optind != 0)
usage();
if (hwplugs) {
hostlist_t hl = hostlist_create(hwplugs);
hostlist_iterator_t itr = hostlist_iterator_create(hl);
List l = list_create((ListDelF)xfree);
char *plug;
while ((plug = hostlist_next(itr)))
list_append(l, xstrdup(plug));
hostlist_iterator_destroy(itr);
hostlist_destroy(hl);
pl = pluglist_create(l);
list_destroy(l);
} else
pl = pluglist_create(NULL);
switch (pluglist_map(pl, nodelist, pluglist)) {
case EPL_DUPNODE:
fprintf(stderr, "duplicate node\n");
break;
case EPL_UNKPLUG:
fprintf(stderr, "unknown plug\n");
break;
case EPL_DUPPLUG:
fprintf(stderr, "duplicate plug\n");
break;
case EPL_NOPLUGS:
fprintf(stderr, "more nodes than plugs\n");
break;
case EPL_NONODES:
fprintf(stderr, "more plugs than nodes\n");
break;
case EPL_SUCCESS:
break;
}
if (findplug) {
Plug *plug = pluglist_find(pl, findplug);
if (plug)
printf("plug=%s node=%s\n", plug->name,
plug->node ? plug->node : "NULL");
else
printf("plug %s: not found\n", findplug);
} else {
PlugListIterator itr = pluglist_iterator_create(pl);
Plug *plug;
while ((plug = pluglist_next(itr))) {
printf("plug=%s node=%s\n", plug->name,
plug->node ? plug->node : "NULL");
}
pluglist_iterator_destroy(itr);
}
exit(0);
}
|