Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
34 messages Options
12
Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

stephane ducasse-2

> You think its cheap to scan methods for mutablity??  Remember you have to identify inst var writes not just mutating primitives like at:put:.

in our experimentation on doing a per reference flow of security property (pure research) we have to check all the iv store and this is not
something I would do on a real solution.

I have the impression that the immutability bit can give us an opportunity to slowly build a more secure system.
What I like is that it is simple to understand and we can build alternate and enhanced solution. Even if for us it uses a bit that we like to have to
create strange ideas.

>
> BTW, I implemented a per-class scheme ages ago in above BrouHaHa (in a Smalltalk-80 v2.3 derived image) to provide immutable literals.  It worked badly for literals since 'foo' class ~~ 'foo' copy class (one needs an ImmutableByteString class and a ByteString class for every class one wants to make immutable).

Eliot I did not get that why for every class

>  Lots of the system was affected by the change since the store string of a mutable string ends up being
>     'the immutable string literal' copy
> to get a mutable string.
>
> Our experience with VisualWorks was different.  Lots of methods had to be changed because they were attempting to update immutable literals.  There were lots of
>     stream := '' writeStream.
> throughout the system which had not been noticed.

Yes this would be nice to spot such places. I would really like to know other cases where immutability helped VW.
Do you have some anecdotes?
Since it required an effort to bring that in VW, what was the selling argument at that time for getting it into the system?

>  But unlike the BrouHaHa experience the changes only affected violations of immutability.  In BrouHaHa the changes were due to trying to accommodate the clumsy class-based scheme.
>
> cheers,
> Eliot
>
>
> > Cheers,
> >  - Andreas
> >
>
>
>
> --
> Best regards,
> Igor Stasenko AKA sig.
>

Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

Andreas.Raab
In reply to this post by Eliot Miranda-2
 
On 6/9/2010 12:30 PM, Eliot Miranda wrote:

>     Oh, and one thing that I'm just realizing is that by far the biggest
>     impact of immutability is in primitives and plugins. All primitives
>     in all plugins must be rewritten to test for mutability of the
>     objects they store into before this can work reliably. Ouch.
>
>
> Ouch indeed.  One can at least put a check in interpreterProxy to catch
> attempts and cause primitives to fail.  It won't be pretty but will
> serve as lint for the plugins.
>
> Off the top of your head which plugins are likely to do writes?  And
> which of those are likely to do writes to immutables?

Off the top of my head:

[x] ADPCMCodecPlugin
[ ] B3DAcceleratorPlugin
[x] BMPReadWriterPlugin
[x] BitBltSimulation
[ ] CroquetPlugin
[ ] DSAPlugin
[ ] DropPlugin
[x] FFTPlugin
[x] FilePlugin
[x] FloatArrayPlugin
[ ] FloatMathPlugin
[x] InflatePlugin
[x] JPEGReaderPlugin
[x] Matrix2x3Plugin
[x] MiscPrimitivePlugin
[ ] SecurityPlugin
[x] SoundCodecPlugin
[x] SoundGenerationPlugin
[x] StarSqueakPlugin
[x] SurfacePlugin
[x] FFIPlugin
[x] BalloonEngineBase
[x] KlattSynthesizerPlugin
[x] B3DEnginePlugin
[x] OSProcessPlugin
[?] AioPlugin
[?] XDisplayControlPlugin
[x] DeflatePlugin
[x] AsynchFilePlugin
[?] FileCopyPlugin
[?] GeniePlugin
[?] HostWindowPlugin
[?] InternetConfigPlugin
[x] JPEGReadWriter2Plugin
[ ] JoystickTabletPlugin
[ ] LargeIntegersPlugin
[x] LocalePlugin
[x] MIDIPlugin
[?] MacMenubarPlugin
[ ] Mpeg3Plugin
[ ] QuicktimePlugin
[?] RePlugin
[x] SerialPlugin
[x] SocketPlugin
[x] SoundPlugin
[x] TestOSAPlugin
[x] UUIDPlugin
[x] FT2Plugin
[x] BalloonEnginePlugin
Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

Igor Stasenko
In reply to this post by Eliot Miranda-2

On 9 June 2010 23:24, Eliot Miranda <[hidden email]> wrote:

>
>
>
> On Wed, Jun 9, 2010 at 1:14 PM, Igor Stasenko <[hidden email]> wrote:
>>
>> On 9 June 2010 22:57, Eliot Miranda <[hidden email]> wrote:
>> >
>> >
>> >
>> > On Wed, Jun 9, 2010 at 12:34 PM, Igor Stasenko <[hidden email]> wrote:
>> >>
>> >> On 9 June 2010 21:51, Andreas Raab <[hidden email]> wrote:
>> >> >
>> >> > On 6/8/2010 7:41 AM, David T. Lewis wrote:
>> >> >>
>> >> >> What do the VM developers think with respect adopting the VM changes?
>> >> >> The immutability bit is a scarce resource. Is it OK to allocate it
>> >> >> for this purpose or are there likely to be other projects interested
>> >> >> in using it for other reasons?
>> >> >
>> >> > Oh, and one thing that I'm just realizing is that by far the biggest impact
>> >> > of immutability is in primitives and plugins. All primitives in all plugins
>> >> > must be rewritten to test for mutability of the objects they store into
>> >> > before this can work reliably. Ouch.
>> >> >
>> >>
>> >> Yeah. I told before, that i'm not a big fan of making VM more and more clever.
>> >> It is because 'clever' is synonym to 'complexity'.
>> >>
>> >> I'd rather focus on providing immutability at language side, instead
>> >> of implementing it
>> >> primitively.
>> >>
>> >> However, i am thinking, if there could be good alternatives to
>> >> immutability bit in object header.
>> >> One idea is to add this bit on a per-class basis, not on a per-instance basis.
>> >>
>> >> Then VM could check immutability during a method lookup and throw
>> >> exception before entering method(s) which can mutate
>> >> an instance of such class. But then we should also divide
>> >> primitives/methods on those which can and can't
>> >> mutate the object's state, which is also a lot of work.
>> >
>> > You think its cheap to scan methods for mutablity??  Remember you have to identify inst var writes not just mutating primitives like at:put:.
>> >
>> >>
>> >> Checking before entering method potentially will have much less impact
>> >> on performance, because it is not so fine granular as per each write.
>> >
>> > I don't think so.  Not without a JIT to cache the scanning of methods for mutators.
>>
>> It could be done at compilation stage. No need  to scan bytecode at run time. :)
>> I referred to checks as 'if this method perform writes to receiver'.
>> But not 'if this method performs writes anywhere'.
>>
>> >This scheme also only works for methods, not for code in plugins.
>>
>> Sure. Plugins is another story.
>>
>> > The above is speculation.  The immutability scheme I'm discussing is real and known to work in practice.
>> >
>> > BTW, I implemented a per-class scheme ages ago in above BrouHaHa (in a Smalltalk-80 v2.3 derived image) to provide immutable literals.  It worked badly for literals since 'foo' class ~~ 'foo' copy class (one needs an ImmutableByteString class and a ByteString class for every class one wants to make immutable).
>>
>> I don't see this as a disadvantage.
>> Mutable and immutable objects are clearly having different behavior.
>> And in smalltalk the only way to get two objects with different
>> behavior is to use different classes for them. No?
>>
>> > Lots of the system was affected by the change since the store string of a mutable string ends up being
>> >     'the immutable string literal' copy
>> > to get a mutable string.
>>
>> Err.. not sure i understood what 'store string of a mutable string' means.
>>
>> What is the point in having an immutable objects then, if you
>> automatically copying them at write attempt?
>> I don't see any gains comparing to:
>>
>> ' the mutable string' copy at: 1 put: $x
>>
>>
>> > Our experience with VisualWorks was different.  Lots of methods had to be changed because they were attempting to update immutable literals.  There were lots of
>> >     stream := '' writeStream.
>> > throughout the system which had not been noticed.  But unlike the BrouHaHa experience the changes only affected violations of immutability.  In BrouHaHa the changes were due to trying to accommodate the clumsy class-based scheme.
>>
>> I am really interested to hear more about BrouHaHa implementation,
>> because i like this approach. So, i'd like to hear,
>> why you considering it clumsy.
>
> Consider the file-out of a method category stamp:
> !FooClass methodsFor: 'category' stamp: 'initials date'!
> Since a literal string is immutable and has a different class to a normal mutable string then in the original Smalltalk-80 code without changing the file-out code to take account of immutability the above printed out as
> !FooClass methodsFor: 'category' copy stamp: 'initials date' copy!
> So many places which used storeString et al with literals that had mutable duals (string and array literals) had to be rewritten to produce the old format.  Clumsy.

