473,407 Members | 2,629 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,407 software developers and data experts.

"streams"

I have a question about C's abstract "streams" (that I can't seem to
FULLY understand from reading several tutorials).

Streams seems to suggest that input can be treated continously if
needed. Is this true?

So far as I know, I can only get a stream to "flow" when there is a
'\r'. At that point the '\r' is turned into a '\n' and the whole
stream is sent to some abstract area that is now only accessible to my
programs (meanwhile, other data is still piling into the input
"staging" area of the stream, waiting for another '\r' to free them-
allow them to flow).

Is this an accurate observation of C's model? Is there anyway I can
get more of a continuous stream action, instead of this '\r' triggered
stream? I am guessing there might be, but it would be a
C-extension!?!?
By the way, the first couple examples using getchar in K&R2 rely on
comparing (c=getchar()) with EOF. But, what happened to the final '\r'
that actually releases the EOF from it's input staging area? Does that
'\r' stay there waiting to release the next char that comes to the
input to the stream? Does that '\r' get converted to '\n' and sent on
it's way ready for immediate reading by an input function? Does that
'\n' disappear because of some relationship with EOF?
A link to comprehensive tutorials will be appreciated.

Nov 14 '05 #1
11 1762
"Kobu" <ko********@gmail.com> wrote in message
news:11*********************@z14g2000cwz.googlegro ups.com...
I have a question about C's abstract "streams" (that I can't seem to
FULLY understand from reading several tutorials).

Streams seems to suggest that input can be treated continously if
needed. Is this true?
Yes, in the sense that i/o is implemented as a
continuous 'stream' of characters. ("continous"
being interruptible by an error condition or an
'end of file' indicator).
So far as I know, I can only get a stream to "flow" when there is a
'\r'.
No. A stream of characters need not contain a particular
value character. '\r' (or '\n', etc.) is just another
character.
At that point the '\r' is turned into a '\n'
Character translations (if any) are defined by a particular
implementation (probably most well known is the 'CR/LF' to/
form '\n' translation in DOS and Windows). Also note that this
'translation' is only applicable to streams opened with 'text
mode' (the default). Streams open in "binary mode" (expressed
with second argument to 'fopen()' of "b"), render the characters
as they are delivered by the attached device, with no 'translations'
at all.
and the whole
stream is sent to some abstract area that is now only accessible to my
programs (meanwhile, other data is still piling into the input
"staging" area of the stream, waiting for another '\r' to free them-
allow them to flow).
You're asking about 'buffering', which is defined by an implementation.
E.g. many/most systems where the standard stream 'stdin' is attached
to a keyboard, use 'line buffering', where the data is not sent to
the program until e.g. an 'Enter' or 'return' key is pressed. But this
is not required by the language.

Is this an accurate observation of C's model?
No, it seems to be your observation of a particular implementation
of C on a particular platform. This is admittedly a very common
behavior.
Is there anyway I can
get more of a continuous stream action, instead of this '\r' triggered
stream?
You're asking about 'nonblocking input', which is not required
(nor prohibited) by the language.
I am guessing there might be, but it would be a
C-extension!?!?


Yes, library extensions are the typical method for doing this
on platforms where it's applicable, e.g. those where 'stdin'
is attached to a line-buffered keyboard input. An implementation
or OS might also provide a facility (via another extension) to disable
'line buffering'. Check your compiler documentation.

-Mike
Nov 14 '05 #2
Mike Wahler wrote:
No. A stream of characters need not contain a particular
value character. '\r' (or '\n', etc.) is just another
character.


Text streams are composed of lines, which are newline terminated.

--
pete
Nov 14 '05 #3

"pete" <pf*****@mindspring.com> wrote in message
news:41***********@mindspring.com...
Mike Wahler wrote:
No. A stream of characters need not contain a particular
value character. '\r' (or '\n', etc.) is just another
character.


Text streams are composed of lines, which are newline terminated.


