File: nws_extract.c

package info (click to toggle)
nws 2.11-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,700 kB
  • ctags: 2,820
  • sloc: ansic: 28,849; sh: 3,289; java: 1,205; makefile: 697; perl: 12
file content (994 lines) | stat: -rw-r--r-- 30,745 bytes parent folder | download
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
/* $Id: nws_extract.c,v 1.92 2004/11/02 01:27:21 graziano Exp $ */

#include "config_nws.h"
#include <ctype.h>       /* isalpha() isspace() */
#include <stdio.h>       /* printf() */
#include <unistd.h>      /* getopt() sleep() */
#include <stdlib.h>
#include <sys/types.h>   /* size_t */
#include <stdarg.h>      /* Variable parameter stuff. */
#include <string.h>      /* strchr(), strncasecmp() strstr() */
#include <strings.h>     /* strncasecmp() on aix */
#include <time.h>        /* time() */

#include "diagnostic.h" 
#define NWSAPI_SHORTNAMES
#include "nws_api.h"     /* NWS programming interface */


/*
** This program allows command-line extraction and display of the measurements
** and forecasts generated by the NWS.  See the user's guide for a description
** of the command-line options.
*/


#define SAFE_STRCPY(to, from) \
  do {strncpy(to, from, sizeof(to)); to[sizeof(to) - 1] = '\0'; if (1) break;} while (0)

#define NUMERIC_WIDTH 12

/*
** Returns #str# trimmed down to at most #len# characters.  The trimming is
** done by removing all trailing characters of words that begin with a capital
** letter, as well as any excess whitespace.  If this is not sufficient,
** trailing characters are truncated.
*/
static const char *
Abbreviate(const char *str,
           size_t len) {

  static char returnValue[255 + 1];
  char *end;
  const char *from;
  int leftToTrim;
  char *to;

  leftToTrim = strlen(str) - len;
  if(leftToTrim <= 0)
    return str; /* It's already short enough. */

  end = &returnValue[len];
  from = str;
  to = returnValue;

  while((to < end) && (leftToTrim > 0)) {
    if(isupper((int)*from)) {
      /* Trim everything to the end of the word except the initial capital. */
      *to++ = *from++;
      while((*from != '\0') && !isspace((int)*from)) {
        from++;
        leftToTrim--;
      }
    }
    else {
      /* No initial capital; copy the whole word and a trailing space. */
      while((to < end) && !isspace((int)*from))
        *to++ = *from++;
      if(to < end)
        *to++ = *from++;
    }
    /* Eliminate any excess whitespace. */
    while(isspace((int)*from) && (leftToTrim > 0)) {
      from++;
      leftToTrim--;
    }
  }

  /* Add a terminating nul, plus any trailing characters we have room for */
  strcpy(to, (leftToTrim <= 0) ? from : "");
  return returnValue;

}


/*
** Appends the #count# strings passed after the third parameter to the
** #len#-long string #dest#.  Terminates #dest# with a nul character.  Returns
** the number of characters appended.
*/
static int
MultiCat(char *dest,
         size_t len,
         int count,
         ...) {

  va_list paramList;
  int i;
  const char *source;
  char *end = dest + len - 1;
  char *next;

  next = dest + strlen(dest);
  va_start(paramList, count);
  for (i = 0; i < count; i++) {
    for (source = va_arg(paramList, const char*);
         (next < end) && (*source != '\0'); next++, source++)
      *next = *source;
  }
  *next = '\0';
  va_end(paramList);
  return next - dest;

}


/*
** Returns #str# padded on #where# to a total length (not including the
** terminating nul) of #len#.
*/
typedef enum {PAD_CENTER, PAD_LEFT, PAD_RIGHT} PadTypes;
static const char *
PadString(const char *str,
          size_t len,
          PadTypes where) {

  static char returnValue[255 + 1];
  size_t padding;
  size_t strSize = strlen(str);

  if(strSize > len)
    return str;  /* No room for any padding. */

  memset(returnValue, ' ', sizeof(returnValue));
  padding = len - strSize;
  strncpy(returnValue + ((where == PAD_CENTER) ? (padding / 2) :
                         (where == PAD_LEFT) ? padding : 0), str, strSize);
  returnValue[len] = '\0';
  return returnValue;

}


/*
** Returns #str# with all occurrences of #toReplace# changed to #replacement#.
*/
static const char *
ReplaceAll(const char *str,
           char toReplace,
           char replacement) {
  char *c;
  static char returnValue[255 + 1];
  SAFE_STRCPY(returnValue, str);
  for(c = returnValue; *c != '\0'; c++) {
    if(*c == toReplace)
      *c = replacement;
  }
  return returnValue;
}


/*
** Returns #str# with any trailing whitespace removed.
*/
static const char *
TrimString(const char *str) {
  static char returnValue[255 + 1];
  char *c;
  SAFE_STRCPY(returnValue, str);
  for(c = returnValue + strlen(returnValue) - 1;
      (c >= returnValue) && isspace((int)*c); c--)
    ; /* Nothing more to do. */
  *(c + 1) = '\0';
  return returnValue;
}


/*
** Info about series used to compute a running forecast and map series names
** back to host and resource names.
*/
typedef struct {
  char name[255 + 1];
  SeriesSpec series;
  ForecastState *forecast;
} SeriesInfo;


/**
 * Look through the #howManySeries#-long array #series# to make sure every
 * source/destination pair of the #howManySources#-long array #sources# and the
 * #howManyDests#-long array #dests# has an entry.  (#howManyDests# may be
 * zero, in which case only source coverage is checked.)  Prints a message to
 * stdout warning the user about any missing series.
 */
static void
CheckSeriesCoverage(	const SeriesInfo *series,
			size_t howManySeries,
			const char **sources,
			size_t howManySources,
			const char **dests,
			size_t howManyDests,
			const char *resourceName) {
	char covered[255];
	int coveredIndex;
	const char **currentDest;
	const SeriesInfo *currentSeries;
	const char **currentSource;
	int destIndex;
	const char **endOfDests;
	const SeriesInfo *endOfSeries;
	const char **endOfSources;
	int sourceIndex;

	endOfDests = (howManyDests == 0) ? NULL : (dests + howManyDests);
	endOfSeries = series + howManySeries;
	endOfSources = sources + howManySources;
	memset(covered, 0, sizeof(covered));

	for(currentSeries = series; currentSeries < endOfSeries; currentSeries++) {
		for(currentSource=sources; currentSource < endOfSources; currentSource++) {
			if(strncmp(currentSeries->series.sourceMachine, *currentSource, strlen(*currentSource)) == 0) {
				if(howManyDests == 0) {
					coveredIndex = currentSource - sources;
					if (covered[coveredIndex])
						; /* TBD Multiple series mapping to one source. */
					covered[coveredIndex] = 1;
					break;
				} else {
					for(currentDest = dests; currentDest < endOfDests; currentDest++) {
						if (strncmp(currentSeries->series.destinationMachine, *currentDest, strlen(*currentDest)) == 0) {
							coveredIndex = (currentSource - sources) * howManySources + currentDest - dests;
							if (covered[coveredIndex])
								; /* TBD Multiple series mapping to one source/dest pair. */
							covered[coveredIndex] = 1;
							break;
						}
					}
					if (currentDest < endOfDests)
						break;
				}
			}
		}
	}

	for(coveredIndex = (howManyDests == 0) ?  (howManySources - 1) : (howManySources * howManyDests - 1); coveredIndex >= 0; coveredIndex--) {
		if (!covered[coveredIndex]) {
			if (howManyDests == 0) {
				ERROR2("No %s series available from %s; ignored\n", resourceName, sources[coveredIndex]);
			} else {
				sourceIndex = coveredIndex / howManyDests;
				destIndex = coveredIndex % howManyDests;
				if (strcmp(sources[sourceIndex], dests[destIndex]) != 0)
					ERROR3("No %s series available from %s to %s; ignored\n", resourceName, sources[sourceIndex], dests[destIndex]);
			}
		}
	}
}


#define SIGNIFICANT_HISTORY 1000


/*
** Fetches measurements for #seriesName# taken since #sinceWhen# and uses them
** to compute in #stateToUse# and return up to #atMost# forecasts in #whereTo#.
** If successful, returns 1 and sets #numberReturned# to the number of
** forecasts copied into #where#; otherwise, returns 0.
*/
int
ExtractForecasts(const char *seriesName,
                 double sinceWhen,
                 ForecastState *stateToUse,
                 NWSAPI_ForecastCollection *whereTo,
                 size_t atMost,
                 size_t *numberReturned) {

  size_t historySize;
  static Measurement *measurements = NULL;

  /*
  ** Retrieve enough history to generate reasonably accurate forecasts even if
  ** the user wants only a few measurements,
  */
  historySize = (SIGNIFICANT_HISTORY > atMost) ? SIGNIFICANT_HISTORY : atMost;

  if(measurements == NULL) {
    measurements = (Measurement *)malloc(historySize * sizeof(Measurement));
    if(measurements == NULL) {
      ERROR("ExtractForecasts: malloc failed\n");
      return 0;
    }
  }

  if(!GetMeasurements(seriesName,
                      sinceWhen,
                      measurements,
                      historySize,
                      &historySize)) {
    ERROR1("ExtractForecasts: unable to retrieve measurements for series %s\n", seriesName);
    return 0;
  }


  UpdateForecastState(stateToUse, measurements, historySize, whereTo, atMost);
  *numberReturned = (atMost < historySize) ? atMost : historySize;
  return 1;

}