I am confused by this example. Why one should file out !FooClass
methodsFor: 'category' copy stamp: 'initials date' copy!
instead of old one?
I am agree, that this will require a sizeable effort for introducing
the immutable subclasses.
But in this way, it is reflected in a language, instead of implicit
and hidden VM checks.

> But you don't need take my word for it.  Try it and see.  Implement e.g. LiteralByteString & LiteralByteArray, modify the compiler and see how things go.

:)

> cheers,
> Eliot
>>

>



--
Best regards,
Igor Stasenko AKA sig.
Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

Eliot Miranda-2
In reply to this post by stephane ducasse-2
 


On Wed, Jun 9, 2010 at 1:27 PM, stephane ducasse <[hidden email]> wrote:

> You think its cheap to scan methods for mutablity??  Remember you have to identify inst var writes not just mutating primitives like at:put:.

in our experimentation on doing a per reference flow of security property (pure research) we have to check all the iv store and this is not
something I would do on a real solution.

I have the impression that the immutability bit can give us an opportunity to slowly build a more secure system.
What I like is that it is simple to understand and we can build alternate and enhanced solution. Even if for us it uses a bit that we like to have to
create strange ideas.

>
> BTW, I implemented a per-class scheme ages ago in above BrouHaHa (in a Smalltalk-80 v2.3 derived image) to provide immutable literals.  It worked badly for literals since 'foo' class ~~ 'foo' copy class (one needs an ImmutableByteString class and a ByteString class for every class one wants to make immutable).

Eliot I did not get that why for every class

>  Lots of the system was affected by the change since the store string of a mutable string ends up being
>     'the immutable string literal' copy
> to get a mutable string.
>
> Our experience with VisualWorks was different.  Lots of methods had to be changed because they were attempting to update immutable literals.  There were lots of
>     stream := '' writeStream.
> throughout the system which had not been noticed.

Yes this would be nice to spot such places. I would really like to know other cases where immutability helped VW.
Do you have some anecdotes?
Since it required an effort to bring that in VW, what was the selling argument at that time for getting it into the system?

Looking at my old emails it looks like I did it as a skunkworks project in the VM for fun, based on conversations with Alan Knight and Martin McClure and probably Steve Dahl.  I was technical lead so I did have some latitude to do what I thought was right. Once it was done we started using it internally and while the process was painful as we discovered all the places where immutable literals were being written to we also thought that it was in part worth-while precisely because we were finding places where immutable literals were being written to.  Alan Knight did yeoman's work providing a UI and underlying machinery to allow one to "turn-off" immutability checking by having the exception disable immutability, redo the mutation and continue, or to do the same, reenabling immutability and logging the attempt to the transcript.  So customers could turn off strict immutability while they got their code up and running.  The GemStone folks, especially Martin McLure provided plenty of encouragement.  It delayed the release a little (in fact ephemerons caused much more problems) but it was one of the two major VM features of VW 7.


>  But unlike the BrouHaHa experience the changes only affected violations of immutability.  In BrouHaHa the changes were due to trying to accommodate the clumsy class-based scheme.
>
> cheers,
> Eliot
>
>
> > Cheers,
> >  - Andreas
> >
>
>
>
> --
> Best regards,
> Igor Stasenko AKA sig.
>


Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

Eliot Miranda-2
In reply to this post by Igor Stasenko
 
Igor,

On Wed, Jun 9, 2010 at 1:34 PM, Igor Stasenko <[hidden email]> wrote:

