do stdout output with specific speed - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T14:57:23Z http://stackoverflow.com/feeds/question/242697 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/242697/do-stdout-output-with-specific-speed 2 do stdout output with specific speed oliver 2008-10-28T09:51:34Z 2008-10-28T11:04:58Z <p>For a load test of my application (under Linux), I'm looking for a tool that outputs data on stdout at a specific rate (like 100 bytes/s), so that I can pipe the output to netcat which sends it to my application. Some option for dd would be ideal, but I didn't find anything so far. It doesn't really matter what kind of data is printed (NUL bytes are OK). Any hints?</p> http://stackoverflow.com/questions/242697/do-stdout-output-with-specific-speed/242703#242703 2 Answer by unwind for do stdout output with specific speed unwind 2008-10-28T09:55:30Z 2008-10-28T09:55:30Z <p>If you're fine with getting all hundred bytes at a time, you could do a loop with <code>sleep</code> and plain old <code>echo</code> in the shell as a first attempt at least.</p> http://stackoverflow.com/questions/242697/do-stdout-output-with-specific-speed/242769#242769 0 Answer by oliver for do stdout output with specific speed oliver 2008-10-28T10:19:05Z 2008-10-28T10:19:05Z <p>Well, I'm now using nuttcp to do "real" load tests instead. It seems to have quite low overhead, so the test system is not too much disturbed.</p> http://stackoverflow.com/questions/242697/do-stdout-output-with-specific-speed/242799#242799 3 Answer by Chris Jester-Young for do stdout output with specific speed Chris Jester-Young 2008-10-28T10:30:28Z 2008-10-28T11:04:58Z <p>I wrote a quick program that takes one argument, how many <code>A</code> characters to print to standard output per second (negative argument means no rate limiting). Hope this helps! :-) (On GNU libc, you will need to link your program with <code>-lrt</code>.)</p> <p>Edit: revised to print dot by default, unless a second argument is specified, in which case the first character of that is used. (And that means, if you want to print the NUL character, just specify an empty string as the second argument. :-))</p> <pre><code>#include &lt;math.h&gt; #include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; #include &lt;time.h&gt; #include &lt;unistd.h&gt; int sleeptill(const struct timespec *when) { struct timespec now, diff; clock_gettime(CLOCK_REALTIME, &amp;now); diff.tv_sec = when-&gt;tv_sec - now.tv_sec; diff.tv_nsec = when-&gt;tv_nsec - now.tv_nsec; while (diff.tv_nsec &lt; 0) { diff.tv_nsec += 1000000000; --diff.tv_sec; } if (diff.tv_sec &lt; 0) return 0; return nanosleep(&amp;diff, 0); } int main(int argc, char **argv) { double rate = 0.0; char *endp; struct timespec start; double offset; if (argc &gt;= 2) { rate = strtod(argv[1], &amp;endp); if (endp == argv[1] || *endp) rate = 0.0; else rate = 1 / rate; if (!argv[2]) argv[2] = "."; } if (!rate) { fprintf(stderr, "usage: %s rate [char]\n", argv[0]); return 1; } clock_gettime(CLOCK_REALTIME, &amp;start); offset = start.tv_nsec / 1000000000.0; while (1) { struct timespec till = start; double frac; double whole; frac = modf(offset += rate, &amp;whole); till.tv_sec += whole; till.tv_nsec = frac * 1000000000.0; sleeptill(&amp;till); write(STDOUT_FILENO, argv[2], 1); } } </code></pre>