Hi David,<br><br><div class="gmail_quote">On Tue, Aug 24, 2010 at 5:24 AM, David T. Lewis <span dir="ltr">&lt;<a href="mailto:lewis@mail.msen.com">lewis@mail.msen.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Eliot,<br>
<br>
I am afraid that I may have misunderstood your original request<br>
to retract the change.<br>
<br>
I assumed that you were refering to Time class&gt;&gt;primUtcWithOffset<br>
that I had added to trunk (and I did remove that method), but<br>
in rereading your note I think you may have been referring to<br>
the earlier VMMaker updates that introduced the primitives<br>
#primitiveMicrosecondClock and #primitiveUtcWithOffset. In<br>
particular, #primitiveMicrosecondClock seems similar to the<br>
Cog primitives, which include #primitiveUTCMicrosecondClock<br>
and #primitiveLocalMicrosecondClock.<br>
<br>
Apologies for my misunderstanding, but can you please clarify<br>
which methods you were suggesting should be retracted?<br>
<br>
        Interpreter&gt;&gt;primitiveMicrosecondClock<br>
        Interpreter&gt;&gt;primitiveUtcWithOffset<br>
        Time class&gt;&gt;primMicrosecondClock<br>
        Time class&gt;&gt;primUtcWithOffset<br></blockquote><div><br></div><div>If primitiveMicrosecondClock answers 64-bit UTC microseconds since 1901 this is the same as Cog&#39;s primitiveUTCMicrosecondClock and should be retained.  It also needs a 64-bit local microseconds since 1901 which would be the same as Cog&#39;s primitiveLocalMicrosecondClock and a primitiveSignalAtUTCMicroseconds which is for 64-bit microseconds since 1901 what primitiveSignalAtMilliseconds is for 30-bit wrapping milliseconds (again see Cog).  We then need to agree on some primitive numbers or primitive names.  In Cog these three are</div>