On 9 June 2010 23:24, Eliot Miranda <[hidden email]> wrote:
>
>
>
> On Wed, Jun 9, 2010 at 1:14 PM, Igor Stasenko <[hidden email]> wrote:
>>
>> On 9 June 2010 22:57, Eliot Miranda <[hidden email]> wrote:
>> >
>> >
>> >
>> > On Wed, Jun 9, 2010 at 12:34 PM, Igor Stasenko <[hidden email]> wrote:
>> >>
>> >> On 9 June 2010 21:51, Andreas Raab <[hidden email]> wrote:
>> >> >
>> >> > On 6/8/2010 7:41 AM, David T. Lewis wrote:
>> >> >>
>> >> >> What do the VM developers think with respect adopting the VM changes?
>> >> >> The immutability bit is a scarce resource. Is it OK to allocate it
>> >> >> for this purpose or are there likely to be other projects interested
>> >> >> in using it for other reasons?
>> >> >
>> >> > Oh, and one thing that I'm just realizing is that by far the biggest impact
>> >> > of immutability is in primitives and plugins. All primitives in all plugins
>> >> > must be rewritten to test for mutability of the objects they store into
>> >> > before this can work reliably. Ouch.
>> >> >
>> >>
>> >> Yeah. I told before, that i'm not a big fan of making VM more and more clever.
>> >> It is because 'clever' is synonym to 'complexity'.
>> >>
>> >> I'd rather focus on providing immutability at language side, instead
>> >> of implementing it
>> >> primitively.
>> >>
>> >> However, i am thinking, if there could be good alternatives to
>> >> immutability bit in object header.
>> >> One idea is to add this bit on a per-class basis, not on a per-instance basis.
>> >>
>> >> Then VM could check immutability during a method lookup and throw
>> >> exception before entering method(s) which can mutate
>> >> an instance of such class. But then we should also divide
>> >> primitives/methods on those which can and can't
>> >> mutate the object's state, which is also a lot of work.
>> >
>> > You think its cheap to scan methods for mutablity??  Remember you have to identify inst var writes not just mutating primitives like at:put:.
>> >
>> >>
>> >> Checking before entering method potentially will have much less impact
>> >> on performance, because it is not so fine granular as per each write.
>> >
>> > I don't think so.  Not without a JIT to cache the scanning of methods for mutators.
>>
>> It could be done at compilation stage. No need  to scan bytecode at run time. :)
>> I referred to checks as 'if this method perform writes to receiver'.
>> But not 'if this method performs writes anywhere'.
>>
>> >This scheme also only works for methods, not for code in plugins.
>>
>> Sure. Plugins is another story.
>>
>> > The above is speculation.  The immutability scheme I'm discussing is real and known to work in practice.
>> >
>> > BTW, I implemented a per-class scheme ages ago in above BrouHaHa (in a Smalltalk-80 v2.3 derived image) to provide immutable literals.  It worked badly for literals since 'foo' class ~~ 'foo' copy class (one needs an ImmutableByteString class and a ByteString class for every class one wants to make immutable).
>>
>> I don't see this as a disadvantage.
>> Mutable and immutable objects are clearly having different behavior.
>> And in smalltalk the only way to get two objects with different
>> behavior is to use different classes for them. No?
>>
>> > Lots of the system was affected by the change since the store string of a mutable string ends up being
>> >     'the immutable string literal' copy
>> > to get a mutable string.
>>
>> Err.. not sure i understood what 'store string of a mutable string' means.
>>
>> What is the point in having an immutable objects then, if you
>> automatically copying them at write attempt?
>> I don't see any gains comparing to:
>>
>> ' the mutable string' copy at: 1 put: $x
>>
>>
>> > Our experience with VisualWorks was different.  Lots of methods had to be changed because they were attempting to update immutable literals.  There were lots of
>> >     stream := '' writeStream.
>> > throughout the system which had not been noticed.  But unlike the BrouHaHa experience the changes only affected violations of immutability.  In BrouHaHa the changes were due to trying to accommodate the clumsy class-based scheme.
>>
>> I am really interested to hear more about BrouHaHa implementation,
>> because i like this approach. So, i'd like to hear,
>> why you considering it clumsy.
>
> Consider the file-out of a method category stamp:
> !FooClass methodsFor: 'category' stamp: 'initials date'!
> Since a literal string is immutable and has a different class to a normal mutable string then in the original Smalltalk-80 code without changing the file-out code to take account of immutability the above printed out as
> !FooClass methodsFor: 'category' copy stamp: 'initials date' copy!
> So many places which used storeString et al with literals that had mutable duals (string and array literals) had to be rewritten to produce the old format.  Clumsy.

I am confused by this example. Why one should file out !FooClass
methodsFor: 'category' copy stamp: 'initials date' copy!
instead of old one?
I am agree, that this will require a sizeable effort for introducing
the immutable subclasses.
But in this way, it is reflected in a language, instead of implicit
and hidden VM checks.

In a class-based immutability scheme its likely that something analogous to the following is true:

'a literal string' class == LiteralByteString
'a literal string' copy class == ByteString

If so then its likely that
      'a literal string' storeString
is the characters
      'a literal string'
but that
      (ByteString withAll: 'a literal string') storeString
(i.e. a mutable form of the string 'a literal string')
is the characters
       'a literal string' copy
since we want
    (Compiler evaluate: aThing storeString) class = aThing class
to be true.

So if you go for a class-based immutable literal scheme you're torn between wanting a mutable string to print as a literal string and wanting literals to be immutable and normal strings not to be.


> But you don't need take my word for it.  Try it and see.  Implement e.g. LiteralByteString & LiteralByteArray, modify the compiler and see how things go.

:)

I'm serious.  Its not hard.  Do the experiment.  Better than waffling about thinking it's a better scheme without any experience.  My experience was that it was easy to implement and lots of things broke, but the things that broke were innocent bystanders.  My experience with the immutability bit was that it was a little tricky to implement in the VM and reasonably easy to apply in the image and lots of things broke, but the things that broke were broken and few innocent bystanders were hurt.


best,
Eliot

> cheers,
> Eliot
>>

>



--
Best regards,
Igor Stasenko AKA sig.

Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak

Jecel Assumpcao Jr
 
I don't want to interrupt this interesting discussion, but am wondering
if the alternative of having a dedicated memory area for immutable
objects and moving objects to/from there has been considered? Then you
can exploit the features of the underlying hardware or operating system
to trap any writes to one of those objects.

About immutable strings, that is what Self uses instead of symbols. It
works great, but is certainly harder to adapt for an existing system
than building it in from the start. Another Self feature I like is that
characters are just strings of length 1 (Logo also works like this).

-- Jecel

Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

Andreas.Raab
In reply to this post by Eliot Miranda-2
 
On 6/9/2010 11:40 AM, Eliot Miranda wrote:

