473,394 Members | 1,722 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.

piping/reading stdin quirks.

FBSD 4.8/GCC

////////
C-CODE:
////////

char c;

while ( 1 ) {

read(0, &c, 1); printf("%02x ", c);
close(0); open("/dev/stdin", O_RDWR, S_IRUSR|S_IWUSR);
}

//////////
Question:
//////////

this is confusing to me. 'open' doesn't reopen 'stdin'
('errno' keeps getting set, and no new characters are
ever read - after the 1st one).

i have a function that opens, reads, and closes a file.
i would like to use this function to read a file piped
from 'stdin' as well as from disk. the problem is i
can't re-open 'stdin' after the file reading function
closes '/dev/stdin'.

is there any way to "reset" /dev/stdin so that
it functions normally after being close(2)'d?
Nov 13 '05 #1
6 13640
On 10 Oct 2003 13:06:23 -0700, i1*******@yahoo.com (chad kline) wrote:
FBSD 4.8/GCC

////////
C-CODE:
////////

char c;

while ( 1 ) {

read(0, &c, 1); printf("%02x ", c);
close(0); open("/dev/stdin", O_RDWR, S_IRUSR|S_IWUSR);
}

Unfortunately, it is not standard c. Neither open nor close are
defined in the standard library.
<<Remove the del for email>>
Nov 13 '05 #2
i1*******@yahoo.com (chad kline) wrote in message news:<47**************************@posting.google. com>...
FBSD 4.8/GCC


actually, i have a better example of what i am trying to do.
i have searched "everywhere" for the solution, and have seen
the question asked in many places, but without any clear answers.

#include <errno.h>
#include <stdio.h>
#include <unistd.h>
////////////////////////////////////////////////////
int main(int argc, char* argv[]) {

char c, fd2, err;

fd2 = dup(0);
while ((err = read(0, &c, 1))) { // read pipe.
printf("R: %i:%i:%02x\n", errno, err, c);
} errno=0;
err = dup2(fd2, 0);
printf("2: %i:%i:%02x\n", errno, err, c);
errno=0;
while ((err = read(0, &c, 1))) { // read keyb.
printf("R: %i:%i:%02x\n", errno, err, c);
}

exit(0);}
////////////////////////////////////////////////////

this doesn't work - what needs to be done to make it work?
if i avoid all 'dup's and just continue to read stdin after
reading the pipe, the 2nd read just keeps reading the last
char of the piped file (generating errno's).

i want to make stdin read the keyboard after reading the pipe.
i don't want to use 'streams' (fopen, freopen, etc).
Nov 13 '05 #3
On 10 Oct 2003 19:34:35 -0700, i1*******@yahoo.com (chad kline) wrote
in comp.lang.c:
i1*******@yahoo.com (chad kline) wrote in message news:<47**************************@posting.google. com>...
FBSD 4.8/GCC


actually, i have a better example of what i am trying to do.
i have searched "everywhere" for the solution, and have seen
the question asked in many places, but without any clear answers.

#include <errno.h>
#include <stdio.h>
#include <unistd.h>

^^^^^^^^^^^^^^^^^^^^^

Stop right there, this header is NOT part of C. The minute you
include it, you're off-topic here. Ask in a group that supports your
particular compiler/OS combination.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++ ftp://snurse-l.org/pub/acllc-c++/faq
Nov 13 '05 #4
i1*******@yahoo.com (chad kline) wrote in message news:<47**************************@posting.google. com>...
FBSD 4.8/GCC


this defines much better the problem
i am trying to solve. it would be
better if the '/dev/tty' stuff
wasn't necessary.

#include <errno.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
/////////////////////////////////////////
int main(int argc, char* argv[]) {

char c; int n, fd;

while ((n = read(0, &c, 1))) // read pipe.
printf("PIPE: %02x:%i\n", c, n);

fd=open("/dev/tty", O_RDWR, 0600);
printf("OPEN: %i:%i\n", errno, fd);

dup2(fd,0); close(fd);

while ((n = read(0, &c, 1)) < 1 ); // wait keyb.
printf("KEYB: %02x:%i\n", c, n);

exit(0);}
/////////////////////////////////////////
Nov 13 '05 #5
i1*******@yahoo.com (chad kline) wrote in message news:<47**************************@posting.google. com>...
FBSD 4.8/GCC

i apologize for the several posts,
but since it takes 10 hours or so
to post, i was able to figure some
things out, and think it's good
knowledge to have in the DB. it
seems to be a question without
many good answers (not that the
one i found is "good", not sure).

#include <errno.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
///////////////////////////////////////////////////
int main(int argc, char* argv[]) {

char c; int n;

while ((n = read(0, &c, 1))) // read pipe.
printf("PIPE: %02x:%i\n", c, n);

dup2(1,0);

while ((n = read(0, &c, 1)) < 1 ); // wait keyb.
printf("KEYB: %02x:%i\n", c, n);

exit(0);}
///////////////////////////////////////////////////
Nov 13 '05 #6
i1*******@yahoo.com (chad kline) wrote:
i1*******@yahoo.com (chad kline) wrote in message news:<47**************************@posting.google. com>...
FBSD 4.8/GCC

i apologize for the several posts,
but since it takes 10 hours or so
to post, i was able to figure some
things out, and think it's good
knowledge to have in the DB. it
seems to be a question without
many good answers (not that the
one i found is "good", not sure).

#include <errno.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>


But still it's hopelessly off-topic in comp.lang.c, as you are dealing
with non-standard extensions to the C language.

To echo Jack Klein:
Ask in a group that supports your particular compiler/OS combination.

<SNIP>

Regards
--
Irrwahn
(ir*******@freenet.de)
Nov 13 '05 #7

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

Similar topics

0
by: Bernhard Kuemel | last post by:
Hi! I want to read/write commands and program input to/from /bin/bash several times before I close the stdin pipe. However, reading from cat hangs unless I first close the stdin pipe. <?php...
4
by: Christian Long | last post by:
Hi I'm trying to pipe data into a python program on Windows 2000, on the command line. Like this: dir | myProgram.py Here's what I tried:
2
by: Csaba Henk | last post by:
For me, one reason for using Python is that with the help of it I can rid of several problems that I faced with during writing scripts in Bourneish shells. Biggest of these problem was the...
7
by: Edward Diener | last post by:
From within a function in my own module I need to take the output from a Python module "A", which is sending data to stdout and which can not be changed and which I need to invoke as a top-level...
5
by: runes | last post by:
I trying to figure out a way to make a python script accept data output from another process under Windows XP, but I fail miserably. I have a vague memory having read this is not possible with...
2
by: Apple Grew | last post by:
I want to develope a Winboard like application which will support Winboard protocol. For that I require to know how to handle piping in Python. I seperated out module popen2, but when I use...
1
by: john prokopek | last post by:
I just installed ActiveState Perl 5.8 on a Win2k system. For a sanity check I a one line script to take input from STDIN and print. Hey it doesn't work. If I just perform a print with some text...
3
by: bernd wegener | last post by:
Hello netties, I coded the following in perl: open(LOGFILE,">&STDOUT") ; if ( $ARGV ) { close(LOGFILE) ; open(LOGFILE,">> $ARGV") or die "Cannot open file $ARGV\n" ;
6
by: mhenry1384 | last post by:
On WinXP, I am doing this nant.exe | python MyFilter.py This command always returns 0 (success) because MyFilter.py always succeeds. MyFilter.py looks like this while 1:
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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.