<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div>Hi Denis, Hi Sven,</div><div><br>On Apr 4, 2018, at 3:16 AM, Denis Kudriashov <<a href="mailto:dionisiydk@gmail.com">dionisiydk@gmail.com</a>> wrote:<br><br></div><blockquote type="cite"><div><div dir="ltr"><div>Hi.</div><div><br></div>#next returning nil is definitely looks bad because we will always have case when nil value will not means the end:<div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div>#(1 nil 2) readSteam next; next; atEnd</div><div><br></div></blockquote>But I understand that in many cases analysing #next for nil is much more suitable than #atEnd. I am sure that it can be always avoided but it can be not easy to do.<div>Alternatively we can reify real EndOfStream object which will be used as result of reading operation when stream is at end.</div><div>It can provide nice API like #ifEndOfStream:. which will reflect intention in much cleaner way than ifNil: checks. </div></div></div></blockquote><div><br></div>There is a much better scheme which is to allow streams to have an end-of-file element in an inst var, "endOfStream".  It is initialised with the stream itself (nil cannot be used as we want it as a value).  If the end of the stream is reached and <span style="background-color: rgba(255, 255, 255, 0);">endOfStream == self an EndIfStream exception is raised.  Otherwise the value of endOfStream is answered.  We can't answer nil because in some applications (streams of objects) nil is a valid element to read from the steam and we need to manufacture a unique sentinel.</span><div><br></div><div>We made this change in VisualWorks and it works well.  One can avoid using atEnd and lion for the sentinel instead, which is much cleaner and faster and less problematic than atEnd.</div><div><br><blockquote type="cite"><div><div dir="ltr"><div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">2018-04-04 12:00 GMT+02:00 Sven Van Caekenberghe <span dir="ltr"><<a href="mailto:sven@stfx.eu" target="_blank">sven@stfx.eu</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
<br>
> On 4 Apr 2018, at 11:38, Nicolas Cellier <<a href="mailto:nicolas.cellier.aka.nice@gmail.com">nicolas.cellier.aka.nice@<wbr>gmail.com</a>> wrote:<br>
><br>
> Hi Sven,<br>
> See also discussion at <a href="https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/232" rel="noreferrer" target="_blank">https://github.com/<wbr>OpenSmalltalk/opensmalltalk-<wbr>vm/pull/232</a><br>
<br>
</span>Thanks Nicolas, I had already seen parts of it.<br>
<br>
Now, I still want image level changes to be based on clear semantic definitions of the abstract stream API, we're not just talking about file or unix streams, the general Smalltalk concept.<br>
<br>
For reading, they are IMHO,<br>
<br>
#next<br>
#readInto:startingAt:count:<br>
#peek<br>
#atEnd<br>
#upToEnd (can be derived but still the semantics are important in relation to #atEnd)<br>
<br>
For writing, we have<br>
<br>
#nextPut:<br>
#next:putAll:startingAt:<br>
#flush<br>
<br>
For both, we have<br>
<br>
#atEnd<br>
#close<br>
#closed (new)<br>
<br>
So, I know, #next returning nil exists, but is it universally/officially defined as such ? Where is that documented ?<br>
<br>
Positioning, sizing are not universal, IMHO, but should be clearly defined as well.<br>
<div class="HOEnZb"><div class="h5"><br>
> 2018-04-04 11:32 GMT+02:00 Sven Van Caekenberghe <<a href="mailto:sven@stfx.eu">sven@stfx.eu</a>>:<br>
> Somehow, somewhere there was a change to the implementation of the primitive called by some streams' #atEnd.<br>
><br>
> IIRC, someone said it is implemented as 'remaining size being zero' and some virtual unix files like /dev/random are zero sized.<br>
><br>
> Now, all kinds of changes are being done image size to work around this.<br>
><br>
> I am a strong believer in simple, real (i.e. infinite) streams, but I am not sure we are doing the right thing here.<br>
><br>
> Point is, I am not sure #next returning nil is official and universal.<br>
><br>
> Consider the comments:<br>
><br>
> Stream>>#next<br>
>   "Answer the next object accessible by the receiver."<br>
><br>
> ReadStream>>#next<br>
>   "Primitive. Answer the next object in the Stream represented by the<br>
>   receiver. Fail if the collection of this stream is not an Array or a String.<br>
>   Fail if the stream is positioned at its end, or if the position is out of<br>
>   bounds in the collection. Optional. See Object documentation<br>
>   whatIsAPrimitive."<br>
><br>
> Note how there is no talk about returning nil !<br>
><br>
> I think we should discuss about this first.<br>
><br>
> Was the low level change really correct and the right thing to do ?<br>
><br>
> Note also that a Guille introduced something new, #closed which is related to the difference between having no more elements (maybe right now, like an open network stream) and never ever being able to produce more data.<br>
><br>
> Sven<br>
><br>
><br>
><br>
><br>
<br>
<br>
</div></div></blockquote></div><br></div>
</div></blockquote></div></body></html>