>     Secondly, for concurrency uses (which is the aspect that interests
>     me most) the "kind" of immutability proposed here is wrong. What's
>     proposed here is a one-level immutability which is really more a
>     kind of write barrier, i.e., it gets turned on, then it gets caught,
>     then it gets turned off, and is written to anyway. For concurrency,
>     you need immutability that is a) transitive (i.e., freezes an entire
>     object graph) and b) irreversible (i.e., sealing the object graph).
>
>
> That's fine and one can build deep immutability above the shallow
> immutability that the immutable bit provides.  All one needs to do is
> traverse the object graph, setting the immutability bit.  You might want
> to carefully control unsetting the immutability bit so that its hard to
> inadvertently turn off immutability in substructure to get b).  But in
> any case turning off immutability on something that is immutable is
> never  something that's done lightly.
>
> I have at least discussed using shallow immutability to implement deep
> immutability with Gilad for Newspeak and he hasn't yet said it can't be
> done this way.

The issue isn't "implementing" deep immutability, the issue is "proving"
that something is deeply immutable. Here is the use case: For
concurrency as in E, Erlang and others, the goal is to share immutable
objects between different concurrent units. To do this effectively, you
must *prove* that a structure you're passing on is deeply immutable.
There are two effective ways of doing this:

1) Have a flag that says that the object is deeply immutable and that
only ever gets updated by freezing objects that are itself deeply immutable.
2) Traverse the object graph to prove deep immutability.

Option #2 wouldn't be so bad if not for the following problem: In order
to prove non-trivial (circular) immutability you'll have to run a GC-ish
algorithm which (unless you've got yet another header bit ;-) becomes
inefficient since you'll have to throw out your current allocation state
(the way image segments do it) which causes major inefficiencies.

And of course, allowing objects to become mutable again just throws
everything out of the window...

> Note tat deep immutability is a tricky issue.  Is the class of a deeply
> immutable object immutable or can one still add methods to it?

The object and its contents are immutable, not its class. The class
could separately be immutable (there is a longer argument here why
that's The Right Thing to do even for deeply frozen structures).

> What
> happens (with both shallow and deep immutability) if one tries to add an
> instance variable to a class that has immutable instances?

The same as with one-level immutability; there is no difference. An
instance can be updated and inherits the flags of the old instance. And
become is already allowed to modify "immutable" instances, no?

> What if one
> wants a mostly deeply immutable data structure that contains e.g. a
> mutable query cache that memos the most recent N results of some
> expensive query?  Exactly what parts of a data structure should be
> immutable when is typically application and data structure dependent and
> some blanket deep immutability scheme in the VM is likely to be too
> inflexible.  A simple per-object bit which has simple semantics and can
> serve in many different uses is flexible enough, at least if 15 years of
> experience with VisualAge and 10 years of experience with VW is meaningful.

But in what applications? I suspect that the answer is "object
databases, object databases, and ... err ... object databases" ;-)

(not that I'm saying that object databases aren't useful or important
but I suspect this particular use of immutability is not remotely as
general in practice as people seem to imply - and if I'm wrong, I'm
looking forward to learning something new here)

>     So should we add two header bits for immutability instead of one?
>     What concerns me here is that any use of immutability appears to be
>     requiring yet another header bit - a sign that we thoroughly do not
>     understand what immutability is and how it should be implemented.
>     Thus my feeling that throwing header bits at the problem is the
>     wrong direction.
>
>
> Agreed.  I'm not proposing throwing bits at the problem.  One bit's
> enough.  Its up to the image level to design a good framework around the
> basic VM facility, and that's been done already.

Same thing. It would help to provide a few concrete examples.
What has been done, where, and what's it used for?

>     I'm not strongly opposed to it but header bits *are* a scarce
>     resource so their allocation should be done carefully as well as the
>     choice of semantics. I can say for sure that I would feel *much*
>     better if there was a customer who'd say "yes, this is exactly what
>     I need, the semantics is precisely right for what I need it for"
>     instead of just "Oooooohhhh, immutability, cooooool" (which is all
>     I'm hearing).
>
>
> While some people might be saying "it's cool" I hear the GemStone folks
> saying "we much prefer using the immutability bit than rewriting code.
>   the immutability bit has worked much better in practice", and GemStone
> has plenty of customers who don't have to worry about the issue because
> GemStone has done all the work for them. I don't hear anyone from
> VisualAge and VisualWorks saying "It's a bad idea, it's had a
> deleterious effect on performance".

Actually, I think the opposite is true. If you could use immutability
for (lock-free) concurrency, I suspect that this is going to save a
*lot* more cycles than it costs. Both in the CPU and your brain ;-)

Cheers,
   - Andreas
Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

Eliot Miranda-2
 


On Wed, Jun 9, 2010 at 3:27 PM, Andreas Raab <[hidden email]> wrote:

On 6/9/2010 11:40 AM, Eliot Miranda wrote:
   Secondly, for concurrency uses (which is the aspect that interests
   me most) the "kind" of immutability proposed here is wrong. What's
   proposed here is a one-level immutability which is really more a
   kind of write barrier, i.e., it gets turned on, then it gets caught,
   then it gets turned off, and is written to anyway. For concurrency,
   you need immutability that is a) transitive (i.e., freezes an entire
   object graph) and b) irreversible (i.e., sealing the object graph).


That's fine and one can build deep immutability above the shallow
immutability that the immutable bit provides.  All one needs to do is
traverse the object graph, setting the immutability bit.  You might want
to carefully control unsetting the immutability bit so that its hard to
inadvertently turn off immutability in substructure to get b).  But in
any case turning off immutability on something that is immutable is
never  something that's done lightly.

I have at least discussed using shallow immutability to implement deep
immutability with Gilad for Newspeak and he hasn't yet said it can't be
done this way.

The issue isn't "implementing" deep immutability, the issue is "proving" that something is deeply immutable.

The issue is of course both.  How one implements deep immutability /is/ a worthy topic of discussion (as this thread demonstrates) and not something that can be condescended away by shifting levels.
 
Here is the use case: For concurrency as in E, Erlang and others, the goal is to share immutable objects between different concurrent units. To do this effectively, you must *prove* that a structure you're passing on is deeply immutable. There are two effective ways of doing this:

1) Have a flag that says that the object is deeply immutable and that only ever gets updated by freezing objects that are itself deeply immutable.
2) Traverse the object graph to prove deep immutability.


Option #2 wouldn't be so bad if not for the following problem: In order to prove non-trivial (circular) immutability you'll have to run a GC-ish algorithm which (unless you've got yet another header bit ;-) becomes inefficient since you'll have to throw out your current allocation state (the way image segments do it) which causes major inefficiencies.

Option 2 can be written in Smalltalk without a data structure to record the visited set by provisionally setting the immutability bit to terminate the recursion, unsetting it if the attempt to freeze substructure failed.