I wrote 'stream', not 'text stream'.

Anyway, the below excerpt from 9899 indicates to me that
a text stream may contain zero or more newline characters.

7.19.2 Streams

2 A text stream is an ordered sequence of characters composed
into lines, each line consisting of zero or more characters
plus a terminating new-line character. Whether the last line
requires a terminating new-line character is implementation-
defined.

-Mike
Nov 14 '05 #4
pete wrote:
Mike Wahler wrote:
No. A stream of characters need not contain a particular
value character. '\r' (or '\n', etc.) is just another
character.


Text streams are composed of lines, which are newline terminated.


No, they are just sequences of characters, which should include at
least one newline character at the end. There is no intrinsic
reason to limit the count of characters between newline chars in
C. It is just a useful convention to normally keep this below 72
or 80.

The fact that routines such as fgets deliver newline separated
chunks is again not germane to what a stream is.

--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
Nov 14 '05 #5
CBFalconer wrote:

pete wrote:
Mike Wahler wrote:
No. A stream of characters need not contain a particular
value character. '\r' (or '\n', etc.) is just another
character.


Text streams are composed of lines, which are newline terminated.


No


N869
7.19.2 Streams
[#2] A text stream is an ordered sequence of characters
composed into lines each line consisting of zero or more
characters plus a terminating new-line character.

--
pete
Nov 14 '05 #6
pete wrote:
CBFalconer wrote:
pete wrote:
Mike Wahler wrote:
No. A stream of characters need not contain a particular
value character. '\r' (or '\n', etc.) is just another
character.

Text streams are composed of lines, which are newline terminated.


No

N869
7.19.2 Streams
[#2] A text stream is an ordered sequence of characters
composed into lines each line consisting of zero or more
characters plus a terminating new-line character.

Selective reading pete? Mike didn't specify text streams and the
same section you quote says..

[#3] A binary stream is an ordered sequence of characters
that can transparently record internal data. Data read in
from a binary stream shall compare equal to the data that
were earlier written out to that stream, under the same
implementation.
--
Joe Wright mailto:jo********@comcast.net
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Nov 14 '05 #7
Joe Wright wrote:

pete wrote:
CBFalconer wrote:
pete wrote:

Mike Wahler wrote:
>No. A stream of characters need not contain a particular
>value character. '\r' (or '\n', etc.) is just another
>character.

Text streams are composed of lines, which are newline terminated.

No

N869
7.19.2 Streams
[#2] A text stream is an ordered sequence of characters
composed into lines each line consisting of zero or more
characters plus a terminating new-line character.

Selective reading pete?


I'm just saying that text streams are made of lines.
If you don't want know that, you don't have to.

--
pete
Nov 14 '05 #8

"pete" <pf*****@mindspring.com> wrote in message
news:41***********@mindspring.com...
CBFalconer wrote:

pete wrote:
Mike Wahler wrote:

> No. A stream of characters need not contain a particular
> value character. '\r' (or '\n', etc.) is just another
> character.

Text streams are composed of lines, which are newline terminated.


No


N869
7.19.2 Streams
[#2] A text stream is an ordered sequence of characters
composed into lines each line consisting of zero or more
characters plus a terminating new-line character.


You omitted:

Whether the last line requires a terminating new-line character
is implementation-defined.

-Mike
Nov 14 '05 #9

"pete" <pf*****@mindspring.com> wrote in message
news:41***********@mindspring.com...
Joe Wright wrote:

pete wrote:
CBFalconer wrote:

>pete wrote:
>
>>Mike Wahler wrote:
>>
>>
>>>No. A stream of characters need not contain a particular
>>>value character. '\r' (or '\n', etc.) is just another
>>>character.
>>
>>Text streams are composed of lines, which are newline terminated.
>
>No
N869
7.19.2 Streams
[#2] A text stream is an ordered sequence of characters
composed into lines each line consisting of zero or more
characters plus a terminating new-line character.
Selective reading pete?


I'm just saying


The ISO C standard says
that text streams are made of lines.
that a text stream may or may not contain one or more
newline characters.
If you don't want know that, you don't have to.


Back at ya. :-)

-Mike
Nov 14 '05 #10
<posted & mailed>

Kobu wrote:
I have a question about C's abstract "streams" (that I can't seem to
FULLY understand from reading several tutorials).
In C, they are FILEs.

Streams seems to suggest that input can be treated continously if
needed. Is this true?
More or less.
So far as I know, I can only get a stream to "flow" when there is a
'\r'. At that point the '\r' is turned into a '\n' and the whole
stream is sent to some abstract area that is now only accessible to my
programs (meanwhile, other data is still piling into the input
"staging" area of the stream, waiting for another '\r' to free them-
allow them to flow).
C states that input from stdin is line-buffered, but it doesn't say antyhing
about converting characters -- that's something peculiar to your
environment.

Is this an accurate observation of C's model? Is there anyway I can
get more of a continuous stream action, instead of this '\r' triggered
stream? I am guessing there might be, but it would be a
C-extension!?!?
Not in C, but chances are that for any given environment there's a way to do
it.
By the way, the first couple examples using getchar in K&R2 rely on
comparing (c=getchar()) with EOF. But, what happened to the final '\r'
that actually releases the EOF from it's input staging area? Does that
'\r' stay there waiting to release the next char that comes to the
input to the stream? Does that '\r' get converted to '\n' and sent on
it's way ready for immediate reading by an input function? Does that
'\n' disappear because of some relationship with EOF?
A link to comprehensive tutorials will be appreciated.


--
Remove '.nospam' from e-mail address to reply by e-mail
Nov 14 '05 #11
Mike Wahler wrote:

"pete" <pf*****@mindspring.com> wrote in message
news:41***********@mindspring.com...
Joe Wright wrote:

pete wrote:
> CBFalconer wrote:
>
>>pete wrote:
>>
>>>Mike Wahler wrote:
>>>
>>>
>>>>No. A stream of characters need not contain a particular
>>>>value character. '\r' (or '\n', etc.) is just another
>>>>character.
>>>
>>>Text streams are composed of lines, which are newline terminated.
>>
>>No
>
>
> N869
> 7.19.2 Streams
> [#2] A text stream is an ordered sequence of characters
> composed into lines each line consisting of zero or more
> characters plus a terminating new-line character.
>
Selective reading pete?


I'm just saying


The ISO C standard says
that text streams are made of lines.


that a text stream may or may not contain one or more
newline characters.
If you don't want know that, you don't have to.


Back at ya. :-)


For maximum portability of code involving text streams and text files,
one should terminate text streams with newline characters
and also bear in mind the environmental limits regarding text files.

N869
7.19.2 Streams

Environmental limits

[#7] An implementation shall support text files with lines
containing at least 254 characters, including the
terminating new-line character.

--
pete
Nov 14 '05 #12

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

Similar topics

9
by: dover | last post by:
For the code, outputfile << *p << endl; Someone suggests: Don't use endl here; it is flushing output stream every time. Use plain '\n'. What's the difference of using "endl" and "\n" above?...
8
by: bonj | last post by:
hello I hope somebody can help me get my head around this area of 'stream' programming... I know that streams are very fashionable nowadays so hopefully there'll be lots of replies. ;-) ...
145
by: Sidney Cadot | last post by:
Hi all, In a discussion with Tak-Shing Chan the question came up whether the as-if rule can cover I/O functions. Basically, he maintains it can, and I think it doesn't. Consider two...
4
by: floppyzedolfin | last post by:
Hello! I'm actually encoding an encryption / decryption program. The encryption programes takes a file path in parameter, and encrypts the contents of the file and stores that into another file. ...
9
by: andrew.smith.cpp | last post by:
hi, whts the difference between the std::endl or "\n" ? because both do the same work Thanks
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: 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
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:
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
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.