-
Notifications
You must be signed in to change notification settings - Fork 20
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
WIP: Handles #9
Open
bergus
wants to merge
13
commits into
briancavalier:master
Choose a base branch
from
bergus:handles
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,206
−518
Open
WIP: Handles #9
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
932abc1
make npm scripts work under Windows
bergus 3c3ead7
generalise actions
bergus 508bbad
fixes and additions to test suite
bergus a419afa
enable ES6 syntax for profiling
bergus 130aed7
better module structure
bergus 054ef5c
alternative approach to shorten reference chains
bergus d966354
add garbage-counting tests for long/deep chains
bergus 0221b91
improve garbage collection
bergus 0bf73fb
simplify object counting in collect()
bergus 31163ed
fix bug in Race.js
bergus 4b6c957
allow Action reusage
bergus 3958755
simplify getting reference from handle
bergus a93506f
nearing handles as soon as they are no more necessary
bergus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ experiments/ | |
node_modules/ | ||
build/ | ||
coverage/ | ||
perf/logs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import { Handle, ShareHandle } from './Handle' | ||
|
||
export default class Action extends Handle { | ||
constructor (promise) { | ||
super(null) // ref will be set when used as handle | ||
this.promise = promise | ||
} | ||
|
||
_concat (action) { | ||
if (!action._isReused() && (this._isReused() || action instanceof ShareHandle)) { | ||
return action._concat(this) | ||
} else { | ||
return new ShareHandle(this.ref)._concat(this)._concat(action) | ||
} | ||
} | ||
run () { | ||
const settled = this.ref | ||
if (this._isReused()) { | ||
this.ref = null // make action reusable elsewhere | ||
} | ||
settled._runAction(this) | ||
} | ||
|
||
// default onFulfilled action | ||
/* istanbul ignore next */ | ||
fulfilled (p) { | ||
this.promise._become(p) | ||
} | ||
|
||
// default onRejected action | ||
rejected (p) { | ||
this.promise._become(p) | ||
return false | ||
} | ||
|
||
tryCall (f, x) { | ||
let result | ||
try { | ||
result = f(x) | ||
} catch (e) { | ||
this.promise._reject(e) | ||
return | ||
} // else | ||
this.handle(result) | ||
} | ||
|
||
tryCallContext (f, c, x) { | ||
let result | ||
try { | ||
result = f.call(c, x) | ||
} catch (e) { | ||
this.promise._reject(e) | ||
return | ||
} // else | ||
this.handle(result) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
export class Handle { | ||
constructor (ref) { | ||
this.ref = ref // a ShareHandle, known Promise or unresolved Future | ||
} | ||
_getRef () { | ||
return this.ref | ||
} | ||
// the ref will be lost, e.g. when an action is used multiple times | ||
_isReused () { | ||
return false // ref is stable by default | ||
} | ||
} | ||
|
||
export class ShareHandle extends Handle { | ||
constructor (ref) { | ||
// assert: ref != null | ||
super(ref) | ||
this.length = 0 | ||
} | ||
_concat (action) { | ||
action.ref = this | ||
this[this.length++] = action | ||
// potential for flattening the tree here | ||
return this | ||
} | ||
run () { | ||
for (let i = 0; i < this.length; ++i) { | ||
this.ref._runAction(this[i]) | ||
this[i] = void 0 | ||
} | ||
this.length = 0 | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh @coveralls, why don't you like circular dependencies? Everything builds, tests and covers fine on my machine.