Further, option 2 can be implemented at instance creation time so a root object is only instantiated if all its parts are immutable and an attempt to do otherwise fails.  If one has to prove that an object is immutable after instantiation something is wrong.  The framework should support maintaining immutability throughout an object's lifetime.

So trivially shallow immutability can implement deep immutability if a system provides no way to turn-off shallow immutability once on and if an object is created shallowly immutable but having only immutable substructure.  The issue then becomes when to allow immutability to be temporarily rescinded, e.g. for instance mutation on class redefinition.
      

And of course, allowing objects to become mutable again just throws everything out of the window...

Which has already been discussed.  One can take various approaches to preventing immutability being reset.  It is possible to build a general framework that allows some objects to toggle their immutability sate (e.g. to implement write barriers) while others refuse to (e.g. to implement deep immutability).

 
Note that deep immutability is a tricky issue.  Is the class of a deeply
immutable object immutable or can one still add methods to it?

The object and its contents are immutable, not its class. The class could separately be immutable (there is a longer argument here why that's The Right Thing to do even for deeply frozen structures).


What
happens (with both shallow and deep immutability) if one tries to add an
instance variable to a class that has immutable instances?

The same as with one-level immutability; there is no difference. An instance can be updated and inherits the flags of the old instance.

Right; a convenient default for a typical Smalltalk development system.
 
And become is already allowed to modify "immutable" instances, no?

FWIW, in VW a symmetric become: fails it either object is immutable & one-way become always succeeds, and I'm not sure the latter is correct.  It depends on usage.  Some uses of one-way become are legit (mutating existing instances when class definitions change), others are not.
 

What if one
wants a mostly deeply immutable data structure that contains e.g. a
mutable query cache that memos the most recent N results of some
expensive query?  Exactly what parts of a data structure should be
immutable when is typically application and data structure dependent and
some blanket deep immutability scheme in the VM is likely to be too
inflexible.  A simple per-object bit which has simple semantics and can
serve in many different uses is flexible enough, at least if 15 years of
experience with VisualAge and 10 years of experience with VW is meaningful.

But in what applications? I suspect that the answer is "object databases, object databases, and ... err ... object databases" ;-)

(not that I'm saying that object databases aren't useful or important but I suspect this particular use of immutability is not remotely as general in practice as people seem to imply - and if I'm wrong, I'm looking forward to learning something new here)

You've already discussed a broad use category in introducing concurrency above.  Another broad category is being able to pass by value in a distributed system.  Another is providing immutable literals.  None of these are to do with OODBs. 



   So should we add two header bits for immutability instead of one?
   What concerns me here is that any use of immutability appears to be
   requiring yet another header bit - a sign that we thoroughly do not
   understand what immutability is and how it should be implemented.
   Thus my feeling that throwing header bits at the problem is the
   wrong direction.


Agreed.  I'm not proposing throwing bits at the problem.  One bit's
enough.  Its up to the image level to design a good framework around the
basic VM facility, and that's been done already.

Same thing. It would help to provide a few concrete examples.
What has been done, where, and what's it used for?

In VW there's a Modification Management framework that supports attaching modification behaviours to specific objects.  By default an attempt to modify an object is an error (except by the class builder).  Managers attached to specific objects can handle modification errors in various ways depending on the application.  Above that you implement what you want, including GemStone's persistence framework.  
  

   I'm not strongly opposed to it but header bits *are* a scarce
   resource so their allocation should be done carefully as well as the
   choice of semantics. I can say for sure that I would feel *much*
   better if there was a customer who'd say "yes, this is exactly what
   I need, the semantics is precisely right for what I need it for"
   instead of just "Oooooohhhh, immutability, cooooool" (which is all
   I'm hearing).


While some people might be saying "it's cool" I hear the GemStone folks
saying "we much prefer using the immutability bit than rewriting code.
 the immutability bit has worked much better in practice", and GemStone
has plenty of customers who don't have to worry about the issue because
GemStone has done all the work for them. I don't hear anyone from
VisualAge and VisualWorks saying "It's a bad idea, it's had a
deleterious effect on performance".

Actually, I think the opposite is true. If you could use immutability for (lock-free) concurrency, I suspect that this is going to save a *lot* more cycles than it costs. Both in the CPU and your brain ;-)

Cheers,
 - Andreas

cheers,
Eliot
Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

Andreas.Raab
 
On 6/9/2010 5:15 PM, Eliot Miranda wrote:
>     The issue isn't "implementing" deep immutability, the issue is
>     "proving" that something is deeply immutable.
>
>
> The issue is of course both.  How one implements deep immutability /is/
> a worthy topic of discussion (as this thread demonstrates) and not
> something that can be condescended away by shifting levels.

Obviously. But what I was trying to point out is that the problem
doesn't arise when it comes to constructing an immutable object graph
(i.e., "implementing" deep immutability) but that the issues arise when
you need to ensure that what you're passing along is in fact
deep-frozen. Might have been bad terminology on my part.

>     2) Traverse the object graph to prove deep immutability.
>
> Option 2 can be written in Smalltalk without a data structure to record
> the visited set by provisionally setting the immutability bit to
> terminate the recursion, unsetting it if the attempt to freeze
> substructure failed.
>
> Further, option 2 can be implemented at instance creation time so a root
> object is only instantiated if all its parts are immutable and an
> attempt to do otherwise fails.  If one has to prove that an object is
> immutable after instantiation something is wrong.  The framework should
> support maintaining immutability throughout an object's lifetime.
>
> So trivially shallow immutability can implement deep immutability if a
> system provides no way to turn-off shallow immutability once on and if
> an object is created shallowly immutable but having only immutable
> substructure.  The issue then becomes when to allow immutability to be
> temporarily rescinded, e.g. for instance mutation on class redefinition.

All of this is exactly right, but now you're making my point ;-)
I'm *asking* for that level of support of immutability. Are we perhaps a
little confused as to what "policy" means in this context? To me it
means what I can build in the image with the semantics that are provided
by the VMs implementation and primitives. And I can currently *not*
reliably build what you describe above with the means provided (simply
due to the fact that one can nilly-willy change the immutability bit on
any object one likes). However, if you consider primitives part of the
policy then indeed one could do that by ripping out the existing set of
prims and replacing them with others.

