-
Notifications
You must be signed in to change notification settings - Fork 899
AsyncLocalStorage based ContextManager #1210
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
Merged
dyladan
merged 6 commits into
open-telemetry:master
from
johanneswuerbach:async-local-storage
Jun 26, 2020
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
4f9e8f2
feat: improve ContextManager performance using AsyncLocalStorage
johanneswuerbach 9be115c
fix: feedback
johanneswuerbach 7e7d9d8
fix: more feedback
johanneswuerbach 24b7d43
fix: add v prefix to version check
johanneswuerbach b0ccd01
fix: linter
johanneswuerbach e7af114
Merge branch 'master' into async-local-storage
dyladan 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
187 changes: 187 additions & 0 deletions
187
packages/opentelemetry-context-async-hooks/src/AbstractAsyncHooksContextManager.ts
This file contains hidden or 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,187 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import { ContextManager, Context } from '@opentelemetry/context-base'; | ||
import { EventEmitter } from 'events'; | ||
|
||
type Func<T> = (...args: unknown[]) => T; | ||
|
||
type PatchedEventEmitter = { | ||
/** | ||
* Store a map for each event of all original listener and their "patched" | ||
* version so when the listener is removed by the user, we remove the | ||
* corresponding "patched" function. | ||
*/ | ||
__ot_listeners?: { [name: string]: WeakMap<Func<void>, Func<void>> }; | ||
} & EventEmitter; | ||
|
||
const ADD_LISTENER_METHODS = [ | ||
'addListener' as 'addListener', | ||
'on' as 'on', | ||
'once' as 'once', | ||
'prependListener' as 'prependListener', | ||
'prependOnceListener' as 'prependOnceListener', | ||
]; | ||
|
||
export abstract class AbstractAsyncHooksContextManager | ||
implements ContextManager { | ||
abstract active(): Context; | ||
|
||
abstract with<T extends (...args: unknown[]) => ReturnType<T>>( | ||
context: Context, | ||
fn: T | ||
): ReturnType<T>; | ||
|
||
abstract enable(): this; | ||
|
||
abstract disable(): this; | ||
|
||
bind<T>(target: T, context: Context = this.active()): T { | ||
if (target instanceof EventEmitter) { | ||
return this._bindEventEmitter(target, context); | ||
} | ||
|
||
if (typeof target === 'function') { | ||
return this._bindFunction(target, context); | ||
} | ||
return target; | ||
} | ||
|
||
private _bindFunction<T extends Function>(target: T, context: Context): T { | ||
const manager = this; | ||
const contextWrapper = function (this: {}, ...args: unknown[]) { | ||
return manager.with(context, () => target.apply(this, args)); | ||
}; | ||
Object.defineProperty(contextWrapper, 'length', { | ||
enumerable: false, | ||
configurable: true, | ||
writable: false, | ||
value: target.length, | ||
}); | ||
/** | ||
* It isn't possible to tell Typescript that contextWrapper is the same as T | ||
* so we forced to cast as any here. | ||
*/ | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
return contextWrapper as any; | ||
} | ||
|
||
/** | ||
* By default, EventEmitter call their callback with their context, which we do | ||
* not want, instead we will bind a specific context to all callbacks that | ||
* go through it. | ||
* @param target EventEmitter a instance of EventEmitter to patch | ||
* @param context the context we want to bind | ||
*/ | ||
private _bindEventEmitter<T extends EventEmitter>( | ||
target: T, | ||
context: Context | ||
): T { | ||
const ee = (target as unknown) as PatchedEventEmitter; | ||
if (ee.__ot_listeners !== undefined) return target; | ||
ee.__ot_listeners = {}; | ||
|
||
// patch methods that add a listener to propagate context | ||
ADD_LISTENER_METHODS.forEach(methodName => { | ||
if (ee[methodName] === undefined) return; | ||
ee[methodName] = this._patchAddListener(ee, ee[methodName], context); | ||
}); | ||
// patch methods that remove a listener | ||
if (typeof ee.removeListener === 'function') { | ||
ee.removeListener = this._patchRemoveListener(ee, ee.removeListener); | ||
} | ||
if (typeof ee.off === 'function') { | ||
ee.off = this._patchRemoveListener(ee, ee.off); | ||
} | ||
// patch method that remove all listeners | ||
if (typeof ee.removeAllListeners === 'function') { | ||
ee.removeAllListeners = this._patchRemoveAllListeners( | ||
ee, | ||
ee.removeAllListeners | ||
); | ||
} | ||
return target; | ||
} | ||
|
||
/** | ||
* Patch methods that remove a given listener so that we match the "patched" | ||
* version of that listener (the one that propagate context). | ||
* @param ee EventEmitter instance | ||
* @param original reference to the patched method | ||
*/ | ||
private _patchRemoveListener(ee: PatchedEventEmitter, original: Function) { | ||
return function (this: {}, event: string, listener: Func<void>) { | ||
if ( | ||
ee.__ot_listeners === undefined || | ||
ee.__ot_listeners[event] === undefined | ||
) { | ||
return original.call(this, event, listener); | ||
} | ||
const events = ee.__ot_listeners[event]; | ||
const patchedListener = events.get(listener); | ||
return original.call(this, event, patchedListener || listener); | ||
}; | ||
} | ||
|
||
/** | ||
* Patch methods that remove all listeners so we remove our | ||
* internal references for a given event. | ||
* @param ee EventEmitter instance | ||
* @param original reference to the patched method | ||
*/ | ||
private _patchRemoveAllListeners( | ||
ee: PatchedEventEmitter, | ||
original: Function | ||
) { | ||
return function (this: {}, event: string) { | ||
if ( | ||
ee.__ot_listeners === undefined || | ||
ee.__ot_listeners[event] === undefined | ||
) { | ||
return original.call(this, event); | ||
} | ||
delete ee.__ot_listeners[event]; | ||
return original.call(this, event); | ||
}; | ||
} | ||
|
||
/** | ||
* Patch methods on an event emitter instance that can add listeners so we | ||
* can force them to propagate a given context. | ||
* @param ee EventEmitter instance | ||
* @param original reference to the patched method | ||
* @param [context] context to propagate when calling listeners | ||
*/ | ||
private _patchAddListener( | ||
ee: PatchedEventEmitter, | ||
original: Function, | ||
context: Context | ||
) { | ||
const contextManager = this; | ||
return function (this: {}, event: string, listener: Func<void>) { | ||
if (ee.__ot_listeners === undefined) ee.__ot_listeners = {}; | ||
let listeners = ee.__ot_listeners[event]; | ||
if (listeners === undefined) { | ||
listeners = new WeakMap(); | ||
ee.__ot_listeners[event] = listeners; | ||
} | ||
const patchedListener = contextManager.bind(listener, context); | ||
// store a weak reference of the user listener to ours | ||
listeners.set(listener, patchedListener); | ||
return original.call(this, event, patchedListener); | ||
}; | ||
} | ||
} |
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.