Ignore printout

F

Fredrik

I am using a compiled C-code in my Ruby program. The problem is that
the C-code prints some messages that I don't want to show in my Ruby
program. What would be the best way to get rid of these printouts?

I don't want to get into the original C-code and take away the print
commands since that is not my code. Are the printouts sent directly to
standard output, meaning there is no way for Ruby to interfere?

Thanks for any help!

/Fredrik
 
M

mortee

Fredrik said:
I am using a compiled C-code in my Ruby program. The problem is that
the C-code prints some messages that I don't want to show in my Ruby
program. What would be the best way to get rid of these printouts?

I don't want to get into the original C-code and take away the print
commands since that is not my code. Are the printouts sent directly to
standard output, meaning there is no way for Ruby to interfere?

You may try to redirect $stdout while the C code runs - I'm not sure
this will work, but it's worth a try.

mortee
 
E

Eric Hodel

I am using a compiled C-code in my Ruby program. The problem is that
the C-code prints some messages that I don't want to show in my Ruby
program. What would be the best way to get rid of these printouts?

I don't want to get into the original C-code and take away the print
commands since that is not my code. Are the printouts sent directly to
standard output, meaning there is no way for Ruby to interfere?

You will need to reopen STDOUT to /dev/null
 
F

Fredrik

You will need to reopen STDOUT to /dev/null

Then I have two more questions to that :)

1) What's the difference between $stdout and STDOUT? They seem to be
the same thing.

2) In my pickaxe book I read that "Assignment to $stdout is
depracated; use $stdout.reopen instead." But if I want to redirect
$stdout and then $direct it back to what it was before, surely I HAVE
to use assignment to $stdout. Like this:

out = $stdout
$stdout = File.new('/dev/null','w')
puts 'This is not to be seen by anybody.'
$stdout.reopen(out)

If I use reopen on the second line instead, the 'out' variable comes
along to this new value and nobody knows where the "usual stdout" is,
right?
 
F

Fredrik

I should clarify myself:
I was expecting to find that STDOUT is a constant so that I could do:

$stdout.reopen(File.new('/dev/null','w'))
puts 'Nobody can see this.'
$stdout.reopen(STDOUT)

But after the first line, my STDOUT is pointing to the exact same
place as $stdout. Isn't that weird?
 
F

Fredrik

Well, this does the trick (note the 'clone' instruction on line 1). It
seems to be working nicely also for the compiled binary that I am
calling.

out = $stdout.clone
$stdout.reopen(File.new('/dev/null','w'))
puts 'You cant see this!'
$stdout.reopen(out)

I am still confused over why STDOUT is not a constant though...
Thanks for your pointers!
 
M

mortee

Fredrik said:
I am still confused over why STDOUT is not a constant though...
Thanks for your pointers!

I'd guess that when you reopen a stream, then it as an object remains
the same, just what you send it will end up somewhere else than before.
In contrast, when you assign to a variable, the object itself changes
which that variable references.

Since $stdout and STDOUT initially point to the same object, if you dont
assign $stdout, instead you modify the onject itself, the two continue
to reference the same original object. Remember that you can modify a
constant object's state without any warning anyway, so you could even
reopen STDOUT itself.

mortee
 
W

Wolfgang Nádasi-Donner

Fredrik said:
out = $stdout
$stdout = File.new('/dev/null','w')
puts 'This is not to be seen by anybody.'
$stdout.reopen(out)

Only as an remark - on Windows you should use

$stdout = File.open("nul:", "w")

to ignore Output, and

$stdout = STDOUT

to reset.

Wolfgang Nádasi-Donner
 
E

Eric Hodel

Then I have two more questions to that :)

1) What's the difference between $stdout and STDOUT? They seem to be
the same thing.

http://blog.segment7.net/articles/2006/08/17/stdout-vs-stdout

In your case you want to reopen STDOUT because somebody using your
code may have changed $stdout, if they want to capture or redirect
output.
2) In my pickaxe book I read that "Assignment to $stdout is
depracated; use $stdout.reopen instead." But if I want to redirect
$stdout and then $direct it back to what it was before, surely I HAVE
to use assignment to $stdout. Like this:

I don't think this is true anymore. You can't reopen using StringIO
to capture regular ruby puts or p.
out = $stdout
$stdout = File.new('/dev/null','w')
puts 'This is not to be seen by anybody.'
$stdout.reopen(out)

If I use reopen on the second line instead, the 'out' variable comes
along to this new value and nobody knows where the "usual stdout" is,
right?

Right, you should dup $stdout there.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,901
Latest member
Noble71S45

Latest Threads

Top