BTW, for the records, I think I do see your point here. I think what
you're saying is that regardless of how/when immutability is turned on
for objects, the VM (plugin) support is useful to have since it provides
a basic layer which makes utilizing immutability in various contexts
possible. Thus, even though we might argue a couple of years about
whether there should be a prim for turning immutability off or not, it
shouldn't stop us from allowing the VM to trip over an object that has
in fact been marked immutable. I do agree with that reasoning.

>     But in what applications? I suspect that the answer is "object
>     databases, object databases, and ... err ... object databases" ;-)
>
>     (not that I'm saying that object databases aren't useful or
>     important but I suspect this particular use of immutability is not
>     remotely as general in practice as people seem to imply - and if I'm
>     wrong, I'm looking forward to learning something new here)
>
>
> You've already discussed a broad use category in introducing concurrency
> above.  Another broad category is being able to pass by value in a
> distributed system.  Another is providing immutable literals.  None of
> these are to do with OODBs.

Well we're hypothesizing about some uses here. They haven't been
implemented. What I've been wondering is how immutability in those
systems has been *actually* used and in particular whether (m)any non-db
apps or uses were amongst them.

> In VW there's a Modification Management framework that supports
> attaching modification behaviours to specific objects.  By default an
> attempt to modify an object is an error (except by the class builder).
> Managers attached to specific objects can handle modification errors
> in various ways depending on the application.  Above that you implement
> what you want, including GemStone's persistence framework.

Thanks. Any other known uses for this outside persistence (which is the
"database" category) and immutable literals?

Cheers,
   - Andreas
Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

Eliot Miranda-2
 


On Wed, Jun 9, 2010 at 7:15 PM, Andreas Raab <[hidden email]> wrote:

On 6/9/2010 5:15 PM, Eliot Miranda wrote:
   The issue isn't "implementing" deep immutability, the issue is
   "proving" that something is deeply immutable.


The issue is of course both.  How one implements deep immutability /is/
a worthy topic of discussion (as this thread demonstrates) and not
something that can be condescended away by shifting levels.

Obviously. But what I was trying to point out is that the problem doesn't arise when it comes to constructing an immutable object graph (i.e., "implementing" deep immutability) but that the issues arise when you need to ensure that what you're passing along is in fact deep-frozen. Might have been bad terminology on my part.

   2) Traverse the object graph to prove deep immutability.

Option 2 can be written in Smalltalk without a data structure to record
the visited set by provisionally setting the immutability bit to
terminate the recursion, unsetting it if the attempt to freeze
substructure failed.

Further, option 2 can be implemented at instance creation time so a root
object is only instantiated if all its parts are immutable and an
attempt to do otherwise fails.  If one has to prove that an object is
immutable after instantiation something is wrong.  The framework should
support maintaining immutability throughout an object's lifetime.

So trivially shallow immutability can implement deep immutability if a
system provides no way to turn-off shallow immutability once on and if
an object is created shallowly immutable but having only immutable
substructure.  The issue then becomes when to allow immutability to be
temporarily rescinded, e.g. for instance mutation on class redefinition.

All of this is exactly right, but now you're making my point ;-)
I'm *asking* for that level of support of immutability. Are we perhaps a little confused as to what "policy" means in this context? To me it means what I can build in the image with the semantics that are provided by the VMs implementation and primitives. And I can currently *not* reliably build what you describe above with the means provided (simply due to the fact that one can nilly-willy change the immutability bit on any object one likes). However, if you consider primitives part of the policy then indeed one could do that by ripping out the existing set of prims and replacing them with others.

The primitive to turn-off immutability is a problem and needs a proper control mechanism (handwaving towards mirrors).  This is problematic and I just accept it because that's the status quo in current Smalltalk implementations. Its exactly like instVarAt:put:, which allows one to do dreadful damage willy-nilly to almost every object, but in practice doesn't because we use it very carefully.  Likewise turning immutability off.  Until we work out a good way of doing this handling the primitive using asbestos gloves is the only way I know.

Now with that limitation acknowledged and accepted is what we van built out of the immutability facilities useful?  I think so.  There are still other limitations; we've no way to safely pass immutable objects out to foreign code (although we could presumably check validity, at some expense, by taking a copy or for byte objects, a hash before passing the object); we're reliying on plugins to be written correctly to respect immutability.  But in the "do 95% of the job" "don't let the perfect be the enemy of the good" house style I'd rather have something imperfect than nothing.



BTW, for the records, I think I do see your point here. I think what you're saying is that regardless of how/when immutability is turned on for objects, the VM (plugin) support is useful to have since it provides a basic layer which makes utilizing immutability in various contexts possible. Thus, even though we might argue a couple of years about whether there should be a prim for turning immutability off or not, it shouldn't stop us from allowing the VM to trip over an object that has in fact been marked immutable. I do agree with that reasoning.

Good.  That's always my perspective as a VM engineer.  I don't pretend to be a language designer.  I believe more in (ok, am more able at) getting one's hands dirty playing and exploring than in preconceiving a perfect solution.  When someone does conceive of the perfect solution I'll happily do my best to implement it efficiently :)  As soon as there's a model of mirror use that provides a secure VM I'll adopt it, etc, etc.  I think this is also house style.  Look at the absence of unwind-protect and the complete lack of safety in Semaphore>>critical: in Smalltalk-80 V2.  Thankfully no one put designing the language above getting useful things done.


   But in what applications? I suspect that the answer is "object
   databases, object databases, and ... err ... object databases" ;-)

   (not that I'm saying that object databases aren't useful or
   important but I suspect this particular use of immutability is not
   remotely as general in practice as people seem to imply - and if I'm
   wrong, I'm looking forward to learning something new here)


You've already discussed a broad use category in introducing concurrency
above.  Another broad category is being able to pass by value in a
distributed system.  Another is providing immutable literals.  None of
these are to do with OODBs.

Well we're hypothesizing about some uses here. They haven't been implemented. What I've been wondering is how immutability in those systems has been *actually* used and in particular whether (m)any non-db apps or uses were amongst them.


In VW there's a Modification Management framework that supports
attaching modification behaviours to specific objects.  By default an
attempt to modify an object is an error (except by the class builder).
Managers attached to specific objects can handle modification errors
in various ways depending on the application.  Above that you implement
what you want, including GemStone's persistence framework.

Thanks. Any other known uses for this outside persistence (which is the "database" category) and immutable literals?

Not to my knowledge, but I've been away from VW for a while now.  I hope someone's used it for more.  I think the distributed object scenario is a good one and might conceivably fit well with Croquet.
 

Cheers,
 - Andreas

cheers,
Eliot 

Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak

Colin Putney
In reply to this post by Andreas.Raab


On 2010-06-09, at 3:27 PM, Andreas Raab wrote:

> But in what applications? I suspect that the answer is "object databases, object databases, and ... err ... object databases" ;-)