typedef enum {
  DESTINATION, MAE_ERROR, MAE_PREDICTION, MAE_METHOD, MEASUREMENT,
  MSE_ERROR, MSE_PREDICTION, MSE_METHOD, RESOURCE, SOURCE, TIME
} Fields;
typedef enum {
  FIELD_NAME, FIELD_VALUE, FIELD_WIDTH
} FieldNwsAttributes;
#define FORECAST_FIELD_COUNT (TIME + 1)


/*
 * Formats the fields of #collection# and #series# listed in the
 * #howManyFields#-long array #fieldsDesired# and returns the result.  The
 * #howManyFields#-long array #whichNwsAttributes# specifies, for each field,
 * whether the field value, padding blanks, or the field name should be
 * included in the image.
 */
static const char *
ForecastCollectionImage(	const SeriesSpec *series,
				const ForecastCollection *collection,
				const Fields *fieldsDesired,
				const FieldNwsAttributes *whichNwsAttributes,
				size_t howManyFields) {
	char fieldValue[127 + 1];
	int i;
	char *nextChar;
	Fields printField;
	static const size_t FIELD_WIDTHS[FORECAST_FIELD_COUNT] = {32, NUMERIC_WIDTH, NUMERIC_WIDTH, 15, NUMERIC_WIDTH, NUMERIC_WIDTH, NUMERIC_WIDTH, 15, 20, 32, 11};
	static const char* HEADERS[FORECAST_FIELD_COUNT] =
		{"Destination", "MAE Err", "MAE Fore", "MAE Method", "Measure",
		"MSE Err", "MSE Fore", "MSE Method", "Resource", "Source", 
		"Time"};
	static char returnValue[255 + 1];

	nextChar = returnValue;
	for(i = 0; i < howManyFields; i++) {
		printField = fieldsDesired[i];
		if(whichNwsAttributes[i] == FIELD_WIDTH) {
			fieldValue[0] = '\0';
		} else if(whichNwsAttributes[i] == FIELD_NAME) {
			SAFE_STRCPY(fieldValue, HEADERS[printField]);
		} else if(printField == DESTINATION) {
			SAFE_STRCPY(fieldValue, series->destinationMachine); 
		} else if(printField == MAE_ERROR) {
			sprintf(fieldValue, "%.*g", NUMERIC_WIDTH, collection->forecasts[MAE_FORECAST].error);
		} else if(printField == MAE_PREDICTION) {
			sprintf(fieldValue, "%.*g", NUMERIC_WIDTH, collection->forecasts[MAE_FORECAST].forecast);
		} else if(printField == MAE_METHOD) {
			SAFE_STRCPY(fieldValue, MethodName(collection->forecasts[MAE_FORECAST].methodUsed));
		} else if(printField == MEASUREMENT) {
			sprintf(fieldValue, "%.*g", NUMERIC_WIDTH, collection->measurement.measurement);
		} else if(printField == MSE_ERROR) {
			sprintf(fieldValue, "%.*g", NUMERIC_WIDTH, collection->forecasts[MSE_FORECAST].error);
		} else if(printField == MSE_PREDICTION) {
			sprintf(fieldValue, "%.*g", NUMERIC_WIDTH, collection->forecasts[MSE_FORECAST].forecast);
		} else if(printField == MSE_METHOD) {
			SAFE_STRCPY(fieldValue, MethodName(collection->forecasts[MSE_FORECAST].methodUsed));
		} else if(printField == RESOURCE) {
			SAFE_STRCPY(fieldValue, series->resourceName);
		} else if(printField == SOURCE) {
			SAFE_STRCPY(fieldValue, series->sourceMachine);
		} else if(printField == TIME) {
			sprintf(fieldValue, "%d", (int)collection->measurement.timeStamp);
		}
		strcpy(fieldValue, Abbreviate(fieldValue, FIELD_WIDTHS[printField] - 1));
		strcpy(fieldValue, ReplaceAll(fieldValue, ' ', '_'));
		strcpy(nextChar, PadString(fieldValue,FIELD_WIDTHS[printField],PAD_RIGHT));
		nextChar += FIELD_WIDTHS[printField];
	}
	return TrimString(returnValue);
}


