Pharo-dev
By thread
pharo-dev@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- 3 participants
- 144615 messages
Re: [Pharo-dev] DateAndTime Offset Bug Proposal
by Eliot Miranda
Hi Sven,
On Tue, Apr 10, 2018 at 7:33 AM, Sven Van Caekenberghe <sven(a)stfx.eu> wrote:
>
>
> > On 10 Apr 2018, at 16:13, Stephane Ducasse <stepharo.self(a)gmail.com>
> wrote:
> >
> > What is a field based date and time?
>
> This is more of an implementation choice but it has probably influence on
> the API as well.
>
> Field based date/time/datetime objects are like the naive implementation
> where each element that we talk about as humans has its own instance
> variable. You would store hours, minutes, seconds, nanosecond separately,
> as well as year, month, day.
>
> This is not as efficient as the current implementations, where time is
> typically stored as seconds and nanoseconds, and dates as a single julian
> day number.
>
> Still, these are implementation choices. For example, the split between
> seconds and nanoseconds is a bit artificial as well (it is so that both
> remain SmallIntegers in 32-bit), while in 64-bit this decision could be
> revised.
>
Note that the VM provides times as either 64-bit LargePositiveInteger
microseconds from 1901 (32-bits) or 61-bit positive SmallInteger
microseconds from 1901 (64-bits), in either UTC or the current time zone.
This gives us the following fit-for-purpose limits:
DateAndTime fromSeconds: 1 << 64 - 1 // 1000000 586455-01-18T08:01:49-07:00
DateAndTime fromSeconds: SmallInteger maxVal // 1000000
38435-08-17T21:30:06-07:00
Choosing 64-bit nanoseconds doesn't work nearly as well; we run out of bits
in 586 years.
I don't buy the performance issue of keeping things as SmallIntegers.
There is good 64-bit positive integer support in all the 32-bit VMs (e.g.
in the interpreter, inlined #+. #- et al all work on a 64-bit integer
range). If Pharo does decide to change the internal representation then I
suggest that it uses the same representation as the VM.
> > On Tue, Apr 10, 2018 at 1:32 PM, Esteban A. Maringolo
> > <emaringolo(a)gmail.com> wrote:
> >>
> >> What is missing in the current Pharo image is a field based
> >> Date/DateTime instead of an offset+duration one as it currently is.
> >>
> >> Why not use Chronos instead? AFAIR Chronos provides that.
> >>
> >> An alternative would be to implement a "Calendar" (as in
> >> Java.util.Calendar [1]), that can exist in parallel with the existing
> >> Date class.
> >>
> >> Regards,
> >>
> >> [1] https://developer.android.com/reference/java/util/Calendar.html
> >>
> >> On 10/04/2018 03:30, Stephane Ducasse wrote:
> >>> Hi Paul
> >>>
> >>> I agree and instead of patching the current system I would start using
> >>> TDD to design
> >>> a new Date package.
> >>>
> >>> stef
> >>>
> >>> On Mon, Apr 9, 2018 at 8:42 PM, Paul DeBruicker <pdebruic(a)gmail.com>
> wrote:
> >>>> I think #= is a bad selector for Date and should be avoided when
> determining
> >>>> whether something happens on a date, or whether two dates are the
> same. We
> >>>> all know March 24th in London covers a different 24 hours than March
> 24th in
> >>>> Hawaii but Date>>#= does not.
> >>>>
> >>>>
> >>>>
> >>>> I think whats needed are more descriptive selectors like
> >>>>
> >>>>
> >>>> Date>>#isSameOnDateAs: aDateOrDateAndTime
> >>>> Date>>#overlapsWithDate: aDate
> >>>> DateAndTime>>#occursOnDate: aDate
> >>>> DateAndTime>>#sameHMSButDifferentUTCIn: aTimeZoneKey
> >>>> DateAndTime>>#sameUTCButDifferentHMSIn: aTimeZoneKey
> >>>>
> >>>> and change Date>>#= to #shouldNotImplement.
> >>>>
> >>>>
> >>>> FWIW I also don't like #offset: as before you send it you know the
> timezone
> >>>> and after you may let that knowledge be forgotten. Real offsets can
> change
> >>>> as laws change.
> >>>>
> >>>>
> >>>>
> >>>> I think people are aware of this but if you have need for comparing
> dates &
> >>>> times then you must use a library that accesses the regularly updated
> Olson
> >>>> timezone database on your system and classes that respect time
> zones. Time
> >>>> zones are political, and legal definitions of offsets can change hours
> >>>> before the DST transition dates & times.
> >>>>
> >>>>
> >>>> I don't think it matters which default timezone you pick for the
> image if
> >>>> you're not going to take them into account when doing comparisons.
> >>>>
> >>>>
> >>>> Unfortunately there isn't a way to avoid this complexity until DST
> goes
> >>>> away.
> >>>>
> >>>>
> >>>> There's certainly flaws to how we currently do it and I think
> >>>> TimeZoneDatabase and Chronos make good attempts to fix it. I haven't
> looked
> >>>> at Chalten but would guess its good too.
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>> Sean P. DeNigris wrote
> >>>>> I was bitten by this very annoying bug again. As most of us probably
> know
> >>>>> due
> >>>>> to the steady stream of confused ML posts in the past, the bug in
> summary
> >>>>> is
> >>>>> that we have an incomplete timezone implementation that doesn't
> properly
> >>>>> take into account historical DST changes. This flares up without
> warning
> >>>>> especially when DST toggles. I created a wiki page to document the
> >>>>> situation: https://github.com/seandenigris/pharo/wiki/Time-
> Zone-Fiasco
> >>>>>
> >>>>> Here's an example blowup: at 11:59pm before DST changes, eval aDate
> :=
> >>>>> '1/1/1901' asDate. Now, wait two minutes and at 12:01am eval self
> assert:
> >>>>> '1/1/1901' asDate = aDate and⦠whammo, an exception! The "different"
> >>>>> offsets
> >>>>> render equal dates unequal depending on when the objects were
> created.
> >>>>>
> >>>>> The more I think about it, the more I think that we should just
> assume UTC
> >>>>> for all Date[AndTime]s that don't explicitly specify an offset,
> rather
> >>>>> than
> >>>>> pretend to set an offset which is only sometimes correct. More
> advanced
> >>>>> users can use one of the available libraries to get full timezone
> support.
> >>>>> What do you think?
> >>>>>
> >>>>>
> >>>>>
> >>>>> -----
> >>>>> Cheers,
> >>>>> Sean
> >>>>> --
> >>>>> Sent from: http://forum.world.st/Pharo-
> Smalltalk-Developers-f1294837.html
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>> --
> >>>> Sent from: http://forum.world.st/Pharo-Smalltalk-Developers-f1294837.
> html
> >>>>
> >>>
> >>
> >> --
> >> Esteban A. Maringolo
> >>
> >
>
>
>
--
_,,,^..^,,,_
best, Eliot
April 10, 2018
Re: [Pharo-dev] Changed #atEnd primitive - #atEnd vs #next returning nil
by Sven Van Caekenberghe
I have trouble understanding your problem analysis, and how your proposed solution, would solve it.
Where is it being said that #next and/or #atEnd should be blocking or non-blocking ?
How is this related to how EOF is signalled ?
It seems to me that there are quite a few classes of streams that are 'special' in the sense that #next could be blocking and/or #atEnd could be unclear - socket/network streams, serial streams, maybe stdio (interactive or not). Without a message like #isDataAvailable you cannot handle those without blocking.
Reading from stdin seems like a very rare case for a Smalltalk system (not that it should not be possible).
I have a feeling that too much functionality is being pushed into too small an API.
> On 10 Apr 2018, at 18:30, Alistair Grant <akgrant0710(a)gmail.com> wrote:
>
> First a quick update:
>
> After doing some work on primitiveFileAtEnd, #atEnd now answers
> correctly for files that don't report their size correctly, e.g.
> /dev/urandom and /proc/cpuinfo, whether the files are opened directly or
> redirected through stdin.
>
> However determining whether stdin from a terminal has reached the end of
> file can't be done without making #atEnd blocking since we have to wait
> for the user to flag the end of file, e.g. by typing Ctrl-D. And #atEnd
> is assumed to be non-blocking.
>
> So currently using ZnCharacterReadStream with stdin from a terminal will
> result in a stack dump similar to:
>
> MessageNotUnderstood: receiver of "<" is nil
> UndefinedObject(Object)>>doesNotUnderstand: #<
> ZnUTF8Encoder>>nextCodePointFromStream:
> ZnUTF8Encoder(ZnCharacterEncoder)>>nextFromStream:
> ZnCharacterReadStream>>nextElement
> ZnCharacterReadStream(ZnEncodedReadStream)>>next
> UndefinedObject>>DoIt
>
>
> Going back through the various suggestions that have been made regarding
> using a sentinel object vs. raising a notification / exception, my
> (still to be polished) suggestion is to:
>
> 1. Add an endOfStream instance variable
> 2. When the end of the stream is reached answer the value of the
> instance variable (i.e. the result of sending #value to the variable).
> 3. The initial default value would be a block that raises a Deprecation
> warning and then returns nil. This would allow existing code to
> function for a changeover period.
> 4. At the end of the deprecation period the default value would be
> changed to a unique sentinel object which would answer itself as its
> #value.
>
> At any time users of the stream can set their own sentinel, including a
> block that raises an exception.
>
>
> Cheers,
> Alistair
>
>
> On 4 April 2018 at 19:24, Stephane Ducasse <stepharo.self(a)gmail.com> wrote:
>> Thanks for this discussion.
>>
>> On Wed, Apr 4, 2018 at 1:37 PM, Sven Van Caekenberghe <sven(a)stfx.eu> wrote:
>>> Alistair,
>>>
>>> First off, thanks for the discussions and your contributions, I really appreciate them.
>>>
>>> But I want to have a discussion at the high level of the definition and semantics of the stream API in Pharo.
>>>
>>>> On 4 Apr 2018, at 13:20, Alistair Grant <akgrant0710(a)gmail.com> wrote:
>>>>
>>>> On 4 April 2018 at 12:56, Sven Van Caekenberghe <sven(a)stfx.eu> wrote:
>>>>> Playing a bit devil's advocate, the idea is that, in general,
>>>>>
>>>>> [ stream atEnd] whileFalse: [ stream next. "..." ].
>>>>>
>>>>> is no longer allowed ?
>>>>
>>>> It hasn't been allowed "forever" [1]. It's just been misused for
>>>> almost as long.
>>>>
>>>> [1] Time began when stdio stream support was introduced. :-)
>>>
>>> I am still not convinced. Another way to put it would be that the old #atEnd or #upToEnd do not make sense for these streams and some new loop is needed, based on a new test (it exists for socket streams already).
>>>
>>> [ stream isDataAvailable ] whileTrue: [ stream next ]
>>>
>>>>> And you want to replace it with
>>>>>
>>>>> [ stream next ifNil: [ false ] ifNotNil: [ :x | "..." true ] whileTrue.
>>>>>
>>>>> That is a pretty big change, no ?
>>>>
>>>> That's the way quite a bit of code already operates.
>>>>
>>>> As Denis pointed out, it's obviously problematic in the general sense,
>>>> since nil can be embedded in non-byte oriented streams. I suspect
>>>> that in practice not many people write code that reads streams from
>>>> both byte oriented and non-byte oriented streams.
>>>
>>> Maybe yes, maybe no. As Denis' example shows there is a clear definition problem.
>>>
>>> And I do use streams of byte arrays or strings all the time, this is really important. I want my parsers to work on all kinds of streams.
>>>
>>>>> I think/feel like a proper EOF exception would be better, more correct.
>>>>>
>>>>> [ [ stream next. "..." true ] on: EOF do: [ false ] ] whileTrue.
>>>>
>>>> I agree, but the email thread Nicolas pointed to raises some
>>>> performance questions about this approach. It should be
>>>> straightforward to do a basic performance comparison which I'll get
>>>> around to if other objections aren't raised.
>>>
>>> Reading in bigger blocks, using #readInto:startingAt:count: (which is basically Unix's (2) Read sys call), would solve performance problems, I think.
>>>
>>>>> Will we throw away #atEnd then ? Do we need it if we cannot use it ?
>>>>
>>>> Unix file i/o returns EOF if the end of file has been reach OR if an
>>>> error occurs. You should still check #atEnd after reading past the
>>>> end of the file to make sure no error occurred. Another part of the
>>>> primitive change I'm proposing is to return additional information
>>>> about what went wrong in the event of an error.
>>>
>>> I am sorry, but this kind of semantics (the OR) is way too complex at the general image level, it is too specific and based on certain underlying implementation details.
>>>
>>> Sven
>>>
>>>> We could modify the read primitive so that it fails if an error has
>>>> occurred, and then #atEnd wouldn't be required.
>>>>
>>>> Cheers,
>>>> Alistair
>>>>
>>>>
>>>>
>>>>>> On 4 Apr 2018, at 12:41, Alistair Grant <akgrant0710(a)gmail.com> wrote:
>>>>>>
>>>>>> Hi Nicolas,
>>>>>>
>>>>>> On 4 April 2018 at 12:36, Nicolas Cellier
>>>>>> <nicolas.cellier.aka.nice(a)gmail.com> wrote:
>>>>>>>
>>>>>>>
>>>>>>> 2018-04-04 12:18 GMT+02:00 Alistair Grant <akgrant0710(a)gmail.com>:
>>>>>>>>
>>>>>>>> Hi Sven,
>>>>>>>>
>>>>>>>> On Wed, Apr 04, 2018 at 11:32:02AM +0200, Sven Van Caekenberghe wrote:
>>>>>>>>> Somehow, somewhere there was a change to the implementation of the
>>>>>>>>> primitive called by some streams' #atEnd.
>>>>>>>>
>>>>>>>> That's a proposed change by me, but it hasn't been integrated yet. So
>>>>>>>> the discussion below should apply to the current stable vm (from August
>>>>>>>> last year).
>>>>>>>>
>>>>>>>>
>>>>>>>>> IIRC, someone said it is implemented as 'remaining size being zero'
>>>>>>>>> and some virtual unix files like /dev/random are zero sized.
>>>>>>>>
>>>>>>>> Currently, for files other than sdio (stdout, stderr, stdin) it is
>>>>>>>> effectively defined as:
>>>>>>>>
>>>>>>>> atEnd := stream position >= stream size
>>>>>>>>
>>>>>>>>
>>>>>>>> And, as you say, plenty of virtual unix files report size 0.
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>> Now, all kinds of changes are being done image size to work around this.
>>>>>>>>
>>>>>>>> I would phrase this slightly differently :-)
>>>>>>>>
>>>>>>>> Some code does the right thing, while other code doesn't. E.g.:
>>>>>>>>
>>>>>>>> MultiByteFileStream>>upToEnd is good, while
>>>>>>>> FileStream>>contents is incorrect
>>>>>>>>
>>>>>>>>
>>>>>>>>> I am a strong believer in simple, real (i.e. infinite) streams, but I
>>>>>>>>> am not sure we are doing the right thing here.
>>>>>>>>>
>>>>>>>>> Point is, I am not sure #next returning nil is official and universal.
>>>>>>>>>
>>>>>>>>> Consider the comments:
>>>>>>>>>
>>>>>>>>> Stream>>#next
>>>>>>>>> "Answer the next object accessible by the receiver."
>>>>>>>>>
>>>>>>>>> ReadStream>>#next
>>>>>>>>> "Primitive. Answer the next object in the Stream represented by the
>>>>>>>>> receiver. Fail if the collection of this stream is not an Array or a
>>>>>>>>> String.
>>>>>>>>> Fail if the stream is positioned at its end, or if the position is out
>>>>>>>>> of
>>>>>>>>> bounds in the collection. Optional. See Object documentation
>>>>>>>>> whatIsAPrimitive."
>>>>>>>>>
>>>>>>>>> Note how there is no talk about returning nil !
>>>>>>>>>
>>>>>>>>> I think we should discuss about this first.
>>>>>>>>>
>>>>>>>>> Was the low level change really correct and the right thing to do ?
>>>>>>>>
>>>>>>>> The primitive change proposed doesn't affect this discussion. It will
>>>>>>>> mean that #atEnd returns false (correctly) sometimes, while currently it
>>>>>>>> returns true (incorrectly). The end result is still incorrect, e.g.
>>>>>>>> #contents returns an empty string for /proc/cpuinfo.
>>>>>>>>
>>>>>>>> You're correct about no mention of nil, but we have:
>>>>>>>>
>>>>>>>> FileStream>>next
>>>>>>>>
>>>>>>>> (position >= readLimit and: [self atEnd])
>>>>>>>> ifTrue: [^nil]
>>>>>>>> ifFalse: [^collection at: (position := position + 1)]
>>>>>>>>
>>>>>>>>
>>>>>>>> which has been around for a long time (I suspect, before Pharo existed).
>>>>>>>>
>>>>>>>> Having said that, I think that raising an exception is a better
>>>>>>>> solution, but it is a much, much bigger change than the one I proposed
>>>>>>>> in https://github.com/pharo-project/pharo/pull/1180.
>>>>>>>>
>>>>>>>>
>>>>>>>> Cheers,
>>>>>>>> Alistair
>>>>>>>>
>>>>>>>
>>>>>>> Hi,
>>>>>>> yes, if you are after universal behavior englobing Unix streams, the
>>>>>>> Exception might be the best way.
>>>>>>> Because on special stream you can't allways say in advance, you have to try.
>>>>>>> That's the solution adopted by authors of Xtreams.
>>>>>>> But there is a runtime penalty associated to it.
>>>>>>>
>>>>>>> The penalty once was so high that my proposal to generalize EndOfStream
>>>>>>> usage was rejected a few years ago by AndreaRaab.
>>>>>>> http://forum.world.st/EndOfStream-unused-td68806.html
>>>>>>
>>>>>> Thanks for this, I'll definitely take a look.
>>>>>>
>>>>>> Do you have a sense of how Denis' suggestion of using an EndOfStream
>>>>>> object would compare?
>>>>>>
>>>>>> It would keep the same coding style, but avoid the problems with nil.
>>>>>>
>>>>>> Thanks,
>>>>>> Alistair
>>>>>>
>>>>>>
>>>>>>
>>>>>>> I have regularly benched Xtreams, but stopped a few years ago.
>>>>>>> Maybe i can excavate and pass on newer VM.
>>>>>>>
>>>>>>> In the mean time, i had experimented a programmable end of stream behavior
>>>>>>> (via a block, or any other valuable)
>>>>>>> http://www.squeaksource.com/XTream.htm
>>>>>>> so as to reconcile performance and universality, but it was a source of
>>>>>>> complexification at implementation side.
>>>>>>>
>>>>>>> Nicolas
>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>> 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.
>>>>>>>>>
>>>>>>>>> Sven
>>>>>
>>>>>
>>>>
>>>
>>>
>>
>
April 10, 2018
Re: [Pharo-dev] Changed #atEnd primitive - #atEnd vs #next returning nil
by Alistair Grant
First a quick update:
After doing some work on primitiveFileAtEnd, #atEnd now answers
correctly for files that don't report their size correctly, e.g.
/dev/urandom and /proc/cpuinfo, whether the files are opened directly or
redirected through stdin.
However determining whether stdin from a terminal has reached the end of
file can't be done without making #atEnd blocking since we have to wait
for the user to flag the end of file, e.g. by typing Ctrl-D. And #atEnd
is assumed to be non-blocking.
So currently using ZnCharacterReadStream with stdin from a terminal will
result in a stack dump similar to:
MessageNotUnderstood: receiver of "<" is nil
UndefinedObject(Object)>>doesNotUnderstand: #<
ZnUTF8Encoder>>nextCodePointFromStream:
ZnUTF8Encoder(ZnCharacterEncoder)>>nextFromStream:
ZnCharacterReadStream>>nextElement
ZnCharacterReadStream(ZnEncodedReadStream)>>next
UndefinedObject>>DoIt
Going back through the various suggestions that have been made regarding
using a sentinel object vs. raising a notification / exception, my
(still to be polished) suggestion is to:
1. Add an endOfStream instance variable
2. When the end of the stream is reached answer the value of the
instance variable (i.e. the result of sending #value to the variable).
3. The initial default value would be a block that raises a Deprecation
warning and then returns nil. This would allow existing code to
function for a changeover period.
4. At the end of the deprecation period the default value would be
changed to a unique sentinel object which would answer itself as its
#value.
At any time users of the stream can set their own sentinel, including a
block that raises an exception.
Cheers,
Alistair
On 4 April 2018 at 19:24, Stephane Ducasse <stepharo.self(a)gmail.com> wrote:
> Thanks for this discussion.
>
> On Wed, Apr 4, 2018 at 1:37 PM, Sven Van Caekenberghe <sven(a)stfx.eu> wrote:
>> Alistair,
>>
>> First off, thanks for the discussions and your contributions, I really appreciate them.
>>
>> But I want to have a discussion at the high level of the definition and semantics of the stream API in Pharo.
>>
>>> On 4 Apr 2018, at 13:20, Alistair Grant <akgrant0710(a)gmail.com> wrote:
>>>
>>> On 4 April 2018 at 12:56, Sven Van Caekenberghe <sven(a)stfx.eu> wrote:
>>>> Playing a bit devil's advocate, the idea is that, in general,
>>>>
>>>> [ stream atEnd] whileFalse: [ stream next. "..." ].
>>>>
>>>> is no longer allowed ?
>>>
>>> It hasn't been allowed "forever" [1]. It's just been misused for
>>> almost as long.
>>>
>>> [1] Time began when stdio stream support was introduced. :-)
>>
>> I am still not convinced. Another way to put it would be that the old #atEnd or #upToEnd do not make sense for these streams and some new loop is needed, based on a new test (it exists for socket streams already).
>>
>> [ stream isDataAvailable ] whileTrue: [ stream next ]
>>
>>>> And you want to replace it with
>>>>
>>>> [ stream next ifNil: [ false ] ifNotNil: [ :x | "..." true ] whileTrue.
>>>>
>>>> That is a pretty big change, no ?
>>>
>>> That's the way quite a bit of code already operates.
>>>
>>> As Denis pointed out, it's obviously problematic in the general sense,
>>> since nil can be embedded in non-byte oriented streams. I suspect
>>> that in practice not many people write code that reads streams from
>>> both byte oriented and non-byte oriented streams.
>>
>> Maybe yes, maybe no. As Denis' example shows there is a clear definition problem.
>>
>> And I do use streams of byte arrays or strings all the time, this is really important. I want my parsers to work on all kinds of streams.
>>
>>>> I think/feel like a proper EOF exception would be better, more correct.
>>>>
>>>> [ [ stream next. "..." true ] on: EOF do: [ false ] ] whileTrue.
>>>
>>> I agree, but the email thread Nicolas pointed to raises some
>>> performance questions about this approach. It should be
>>> straightforward to do a basic performance comparison which I'll get
>>> around to if other objections aren't raised.
>>
>> Reading in bigger blocks, using #readInto:startingAt:count: (which is basically Unix's (2) Read sys call), would solve performance problems, I think.
>>
>>>> Will we throw away #atEnd then ? Do we need it if we cannot use it ?
>>>
>>> Unix file i/o returns EOF if the end of file has been reach OR if an
>>> error occurs. You should still check #atEnd after reading past the
>>> end of the file to make sure no error occurred. Another part of the
>>> primitive change I'm proposing is to return additional information
>>> about what went wrong in the event of an error.
>>
>> I am sorry, but this kind of semantics (the OR) is way too complex at the general image level, it is too specific and based on certain underlying implementation details.
>>
>> Sven
>>
>>> We could modify the read primitive so that it fails if an error has
>>> occurred, and then #atEnd wouldn't be required.
>>>
>>> Cheers,
>>> Alistair
>>>
>>>
>>>
>>>>> On 4 Apr 2018, at 12:41, Alistair Grant <akgrant0710(a)gmail.com> wrote:
>>>>>
>>>>> Hi Nicolas,
>>>>>
>>>>> On 4 April 2018 at 12:36, Nicolas Cellier
>>>>> <nicolas.cellier.aka.nice(a)gmail.com> wrote:
>>>>>>
>>>>>>
>>>>>> 2018-04-04 12:18 GMT+02:00 Alistair Grant <akgrant0710(a)gmail.com>:
>>>>>>>
>>>>>>> Hi Sven,
>>>>>>>
>>>>>>> On Wed, Apr 04, 2018 at 11:32:02AM +0200, Sven Van Caekenberghe wrote:
>>>>>>>> Somehow, somewhere there was a change to the implementation of the
>>>>>>>> primitive called by some streams' #atEnd.
>>>>>>>
>>>>>>> That's a proposed change by me, but it hasn't been integrated yet. So
>>>>>>> the discussion below should apply to the current stable vm (from August
>>>>>>> last year).
>>>>>>>
>>>>>>>
>>>>>>>> IIRC, someone said it is implemented as 'remaining size being zero'
>>>>>>>> and some virtual unix files like /dev/random are zero sized.
>>>>>>>
>>>>>>> Currently, for files other than sdio (stdout, stderr, stdin) it is
>>>>>>> effectively defined as:
>>>>>>>
>>>>>>> atEnd := stream position >= stream size
>>>>>>>
>>>>>>>
>>>>>>> And, as you say, plenty of virtual unix files report size 0.
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>> Now, all kinds of changes are being done image size to work around this.
>>>>>>>
>>>>>>> I would phrase this slightly differently :-)
>>>>>>>
>>>>>>> Some code does the right thing, while other code doesn't. E.g.:
>>>>>>>
>>>>>>> MultiByteFileStream>>upToEnd is good, while
>>>>>>> FileStream>>contents is incorrect
>>>>>>>
>>>>>>>
>>>>>>>> I am a strong believer in simple, real (i.e. infinite) streams, but I
>>>>>>>> am not sure we are doing the right thing here.
>>>>>>>>
>>>>>>>> Point is, I am not sure #next returning nil is official and universal.
>>>>>>>>
>>>>>>>> Consider the comments:
>>>>>>>>
>>>>>>>> Stream>>#next
>>>>>>>> "Answer the next object accessible by the receiver."
>>>>>>>>
>>>>>>>> ReadStream>>#next
>>>>>>>> "Primitive. Answer the next object in the Stream represented by the
>>>>>>>> receiver. Fail if the collection of this stream is not an Array or a
>>>>>>>> String.
>>>>>>>> Fail if the stream is positioned at its end, or if the position is out
>>>>>>>> of
>>>>>>>> bounds in the collection. Optional. See Object documentation
>>>>>>>> whatIsAPrimitive."
>>>>>>>>
>>>>>>>> Note how there is no talk about returning nil !
>>>>>>>>
>>>>>>>> I think we should discuss about this first.
>>>>>>>>
>>>>>>>> Was the low level change really correct and the right thing to do ?
>>>>>>>
>>>>>>> The primitive change proposed doesn't affect this discussion. It will
>>>>>>> mean that #atEnd returns false (correctly) sometimes, while currently it
>>>>>>> returns true (incorrectly). The end result is still incorrect, e.g.
>>>>>>> #contents returns an empty string for /proc/cpuinfo.
>>>>>>>
>>>>>>> You're correct about no mention of nil, but we have:
>>>>>>>
>>>>>>> FileStream>>next
>>>>>>>
>>>>>>> (position >= readLimit and: [self atEnd])
>>>>>>> ifTrue: [^nil]
>>>>>>> ifFalse: [^collection at: (position := position + 1)]
>>>>>>>
>>>>>>>
>>>>>>> which has been around for a long time (I suspect, before Pharo existed).
>>>>>>>
>>>>>>> Having said that, I think that raising an exception is a better
>>>>>>> solution, but it is a much, much bigger change than the one I proposed
>>>>>>> in https://github.com/pharo-project/pharo/pull/1180.
>>>>>>>
>>>>>>>
>>>>>>> Cheers,
>>>>>>> Alistair
>>>>>>>
>>>>>>
>>>>>> Hi,
>>>>>> yes, if you are after universal behavior englobing Unix streams, the
>>>>>> Exception might be the best way.
>>>>>> Because on special stream you can't allways say in advance, you have to try.
>>>>>> That's the solution adopted by authors of Xtreams.
>>>>>> But there is a runtime penalty associated to it.
>>>>>>
>>>>>> The penalty once was so high that my proposal to generalize EndOfStream
>>>>>> usage was rejected a few years ago by AndreaRaab.
>>>>>> http://forum.world.st/EndOfStream-unused-td68806.html
>>>>>
>>>>> Thanks for this, I'll definitely take a look.
>>>>>
>>>>> Do you have a sense of how Denis' suggestion of using an EndOfStream
>>>>> object would compare?
>>>>>
>>>>> It would keep the same coding style, but avoid the problems with nil.
>>>>>
>>>>> Thanks,
>>>>> Alistair
>>>>>
>>>>>
>>>>>
>>>>>> I have regularly benched Xtreams, but stopped a few years ago.
>>>>>> Maybe i can excavate and pass on newer VM.
>>>>>>
>>>>>> In the mean time, i had experimented a programmable end of stream behavior
>>>>>> (via a block, or any other valuable)
>>>>>> http://www.squeaksource.com/XTream.htm
>>>>>> so as to reconcile performance and universality, but it was a source of
>>>>>> complexification at implementation side.
>>>>>>
>>>>>> Nicolas
>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>> 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.
>>>>>>>>
>>>>>>>> Sven
>>>>
>>>>
>>>
>>
>>
>
April 10, 2018
Re: [Pharo-dev] Why String do not implement #displayString?
by Denis Kudriashov
Hi Esteban.
We have method #displayOn: but it has different purpose: argument is a kind
of canvas. So it is not related.
2018-04-10 17:28 GMT+02:00 Esteban A. Maringolo <emaringolo(a)gmail.com>:
> Isn't #displayString implemented in terms of #displayOn: the same way
> #printString is implemented in terms of "printOn:"?
>
> And in the case of String #displayString should return the receiver (it
> is, self), so the following should be true.
>
> | s |
> s := 'Hello, ''Funny'' World'.
> s displayString = s. "true"
> s printString = s. "false"
>
> Regards,
>
>
> On 10/04/2018 12:21, Denis Kudriashov wrote:
> > Hi.
> >
> > According to the comment of #displayString it should be used as default
> > textual representation of objects in the UI:
> >
> > "While printString is about to give a detailled information about an
> > object, displayString is a message that should return a short
> > string-based representation to be used by list and related UI
> > frameworks. By default, simply return printString."
> > "asString should not be implemented in Object, and kept for
> > conversion between strings, symbols, text and characters."
> >
> > But String itself does not respect this message:
> >
> > 'some string' displayString " ==> '''someString''' "
> >
> >
> > Is it bug? Or is there any reason for this?
> >
> > Best regards,
> > Denis
>
> --
> Esteban A. Maringolo
>
>
April 10, 2018
Re: [Pharo-dev] call for help: answer on HN :)
by Sean P. DeNigris
philippeback wrote
> Who would have envisioned the Pharo of today in the beginning?
> I am thankful for Pharo, trolls be damned.
Absolutely agree!!
-----
Cheers,
Sean
--
Sent from: http://forum.world.st/Pharo-Smalltalk-Developers-f1294837.html
April 10, 2018
Re: [Pharo-dev] Why String do not implement #displayString?
by Esteban A. Maringolo
Isn't #displayString implemented in terms of #displayOn: the same way
#printString is implemented in terms of "printOn:"?
And in the case of String #displayString should return the receiver (it
is, self), so the following should be true.
| s |
s := 'Hello, ''Funny'' World'.
s displayString = s. "true"
s printString = s. "false"
Regards,
On 10/04/2018 12:21, Denis Kudriashov wrote:
> Hi.
>
> According to the comment of #displayString it should be used as default
> textual representation of objects in the UI:
>
> "While printString is about to give a detailled information about an
> object, displayString is a message that should return a short
> string-based representation to be used by list and related UI
> frameworks. By default, simply return printString."
> "asString should not be implemented in Object, and kept for
> conversion between strings, symbols, text and characters."
>
> But String itself does not respect this message:
>
> 'some string' displayString " ==> '''someString''' "
>
>
> Is it bug? Or is there any reason for this?
>
> Best regards,
> Denis
--
Esteban A. Maringolo
April 10, 2018
Why String do not implement #displayString?
by Denis Kudriashov
Hi.
According to the comment of #displayString it should be used as default
textual representation of objects in the UI:
"While printString is about to give a detailled information about an
object, displayString is a message that should return a short string-based
representation to be used by list and related UI frameworks. By default,
simply return printString."
"asString should not be implemented in Object, and kept for conversion
between strings, symbols, text and characters."
But String itself does not respect this message:
'some string' displayString " ==> '''someString''' "
Is it bug? Or is there any reason for this?
Best regards,
Denis
April 10, 2018
Re: [Pharo-dev] DateAndTime Offset Bug Proposal
by Sven Van Caekenberghe
> On 10 Apr 2018, at 16:46, Esteban A. Maringolo <emaringolo(a)gmail.com> wrote:
>
> This a recurring topic in the mailing list.
>
> See:
> http://forum.world.st/Interesting-Date-Time-Thread-on-Squeak-Dev-td4778652.…
>
> Or directly go to this https://www.w3.org/TR/timezone/
>
> Pharo's Date and Time classes are incremental/offset based, whereas a
> field based Date behaves more as "expected" in terms of adding
> days/months/days/hours/etc.
That is not really true (that it depends on the internal representation).
Any date/time/datetime object needs API/behaviour that allows accessing and manipulation in human terms. How this is implemented is up to the implementation (duh).
Having separate year/month/day fields does not at all shield you from the fact that 'adding a day to jan 27' is different to 'adding a day to feb 27', of 'dec 31' - the implementation has to make sure that all this works correctly (and this is often pretty complex, needing to take many aspects into account). Having separate fields suggest this is easy, but that is a delusion.
Anyway, I am pretty sure you understand.
And about Java's Calendar, I know that it is an object that manipulates other objects, it just has a pretty ugly interface, and does not feel very OO like. I hear many people curse it, but it probably does its job.
> The internal implementation might vary and there are going to be
> tradeoffs, but IMO for scheduling solutions calendar based are better
> suited.
>
> Regards!
>
>
> On 10/04/2018 11:13, Stephane Ducasse wrote:
>> What is a field based date and time?
>>
>> On Tue, Apr 10, 2018 at 1:32 PM, Esteban A. Maringolo
>> <emaringolo(a)gmail.com> wrote:
>>> What is missing in the current Pharo image is a field based
>>> Date/DateTime instead of an offset+duration one as it currently is.
>>>
>>> Why not use Chronos instead? AFAIR Chronos provides that.
>>>
>>> An alternative would be to implement a "Calendar" (as in
>>> Java.util.Calendar [1]), that can exist in parallel with the existing
>>> Date class.
>>>
>>> Regards,
>>>
>>> [1] https://developer.android.com/reference/java/util/Calendar.html
>>>
>>> On 10/04/2018 03:30, Stephane Ducasse wrote:
>>>> Hi Paul
>>>>
>>>> I agree and instead of patching the current system I would start using
>>>> TDD to design
>>>> a new Date package.
>>>>
>>>> stef
>>>>
>>>> On Mon, Apr 9, 2018 at 8:42 PM, Paul DeBruicker <pdebruic(a)gmail.com> wrote:
>>>>> I think #= is a bad selector for Date and should be avoided when determining
>>>>> whether something happens on a date, or whether two dates are the same. We
>>>>> all know March 24th in London covers a different 24 hours than March 24th in
>>>>> Hawaii but Date>>#= does not.
>>>>>
>>>>>
>>>>>
>>>>> I think whats needed are more descriptive selectors like
>>>>>
>>>>>
>>>>> Date>>#isSameOnDateAs: aDateOrDateAndTime
>>>>> Date>>#overlapsWithDate: aDate
>>>>> DateAndTime>>#occursOnDate: aDate
>>>>> DateAndTime>>#sameHMSButDifferentUTCIn: aTimeZoneKey
>>>>> DateAndTime>>#sameUTCButDifferentHMSIn: aTimeZoneKey
>>>>>
>>>>> and change Date>>#= to #shouldNotImplement.
>>>>>
>>>>>
>>>>> FWIW I also don't like #offset: as before you send it you know the timezone
>>>>> and after you may let that knowledge be forgotten. Real offsets can change
>>>>> as laws change.
>>>>>
>>>>>
>>>>>
>>>>> I think people are aware of this but if you have need for comparing dates &
>>>>> times then you must use a library that accesses the regularly updated Olson
>>>>> timezone database on your system and classes that respect time zones. Time
>>>>> zones are political, and legal definitions of offsets can change hours
>>>>> before the DST transition dates & times.
>>>>>
>>>>>
>>>>> I don't think it matters which default timezone you pick for the image if
>>>>> you're not going to take them into account when doing comparisons.
>>>>>
>>>>>
>>>>> Unfortunately there isn't a way to avoid this complexity until DST goes
>>>>> away.
>>>>>
>>>>>
>>>>> There's certainly flaws to how we currently do it and I think
>>>>> TimeZoneDatabase and Chronos make good attempts to fix it. I haven't looked
>>>>> at Chalten but would guess its good too.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> Sean P. DeNigris wrote
>>>>>> I was bitten by this very annoying bug again. As most of us probably know
>>>>>> due
>>>>>> to the steady stream of confused ML posts in the past, the bug in summary
>>>>>> is
>>>>>> that we have an incomplete timezone implementation that doesn't properly
>>>>>> take into account historical DST changes. This flares up without warning
>>>>>> especially when DST toggles. I created a wiki page to document the
>>>>>> situation: https://github.com/seandenigris/pharo/wiki/Time-Zone-Fiasco
>>>>>>
>>>>>> Here's an example blowup: at 11:59pm before DST changes, eval aDate :=
>>>>>> '1/1/1901' asDate. Now, wait two minutes and at 12:01am eval self assert:
>>>>>> '1/1/1901' asDate = aDate and⦠whammo, an exception! The "different"
>>>>>> offsets
>>>>>> render equal dates unequal depending on when the objects were created.
>>>>>>
>>>>>> The more I think about it, the more I think that we should just assume UTC
>>>>>> for all Date[AndTime]s that don't explicitly specify an offset, rather
>>>>>> than
>>>>>> pretend to set an offset which is only sometimes correct. More advanced
>>>>>> users can use one of the available libraries to get full timezone support.
>>>>>> What do you think?
>>>>>>
>>>>>>
>>>>>>
>>>>>> -----
>>>>>> Cheers,
>>>>>> Sean
>>>>>> --
>>>>>> Sent from: http://forum.world.st/Pharo-Smalltalk-Developers-f1294837.html
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Sent from: http://forum.world.st/Pharo-Smalltalk-Developers-f1294837.html
>>>>>
>>> --
>>> Esteban A. Maringolo
>>>
>
> --
> Esteban A. Maringolo
>
>
>
April 10, 2018
Re: [Pharo-dev] DateAndTime Offset Bug Proposal
by Esteban A. Maringolo
On 10/04/2018 11:37, Sven Van Caekenberghe wrote:
> Right now, we are discussing what should be in the image by default.
>
> The current system is not bad at all, it just has deficiencies that could be improved upon.
>
>> An alternative would be to implement a "Calendar" (as in
>> Java.util.Calendar [1]), that can exist in parallel with the existing
>> Date class.
>
> I am not so sure that is a good example.
First time I new about Calendar I found it awkward (starting with the
name). Years later I understood its purpose in comparison with a "point
in time" Date or Timestamp.
The name and implementation are TBD, but what I'm trying to exemplify is
a particular case in a popular language.
Regards!
April 10, 2018
Re: [Pharo-dev] DateAndTime Offset Bug Proposal
by Esteban A. Maringolo
This a recurring topic in the mailing list.
See:
http://forum.world.st/Interesting-Date-Time-Thread-on-Squeak-Dev-td4778652.…
Or directly go to this https://www.w3.org/TR/timezone/
Pharo's Date and Time classes are incremental/offset based, whereas a
field based Date behaves more as "expected" in terms of adding
days/months/days/hours/etc.
The internal implementation might vary and there are going to be
tradeoffs, but IMO for scheduling solutions calendar based are better
suited.
Regards!
On 10/04/2018 11:13, Stephane Ducasse wrote:
> What is a field based date and time?
>
> On Tue, Apr 10, 2018 at 1:32 PM, Esteban A. Maringolo
> <emaringolo(a)gmail.com> wrote:
>> What is missing in the current Pharo image is a field based
>> Date/DateTime instead of an offset+duration one as it currently is.
>>
>> Why not use Chronos instead? AFAIR Chronos provides that.
>>
>> An alternative would be to implement a "Calendar" (as in
>> Java.util.Calendar [1]), that can exist in parallel with the existing
>> Date class.
>>
>> Regards,
>>
>> [1] https://developer.android.com/reference/java/util/Calendar.html
>>
>> On 10/04/2018 03:30, Stephane Ducasse wrote:
>>> Hi Paul
>>>
>>> I agree and instead of patching the current system I would start using
>>> TDD to design
>>> a new Date package.
>>>
>>> stef
>>>
>>> On Mon, Apr 9, 2018 at 8:42 PM, Paul DeBruicker <pdebruic(a)gmail.com> wrote:
>>>> I think #= is a bad selector for Date and should be avoided when determining
>>>> whether something happens on a date, or whether two dates are the same. We
>>>> all know March 24th in London covers a different 24 hours than March 24th in
>>>> Hawaii but Date>>#= does not.
>>>>
>>>>
>>>>
>>>> I think whats needed are more descriptive selectors like
>>>>
>>>>
>>>> Date>>#isSameOnDateAs: aDateOrDateAndTime
>>>> Date>>#overlapsWithDate: aDate
>>>> DateAndTime>>#occursOnDate: aDate
>>>> DateAndTime>>#sameHMSButDifferentUTCIn: aTimeZoneKey
>>>> DateAndTime>>#sameUTCButDifferentHMSIn: aTimeZoneKey
>>>>
>>>> and change Date>>#= to #shouldNotImplement.
>>>>
>>>>
>>>> FWIW I also don't like #offset: as before you send it you know the timezone
>>>> and after you may let that knowledge be forgotten. Real offsets can change
>>>> as laws change.
>>>>
>>>>
>>>>
>>>> I think people are aware of this but if you have need for comparing dates &
>>>> times then you must use a library that accesses the regularly updated Olson
>>>> timezone database on your system and classes that respect time zones. Time
>>>> zones are political, and legal definitions of offsets can change hours
>>>> before the DST transition dates & times.
>>>>
>>>>
>>>> I don't think it matters which default timezone you pick for the image if
>>>> you're not going to take them into account when doing comparisons.
>>>>
>>>>
>>>> Unfortunately there isn't a way to avoid this complexity until DST goes
>>>> away.
>>>>
>>>>
>>>> There's certainly flaws to how we currently do it and I think
>>>> TimeZoneDatabase and Chronos make good attempts to fix it. I haven't looked
>>>> at Chalten but would guess its good too.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> Sean P. DeNigris wrote
>>>>> I was bitten by this very annoying bug again. As most of us probably know
>>>>> due
>>>>> to the steady stream of confused ML posts in the past, the bug in summary
>>>>> is
>>>>> that we have an incomplete timezone implementation that doesn't properly
>>>>> take into account historical DST changes. This flares up without warning
>>>>> especially when DST toggles. I created a wiki page to document the
>>>>> situation: https://github.com/seandenigris/pharo/wiki/Time-Zone-Fiasco
>>>>>
>>>>> Here's an example blowup: at 11:59pm before DST changes, eval aDate :=
>>>>> '1/1/1901' asDate. Now, wait two minutes and at 12:01am eval self assert:
>>>>> '1/1/1901' asDate = aDate and⦠whammo, an exception! The "different"
>>>>> offsets
>>>>> render equal dates unequal depending on when the objects were created.
>>>>>
>>>>> The more I think about it, the more I think that we should just assume UTC
>>>>> for all Date[AndTime]s that don't explicitly specify an offset, rather
>>>>> than
>>>>> pretend to set an offset which is only sometimes correct. More advanced
>>>>> users can use one of the available libraries to get full timezone support.
>>>>> What do you think?
>>>>>
>>>>>
>>>>>
>>>>> -----
>>>>> Cheers,
>>>>> Sean
>>>>> --
>>>>> Sent from: http://forum.world.st/Pharo-Smalltalk-Developers-f1294837.html
>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Sent from: http://forum.world.st/Pharo-Smalltalk-Developers-f1294837.html
>>>>
>> --
>> Esteban A. Maringolo
>>
--
Esteban A. Maringolo
April 10, 2018