Well, let's say out-of-image persistence in general. That includes object databases, O/R mapping frameworks, document databases, and command journals. A few years ago, when Seaside 2 started to take off, there was a flurry of persistence schemes written for use with Seaside. See the wiki pages about the options, for example:

http://wiki.squeak.org/squeak/3582
http://wiki.squeak.org/squeak/512

None of them have been terribly successful, and Seaside apps tend to get by with persistence schemes that aren't great, but work well enough for that particular app. It's a real problem, and we've gone years without a good solution.

Would an immutability bit solve this mess? I don't know. One thing I do know is that any scheme for persisting objects outside an image is really freakin' hard without a good write barrier.

Maybe persistence *is* the only practical application of immutability. But if so, it's an important one. Seaside may be drawing new users to Smalltalk, but Squeak is the only platform without a good story on persistence. Gemstone has persistence down to a fine art. VW isn't as sexy, but it has solid connectivity to RDBMs and Gemstone, immutability, and Glorp. Squeak has nothing, or nearly so.

Colin
Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

stephane ducasse-2
In reply to this post by Eliot Miranda-2

+ 1
I think that having immutability can let people experiment for real.

Stef
On Jun 10, 2010, at 5:16 AM, Eliot Miranda wrote:

>
>
> On Wed, Jun 9, 2010 at 7:15 PM, Andreas Raab <[hidden email]> wrote:
>
> On 6/9/2010 5:15 PM, Eliot Miranda wrote:
>    The issue isn't "implementing" deep immutability, the issue is
>    "proving" that something is deeply immutable.
>
>
> The issue is of course both.  How one implements deep immutability /is/
> a worthy topic of discussion (as this thread demonstrates) and not
> something that can be condescended away by shifting levels.
>
> Obviously. But what I was trying to point out is that the problem doesn't arise when it comes to constructing an immutable object graph (i.e., "implementing" deep immutability) but that the issues arise when you need to ensure that what you're passing along is in fact deep-frozen. Might have been bad terminology on my part.
>
>    2) Traverse the object graph to prove deep immutability.
>
> Option 2 can be written in Smalltalk without a data structure to record
> the visited set by provisionally setting the immutability bit to
> terminate the recursion, unsetting it if the attempt to freeze
> substructure failed.
>
> Further, option 2 can be implemented at instance creation time so a root
> object is only instantiated if all its parts are immutable and an
> attempt to do otherwise fails.  If one has to prove that an object is
> immutable after instantiation something is wrong.  The framework should
> support maintaining immutability throughout an object's lifetime.
>
> So trivially shallow immutability can implement deep immutability if a
> system provides no way to turn-off shallow immutability once on and if
> an object is created shallowly immutable but having only immutable
> substructure.  The issue then becomes when to allow immutability to be
> temporarily rescinded, e.g. for instance mutation on class redefinition.
>
> All of this is exactly right, but now you're making my point ;-)
> I'm *asking* for that level of support of immutability. Are we perhaps a little confused as to what "policy" means in this context? To me it means what I can build in the image with the semantics that are provided by the VMs implementation and primitives. And I can currently *not* reliably build what you describe above with the means provided (simply due to the fact that one can nilly-willy change the immutability bit on any object one likes). However, if you consider primitives part of the policy then indeed one could do that by ripping out the existing set of prims and replacing them with others.
>
> The primitive to turn-off immutability is a problem and needs a proper control mechanism (handwaving towards mirrors).  This is problematic and I just accept it because that's the status quo in current Smalltalk implementations. Its exactly like instVarAt:put:, which allows one to do dreadful damage willy-nilly to almost every object, but in practice doesn't because we use it very carefully.  Likewise turning immutability off.  Until we work out a good way of doing this handling the primitive using asbestos gloves is the only way I know.
>
> Now with that limitation acknowledged and accepted is what we van built out of the immutability facilities useful?  I think so.  There are still other limitations; we've no way to safely pass immutable objects out to foreign code (although we could presumably check validity, at some expense, by taking a copy or for byte objects, a hash before passing the object); we're reliying on plugins to be written correctly to respect immutability.  But in the "do 95% of the job" "don't let the perfect be the enemy of the good" house style I'd rather have something imperfect than nothing.
>
>
>
> BTW, for the records, I think I do see your point here. I think what you're saying is that regardless of how/when immutability is turned on for objects, the VM (plugin) support is useful to have since it provides a basic layer which makes utilizing immutability in various contexts possible. Thus, even though we might argue a couple of years about whether there should be a prim for turning immutability off or not, it shouldn't stop us from allowing the VM to trip over an object that has in fact been marked immutable. I do agree with that reasoning.
>
> Good.  That's always my perspective as a VM engineer.  I don't pretend to be a language designer.  I believe more in (ok, am more able at) getting one's hands dirty playing and exploring than in preconceiving a perfect solution.  When someone does conceive of the perfect solution I'll happily do my best to implement it efficiently :)  As soon as there's a model of mirror use that provides a secure VM I'll adopt it, etc, etc.  I think this is also house style.  Look at the absence of unwind-protect and the complete lack of safety in Semaphore>>critical: in Smalltalk-80 V2.  Thankfully no one put designing the language above getting useful things done.
>
>
>    But in what applications? I suspect that the answer is "object
>    databases, object databases, and ... err ... object databases" ;-)
>
>    (not that I'm saying that object databases aren't useful or
>    important but I suspect this particular use of immutability is not
>    remotely as general in practice as people seem to imply - and if I'm
>    wrong, I'm looking forward to learning something new here)
>
>
> You've already discussed a broad use category in introducing concurrency
> above.  Another broad category is being able to pass by value in a
> distributed system.  Another is providing immutable literals.  None of
> these are to do with OODBs.
>
> Well we're hypothesizing about some uses here. They haven't been implemented. What I've been wondering is how immutability in those systems has been *actually* used and in particular whether (m)any non-db apps or uses were amongst them.
>
>
> In VW there's a Modification Management framework that supports
> attaching modification behaviours to specific objects.  By default an
> attempt to modify an object is an error (except by the class builder).
> Managers attached to specific objects can handle modification errors
> in various ways depending on the application.  Above that you implement
> what you want, including GemStone's persistence framework.
>
> Thanks. Any other known uses for this outside persistence (which is the "database" category) and immutable literals?
>
> Not to my knowledge, but I've been away from VW for a while now.  I hope someone's used it for more.  I think the distributed object scenario is a good one and might conceivably fit well with Croquet.
>  
>
> Cheers,
>  - Andreas
>
> cheers,
> Eliot
>

Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak (was: Vm-dev post from jbaptiste.arnaud@gmail.com requires approval)

stephane ducasse-2
In reply to this post by Andreas.Raab

Hi andreas

>> The issue isn't "implementing" deep immutability, the issue is "proving" that something is deeply immutable. Here is the use case: For concurrency as in E, Erlang and others, the goal is to share immutable objects between different concurrent units. To do this effectively, you must *prove* that a structure you're passing on is deeply immutable. There are two effective ways of doing this:

I do not understand what you mean by prove. In Smalltalk I have problem to see what it means since we do not have a static type system.
Can you explain?

Beside considering that an element is readonly and raising an exception at runtime when we see that this is not the case.
To experiment with security we implemented kind of capability but with a per reference semantics following the work of nathanael, with it
the user cannot know that he got a readonly object and if some code get executed an exception is raised. So far this is slow and we are not interested
in readonly per se but more into removePartofReflective behavior from this client perspective.
So may be I missed what you want to say.

Stef


>
> 1) Have a flag that says that the object is deeply immutable and that only ever gets updated by freezing objects that are itself deeply immutable.
> 2) Traverse the object graph to prove deep immutability.
>
> Option #2 wouldn't be so bad if not for the following problem: In order to prove non-trivial (circular) immutability you'll have to run a GC-ish algorithm which (unless you've got yet another header bit ;-) becomes inefficient since you'll have to throw out your current allocation state (the way image segments do it) which causes major inefficiencies.
>
> And of course, allowing objects to become mutable again just throws everything out of the window...
>
>> Note tat deep immutability is a tricky issue.  Is the class of a deeply
>> immutable object immutable or can one still add methods to it?
>
> The object and its contents are immutable, not its class. The class could separately be immutable (there is a longer argument here why that's The Right Thing to do even for deeply frozen structures).
>
>> What
>> happens (with both shallow and deep immutability) if one tries to add an
>> instance variable to a class that has immutable instances?
>
> The same as with one-level immutability; there is no difference. An instance can be updated and inherits the flags of the old instance. And become is already allowed to modify "immutable" instances, no?
>
>> What if one
>> wants a mostly deeply immutable data structure that contains e.g. a
>> mutable query cache that memos the most recent N results of some
>> expensive query?  Exactly what parts of a data structure should be
>> immutable when is typically application and data structure dependent and
>> some blanket deep immutability scheme in the VM is likely to be too
>> inflexible.  A simple per-object bit which has simple semantics and can
>> serve in many different uses is flexible enough, at least if 15 years of
>> experience with VisualAge and 10 years of experience with VW is meaningful.
>
> But in what applications? I suspect that the answer is "object databases, object databases, and ... err ... object databases" ;-)
>
> (not that I'm saying that object databases aren't useful or important but I suspect this particular use of immutability is not remotely as general in practice as people seem to imply - and if I'm wrong, I'm looking forward to learning something new here)
>
>>    So should we add two header bits for immutability instead of one?
>>    What concerns me here is that any use of immutability appears to be
>>    requiring yet another header bit - a sign that we thoroughly do not
>>    understand what immutability is and how it should be implemented.
>>    Thus my feeling that throwing header bits at the problem is the
>>    wrong direction.
>>
>>
>> Agreed.  I'm not proposing throwing bits at the problem.  One bit's
>> enough.  Its up to the image level to design a good framework around the
>> basic VM facility, and that's been done already.
>
> Same thing. It would help to provide a few concrete examples.
> What has been done, where, and what's it used for?
>
>>    I'm not strongly opposed to it but header bits *are* a scarce
>>    resource so their allocation should be done carefully as well as the
>>    choice of semantics. I can say for sure that I would feel *much*
>>    better if there was a customer who'd say "yes, this is exactly what
>>    I need, the semantics is precisely right for what I need it for"
>>    instead of just "Oooooohhhh, immutability, cooooool" (which is all
>>    I'm hearing).
>>
>>
>> While some people might be saying "it's cool" I hear the GemStone folks
>> saying "we much prefer using the immutability bit than rewriting code.
>>  the immutability bit has worked much better in practice", and GemStone
>> has plenty of customers who don't have to worry about the issue because
>> GemStone has done all the work for them. I don't hear anyone from
>> VisualAge and VisualWorks saying "It's a bad idea, it's had a
>> deleterious effect on performance".
>
> Actually, I think the opposite is true. If you could use immutability for (lock-free) concurrency, I suspect that this is going to save a *lot* more cycles than it costs. Both in the CPU and your brain ;-)
>
> Cheers,
>  - Andreas

