Skip to content

fix(js-client): Improve logging of conversion API #429

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
merged 2 commits into from
Feb 9, 2024
Merged
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
14 changes: 10 additions & 4 deletions packages/core/js-client/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const v5_callFunction = async (
);
}

return [argName, wrapJsFunction(arg, argType)];
return [argName, wrapJsFunction(arg, argType, argName)];
}

if (typeof arg === "function") {
Expand All @@ -114,7 +114,7 @@ export const v5_callFunction = async (
);
}

return [argName, js2aqua(arg, argType, { path: [def.functionName] })];
return [argName, js2aqua(arg, argType, { path: [argName] })];
},
),
);
Expand All @@ -141,7 +141,9 @@ export const v5_callFunction = async (
result = null;
}

return aqua2js(result, returnSchema);
return aqua2js(result, returnSchema, {
path: [`${def.functionName}ReturnValue`],
});
};

const getDefaultPeer = (): FluencePeer => {
Expand Down Expand Up @@ -215,7 +217,11 @@ export const v5_registerService = (

return [
schemaKey,
wrapJsFunction(serviceImplValue.bind(serviceImpl), schemaValue),
wrapJsFunction(
serviceImplValue.bind(serviceImpl),
schemaValue,
schemaKey,
),
] as const;
}),
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ describe("Conversion from aqua to typescript", () => {
// arrange

// act
const tsFromAqua = aqua2js(aqua, type);
const tsFromAqua = aqua2js(aqua, type, { path: [] });
const aquaFromTs = js2aqua(ts, type, { path: [] });

// assert
Expand Down Expand Up @@ -232,7 +232,7 @@ describe("Conversion corner cases", () => {

// act
const aqua = js2aqua(valueInTs, type, { path: [] });
const ts = aqua2js(valueInAqua, type);
const ts = aqua2js(valueInAqua, type, { path: [] });

// assert
expect(aqua).toStrictEqual({
Expand Down
26 changes: 15 additions & 11 deletions packages/core/js-client/src/compilerSupport/conversions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,17 @@ function isScalar(
export function aqua2js(
value: JSONValue,
schema: NonArrowSimpleType,
{ path }: ValidationContext,
): JSONValue {
if (schema.tag === "nil") {
return null;
} else if (schema.tag === "option") {
if (!Array.isArray(value)) {
throw new SchemaValidationError([], schema, "array", value);
throw new SchemaValidationError(path, schema, "array", value);
}

if ("0" in value) {
return aqua2js(value[0], schema.type);
return aqua2js(value[0], schema.type, { path: [...path, "?"] });
} else {
return null;
}
Expand All @@ -121,16 +122,16 @@ export function aqua2js(
throw new SchemaValidationError([], schema, "array", value);
}

return value.map((y) => {
return aqua2js(y, schema.type);
return value.map((y, i) => {
return aqua2js(y, schema.type, { path: [...path, `[${i}]`] });
});
} else if (schema.tag === "unlabeledProduct") {
if (!Array.isArray(value)) {
throw new SchemaValidationError([], schema, "array", value);
}

return zip(value, schema.items).map(([v, s]) => {
return aqua2js(v, s);
return zip(value, schema.items).map(([v, s], i) => {
return aqua2js(v, s, { path: [...path, `[${i}]`] });
});
} else if (["labeledProduct", "struct"].includes(schema.tag)) {
if (typeof value !== "object" || value === null || Array.isArray(value)) {
Expand All @@ -145,7 +146,7 @@ export function aqua2js(
v = null;
}

const val = aqua2js(v, type);
const val = aqua2js(v, type, { path: [...path, key] });
return [key, val];
}),
);
Expand All @@ -167,7 +168,9 @@ export function js2aqua(
return value;
} else if (schema.tag === "option") {
// option means 'type | null'
return value === null ? [] : [js2aqua(value, schema.type, { path })];
return value === null
? []
: [js2aqua(value, schema.type, { path: [...path, "?"] })];
} else if (schema.tag === "topType") {
// topType equals to 'any'
return value;
Expand Down Expand Up @@ -221,6 +224,7 @@ export const wrapJsFunction = (
schema:
| ArrowWithoutCallbacks
| ArrowType<LabeledProductType<SimpleTypes> | UnlabeledProductType>,
funcName: string,
): ServiceImpl[string] => {
return async ({ args, context }) => {
const schemaArgs =
Expand All @@ -236,8 +240,8 @@ export const wrapJsFunction = (
);
}

const jsArgs = zip(args, schemaArgs).map(([arg, schemaArg]) => {
return aqua2js(arg, schemaArg);
const jsArgs = zip(args, schemaArgs).map(([arg, schemaArg], i) => {
return aqua2js(arg, schemaArg, { path: [`${funcName}Args`, `[${i}]`] });
});

const returnTypeVoid =
Expand All @@ -256,6 +260,6 @@ export const wrapJsFunction = (
result = null;
}

return js2aqua(result, resultSchema, { path: [] });
return js2aqua(result, resultSchema, { path: [`${funcName}ReturnValue`] });
};
};