<div><br></div><div><div><span class="Apple-tab-span" style="white-space:pre">                </span>(240 primitiveUTCMicrosecondClock)<span class="Apple-tab-span" style="white-space:pre">                </span>&quot;was serial port primitive&quot;</div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>(241 primitiveLocalMicrosecondClock)<span class="Apple-tab-span" style="white-space:pre">                </span>&quot;was serial port primitive&quot;</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>(242 primitiveSignalAtUTCMicroseconds)</div>
<div><br></div><div>Cog also has</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>(243 primitiveUpdateTimezone) &quot;primStringtranslatefromtotable&quot;</div></div><div><br></div><div><div>primitiveUpdateTimezone</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>&quot;Update the VMs notion of the current timezone.  The VM sets its notion</div><div><span class="Apple-tab-span" style="white-space:pre">        </span> of the timezone once at start-up.  If one wants the VM to keep its notion</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span> up-to-date arrange to invoke this primitive periodically.&quot;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>self ioUpdateVMTimezone</div>
</div><div><br></div><div>which causes the VM to reevaluate the delta between UTC and local microseconds.</div><div><br></div><div>With these four one has a non-wrapping synchronised timebase with potentially microsecond resolution that marries well with Squeak&#39;s 64-bit integer support.  This approach worked very well for VisualWorks where we got rid of lots of customer problems every 49.7 days (2^32 milliseconds).  There has been some concern expressed about the performance impact of long integers but at least in VW that simply wasn&#39;t an issue.</div>
<div><br></div><div>best</div><div>Eliot  </div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<br>
Thanks,<br>
Dave<br>
<div><div></div><div class="h5"><br>
<br>
On Mon, Aug 23, 2010 at 11:04:57AM -0700, Eliot Miranda wrote:<br>
&gt;<br>
&gt; On Sun, Aug 22, 2010 at 7:39 PM, David T. Lewis &lt;<a href="mailto:lewis@mail.msen.com">lewis@mail.msen.com</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; Eliot,<br>
&gt; &gt;<br>
&gt; &gt; Yes, it can be retracted. I may not get to it for a few days so feel<br>
&gt; &gt; free to do so on my behalf. I introduced the change in trunk to put<br>
&gt; &gt; some visibility on the new primitives, which appears to have achieved<br>
&gt; &gt; the intended purpose ;)<br>
&gt; &gt;<br>
&gt; &gt; With respect to the Squeak epoch, we do have an issue that needs to<br>
&gt; &gt; be clarified. In the Squeak implementation, we have the 1901 epoch,<br>
&gt; &gt; but AFAIK there is no specification of the time zone in which the epoch<br>
&gt; &gt; is defined. In the Squeak implementation, local time has consistently<br>
&gt; &gt; been used in the platform interface, and the actual values of the<br>
&gt; &gt; Squeak clock for any real point in time are different depending on<br>
&gt; &gt; the time zone in which the image happens to be running.<br>
&gt; &gt;<br>
&gt;<br>
&gt; It&#39;s implicit that it is GMT/UTC.  So the Squeak epoch is the start of 1901<br>
&gt; in Greenwich.<br>
&gt;<br>
&gt; To put it another way, there is no such thing as &quot;UTC &amp; local<br>
&gt; &gt; microseconds from the Smalltalk epoch&quot; unless there is a clearly<br>
&gt; &gt; defined transformation between the Smalltalk epoch and the posix<br>
&gt; &gt; epoch, and in practice (in Squeak at least) this is not the case.<br>
&gt; &gt; Midnight on January 1, 1901 in Palo Alto, California was a different<br>
&gt; &gt; point in time from midnight January 1, 1901 in London, and I cannot<br>
&gt; &gt; determine which of the two was the &quot;real&quot; Smalltalk epoch.<br>
&gt; &gt;<br>
&gt;<br>
&gt; The latter is the only one that makes good sense.<br>
&gt;<br>
&gt;<br>
&gt; &gt; This begs the question of why, in implementing the interface to<br>
&gt; &gt; the underlying platform, we would *not* want use the posix epoch<br>
&gt; &gt; as a reference point. The Posix epoch is well defined, well documented,<br>
&gt; &gt; well understood, and easily translated to any existing definition of<br>
&gt; &gt; the Smalltalk epoch. In contrast, the Smalltalk epoch is ambiguously<br>
&gt; &gt; defined, poorly documented, and widely misunderstood.<br>
&gt; &gt;<br>
&gt;<br>
&gt; I think its easy to fix; just define it to be the start of the 20th century<br>
&gt; in UTC.  That&#39;s what we did with VW and its easy to do with Squeak.  For me<br>
&gt; backwards compatibility pushes strongly for keeping with the Squeak epoch,<br>
&gt; i.e. Time seconds = Time milliseconds / 1000000.<br>
&gt;<br>
&gt; best,<br>
&gt; Eliot<br>
&gt;<br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; Dave<br>
&gt; &gt;<br>
&gt; &gt; On Sat, Aug 14, 2010 at 05:28:28PM -0700, Eliot Miranda wrote:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Hi David,<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;     any chance of getting you to retract this?  The Cog VM has 64-bit UTC<br>
&gt; &gt; &amp;<br>
&gt; &gt; &gt; local microseconds from the Smalltalk epoch (1901), which are hence<br>
&gt; &gt; easier<br>
&gt; &gt; &gt; to use as a basis for the Squeak clock and still last for ~ 54,000 years.<br>
&gt; &gt; &gt;  I&#39;d like to see the Cog and standard VMs converge on a primitive set.<br>
&gt; &gt;  This<br>
&gt; &gt; &gt; is an issue for me since changing the epoch is, I think, an unnecessary<br>
&gt; &gt; &gt; change.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; best<br>
&gt; &gt; &gt; Eliot<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; On Sat, Aug 14, 2010 at 4:55 PM, &lt;<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>&gt; wrote:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Changes to Trunk (<a href="http://source.squeak.org/trunk.html" target="_blank">http://source.squeak.org/trunk.html</a>) in the last 24<br>
&gt; &gt; &gt; &gt; hours:<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; <a href="http://lists.squeakfoundation.org/pipermail/packages/2010-August/003596.html" target="_blank">http://lists.squeakfoundation.org/pipermail/packages/2010-August/003596.html</a><br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Name: Kernel-dtl.476<br>
&gt; &gt; &gt; &gt; Ancestors: Kernel-eem.475<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Add Time class&gt;&gt;primMicrosecondClock and Time class&gt;&gt;primUtcWithOffset<br>
&gt; &gt; for<br>
&gt; &gt; &gt; &gt; access to microsecond clock primitives available in newer Squeak VMs.<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; primMicrosecondClock provides a system clock with nominal microsecond<br>
&gt; &gt; &gt; &gt; precision.<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; primUtcWithOffset answers UTC time as microseconds since the Posix<br>
&gt; &gt; epoch<br>
&gt; &gt; &gt; &gt; and offset as seconds offset from GMT. The Squeak clock is<br>
&gt; &gt; traditionally<br>
&gt; &gt; &gt; &gt; implemented in terms of platform local time. Use of UTC time and offset<br>
&gt; &gt; is<br>
&gt; &gt; &gt; &gt; advantageous if time zones and daylight saving time offsets are to be<br>
&gt; &gt; &gt; &gt; considered.<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Example:<br>
&gt; &gt; &gt; &gt; { Time primMillisecondClock .<br>
&gt; &gt; &gt; &gt;   Time primMicrosecondClock .<br>
&gt; &gt; &gt; &gt;   Time primUtcWithOffset } ==&gt; #(6932757 6932757830 #(1281815075538304<br>
&gt; &gt; &gt; &gt; -14400))<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; =============================================<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
<br>
</div></div></blockquote></div><br>