/*
 * Prints those fields of #series# and #forecast# included in the
 * #howManyFields#-long array *fieldsToPrint# to stdout.  #headerFrequency#
 * indicates how often header information should be interspersed among field
 * values.
 */
static void
PrintForecastCollection(int headerFrequency,
                        const SeriesSpec *series,
                        const ForecastCollection *forecast,
                        const Fields *fieldsToPrint,
                        size_t howManyFields) {
	int i, src = -1, dst = -1;
	FieldNwsAttributes printControl[FORECAST_FIELD_COUNT];
	static SeriesSpec priorSeries = {"", "", ""};
	static int callsUntilHeader = 0;

	if((headerFrequency > 0) && (callsUntilHeader == 0)) {
		for(i = 0; i < howManyFields; i++) {
			printControl[i] = FIELD_NAME;
		}
		printf("%s\n",
		ForecastCollectionImage(NULL,
                                   NULL,
                                   fieldsToPrint,
                                   printControl,
                                   howManyFields));
		for(i = 0; i < howManyFields; i++) {
			printControl[i] = FIELD_VALUE;
		}
		callsUntilHeader = headerFrequency - 1;
	} else {
		if(headerFrequency > 0) {
			callsUntilHeader--;
		}
		for(i = 0; i < howManyFields; i++) {
			if((fieldsToPrint[i] == RESOURCE) && (strcmp(series->resourceName, priorSeries.resourceName) == 0)) {
				printControl[i] = FIELD_WIDTH;
			} else { 
				if (fieldsToPrint[i] == DESTINATION) 
					dst = i;
				else if (fieldsToPrint[i] == SOURCE) 
					src = i;
				printControl[i] = FIELD_VALUE;
			}
		}
	}

	/* let's check if we already printed our source/destination: we
	 * have to be careful at the paired resource to consider
	 * source/destination as a single entity */
  	if (src == -1) {
		if (dst != -1 && (strcmp(series->destinationMachine, 
				priorSeries.destinationMachine) == 0)) {
		        printControl[dst] = FIELD_WIDTH;
		}
	} else if(strcmp(series->sourceMachine,priorSeries.sourceMachine)==0) {
		if (dst == -1) {
		        printControl[src] = FIELD_WIDTH;
		} else if (strcmp(series->destinationMachine, 
				priorSeries.destinationMachine) == 0) {
		        printControl[src] = FIELD_WIDTH;
		        printControl[dst] = FIELD_WIDTH;
		}
	}
	printf("%s\n", ForecastCollectionImage(series,
                                 forecast,
                                 fieldsToPrint,
                                 printControl,
                                 howManyFields));
	fflush(stdout);
	priorSeries = *series;
}


