Home | History | Annotate | Line # | Download | only in envstat
envstat.c revision 1.10
      1  1.10  christos /*	$NetBSD: envstat.c,v 1.10 2003/01/05 22:16:22 christos Exp $ */
      2   1.1      groo 
      3   1.1      groo /*-
      4   1.1      groo  * Copyright (c) 2000 The NetBSD Foundation, Inc.
      5   1.1      groo  * All rights reserved.
      6   1.1      groo  *
      7   1.1      groo  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1      groo  * by Bill Squier.
      9   1.1      groo  *
     10   1.1      groo  * Redistribution and use in source and binary forms, with or without
     11   1.1      groo  * modification, are permitted provided that the following conditions
     12   1.1      groo  * are met:
     13   1.1      groo  * 1. Redistributions of source code must retain the above copyright
     14   1.1      groo  *    notice, this list of conditions and the following disclaimer.
     15   1.1      groo  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1      groo  *    notice, this list of conditions and the following disclaimer in the
     17   1.1      groo  *    documentation and/or other materials provided with the distribution.
     18   1.1      groo  * 3. All advertising materials mentioning features or use of this software
     19   1.1      groo  *    must display the following acknowledgement:
     20   1.1      groo  *        This product includes software developed by the NetBSD
     21   1.1      groo  *        Foundation, Inc. and its contributors.
     22   1.1      groo  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1      groo  *    contributors may be used to endorse or promote products derived
     24   1.1      groo  *    from this software without specific prior written permission.
     25   1.1      groo  *
     26   1.1      groo  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1      groo  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1      groo  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1      groo  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1      groo  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1      groo  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1      groo  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1      groo  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1      groo  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1      groo  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1      groo  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1      groo  */
     38   1.1      groo 
     39   1.1      groo #include <sys/cdefs.h>
     40   1.1      groo #ifndef lint
     41  1.10  christos __RCSID("$NetBSD: envstat.c,v 1.10 2003/01/05 22:16:22 christos Exp $");
     42   1.1      groo #endif
     43   1.1      groo 
     44   1.1      groo #include <fcntl.h>
     45   1.1      groo #include <stdio.h>
     46   1.1      groo #include <stdlib.h>
     47   1.1      groo #include <string.h>
     48   1.1      groo #include <unistd.h>
     49   1.3   thorpej #include <err.h>
     50   1.8  augustss #include <paths.h>
     51   1.1      groo 
     52   1.1      groo #include <sys/envsys.h>
     53   1.1      groo #include <sys/ioctl.h>
     54   1.1      groo 
     55   1.3   thorpej const char E_CANTENUM[] = "cannot enumerate sensors";
     56   1.1      groo 
     57   1.7  augustss int main(int, char **);
     58   1.7  augustss void listsensors(envsys_basic_info_t *, int);
     59   1.7  augustss int numsensors(int);
     60   1.7  augustss int fillsensors(int, envsys_tre_data_t *, envsys_basic_info_t *, int);
     61   1.7  augustss int longestname(envsys_basic_info_t *, int);
     62   1.7  augustss int marksensors(envsys_basic_info_t *, int *, char *, int);
     63   1.7  augustss int strtosnum(envsys_basic_info_t *, const char *, int);
     64   1.7  augustss void header(unsigned, int, envsys_basic_info_t *, const int * const, int);
     65   1.7  augustss void values(unsigned, int, envsys_tre_data_t *, const int * const, int);
     66   1.7  augustss void usage(void);
     67   1.1      groo 
     68   1.6  explorer int rflag = 0;
     69   1.6  explorer 
     70   1.6  explorer static const char *unit_str[] = {"degC", "RPM", "VAC", "V", "Ohms", "W",
     71   1.6  explorer 				 "A", "Wh", "Ah", "bool", "Unk"};
     72   1.1      groo 
     73   1.1      groo int
     74   1.7  augustss main(int argc, char **argv)
     75   1.1      groo {
     76   1.1      groo 	int c, fd, ns, ls, celsius;
     77   1.1      groo 	unsigned int interval, width, headrep, headcnt;
     78   1.1      groo 	envsys_tre_data_t *etds;
     79   1.1      groo 	envsys_basic_info_t *ebis;
     80   1.1      groo 	int *cetds;
     81   1.1      groo 	char *sensors;
     82   1.3   thorpej 	const char *dev;
     83   1.1      groo 
     84   1.1      groo 	fd = -1;
     85   1.1      groo 	ls = 0;
     86   1.1      groo 	celsius = 1;
     87   1.1      groo 	interval = 0;
     88   1.1      groo 	width = 0;
     89   1.1      groo 	sensors = NULL;
     90   1.1      groo 	headrep = 22;
     91   1.1      groo 
     92   1.6  explorer 	while ((c = getopt(argc, argv, "cfi:ln:rs:w:r")) != -1) {
     93   1.1      groo 		switch(c) {
     94   1.6  explorer 		case 'r':
     95   1.6  explorer 			rflag= 1;
     96   1.6  explorer 			break;
     97   1.1      groo 		case 'i':	/* wait time between displays */
     98   1.1      groo 			interval = atoi(optarg);
     99   1.1      groo 			break;
    100   1.1      groo 		case 'w':	/* minimum column width */
    101   1.1      groo 			width = atoi(optarg);
    102   1.1      groo 			break;
    103   1.1      groo 		case 'l':	/* list sensor names */
    104   1.1      groo 			ls = 1;
    105   1.1      groo 			break;
    106   1.1      groo 		case 'n':	/* repeat header every headrep lines */
    107   1.1      groo 			headrep = atoi(optarg);
    108   1.1      groo 			break;
    109   1.1      groo 		case 's':	/* restrict display to named sensors */
    110   1.1      groo 			sensors = (char *)malloc(strlen(optarg) + 1);
    111   1.1      groo 			if (sensors == NULL)
    112   1.1      groo 				exit(1);
    113   1.1      groo 			strcpy(sensors, optarg);
    114   1.1      groo 			break;
    115   1.1      groo 		case 'f':	/* display temp in degF */
    116   1.1      groo 			celsius = 0;
    117   1.1      groo 			break;
    118   1.1      groo 		case '?':
    119   1.1      groo 		default:
    120   1.1      groo 			usage();
    121   1.1      groo 			/* NOTREACHED */
    122   1.1      groo 		}
    123   1.1      groo 	}
    124   1.1      groo 
    125   1.3   thorpej 	if (optind < argc)
    126   1.3   thorpej 		dev = argv[optind];
    127   1.3   thorpej 	else
    128   1.3   thorpej 		dev = _PATH_SYSMON;
    129   1.1      groo 
    130   1.3   thorpej 	if ((fd = open(dev, O_RDONLY)) == -1)
    131   1.3   thorpej 		err(1, "unable to open %s", dev);
    132   1.1      groo 
    133   1.1      groo 	/*
    134   1.1      groo 	 * Determine number of sensors, allocate and fill arrays with
    135   1.1      groo 	 * initial information.  Determine column width
    136   1.1      groo 	 */
    137   1.3   thorpej 	if ((ns = numsensors(fd)) <= 0)
    138   1.3   thorpej 		errx(1, E_CANTENUM);
    139   1.3   thorpej 
    140   1.1      groo 	cetds = (int *)malloc(ns * sizeof(int));
    141   1.1      groo 	etds = (envsys_tre_data_t *)malloc(ns * sizeof(envsys_tre_data_t));
    142   1.1      groo 	ebis = (envsys_basic_info_t *)malloc(ns * sizeof(envsys_basic_info_t));
    143   1.1      groo 
    144   1.3   thorpej 	if ((cetds == NULL) || (etds == NULL) || (ebis == NULL))
    145   1.3   thorpej 		errx(1, "cannot allocate memory");
    146   1.1      groo 
    147   1.3   thorpej 	if (fillsensors(fd, etds, ebis, ns) == -1)
    148   1.3   thorpej 		errx(1, E_CANTENUM);
    149   1.1      groo 
    150   1.1      groo 	if (ls) {
    151   1.1      groo 		listsensors(ebis, ns);
    152   1.1      groo 		exit(0);
    153   1.1      groo 	}
    154   1.1      groo 
    155   1.1      groo 
    156   1.1      groo #define MAX(x, y)  (((x) > (y)) ? (x) : (y))
    157   1.1      groo 	if (!width) {
    158   1.1      groo 		width = longestname(ebis, ns);
    159   1.1      groo 		width = MAX(((79 - ns) / ns), width);
    160   1.1      groo 	}
    161   1.1      groo 
    162   1.1      groo 	/* Mark which sensor numbers are to be displayed */
    163   1.1      groo 	if (marksensors(ebis, cetds, sensors, ns) == -1)
    164   1.1      groo 		exit(1);
    165   1.1      groo 
    166   1.6  explorer 	if (rflag) {
    167   1.6  explorer 		int i;
    168   1.6  explorer 
    169   1.6  explorer 		for (i = 0 ; i < ns ; i++) {
    170   1.6  explorer 			if (ebis[i].units == ENVSYS_INDICATOR) {
    171   1.6  explorer 				if (etds[i].cur.data_s) {
    172   1.6  explorer 					printf("%*.*s\n",
    173   1.6  explorer 					    (int)width,
    174   1.6  explorer 					    (int)width,
    175   1.6  explorer 					    ebis[i].desc);
    176   1.6  explorer 				}
    177   1.6  explorer 				continue;
    178   1.6  explorer 			}
    179   1.6  explorer 
    180   1.6  explorer 			if (ebis[i].units == ENVSYS_INTEGER) {
    181   1.6  explorer 				printf("%*.*s:", (int)width, (int)width,
    182   1.6  explorer 				       ebis[i].desc);
    183   1.6  explorer 				printf(" %10d\n", etds[i].cur.data_s);
    184   1.6  explorer 				continue;
    185   1.6  explorer 			}
    186   1.6  explorer 
    187   1.6  explorer 			printf("%*.*s:", (int)width, (int)width, ebis[i].desc);
    188   1.9     chris 			/* different units need some magic */
    189   1.9     chris 			switch (ebis[i].units)
    190   1.9     chris 			{
    191   1.9     chris 			     	case ENVSYS_INDICATOR:
    192   1.9     chris 					printf(" %10s", etds[i].cur.data_us ?
    193   1.9     chris 					    "ON" : "OFF");
    194   1.9     chris 					break;
    195   1.9     chris 				case ENVSYS_STEMP:
    196   1.9     chris 					{
    197   1.9     chris 					     	double temp =
    198   1.9     chris 						    (etds[i].cur.data_s / 1000000.0)
    199   1.9     chris 						    - 273.15;
    200   1.9     chris 						if (celsius)
    201   1.9     chris 							printf(" %10.3f degC",
    202   1.9     chris 							    temp);
    203   1.9     chris 						else
    204   1.9     chris 						{
    205   1.9     chris 							temp = (9.0 / 5.0) * temp + 32.0;
    206   1.9     chris 							printf(" %10.3f degF",
    207   1.9     chris 							    temp);
    208   1.9     chris 						}
    209   1.9     chris 					}
    210   1.9     chris 					break;
    211   1.9     chris 				case ENVSYS_SFANRPM:
    212   1.9     chris 					printf(" %10u RPM",
    213   1.9     chris 					    etds[i].cur.data_us);
    214   1.9     chris 					break;
    215   1.9     chris 				default:
    216   1.9     chris 					printf(" %10.3f %s",
    217   1.9     chris 					    etds[i].cur.data_s / 1000000.0,
    218   1.9     chris 					    unit_str[ebis[i].units]);
    219   1.9     chris 					break;
    220   1.9     chris 			}
    221   1.6  explorer 			if (etds[i].validflags & ENVSYS_FFRACVALID) {
    222   1.6  explorer 				printf(" (%5.2f%%)",
    223   1.6  explorer 				    (etds[i].cur.data_s * 100.0) /
    224   1.6  explorer 				    etds[i].max.data_s);
    225   1.6  explorer 			}
    226   1.6  explorer 
    227   1.6  explorer 			printf("\n");
    228   1.6  explorer 		}
    229  1.10  christos 		exit(0);
    230   1.6  explorer 	}
    231   1.6  explorer 
    232   1.6  explorer 
    233   1.6  explorer 
    234   1.1      groo 	/* If we didn't specify an interval value, print the sensors once */
    235   1.1      groo 	if (!interval) {
    236   1.1      groo 		if (headrep)
    237   1.1      groo 			header(width, celsius, ebis, cetds, ns);
    238   1.1      groo 		values(width, celsius, etds, cetds, ns);
    239   1.1      groo 
    240   1.1      groo 		exit (0);
    241   1.1      groo 	}
    242   1.1      groo 
    243   1.1      groo 	headcnt = 0;
    244   1.1      groo 	if (headrep)
    245   1.1      groo 		header(width, celsius, ebis, cetds, ns);
    246   1.1      groo 
    247   1.1      groo         for (;;) {
    248   1.1      groo 		values(width, celsius, etds, cetds, ns);
    249   1.1      groo 		if (headrep && (++headcnt == headrep)) {
    250   1.1      groo 			headcnt = 0;
    251   1.1      groo 			header(width, celsius, ebis, cetds, ns);
    252   1.1      groo 		}
    253   1.1      groo 
    254   1.1      groo 		sleep(interval);
    255   1.1      groo 
    256   1.3   thorpej 		if (fillsensors(fd, etds, ebis, ns) == -1)
    257   1.3   thorpej 			errx(1, E_CANTENUM);
    258   1.1      groo 	}
    259   1.1      groo 
    260   1.1      groo 	/* NOTREACHED */
    261   1.1      groo 	return (0);
    262   1.1      groo }
    263   1.1      groo 
    264   1.1      groo 
    265   1.1      groo /*
    266   1.1      groo  * pre:  cetds[i] != 0 iff sensor i should appear in the output
    267   1.1      groo  * post: a column header line is displayed on stdout
    268   1.1      groo  */
    269   1.1      groo void
    270   1.7  augustss header(unsigned width, int celsius, envsys_basic_info_t *ebis,
    271   1.7  augustss        const int * const cetds, int ns)
    272   1.1      groo {
    273   1.1      groo 	int i;
    274   1.1      groo 	const char *s;
    275   1.1      groo 
    276   1.1      groo 	/* sensor names */
    277   1.1      groo 	for (i = 0; i < ns; ++i)
    278   1.1      groo 		if (cetds[i])
    279   1.1      groo 			printf(" %*.*s", (int)width, (int)width, ebis[i].desc);
    280   1.1      groo 
    281   1.1      groo 	printf("\n");
    282   1.1      groo 
    283   1.1      groo 	/* units */
    284   1.1      groo 	for (i = 0; i < ns; ++i)
    285   1.1      groo 		if (cetds[i]) {
    286   1.1      groo 			if ((ebis[i].units == ENVSYS_STEMP) &&
    287   1.1      groo 			    !celsius)
    288   1.1      groo 				s = "degF";
    289   1.6  explorer 			else if (ebis[i].units >= ENVSYS_NSENSORS)
    290   1.6  explorer 				s = unit_str[ENVSYS_NSENSORS];
    291   1.1      groo 			else
    292   1.1      groo 				s = unit_str[ebis[i].units];
    293   1.6  explorer 
    294   1.1      groo 			printf(" %*.*s", (int)width, (int)width, s);
    295   1.1      groo 		}
    296   1.1      groo 	printf("\n");
    297   1.1      groo }
    298   1.1      groo 
    299   1.1      groo void
    300   1.7  augustss values(unsigned width, int celsius, envsys_tre_data_t *etds,
    301   1.7  augustss        const int * const cetds, int ns)
    302   1.1      groo {
    303   1.1      groo 	int i;
    304   1.1      groo 	double temp;
    305   1.6  explorer 
    306   1.1      groo 	for (i = 0; i < ns; ++i)
    307   1.1      groo 		if (cetds[i]) {
    308   1.1      groo 
    309   1.1      groo 			/* * sensors without valid data */
    310   1.1      groo 			if ((etds[i].validflags & ENVSYS_FCURVALID) == 0) {
    311   1.1      groo 				printf(" %*.*s", (int)width, (int)width, "*");
    312   1.1      groo 				continue;
    313   1.1      groo 			}
    314   1.1      groo 
    315   1.1      groo 			switch(etds[i].units) {
    316   1.6  explorer 			case ENVSYS_INDICATOR:
    317   1.6  explorer 				printf(" %*.*s", (int)width, (int)width,
    318   1.6  explorer 				    etds[i].cur.data_us ? "ON" : "OFF");
    319   1.6  explorer 				break;
    320   1.1      groo 			case ENVSYS_STEMP:
    321   1.1      groo 				temp = (etds[i].cur.data_us / 1000000.0) -
    322   1.1      groo 				    273.15;
    323   1.1      groo 				if (!celsius)
    324   1.1      groo 					temp = (9.0 / 5.0) * temp + 32.0;
    325   1.1      groo 				printf(" %*.2f", width, temp);
    326   1.1      groo 				break;
    327   1.1      groo 			case ENVSYS_SFANRPM:
    328   1.1      groo 				printf(" %*u", width, etds[i].cur.data_us);
    329   1.1      groo 				break;
    330   1.1      groo 			default:
    331   1.1      groo 				printf(" %*.2f", width, etds[i].cur.data_s /
    332   1.1      groo 				       1000000.0);
    333   1.1      groo 				break;
    334   1.1      groo 			}
    335   1.1      groo 		}
    336   1.1      groo 	printf("\n");
    337   1.1      groo }
    338   1.1      groo 
    339   1.1      groo 
    340   1.1      groo /*
    341   1.1      groo  * post: displays usage on stderr
    342   1.1      groo  */
    343   1.1      groo void
    344   1.7  augustss usage(void)
    345   1.1      groo {
    346   1.5       cgd 
    347   1.5       cgd 	fprintf(stderr, "usage: %s [-c] [-s s1,s2,...]", getprogname());
    348   1.4  augustss 	fprintf(stderr, " [-i interval] [-n headrep] [-w width] [device]\n");
    349   1.4  augustss 	fprintf(stderr, "       envstat -l [device]\n");
    350   1.1      groo 	exit(1);
    351   1.1      groo }
    352   1.1      groo 
    353   1.1      groo 
    354   1.1      groo /*
    355   1.1      groo  * post: a list of sensor names supported by the device is displayed on stdout
    356   1.1      groo  */
    357   1.1      groo void
    358   1.7  augustss listsensors(envsys_basic_info_t *ebis, int ns)
    359   1.1      groo {
    360   1.1      groo 	int i;
    361   1.1      groo 
    362   1.1      groo 	for (i = 0; i < ns; ++i)
    363   1.1      groo 		if (ebis[i].validflags & ENVSYS_FVALID)
    364   1.1      groo 			printf("%s\n", ebis[i].desc);
    365   1.1      groo }
    366   1.1      groo 
    367   1.6  explorer 
    368   1.1      groo /*
    369   1.1      groo  * pre:  fd contains a valid file descriptor of an envsys(4) supporting device
    370   1.1      groo  * post: returns the number of valid sensors provided by the device
    371   1.1      groo  *       or -1 on error
    372   1.1      groo  */
    373   1.1      groo int
    374   1.7  augustss numsensors(int fd)
    375   1.1      groo {
    376   1.1      groo 	int count = 0, valid = 1;
    377   1.1      groo 	envsys_tre_data_t etd;
    378   1.1      groo 	etd.sensor = 0;
    379   1.1      groo 
    380   1.1      groo 	while (valid) {
    381   1.1      groo 		if (ioctl(fd, ENVSYS_GTREDATA, &etd) == -1) {
    382   1.1      groo 			fprintf(stderr, E_CANTENUM);
    383   1.1      groo 			exit(1);
    384   1.1      groo 		}
    385   1.1      groo 
    386   1.1      groo 		valid = etd.validflags & ENVSYS_FVALID;
    387   1.1      groo 		if (valid)
    388   1.1      groo 			++count;
    389   1.1      groo 
    390   1.1      groo 		++etd.sensor;
    391   1.1      groo 	}
    392   1.1      groo 
    393   1.1      groo 	return count;
    394   1.1      groo }
    395   1.1      groo 
    396   1.1      groo /*
    397   1.1      groo  * pre:  fd contains a valid file descriptor of an envsys(4) supporting device
    398   1.1      groo  *       && ns is the number of sensors
    399   1.1      groo  *       && etds and ebis are arrays of sufficient size
    400   1.1      groo  * post: returns 0 and etds and ebis arrays are filled with sensor info
    401   1.1      groo  *       or returns -1 on failure
    402   1.1      groo  */
    403   1.1      groo int
    404   1.7  augustss fillsensors(int fd, envsys_tre_data_t *etds, envsys_basic_info_t *ebis, int ns)
    405   1.1      groo {
    406   1.1      groo 	int i;
    407   1.1      groo 
    408   1.1      groo 	for (i = 0; i < ns; ++i) {
    409   1.1      groo 		ebis[i].sensor = i;
    410   1.1      groo 		if (ioctl(fd, ENVSYS_GTREINFO, &ebis[i]) == -1)
    411   1.1      groo 			return -1;
    412   1.1      groo 
    413   1.1      groo 		etds[i].sensor = i;
    414   1.1      groo 		if (ioctl(fd, ENVSYS_GTREDATA, &etds[i]) == -1)
    415   1.1      groo 			return -1;
    416   1.1      groo 	}
    417   1.1      groo 
    418   1.1      groo 	return 0;
    419   1.1      groo }
    420   1.1      groo 
    421   1.1      groo 
    422   1.1      groo /*
    423   1.1      groo  * post: returns the strlen() of the longest sensor name
    424   1.1      groo  */
    425   1.1      groo int
    426   1.7  augustss longestname(envsys_basic_info_t *ebis, int ns)
    427   1.1      groo {
    428   1.1      groo 	int i, maxlen, cur;
    429   1.1      groo 
    430   1.1      groo 	maxlen = 0;
    431   1.1      groo 
    432   1.1      groo 	for (i = 0; i < ns; ++i) {
    433   1.1      groo 		cur = strlen(ebis[i].desc);
    434   1.1      groo 		if (cur > maxlen)
    435   1.1      groo 			maxlen = cur;
    436   1.1      groo 	}
    437   1.1      groo 
    438   1.1      groo 	return maxlen;
    439   1.1      groo }
    440   1.1      groo 
    441   1.1      groo /*
    442   1.1      groo  * post: returns 0 and cetds[i] != 0 iff sensor i should appear in the output
    443   1.1      groo  *       or returns -1
    444   1.1      groo  */
    445   1.1      groo int
    446   1.7  augustss marksensors(envsys_basic_info_t *ebis, int *cetds, char *sensors, int ns)
    447   1.1      groo {
    448   1.1      groo 	int i;
    449   1.1      groo 	char *s;
    450   1.1      groo 
    451   1.1      groo 	if (sensors == NULL) {
    452   1.1      groo 		/* No sensors specified, include them all */
    453   1.1      groo 		for (i = 0; i < ns; ++i)
    454   1.1      groo 			cetds[i] = 1;
    455   1.1      groo 
    456   1.1      groo 		return 0;
    457   1.1      groo 	}
    458   1.1      groo 
    459   1.1      groo 	/* Assume no sensors in display */
    460   1.1      groo 	memset(cetds, 0, ns * sizeof(int));
    461   1.1      groo 
    462   1.1      groo 	s = strtok(sensors, ",");
    463   1.1      groo 	while (s != NULL) {
    464   1.1      groo 		if ((i = strtosnum(ebis, s, ns)) != -1)
    465   1.1      groo 			cetds[i] = 1;
    466   1.1      groo 		else {
    467   1.1      groo 			fprintf(stderr, "envstat: unknown sensor %s\n", s);
    468   1.1      groo 			return (-1);
    469   1.1      groo 		}
    470   1.1      groo 
    471   1.1      groo 		s = strtok(NULL, ",");
    472   1.1      groo 	}
    473   1.1      groo 
    474   1.1      groo 	/* Check if we have at least one sensor selected for output */
    475   1.1      groo 	for (i = 0; i < ns; ++i)
    476   1.1      groo 		if (cetds[i] == 1)
    477   1.1      groo 			return (0);
    478   1.1      groo 
    479   1.1      groo 	fprintf(stderr, "envstat: no sensors selected for display\n");
    480   1.1      groo 	return (-1);
    481   1.1      groo }
    482   1.6  explorer 
    483   1.1      groo 
    484   1.1      groo /*
    485   1.1      groo  * returns -1 if s is not a valid sensor name for the device
    486   1.1      groo  *       or the sensor number of a sensor which has that name
    487   1.1      groo  */
    488   1.1      groo int
    489   1.7  augustss strtosnum(envsys_basic_info_t *ebis, const char *s, int ns)
    490   1.1      groo {
    491   1.1      groo 	int i;
    492   1.1      groo 
    493   1.1      groo 	for (i = 0; i < ns; ++i) {
    494   1.1      groo 		if((ebis[i].validflags & ENVSYS_FVALID) &&
    495   1.1      groo 		   !strcmp(s, ebis[i].desc))
    496   1.1      groo 			return ebis[i].sensor;
    497   1.1      groo 	}
    498   1.1      groo 
    499   1.1      groo 	return -1;
    500   1.1      groo }
    501