Input Scanning

2010-09-07 Thread Max Mayrhofer
Hi all, I have what is I suspect a silly question, but I am having a
total brainfart over this for some reason.  I want to read an
arbitrary amount of floats from user input and then perform some
statistics work on them. For some reason, I can't figure out how to
get it to recognise when the user has stopped entering values.  My
current code is:

void main(string[] args) {
Stat[] stats;
foreach (arg; args[1 .. $]) {
auto newStat = cast(Stat) Object.factory(main. ~
arg);
enforce(newStat, Invalid statistics function:  ~
arg);
stats ~= newStat;
}
for (double x; stdin.readf( %s , x) == 1; ) {
foreach (s; stats) {
s.accumulate(x);
}
}
foreach (s; stats) {
s.postprocess();
writeln(s.result());
}
}

At the moment it just crashes with a conversion error when invoked,
for example, with:

echo 3 1.6 17 | stats Min Average

I know my problem is the readf, but what would best practice be for
this situation?


Re: Input Scanning

2010-09-07 Thread Jonathan M Davis
On Tuesday 07 September 2010 09:55:29 Max Mayrhofer wrote:
 Hi all, I have what is I suspect a silly question, but I am having a
 total brainfart over this for some reason.  I want to read an
 arbitrary amount of floats from user input and then perform some
 statistics work on them. For some reason, I can't figure out how to
 get it to recognise when the user has stopped entering values.  My
 current code is:
 
 void main(string[] args) {
   Stat[] stats;
   foreach (arg; args[1 .. $]) {
   auto newStat = cast(Stat) Object.factory(main. ~
 arg);
   enforce(newStat, Invalid statistics function:  ~
 arg);
   stats ~= newStat;
   }
   for (double x; stdin.readf( %s , x) == 1; ) {
   foreach (s; stats) {
   s.accumulate(x);
   }
   }
   foreach (s; stats) {
   s.postprocess();
   writeln(s.result());
   }
 }
 
 At the moment it just crashes with a conversion error when invoked,
 for example, with:
 
 echo 3 1.6 17 | stats Min Average
 
 I know my problem is the readf, but what would best practice be for
 this situation?

Wouldn't the normal solution be to read in the entire line and then parse it 
rather than reaing in each value individually? So, wouldn't you use 
std.stdio.readln() to read the line from stdin and std.conv.parse() to parse 
out 
the values?

- Jonathan M Davis


Re: Input Scanning

2010-09-07 Thread Max Mayrhofer
Yea of course that does make sense, there ya go :)