/*
** Retrieves from the name server registrations for all series matching
** #filter# that have a source equal to any element of the #sourceCount#-long
** array #sources# and their source and a destination equal to any element of
** the #destCount#-long array #dests#.  #destCount# may be zero, in which case
** #dests# is ignored.  Returns an array of series info for the retrieved
** registration and sets #seriesCount# to its length.  Returns NULL on error.
*/
static SeriesInfo *
RetrieveSeriesInfo(	const char **sources,
			int sourceCount,
			const char **dests,
			int destCount,
			const char *filter,
			int *seriesCount) {
	char *attrName, *attrValue;
	SeriesInfo currentSeries;
	char fullFilter[4095 + 1] = "";
	int hostIndex;
	SeriesInfo *returnValue;
	NwsAttribute seriesNwsAttribute;
	Object seriesObject;
	ObjectSet seriesObjectSet;

	/* Combine #filter#, #sources# and, optionally, #dests# into a
	 * name server retrieval filter:
	 * (&(objectclass=nwsSeries)<filter>(|(source=<source>)...)(|(dest=<dest)...))
	 * The host names appear in the registration as <machine>:<port>;
	 * we allow the user to drop the port and the full qualification
	 * of the machine. */
	MultiCat(fullFilter, sizeof(fullFilter), 4, "(&", SERIES, filter, "(|");
	for(hostIndex = 0; hostIndex < sourceCount; hostIndex++) {
		MultiCat(fullFilter, sizeof(fullFilter), 5,
			"(", HOST_ATTR, "=", sources[hostIndex],
			(strchr(sources[hostIndex], ':') != NULL) ? ")" :
			(strchr(sources[hostIndex], '.') != NULL) ? ":*)" : "*)");
	}
	if(destCount != 0) {
		MultiCat(fullFilter, sizeof(fullFilter), 2, ")", "(|");
		for(hostIndex = 0; hostIndex < destCount; hostIndex++) {
			MultiCat(fullFilter, sizeof(fullFilter), 5,
				"(", TARGET_ATTR, "=", dests[hostIndex],
				(strchr(dests[hostIndex], ':') != NULL) ? ")" :
				(strchr(dests[hostIndex], '.') != NULL) ? ":*)" : "*)");
		}
	}
	strcat(fullFilter, "))");

	if(!GetObjects(fullFilter, &seriesObjectSet)) {
		ERROR("RetrieveSeriesInfo: series retrieval failed\n");
		return NULL;
	}

	*seriesCount = 0;
	ForEachObject(seriesObjectSet, seriesObject) {
		(*seriesCount)++;
	}

	returnValue = malloc(*seriesCount * sizeof(SeriesInfo));
	if(returnValue == NULL) {
		FreeObjectSet(&seriesObjectSet);
		ERROR("RetrieveSeriesInfo: malloc failed\n");
		return NULL;
	}

	/* Parse each retrieved series into a SeriesInfo struct. */
	*seriesCount = 0;
	ForEachObject(seriesObjectSet, seriesObject) {
		SAFE_STRCPY(currentSeries.series.sourceMachine, "");
		SAFE_STRCPY(currentSeries.series.destinationMachine, "");
		SAFE_STRCPY(currentSeries.series.resourceName, "");
		SAFE_STRCPY(currentSeries.name, "");
		currentSeries.forecast = NewForecastState();
		if (currentSeries.forecast == NULL) {
			ABORT("out of memory\n");
		}

		ForEachNwsAttribute(seriesObject, seriesNwsAttribute) {
			attrName = NwsAttributeName_r(seriesNwsAttribute);
			if (attrName == NULL) {
				continue;
			}
			attrValue = NwsAttributeValue_r(seriesNwsAttribute);
			if (attrValue == NULL) {
				free(attrName);
				continue;
			}
			if(strcmp(attrName, TARGET_ATTR) == 0) {
				SAFE_STRCPY(currentSeries.series.destinationMachine, attrValue);
			} else if(strcmp(attrName, NAME_ATTR) == 0) {
				SAFE_STRCPY(currentSeries.name, attrValue);
			} else if(strcmp(attrName, RESOURCE_ATTR) == 0) {
				SAFE_STRCPY(currentSeries.series.resourceName, attrValue);
			} else if(strcmp(attrName, HOST_ATTR) == 0) {
				SAFE_STRCPY(currentSeries.series.sourceMachine, attrValue);
			}
			free(attrValue);
			free(attrName);
		}
		returnValue[(*seriesCount)++] = currentSeries;
	}

	FreeObjectSet(&seriesObjectSet);
	return returnValue;
}


static const char *FIELD_NAMES[] =
  {"destination", "mae_error", "mae_forecast", "mae_method", "measurement",
   "mse_error", "mse_forecast", "mse_method", "resource", "source", "time"};

/* Defaults for command-line values and NWS host ports. */
#define DEFAULT_DISPLAY_SIZE 20
#define DEFAULT_HEADER_FREQ 20
#define DEFAULT_FIELDS "time,measurement,mae_forecast,mae_error,mse_forecast,mse_error,source,destination,resource"
static const char *DEFAULT_RESOURCES[] = {
	DEFAULT_BANDWIDTH_RESOURCE, DEFAULT_AVAILABLE_CPU_RESOURCE,
	DEFAULT_CURRENT_CPU_RESOURCE, DEFAULT_LATENCY_RESOURCE,
	DEFAULT_MEMORY_RESOURCE
};
#define DEFAULT_RESOURCE_COUNT \
        (sizeof(DEFAULT_RESOURCES) / sizeof(DEFAULT_RESOURCES[0]))

