473,394 Members | 1,737 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

disable stdout buffering ?

Hi.

I have the following problem:
Using popen() to execute a program and read its stdout works usually fine.
Now I try to do this with a program called xsupplicant (maybe one knows),
but I dont get the output of it while it is running.

This is probably a problem of stdout being buffered, because if I use
fflush() after a printf() in the xsupplicant then I can read the output.

My question is now: is it possible to tell stdout not to buffer anything,
but immediately print it out.

I dont want to change the xsupplicant source code.

Hope anyone understood what I am trying to say.
thanks.
Nov 15 '05 #1
7 15550
>
My question is now: is it possible to tell stdout not to buffer anything,
but immediately print it out.

Yes. Please see setvbuf and other related functions.

Regards,
Madhav.

Nov 15 '05 #2
Thanks for your reply.

On Tue, 04 Oct 2005 05:50:26 -0700, Madhav wrote:

My question is now: is it possible to tell stdout not to buffer anything,
but immediately print it out.

Yes. Please see setvbuf and other related functions.

I tried setvbuf and setbuf:

....
FILE* fp = popen("...","r");
setvbuf(fp,NULL,_IONBF,0);
....

But unfortunately it had no effect ...

Nov 15 '05 #3
Mathias Herrmann <herrmann@'remove_me'sit.fraunhofer.de> wrote:
On Tue, 04 Oct 2005 05:50:26 -0700, Madhav wrote:
My question is now: is it possible to tell stdout not to buffer anything,
but immediately print it out.

Yes. Please see setvbuf and other related functions.


I tried setvbuf and setbuf:

...
FILE* fp = popen("...","r");
setvbuf(fp,NULL,_IONBF,0);


Ah. You are dealing with pipes, not with normal streams. Pipes are
different; they may or may not respond to functions that work on files.
Pipes are also not part of ISO C, and different implementations of pipes
may behave in different ways. For a reliable answer, ask in a newsgroup
for whatever library defines your pipes - probably POSIX, in which case,
ask in comp.unix.programmer.

Richard
Nov 15 '05 #4


Mathias Herrmann wrote On 10/04/05 09:22,:
Thanks for your reply.

On Tue, 04 Oct 2005 05:50:26 -0700, Madhav wrote:

My question is now: is it possible to tell stdout not to buffer anything,
but immediately print it out.


Yes. Please see setvbuf and other related functions.


I tried setvbuf and setbuf:

...
FILE* fp = popen("...","r");
setvbuf(fp,NULL,_IONBF,0);
...

But unfortunately it had no effect ...


... because it was done on "the wrong end" of the
connection. You need to disable the buffering that
the sender is doing, so you need to get the sender to
call setvbuf() before doing anything else with its
stdout stream.

Unfortunately, that goes against your goal of not
wanting to make any changes to the other program's code.
However, the change is a very small one: just a one-liner
at or near the start of main() will do it.

