Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Discarding new disposable on a disposed SerialDisposable #688

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

DevAndArtist
Copy link
Contributor

@DevAndArtist DevAndArtist commented Oct 27, 2018

This is an experimental PR to run tests against this change. Please DO NOT MERGE iff this change goes against the design.

Update: @mdiep all tests passed. Next question is if this a reasonable fix or not. For more information please read the linked issue. Other then that I'd appreciate if someone would guide me from now on.

Checklist

  • Updated CHANGELOG.md.

Discard a disposable on `SerialDisposable` when the instance of the `SerialDisposable` is already disposed.
@DevAndArtist DevAndArtist changed the title Experimental: Discarding new disposable on a disposed SerialDisposable Discarding new disposable on a disposed SerialDisposable Oct 27, 2018
Copy link
Member

@andersio andersio left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Semantically it is the right fix. Just one thing about thread safety.

if isDisposed {
disposable?.dispose()
} else {
_inner.swap(disposable)?.dispose()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to check isDisposed again after swapping, since self could be disposed of in parallel during the process, racing against https://github.com/ReactiveCocoa/ReactiveSwift/pull/688/files#diff-7056bb5d45375e26f2eeb3adeabac16bR373.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you provide a change suggestion and elaborate more why we need to do it, because I'm not sure I follow. I always thought that such operations should not be done in a multi-threading fashion, so it will be the users responsibility to serialize correctly.

If this PR gets approved, I'll add more documentations because this slightly changes the behavior of the type after it's disposed.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change suggestions do not seem to be available in this repo.

Essentially, we need to do this after the swapping in the else path:

if isDisposed {
    _inner.swap(nil)?.dispose()
}

Because dispose() can be called in parallel to inner = new on different threads. Depending on the order observed by the system memory, it could yield a boundary case where isDisposed is true but the inner disposable is left untouched. The conflicting path may

I always thought that such operations should not be done in a multi-threading fashion, so it will be the users responsibility to serialize correctly.

Disposables have always meant to be thread safe, despite us not explicitly having written this as part of the contract.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change suggestions do not seem to be available in this repo

Weird. I don't see a setting for it.

@mdiep
Copy link
Contributor

mdiep commented Dec 18, 2018

Semantically it is the right fix

Can you elaborate on why you think this is the case? I shared some thoughts on #686, but I don't see why this is necessarily better or more correct.

@andersio
Copy link
Member

andersio commented Dec 19, 2018

@mdiep This PR doesn’t change the semantic of SerialDisposable disposing of any inner disposable set after itself had been disposed of.

I would consider #686 a bug in the sense that the inner disposable has been disposed of, but the storage still retains a strong reference to the disposed inner.

CompositeDisposable does not hold reference to any inner beyond its disposal. ScopedDisposable does, but its nature is different from these two mutable disposables.

Allowing the inner to be retained is also inconsistent with dispose(), which clears the inner disposable. I think it makes sense to say inner == nil && isDisposed should always hold.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants