Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
DynamicVariable
Last updated at 4:19 pm UTC on 18 April 2019
 ProcessSpecificVariable subclass: #DynamicVariable
	instanceVariableNames: ''
	classVariableNames: ''
	poolDictionaries: ''
	category: 'Kernel-Processes-Variables'

Class comment (3/13/2007)

My subclasses are dynamic variables: each subclass represents a variable whose value persists inside the block passed to #value:during:.

There is no way to change the value inside such a block, but it is possible to temporarirly rebind it in a nested manner.



Notes about dynamic variables


Text snippets / draft notes....

Proposal by Marcel Taeumel to make ActiveWorld a DynamicVariable in Squeak 6.0a. As of April 2018 it is not a DynamicVariable. ActiveWorld is a global variable used in Morphic. (ToDo: Create a new wiki page for this proposal)
DynamicVariable.png


http://lists.squeakfoundation.org/pipermail/squeak-dev/2014-February/176777.html

[squeak-dev] The Inbox: Collections-ul.564.mcz
Frank Shearar frank.shearar at gmail.com
Mon Feb 3 16:27:49 UTC 2014

Previous message: [squeak-dev] The Inbox: Collections-ul.564.mcz
Next message: [squeak-dev] The Inbox: Collections-ul.564.mcz


On 3 February 2014 16:08, Tobias Pape wrote:
> On 03.02.2014, at 16:14, Frank Shearar wrote:
>
>> On 3 February 2014 15:06, Tobias Pape wrote:
>>> On 03.02.2014, at 16:01, Frank Shearar wrote:
>>>
>>>> On 3 February 2014 14:49, Tobias Pape wrote:
>>>>> On 03.02.2014, at 15:28, Frank Shearar wrote:
>>>>>
>>>>>> On 3 February 2014 13:48, wrote:
>>>>>>
>>>>>> So this is a basic depth first traversal with cycle protection, yes?
>>>>>> (This pattern seems to crop up _a lot_. Maybe it's worth pulling out
>>>>>> as a separate algorithm?)
>>>>>
>>>>> Well, there are two such applications:
>>>>> One with an explicit down-handling of a variable (like this)
>>>>> and one with an implicit variable (semi-global)
>>>>> (Dynamic variable, probably, at least thread-local)
>>>>>
>>>>> I would like to have both.
>>>>> I propose the (seaside-inspired) #use:during: message for the second.
>>>>
>>>> Except that DynamicVariable's #use:during: is incompatible with
>>>> stack-slicing, because those kinds of dynamic variables aren't
>>>> delimited. (Unlike resumable exceptions, for instance.
>>>
>>> Sorry, I (currently) don’t know what you mean by stack-slicing.
>>> Are we speaking of Martin von Löwis’ DynamicVariables currently in 4.5/trunk
>>> that are based on Thread-local storage
>>> or the Seaside ones based on Exceptions?
>>
>> Ah! I thought that the Seaside ones were the same the DynamicVariable in trunk!
>
> No; the trunk ones should be better, performance-wise, since they don’t
> have to walk the stack on #value

Absolutely they're more efficient. O(1) lookup versus O(n) in the call
stack. And they're also broken when considered with delimited
continuations :) I haven't pushed hard on the issue because I don't
know yet how to make them efficient. (Other languages do things like
"shallow binding", in Henry Baker's terminology. We could possibly get
the same thing with VM modifications.)

>>> (I just see that DV is using #value:during: rather than #use:during:
>>> the former is consistent while the latter IMHO speaks better)
>>
>> Right. So if Seaside's version uses resumable exceptions, there's no trouble.
>>
>> By "stack-slicing" I mean tricks like using delimited continuations.
>> Oleg Kiselyov demonstrated [1] how, since there are multiple
>> reasonable ways of using delimited control and dynamic bindings
>> (trunk's DynamicVariable) together, that there were therefore _no_
>> reasonable ways of combining them. Dynamic bindings either capture too
>> much or too little of the environment. The answer is to _delimit_ the
>> dynamic bindings. Handily, that's exactly what we have with resumable
>> exceptions + #on:do:.
>> [1] http://www.cs.indiana.edu/~sabry/papers/delim-dyn-bind.pdf
>
> Yes, but I think that is more of concern for continuations than for
> dynamically scoped variables, no? Aren’t those by definition delimitted?

No, DynamicVariable style dynamic variables are not delimited, because
their keep-the-old-value-around and their restore-old-value logic
isn't on the call stack. But that's an implementation detail. The
point of the referenced paper is that _no matter what_ implementation
of dynamic variables you have, unless they're delimited they're broken
when considered with delimited continuations. (Or delimited
continuations are broken with them. Point is, their semantics cannot
be sensibly combined.) And delimited continuations are baked into the
bedrock of the language!

frank

> Best
> -Tobias
>
>
>

See also http://www.lshift.net/blog/2012/06/27/resumable-exceptions-can-macro-express-delimited-dynamic-variables/


http://okmij.org/ftp/Computation/dynamic-binding.html#DDBinding
Following Moreau (HOSC 1998), we call a dynamic variable a variable whose association with a value exists only within the dynamic extent of an expression, that is, while control remains within that expression. If several associations exist for the same variable at the same time, the latest one takes effect. Such association is called a dynamic binding. The expression dynamic scope is convenient to refer to the indefinite scope of a variable with a dynamic extent. Examples of dynamic variables include exception handlers, stdin, and hostname (for mobile code).