Unfortunately (again), you're still at the mercy of
the operating system. Telling the C library not to buffer
an output stream causes fprintf() and the like to deliver
characters directly to the O/S without undue delay, but
doesn't govern what the O/S then chooses to do with them.
You'll need to read your O/S' documentation on pipes (which
aren't part of C, by the way).

<off-topic>

In my experience, many "interactive" programs fare
rather poorly with pipes; the I/O model really isn't quite
what's wanted. If your system provides pseudo-terminals
(/dev/pty), they might be more appropriate. For further
help along these lines -- or with pipes, for that matter --
try comp.unix.programmer.

</off-topic>

--
Er*********@sun.com

Nov 15 '05 #5
> ... because it was done on "the wrong end" of the
connection. You need to disable the buffering that
the sender is doing, so you need to get the sender to
call setvbuf() before doing anything else with its
stdout stream.

Unfortunately, that goes against your goal of not
wanting to make any changes to the other program's code.
However, the change is a very small one: just a one-liner
at or near the start of main() will do it.

Unfortunately (again), you're still at the mercy of
the operating system. Telling the C library not to buffer
an output stream causes fprintf() and the like to deliver
characters directly to the O/S without undue delay, but
doesn't govern what the O/S then chooses to do with them.
You'll need to read your O/S' documentation on pipes (which
aren't part of C, by the way).

<off-topic>

In my experience, many "interactive" programs fare
rather poorly with pipes; the I/O model really isn't quite
what's wanted. If your system provides pseudo-terminals
(/dev/pty), they might be more appropriate. For further
help along these lines -- or with pipes, for that matter --
try comp.unix.programmer.

</off-topic>

Thanks a lot.
Im going to try the use of a pty.
Nov 15 '05 #6
Mathias Herrmann wrote:

Hi.

I have the following problem:
Using popen() to execute a program and read its stdout works usually fine.
Now I try to do this with a program called xsupplicant (maybe one knows),
but I dont get the output of it while it is running.

This is probably a problem of stdout being buffered, because if I use
fflush() after a printf() in the xsupplicant then I can read the output.

My question is now: is it possible to tell stdout not to buffer anything,
but immediately print it out.

I dont want to change the xsupplicant source code.


You can't "unbuffer" xsupplicant's stdout without changing xsupplicant's
source code, unless this ability is already built in.

You could probably try something like this at the start of main():

if ( !isatty(stdout) )
setbuf(stdout,NULL);

The specifics are probably OT to clc, so you might need to ask in a
group where this would be on-topic. Perhaps comp.unix.programmer?

--
+-------------------------+--------------------+-----------------------------+
| Kenneth J. Brody | www.hvcomputer.com | |
| kenbrody/at\spamcop.net | www.fptech.com | #include <std_disclaimer.h> |
+-------------------------+--------------------+-----------------------------+
Don't e-mail me at: <mailto:Th*************@gmail.com>
Nov 15 '05 #7

In article <pan.2005.10.04.12.11.37.993986@'remove_me'sit.fra unhofer.de>, Mathias Herrmann <herrmann@'remove_me'sit.fraunhofer.de> writes:

My question is now: is it possible to tell stdout not to buffer anything,
Yes:

#include <stdio.h>

int main(void)
{
int ret;
ret = setvbuf(stdout, NULL, _IONBF, 0);
if (ret == 0)
puts("stdout is now unbuffered");
return 0;
}
but immediately print it out.


No. While you can disable the C library's buffering for stdout
(if setvbuf succeeds), you don't have any control over when the
underlying system processes the output generated by the C library.

However, I believe you've asked the wrong question, since you
appear to want to change the stdout buffering for another process,
without changing that program's source code. That you cannot do,
in standard C. (Note that popen is not part of the standard C
library.)

I suggest you take this question to a newsgroup that deals with
popen, such as comp.unix.programmer, or one specific to your
operating system. (OT: Unless I am gravely mistaken, there's no
POSIX/SUS mechanism to force another process to disable stdio
buffering, either. Using a pseudo-tty rather than a pipe should
get you line buffering rather than full buffering, though, which
might suffice.)
--
Michael Wojcik mi************@microfocus.com

You brung in them two expert birdwatchers ... sayin' it was to keep us from
makin' dern fools of ourselfs ... whereas it's the inherent right of all to
make dern fools of theirselfs ... it ain't a right held by you official types
alone. -- Walt Kelly
Nov 15 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Hans Deragon | last post by:
Greetings. I am performing: commands.getstatusoutput("rsync <params>"); rsync takes a long time and prints out a steady stream of lines showing which file it is currently working on.
2
by: Graham Ashton | last post by:
Hi. I'm having trouble flushing sys.stdout. I've written a small example to illustrate my problem (see below). In short, I expect it to ping "received hello", sleep for 5 seconds and then print...
6
by: Avi Berkovich | last post by:
Hello, I was unable to use popen2.popen4 to grab python.exe's (2.3) output, for starts, it doesn't show the version information at the beginning and won't return anything when writing to the...
4
by: Oz | last post by:
This is long. Bear with me, as I will really go through all the convoluted stuff that shows there is a problem with streams (at least when used to redirect stdout). The basic idea is that my...
1
by: bine | last post by:
Sorry, I found a lot of old stuff, even kind of flamewars about good+bad style whatsoever.. I simply want any hint that works! I try to migrate older stuff from NT and newer stuff from...
5
by: Luigi | last post by:
Hi to all! I'd like to execute an external program capturing the stdout/stderr messages at "real-time". I mean that I don't want to wait for the end of the process. If I write a code like this:...
2
by: Massi | last post by:
Hi everyone! I'm writing a python script which uses a C-written dll. I call the functions in the dll using ctypes, but I don't know how to catch the output of the "printf" which the C functions...
7
by: MisterPete | last post by:
How can I inherit from file but stil create an instance that writes to stdout? ----------- I'm writing a file-like object that has verbosity options (among some other things). I know I could just...
37
by: Vince C. | last post by:
Hi all. I've installed Bloodshed Dev-C++ on a Windows 2000 SP4 machine. I'm using MinGW 3.4.2. I'd like to temporarily disable standard functions to write to stderr, i.e. for instance...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.