#define SWITCHES "af:h:M:n:N:t:wv:VS"
void usage() {
	printf("\nUsage: nws_extract [OPTIONS] resource [filter] host [...]\n");
	printf("extraction utility for the Network Weather Service\n");
	printf("\nOPTIONS can be:\n");
	printf("\t-a                  treat all listed machines as experiment  sources.\n");
	printf("\t-f fieldlist        list of fields you would like to display\n");
	printf("\t-n #                get only # measurements/forecasts\n");
	printf("\t-h #                specify header frequency\n");
	printf("\t-t #                gets only measurements newer then #\n");
	printf("\t-M memory           use this NWS memory\n");
	printf("\t-N nameserver       use this NWS nameserver\n");
	printf("\t-w                  continuosly display informations\n");
	printf("\t-S                  there is no resource/filter/host but only series name\n");
	printf("\t-v level            verbose level (up to 5)\n");
	printf("\t-V                  print version\n");
	printf("\nresource is the resource you are interested in (use nws_search(1)\n to find out available resources on your NWS installation\n");
	printf("\nfilter is to be used in conjunction with the -N options. It specifies a\nfilter (as defined in nws_search(1))\n"); 
	printf("\nhost [...]  these  are  the  lists of hosts for which you are interested\nin getting the measurements.\n");
	printf("Report bugs to <nws@nws.cs.ucsb.edu>.\n\n");
}

