[swift-evolution] Proposal: Allow `[strong self]` capture in closures and remove the `self` requirement therein

Paul Ossenbruggen possen at gmail.com
Sat Jan 23 18:08:32 CST 2016


Thanks. That helps a lot.

- Paul
> On Jan 23, 2016, at 12:46 PM, David Smith <david_smith at apple.com> wrote:
> 
> Generally speaking, memory management schemes are "shippably fast, deterministic, cycle collecting: pick at most 2". ARC picks 1 and 2, tracing garbage collectors pick 1 and 3.
> 
>     David
> 
> On Jan 23, 2016, at 12:22 PM, Paul Ossenbruggen via swift-evolution <swift-evolution at swift.org <mailto:swift-evolution at swift.org>> wrote:
> 
>> I am very sure this is covered elsewhere, could someone point me to a discussion of why we can’t automate the removal of self cycles for closures.  Is it because it essentially means that we need a garbage collector? This seems like one of the biggest stumbling blocks for new developers and even experienced developers of iOS. ARC was brilliant in that it eliminated 95% writing code to deal with memory issues, but for this one. What about a solution that just solved this one problem with closures and not a general solution that solved all memory cycles? Is that feasible? The strong and weak is pretty easy to understand everywhere else except the closure case, I know lots of people who don’t fully understand when you need to use weakSelf and strongSelf etc. Anyway, i am sure this has been discussed in depth just want to understand all the issues. Also, this may not be strictly a swift topic. 
>> 
>>> On Jan 23, 2016, at 9:38 AM, Chris Lattner via swift-evolution <swift-evolution at swift.org <mailto:swift-evolution at swift.org>> wrote:
>>> 
>>> 
>>>> On Jan 23, 2016, at 1:26 AM, Marc Knaup <marc at knaup.koeln <mailto:marc at knaup.koeln>> wrote:
>>>> 
>>>> Is the self requirement when using [self] capture still necessary once the limitations outlined by Chris Lattner are solved?
>>>> Or does this change still have to go through Swift Evolution?
>>> 
>>> Once we have [self] in closures, I think it is obvious that the "self.” requirement would be disabled for any closure that uses it.
>>> 
>>> -Chris
>>> 
>>> 
>>>> 
>>>> On Fri, Dec 18, 2015 at 1:21 AM, Chris Lattner via swift-evolution <swift-evolution at swift.org <mailto:swift-evolution at swift.org>> wrote:
>>>> FWIW, I’m also +1 on this proposal, but it should just be a capture list of [self], since all captures are strong by default.  This is also part of the intended design of capture lists.  The only reason we don’t do this already is that there are some implementation limitations (aka, hacks) around name lookup of “self" that need to be unraveled.
>>>> 
>>>> -Chris
>>>> 
>>>> > On Dec 17, 2015, at 2:20 PM, Rudolf Adamkovic via swift-evolution <swift-evolution at swift.org <mailto:swift-evolution at swift.org>> wrote:
>>>> >
>>>> > +1
>>>> >
>>>> > I've been writing a lot of experimental UIKit animation code past couple of days and spent most of my time adding and removing "self".
>>>> >
>>>> > R+
>>>> >
>>>> > Sent from my iPhone
>>>> >
>>>> >> On 16 Dec 2015, at 00:02, Greg Parker via swift-evolution <swift-evolution at swift.org <mailto:swift-evolution at swift.org>> wrote:
>>>> >>
>>>> >> Swift currently requires that `self` be used explicitly inside closures, to help avoid bugs from unintentional capture. This is annoying when a closure uses `self` a lot. Closures should be allowed to name `[strong self]` in their capture list and thereafter not be required to write `self` everywhere.
>>>> >>
>>>> >> I wrote code this weekend that looked something like this:
>>>> >>
>>>> >>   data = ...
>>>> >>   running = true
>>>> >>   delegate.notifyBegin(data)
>>>> >>
>>>> >>   dispatch_async(queue) {
>>>> >>       self.processData(self.data)
>>>> >>       self.running = false
>>>> >>       self.delegate.notifyEnd(self.data)
>>>> >>   }
>>>> >>
>>>> >> Note the asymmetry: the dispatched code needs to use `self` and the non-dispatched code does not. It is clear that the dispatched closure captures `self`, but it's annoying that it needed to be mentioned five different times. The noise gets worse with longer closures. The annoyance gets worse when moving code in and out of dispatches or other closures, with lots of editing required each time.
>>>> >>
>>>> >> The proposal would allow the same code to be written like this:
>>>> >>
>>>> >>   data = ...
>>>> >>   running = true
>>>> >>   delegate.notifyBegin(data)
>>>> >>
>>>> >>   dispatch_async(queue) {
>>>> >>       [strong self] in
>>>> >>       processData(data)
>>>> >>       running = false
>>>> >>       delegate.notifyEnd(data)
>>>> >>   }
>>>> >>
>>>> >> Advantages:
>>>> >> * The dispatch'ed code looks like the non-dispatched code.
>>>> >> * The capture of `self` is still obvious.
>>>> >> * The code's action is clearer without the `self` noise.
>>>> >>
>>>> >> Disadvantages:
>>>> >> * The capture behavior of self's properties is less obvious. For example, neither closure above captured its own copy of `self.data`, but that behavior is not immediately visible in the second closure.
>>>> >>
>>>> >>
>>>> >> What about [weak self] and [unowned self] ? I do not propose to change the `self` requirement for those closures. In the weak case it is critically important to know where `self` is accessed, because it could potentially become nil between any two accesses. Unowned self might be reasonable to change, but for simplicity I won't do so here.
>>>> >>
>>>> >>
>>>> >> --
>>>> >> Greg Parker     gparker at apple.com <mailto:gparker at apple.com>     Runtime Wrangler
>>>> >>
>>>> >>
>>>> >> _______________________________________________
>>>> >> swift-evolution mailing list
>>>> >> swift-evolution at swift.org <mailto:swift-evolution at swift.org>
>>>> >> https://lists.swift.org/mailman/listinfo/swift-evolution <https://lists.swift.org/mailman/listinfo/swift-evolution>
>>>> > _______________________________________________
>>>> > swift-evolution mailing list
>>>> > swift-evolution at swift.org <mailto:swift-evolution at swift.org>
>>>> > https://lists.swift.org/mailman/listinfo/swift-evolution <https://lists.swift.org/mailman/listinfo/swift-evolution>
>>>> 
>>>> _______________________________________________
>>>> swift-evolution mailing list
>>>> swift-evolution at swift.org <mailto:swift-evolution at swift.org>
>>>> https://lists.swift.org/mailman/listinfo/swift-evolution <https://lists.swift.org/mailman/listinfo/swift-evolution>
>>>> 
>>> 
>>> _______________________________________________
>>> swift-evolution mailing list
>>> swift-evolution at swift.org <mailto:swift-evolution at swift.org>
>>> https://lists.swift.org/mailman/listinfo/swift-evolution <https://lists.swift.org/mailman/listinfo/swift-evolution>
>> 
>> _______________________________________________
>> swift-evolution mailing list
>> swift-evolution at swift.org <mailto:swift-evolution at swift.org>
>> https://lists.swift.org/mailman/listinfo/swift-evolution <https://lists.swift.org/mailman/listinfo/swift-evolution>

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.swift.org/pipermail/swift-evolution/attachments/20160123/2c079e46/attachment.html>


More information about the swift-evolution mailing list