2010/3/31 Bert Freudenberg <bert@freudenbergs.de>
On 31.03.2010, at 18:15, Igor Stasenko wrote:
>
> On 31 March 2010 18:24, Bert Freudenberg <bert@freudenbergs.de> wrote:
>> On 31.03.2010, at 17:23, Andreas Raab wrote:
>>>
>>> On 3/31/2010 8:13 AM, Bert Freudenberg wrote:
>>>> Show me a single place that would break in a real-world use-case.
>>>>
>>>> In fact, #become: is rarely used in Squeak because of its inherent slowness caused by our direct-pointer object model. And those rare places I can think of would work just fine.
>>>
>>> I think there is one, and only one, place where #become: is intrinsically required: Changing class shape.
>>
>> Thought about that. Should be fine.
>>
> Magma using a forwarding proxies to indicate a not-yet reified objects
> in memory.
>
> Suppose that you having multiple different objects, which referencing
> such proxy.
> Proxy is not reified before a first message sent to it and used as a
> simple reference.
> Nothing prevents you from having many other objects, which pointing to
> that proxy without reifying a real object.
> And now, think about that with introduction of immutability, some of
> these objects is immutable. This means that it is now possible to have
> an immutable object, which having a reference to forwarding proxy.
> (even more than that, this is more than likely, because Magma will use
> an immutability for own purposes, to track changes to objects which
> belong to DB graph).
> At some stage, your model sending a message to forwarding proxy, and
> therefore magma needs to reify a real object
> in memory and replace all references to proxy with it.
> This is easy to implement by using a #becomeForward:, but if you
> change the  #becomeForward: semantics to not replace the references in
> immutable objects, you will efficiently break this scheme , and it
> can't be used reliably anymore.

Not at all. Of course you should not make an object immutable that you want to mutate later. That's the whole point really.


With your "become logic" reference to proxy (like proxy in magma and glorp) will never materialized if immutability used for object modification tracking.
And it will break this frameworks (magma, glorp)