int
main(		int argc,
		char *argv[]) {
	extern char *optarg;
	extern int optind;
	/* User-settable parameters. */
	int autoFetch = 0;
	int extractSingle = 1;
	int seriesNameOnly = 0;
	int headerFrequency = DEFAULT_HEADER_FREQ;
	size_t initialDisplaySize = DEFAULT_DISPLAY_SIZE;
	char printOrder[255 + 1];
	double sinceWhen = BEGINNING_OF_TIME;

	/* Other local variables. */
	Measurement meas;
	ForecastCollection currentForecast, *forecasts;
	char autoName[127 + 1];
	int extractCount;
	SeriesInfo *extractSeries;
	char *fieldBegin;
	char *fieldEnd;
	char filter[1023 + 1];
	const char **firstHost;
	char *nameServer;
	HostSpec host;
	int hostCount;
	int i, j;
	int interMachine = 0;
	int lookupSeries = 1;
	int opt;
	Fields printFields[FORECAST_FIELD_COUNT];
	size_t printFieldsLen;
	const char *resourceName;
	size_t returnedCount;
  	int verbose;

	verbose = 1;
	resourceName = NULL;

	fieldEnd = EnvironmentValue_r("EXTRACT_FIELDS", DEFAULT_FIELDS);
	if (fieldEnd == NULL) {
		ABORT("out of memory\n");
	}
	SAFE_STRCPY(printOrder, fieldEnd);
	FREE(fieldEnd);

	nameServer = NULL;

	while((opt = getopt(argc, argv, SWITCHES)) != EOF) {
		switch(opt) {
		case 'a':
			/* extract all known series amongst the hosts */
			extractSingle = 0;
			break;

		case 'f':
			SAFE_STRCPY(printOrder, optarg);
			break;

		case 'h':
			headerFrequency = (int)strtol(optarg, NULL, 10);
			break;

		case 'S':
			seriesNameOnly = 1;
			break;

		case 'M':
			host = *MakeHostSpec (optarg, GetDefaultPort(NWSAPI_MEMORY_HOST));
			if(!UseMemory(&host)) {
				ERROR2("Unable to contact memory %s:%d\n", host.machineName, host.machinePort);
				exit(1);
			}
			lookupSeries = 0;
			break;

		case 'n':
			initialDisplaySize = (int)strtol(optarg, NULL, 10);
			break;

		case 'N':
			nameServer = strdup(optarg);
			if (nameServer == NULL) {
				ERROR("Out of memory\n");
				exit(1);
			}
			break;

		case 't':
			sinceWhen = time(NULL) - strtol(optarg, NULL, 0);
			break;

		case 'w':
			autoFetch = 1;
			break;

		case 'v':
			verbose = (unsigned short)atol(optarg);
			break;

		case 'V':
			printf("nws_extract for NWS version %s", VERSION);
#ifdef HAVE_PTHREAD_H
			printf(", with thread support");
#endif
#ifdef WITH_DEBUG
			printf(", with debug support");
#endif
			printf("\n\n");
			exit(0);
			break;

		default:
			usage();
			exit(1);
			break;

		}
	}

	/* we need -M with -S */
	if (seriesNameOnly && lookupSeries) {
		printf("You need to specify the memory (-M) with -S\n");
		exit(1);
	}

	/* let's set the verbose level  and open up files (if needed) */
	/* fatal errors are always on */
	SetDiagnosticLevel(verbose, stderr, stderr);

	/* let's see if we have enough commandline options */
	if ((optind + (seriesNameOnly ? 0 : 1)) >= argc) {
		usage();
		exit(1);
	}

	/* if we have specified -S, we don't have any host/resource just
	 * series name */
	if (!seriesNameOnly) {
		/*
		 * Determine which resource we're being asked to extract
		 * and see if the user has specified the optional filter
		 * to distinguish between multiple series.
		 */
		resourceName = argv[optind++];
		opt = strlen(resourceName);
		for(i = 0; i < DEFAULT_RESOURCE_COUNT; i++) {
			if(strncasecmp(resourceName, DEFAULT_RESOURCES[i], opt) == 0) {
				resourceName = DEFAULT_RESOURCES[i];
				break;
			}
		}

		/* this is the extra filter specified by the user */
		filter[0] = '\0';
		if (*argv[optind] == '(') {
			MultiCat(filter, sizeof(filter), 7, "(&", argv[optind], "(", RESOURCE_ATTR, "=", resourceName, "))");
			if (optind++ >= argc) {
				usage();
				exit(1);
			}
		} else {
			MultiCat(filter, sizeof(filter), 5, "(", RESOURCE_ATTR, "=", resourceName, ")");
		}

		/* check if we have enough hosts for the experimente we've been
		 * asked */
		interMachine = IntermachineResource(resourceName);
		if (interMachine && ((optind + 1) >= argc)) {
			ABORT("You must specify at least one destination machine\n");
		}
	}

	/* Determine the field display order. */
	for(printFieldsLen = 0, fieldBegin = printOrder; ; fieldBegin = fieldEnd + 1) {
		fieldEnd = strchr(fieldBegin, ',');
		if(fieldEnd == NULL)
			fieldEnd = fieldBegin + strlen(fieldBegin);
		for(i = 0; i < FORECAST_FIELD_COUNT; i++) {
			if(strncasecmp(fieldBegin, FIELD_NAMES[i], fieldEnd - fieldBegin) == 0)
				break;
		}
		if(i == FORECAST_FIELD_COUNT) {
			ERROR1("Unknown field name %s\n", fieldBegin);
			exit(1);
		}
		/* Ignore destination for single-machine resources. */
		if(interMachine || ((Fields)i != DESTINATION))
			printFields[printFieldsLen++] = (Fields)i;
		if(*fieldEnd == '\0')
			break;
	}

	/* Get the information about the specified series */
	hostCount = argc - optind;
	firstHost = (const char **)&argv[optind];

	/* Select the default name server */
	if (nameServer) {
		host = *MakeHostSpec (nameServer, GetDefaultPort(NWSAPI_NAME_SERVER_HOST));
		if(!UseNameServer(&host)) {
			ERROR2("Unable to contact name server %s:%d\n", host.machineName, host.machinePort);
			exit(1);
		}
	} else if (!seriesNameOnly && lookupSeries) {
		HostSpec sensorSpec;

		sensorSpec = *MakeHostSpec(*firstHost, GetDefaultPort(NWSAPI_SENSOR_HOST));

		/* we need to ask the sensor for the nameserver */
		if (GetNameServer(&sensorSpec, &host)) {
			UseNameServer(&host);
		}
	}

	/* let's get the series */
	if (lookupSeries) {
		/* look for the series registered with the nameserver */
		extractSeries = RetrieveSeriesInfo(firstHost,
                                       (!interMachine || !extractSingle) ?
                                        hostCount : 1,
                                       firstHost + extractSingle,
                                       interMachine ? hostCount - 1 : 0,
                                       filter,
                                       &extractCount);
		if(extractSeries == NULL) {
			exit(1); 
		}
		CheckSeriesCoverage(extractSeries,
				extractCount,
				firstHost,
				(!interMachine || !extractSingle) ?  hostCount : 1,
				firstHost + extractSingle,
				interMachine ? hostCount - 1: 0,
				resourceName);
	} else if (seriesNameOnly) {
		/* we have a list of series */
		extractCount = hostCount;
		extractSeries = (SeriesInfo *)malloc(extractCount * sizeof(SeriesInfo));
		if (extractSeries == NULL) {
			ABORT("out of memory\n");
		}
		for(i = 0; i < extractCount; i++) {
			extractSeries[i].series.sourceMachine[0] = '\0';
			extractSeries[i].series.destinationMachine[0] = '\0';
			extractSeries[i].series.resourceName[0] = '\0';
			strcpy(extractSeries[i].name, firstHost[i]);
			extractSeries[i].forecast = NewForecastState();
			if (extractSeries[i].forecast == NULL) {
				ABORT("out of memory\n");
			}
		}
	} else {
		extractCount = !interMachine ? hostCount : !extractSingle ? (hostCount * (hostCount - 1)) : (hostCount - 1);
		extractSeries = (SeriesInfo *)malloc(extractCount * sizeof(SeriesInfo));
		if (extractSeries == NULL) {
			ABORT("out of memory\n");
		}

		/* let's generate the series specs */
		for (i = 0; i < extractCount; i++) {
			if (!interMachine) {
				strcpy(extractSeries[i].series.sourceMachine, firstHost[i]);
				strcpy(extractSeries[i].series.destinationMachine, "");
			} else {
				/* let's get the first host */
				j = extractCount / hostCount;

				/* the second host is in i % hostCount */
				if (j == i % hostCount && !extractSingle) {
					continue;
				}

				strcpy(extractSeries[i].series.sourceMachine, firstHost[j]);
				strcpy(extractSeries[i].series.destinationMachine, firstHost[(i + extractSingle) % hostCount]);
			}
			/* let's get the basics */
			strcpy(extractSeries[i].series.resourceName, resourceName);
			strcpy(extractSeries[i].name, SeriesName(&extractSeries[i].series));
			extractSeries[i].forecast = NewForecastState();
			if (extractSeries[i].forecast == NULL) {
				ABORT("out of memory\n");
			}

		}
	}

	forecasts = (ForecastCollection *) malloc(initialDisplaySize * sizeof(ForecastCollection));
	if(forecasts == NULL) {
		ERROR("malloc failed\n");
		exit(1);
	}

	/* Compute and print the initial forecast set for each series. */
	opt = 1;		/* failed by default */
	for(i = 0; i < extractCount; i++) {
		if(ExtractForecasts(extractSeries[i].name,
					sinceWhen,
					extractSeries[i].forecast,
					forecasts,
					initialDisplaySize,
					&returnedCount)) {
			if(returnedCount > 0) {
				for(j = returnedCount -1; j >= 0; j--) {
					currentForecast = forecasts[j];
					PrintForecastCollection(headerFrequency,
							&extractSeries[i].series,
							&currentForecast,
							printFields,
							printFieldsLen);
				}
				opt = 0;	/* we got at least 1 series */
			} else {
				if (extractSeries[i].series.sourceMachine[0] != '\0') {
					ERROR1("No measurements for %s\n", extractSeries[i].series.sourceMachine);
				} else {
					ERROR1("No measurements for %s\n", extractSeries[i].name);
				}
				if (!lookupSeries) {
					ERROR("you may want to try the -N option\n");
				}
			}
		}
		if (autoFetch) {
			(void)AutoFetchBegin(extractSeries[i].name);
		}

		fflush(stdout);
	}

	free(forecasts);

	/*  If requested, continue to display new measurements and
	 *  forecasts based on them as they come in. */
	while (autoFetch) {
		if (AutoFetchCheck(autoName, sizeof(autoName), &meas, 120)) {
			for(i = 0; i < extractCount; i++) {
				if (!strcmp(autoName, extractSeries[i].name)) {
					break;
				}
			}
			if(i == extractCount) {
				continue; /* Unknown series? */
			}

			UpdateForecastState(extractSeries[i].forecast,
					&meas,
					1,
					&currentForecast,
					1);
			PrintForecastCollection(headerFrequency,
					&extractSeries[i].series,
					&currentForecast,
					printFields,
					printFieldsLen);
		} else if (autoName[0] == '\0') {
			/* no message in the timeout */
			INFO("no message received\n");
		} else if (strchr(autoName, '\t')) {
			/* the memory connection failed: let's redo
			 * everything */
			for(i = 0; i < extractCount; i++) {
				(void)AutoFetchEnd(extractSeries[i].name);
			}
			for(i = 0; i < extractCount; i++) {
				(void)AutoFetchBegin(extractSeries[i].name);
			}
		} else {
			/* we got a problem on a single series */
			for(i = 0; i < extractCount; i++) {
				if (!strcmp(extractSeries[i].name, autoName)) {
					continue;
				}

				INFO1("restarting autofetch (%s)\n", autoName);
				(void)AutoFetchEnd(extractSeries[i].name);
				(void)AutoFetchBegin(extractSeries[i].name);
				break;
			}
		}
	}

	/* Tidy up. */
	for(i = 0; i < extractCount; i++) {
		FreeForecastState(&extractSeries[i].forecast);
	}
	free(extractSeries);

	return opt;
}