Reply | Threaded
Open this post in threaded view
|

Re: Immutability, newspeak

Chris Muller-3
In reply to this post by Colin Putney

"This episode of Debbie Downer, has been brought to you by...
GemStone!  We have persistence down to a fine art..."


On Wed, Jun 9, 2010 at 10:27 PM, Colin Putney <[hidden email]> wrote:

>
>
> On 2010-06-09, at 3:27 PM, Andreas Raab wrote:
>
>> But in what applications? I suspect that the answer is "object databases, object databases, and ... err ... object databases" ;-)
>
> Well, let's say out-of-image persistence in general. That includes object databases, O/R mapping frameworks, document databases, and command journals. A few years ago, when Seaside 2 started to take off, there was a flurry of persistence schemes written for use with Seaside. See the wiki pages about the options, for example:
>
> http://wiki.squeak.org/squeak/3582
> http://wiki.squeak.org/squeak/512
>
> None of them have been terribly successful, and Seaside apps tend to get by with persistence schemes that aren't great, but work well enough for that particular app. It's a real problem, and we've gone years without a good solution.
>
> Would an immutability bit solve this mess? I don't know. One thing I do know is that any scheme for persisting objects outside an image is really freakin' hard without a good write barrier.
>
> Maybe persistence *is* the only practical application of immutability. But if so, it's an important one. Seaside may be drawing new users to Smalltalk, but Squeak is the only platform without a good story on persistence. Gemstone has persistence down to a fine art. VW isn't as sexy, but it has solid connectivity to RDBMs and Gemstone, immutability, and Glorp. Squeak has nothing, or nearly so.
>
> Colin
12