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

Cache function ref #326

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ jobs:
- run: date +"%Y-%m-%d %T"
- run: npm install
- run: ./bin/check_for_nonassertive_tests.sh
- run: npx nyc --reporter=lcov npm test && npx codecov
- run: npx nyc --reporter=lcov npm test
env:
CI: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
57 changes: 37 additions & 20 deletions examples/browser/cql4browsers.js
Original file line number Diff line number Diff line change
Expand Up @@ -6811,21 +6811,50 @@ class FunctionRef extends expression_1.Expression {
super(json);
this.name = json.name;
this.library = json.libraryName;
this.functionDefs = null;
}
async exec(ctx) {
let functionDefs, child_ctx;
const args = await this.execArgs(ctx);
// Filter out functions w/ wrong number of arguments.
const fDefs = this.getFunctionDefs(ctx, args);
// If there is still > 1 matching function, calculate a score based on quality of matches
if (fDefs.length > 1) {
// TODO
}
if (fDefs.length === 0) {
throw new Error('no function with matching signature could be found');
}
// Moved context creation below the functionDef checks because it's not needed if
// there are no matching function defs
let child_ctx;
if (this.library) {
const lib = ctx.get(this.library);
functionDefs = lib ? lib.getFunction(this.name) : undefined;
const libCtx = ctx.getLibraryContext(this.library);
child_ctx = libCtx ? libCtx.childContext() : undefined;
}
else {
functionDefs = ctx.get(this.name);
child_ctx = ctx.childContext();
}
const args = await this.execArgs(ctx);
// Filter out functions w/ wrong number of arguments.
// By this point, we should have only one function, but until implementation is completed,
// use the last one (no matter how many still remain)
const functionDef = fDefs[fDefs.length - 1];
for (let i = 0; i < functionDef.parameters.length; i++) {
child_ctx.set(functionDef.parameters[i].name, args[i]);
}
return functionDef.expression.execute(child_ctx);
}
getFunctionDefs(ctx, args) {
if (this.functionDefs != null) {
// cache hit
return this.functionDefs;
}
let functionDefs;
if (this.library) {
const lib = ctx.get(this.library);
functionDefs = lib ? lib.getFunction(this.name) : undefined;
}
else {
functionDefs = ctx.get(this.name);
}
functionDefs = functionDefs.filter((f) => f.parameters.length === args.length);
// If there is still > 1 matching function, filter by argument types
if (functionDefs.length > 1) {
Expand All @@ -6847,20 +6876,8 @@ class FunctionRef extends expression_1.Expression {
return match;
});
}
// If there is still > 1 matching function, calculate a score based on quality of matches
if (functionDefs.length > 1) {
// TODO
}
if (functionDefs.length === 0) {
throw new Error('no function with matching signature could be found');
}
// By this point, we should have only one function, but until implementation is completed,
// use the last one (no matter how many still remain)
const functionDef = functionDefs[functionDefs.length - 1];
for (let i = 0; i < functionDef.parameters.length; i++) {
child_ctx.set(functionDef.parameters[i].name, args[i]);
}
return functionDef.expression.execute(child_ctx);
this.functionDefs = functionDefs;
return functionDefs;
}
}
exports.FunctionRef = FunctionRef;
Expand Down
39 changes: 22 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

60 changes: 39 additions & 21 deletions src/elm/reusable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,27 +59,58 @@ export class FunctionDef extends Expression {
export class FunctionRef extends Expression {
name: string;
library: string;
functionDefs: FunctionDef[] | null;

constructor(json: any) {
super(json);
this.name = json.name;
this.library = json.libraryName;
this.functionDefs = null;
}

async exec(ctx: Context) {
let functionDefs, child_ctx;
const args = await this.execArgs(ctx);
// Filter out functions w/ wrong number of arguments.
const fDefs = this.getFunctionDefs(ctx, args);
// If there is still > 1 matching function, calculate a score based on quality of matches
if (fDefs.length > 1) {
// TODO
}

if (fDefs.length === 0) {
throw new Error('no function with matching signature could be found');
}
// Moved context creation below the functionDef checks because it's not needed if
// there are no matching function defs
let child_ctx;
if (this.library) {
const lib = ctx.get(this.library);
functionDefs = lib ? lib.getFunction(this.name) : undefined;
const libCtx = ctx.getLibraryContext(this.library);
child_ctx = libCtx ? libCtx.childContext() : undefined;
} else {
functionDefs = ctx.get(this.name);
child_ctx = ctx.childContext();
}
const args = await this.execArgs(ctx);
// By this point, we should have only one function, but until implementation is completed,
// use the last one (no matter how many still remain)
const functionDef = fDefs[fDefs.length - 1];
for (let i = 0; i < functionDef.parameters.length; i++) {
child_ctx.set(functionDef.parameters[i].name, args[i]);
}
return functionDef.expression.execute(child_ctx);
}

getFunctionDefs(ctx: Context, args: any) {
if (this.functionDefs != null) {
// cache hit
return this.functionDefs;
}
let functionDefs;
if (this.library) {
const lib = ctx.get(this.library);
functionDefs = lib ? lib.getFunction(this.name) : undefined;
} else {
functionDefs = ctx.get(this.name);
}

// Filter out functions w/ wrong number of arguments.
functionDefs = functionDefs.filter((f: any) => f.parameters.length === args.length);
// If there is still > 1 matching function, filter by argument types
if (functionDefs.length > 1) {
Expand All @@ -101,21 +132,8 @@ export class FunctionRef extends Expression {
return match;
});
}
// If there is still > 1 matching function, calculate a score based on quality of matches
if (functionDefs.length > 1) {
// TODO
}

if (functionDefs.length === 0) {
throw new Error('no function with matching signature could be found');
}
// By this point, we should have only one function, but until implementation is completed,
// use the last one (no matter how many still remain)
const functionDef = functionDefs[functionDefs.length - 1];
for (let i = 0; i < functionDef.parameters.length; i++) {
child_ctx.set(functionDef.parameters[i].name, args[i]);
}
return functionDef.expression.execute(child_ctx);
this.functionDefs = functionDefs;
return functionDefs;
}
}

Expand Down
Loading