This repository has been archived by the owner on Oct 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implement instrumentation as a TypeScript Compiler TransformerI…
…nitial implementation of #41
- Loading branch information
Showing
2 changed files
with
150 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import * as ts from 'typescript'; | ||
import { transformSourceCode } from './transformer'; | ||
|
||
function astPrettyPrint(sourceText: string) { | ||
const printer: ts.Printer = ts.createPrinter(); | ||
return printer.printFile(ts.createSourceFile('test.ts', sourceText, ts.ScriptTarget.Latest)); | ||
} | ||
|
||
describe('transformer', () => { | ||
it('should instrument function parameters without types', () => { | ||
const input = `function (a) { return 5; }`; | ||
expect(transformSourceCode(input, 'test.ts')).toContain( | ||
astPrettyPrint(`function (a) { $_$twiz("a", a, 11, "test.ts", {}); return 5; }`), | ||
); | ||
}); | ||
|
||
it('should instrument function with two parameters', () => { | ||
const input = `function (a, b) { return 5; }`; | ||
expect(transformSourceCode(input, 'test.ts')).toContain( | ||
astPrettyPrint(`$_$twiz("b", b, 14, "test.ts", {});`).trim(), | ||
); | ||
}); | ||
|
||
it('should instrument class method parameters', () => { | ||
const input = `class Foo { bar(a) { return 5; } }`; | ||
expect(transformSourceCode(input, 'test.ts')).toContain( | ||
astPrettyPrint(`class Foo { bar(a) { $_$twiz("a", a, 17, "test.ts", {}); return 5; } }`), | ||
); | ||
}); | ||
|
||
it('should add typewiz declarations', () => { | ||
const input = `function (a) { return 5; }`; | ||
expect(transformSourceCode(input, 'test.ts')).toContain( | ||
astPrettyPrint( | ||
`declare function $_$twiz(name: string, value: any, pos: number, filename: string, opts: any): void`, | ||
), | ||
); | ||
}); | ||
}); |
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,111 @@ | ||
import * as ts from 'typescript'; | ||
|
||
const declaration = ` | ||
declare function $_$twiz(name: string, value: any, pos: number, filename: string, opts: any): void; | ||
declare namespace $_$twiz { | ||
function track<T>(value: T, filename: string, offset: number): T; | ||
function track(value: any, filename: string, offset: number): any; | ||
} | ||
`; | ||
|
||
function getDeclarationStatements() { | ||
const sourceFile = ts.createSourceFile('twiz-declarations.ts', declaration, ts.ScriptTarget.Latest); | ||
return sourceFile.statements; | ||
} | ||
|
||
function updateFunction(node: ts.FunctionDeclaration, instrumentStatements: ReadonlyArray<ts.Statement>) { | ||
return ts.updateFunctionDeclaration( | ||
node, | ||
node.decorators, | ||
node.modifiers, | ||
node.asteriskToken, | ||
node.name, | ||
node.typeParameters, | ||
node.parameters, | ||
node.type, | ||
ts.createBlock([...instrumentStatements, ...(node.body ? node.body.statements : [])]), | ||
); | ||
} | ||
|
||
function updateMethod(node: ts.MethodDeclaration, instrumentStatements: ReadonlyArray<ts.Statement>) { | ||
return ts.updateMethod( | ||
node, | ||
node.decorators, | ||
node.modifiers, | ||
node.asteriskToken, | ||
node.name, | ||
node.questionToken, | ||
node.typeParameters, | ||
node.parameters, | ||
node.type, | ||
ts.createBlock([...instrumentStatements, ...(node.body ? node.body.statements : [])]), | ||
); | ||
} | ||
|
||
export function visitorFactory(ctx: ts.TransformationContext, source: ts.SourceFile) { | ||
const visitor: ts.Visitor = (node: ts.Node): ts.Node => { | ||
if (ts.isSourceFile(node)) { | ||
return ts.updateSourceFileNode(node, [ | ||
...getDeclarationStatements(), | ||
...ts.visitEachChild(node, visitor, ctx).statements, | ||
]); | ||
} | ||
if (ts.isFunctionDeclaration(node) || ts.isMethodDeclaration(node)) { | ||
const instrumentStatements: ts.Statement[] = []; | ||
for (const param of node.parameters) { | ||
if (!param.type && !param.initializer && node.body) { | ||
const typeInsertionPos = param.name.getEnd() + (param.questionToken ? 1 : 0); | ||
// const opts: IExtraOptions = {}; | ||
// if (isArrow) { | ||
// opts.arrow = true; | ||
// } | ||
// if (!hasParensAroundArguments(node)) { | ||
// opts.parens = [node.parameters[0].getStart(), node.parameters[0].getEnd()]; | ||
// } | ||
instrumentStatements.push( | ||
ts.createStatement( | ||
ts.createCall( | ||
ts.createIdentifier('$_$twiz'), | ||
[], | ||
[ | ||
ts.createLiteral(param.name.getText()), | ||
ts.createIdentifier(param.name.getText()), | ||
ts.createNumericLiteral(typeInsertionPos.toString()), | ||
ts.createLiteral(source.fileName), | ||
ts.createObjectLiteral(), // TODO: opts | ||
], | ||
), | ||
), | ||
); | ||
} | ||
} | ||
if (ts.isFunctionDeclaration(node)) { | ||
return ts.visitEachChild(updateFunction(node, instrumentStatements), visitor, ctx); | ||
} | ||
if (ts.isMethodDeclaration(node)) { | ||
return ts.visitEachChild(updateMethod(node, instrumentStatements), visitor, ctx); | ||
} | ||
} | ||
|
||
return ts.visitEachChild(node, visitor, ctx); | ||
}; | ||
|
||
return visitor; | ||
} | ||
|
||
export function transformer() { | ||
return (ctx: ts.TransformationContext): ts.Transformer<ts.SourceFile> => { | ||
return (source: ts.SourceFile) => ts.visitNode(source, visitorFactory(ctx, source)); | ||
}; | ||
} | ||
|
||
export function transformSourceFile(sourceFile: ts.SourceFile) { | ||
return ts.transform(sourceFile, [transformer()]).transformed[0]; | ||
} | ||
|
||
export function transformSourceCode(sourceText: string, fileName: string) { | ||
const sourceFile = ts.createSourceFile(fileName, sourceText, ts.ScriptTarget.Latest, true); | ||
const transformed = transformSourceFile(sourceFile); | ||
const printer: ts.Printer = ts.createPrinter(); | ||
return printer.printFile(transformed); | ||
} |