Merge branch 'number-to-int-float' into 'main'

Remove number and add int and float insted

See merge request hibas123/JsonRPC!1
This commit is contained in:
Fabian Stamm 2022-04-13 19:08:28 +00:00
commit 94131c55a0
10 changed files with 64 additions and 41 deletions

View File

@ -1,6 +1,7 @@
import "./import"; import "./import";
define csharp_namespace Example; define csharp_namespace Example;
define rust_crate example;
enum TestEnum { enum TestEnum {
VAL1, VAL1,
@ -14,17 +15,17 @@ type Test {
atom: TestAtom; atom: TestAtom;
array: TestAtom[]; array: TestAtom[];
enumValue: TestEnum; enumValue: TestEnum;
map: {number, TestAtom}; map: {int, TestAtom};
} }
type AddValueRequest { type AddValueRequest {
value1: number; value1: float;
value2: number; value2: float;
} }
type AddValueResponse { type AddValueResponse {
value: number; value: float;
} }
service TestService { service TestService {
@ -36,11 +37,11 @@ service TestService {
@Description("Add two numbers") @Description("Add two numbers")
@Param("value1", "The first value") @Param("value1", "The first value")
@Param("value2", "The second value") @Param("value2", "The second value")
AddValuesMultipleParams(value1: number, value2: number): number; AddValuesMultipleParams(value1: float, value2: float): float;
@Description("Does literaly nothing") @Description("Does literaly nothing")
@Param("param1", "Some number") @Param("param1", "Some number")
ReturningVoid(param1: number): void; ReturningVoid(param1: float): void;
@Description("Just sends an Event with a String") @Description("Just sends an Event with a String")
@Param("param1", "Parameter with some string for event") @Param("param1", "Parameter with some string for event")
@ -49,5 +50,5 @@ service TestService {
ThrowingError(): void; ThrowingError(): void;
FunctionWithArrayAsParamAndReturn(values1: number[], values2: number[]): number[]; FunctionWithArrayAsParamAndReturn(values1: float[], values2: float[]): float[];
} }

View File

@ -1,5 +1,5 @@
type TestAtom { type TestAtom {
val_number: number; val_number: float;
val_boolean: boolean; val_boolean: boolean;
val_string: string; val_string: string;
} }

View File

@ -9876,7 +9876,7 @@ function parse(tokens, file) {
// src/ir.ts // src/ir.ts
var import_debug = __toESM(require_src()); var import_debug = __toESM(require_src());
var log = (0, import_debug.default)("app"); var log = (0, import_debug.default)("app");
var BUILTIN = ["number", "string", "boolean"]; var BUILTIN = ["float", "int", "string", "boolean"];
var IRError = class extends Error { var IRError = class extends Error {
constructor(statement, message) { constructor(statement, message) {
super("Error building IR: " + message); super("Error building IR: " + message);
@ -9912,7 +9912,7 @@ function get_ir(parsed) {
if (depends.indexOf(field.fieldtype) < 0) if (depends.indexOf(field.fieldtype) < 0)
depends.push(field.fieldtype); depends.push(field.fieldtype);
} }
if (field.map && field.map !== "number" && field.map !== "string") { if (field.map && field.map !== "int" && field.map !== "string") {
throw new IRError(field, `Type ${field.map} is not valid as map key!`); throw new IRError(field, `Type ${field.map} is not valid as map key!`);
} }
return { return {
@ -10047,6 +10047,7 @@ function get_ir(parsed) {
} else if (statement.type == "define") { } else if (statement.type == "define") {
options[statement.key] = statement.value; options[statement.key] = statement.value;
if ((statement.key == "use_messagepack" || statement.key == "allow_bytes") && statement.value == "true") { if ((statement.key == "use_messagepack" || statement.key == "allow_bytes") && statement.value == "true") {
options["allow_bytes"] = true;
builtin.push("bytes"); builtin.push("bytes");
} }
} else { } else {
@ -10074,10 +10075,14 @@ var CompileTarget = class {
} }
} }
writeFile(name, content) { writeFile(name, content) {
let resPath = Path.join(this.outputFolder, name);
let resDir = Path.dirname(resPath);
if (!FS.existsSync(resDir))
FS.mkdirSync(resDir, { recursive: true });
if (content instanceof Promise) { if (content instanceof Promise) {
content.then((res) => FS.writeFileSync(Path.join(this.outputFolder, name), res)); content.then((res) => FS.writeFileSync(resPath, res));
} else { } else {
FS.writeFileSync(Path.join(this.outputFolder, name), content); FS.writeFileSync(resPath, content);
} }
} }
getTemplate(name) { getTemplate(name) {
@ -10120,7 +10125,8 @@ function compile(ir, target) {
// src/targets/typescript.ts // src/targets/typescript.ts
var conversion = { var conversion = {
boolean: "boolean", boolean: "boolean",
number: "number", int: "number",
float: "number",
string: "string", string: "string",
void: "void", void: "void",
bytes: "Uint8Array" bytes: "Uint8Array"
@ -10139,7 +10145,7 @@ var TypescriptTarget = class extends CompileTarget {
`; `;
} }
generateImports(a, def) { generateImports(a, def) {
a(0, this.generateImport(`{ VerificationError, apply_number, apply_string, apply_boolean, apply_void }`, `./ts_base`)); a(0, this.generateImport(`{ VerificationError, apply_int, apply_float, apply_string, apply_boolean, apply_void }`, `./ts_base`));
a(0, def.depends.map((dep) => this.generateImport(`${dep}, { apply_${dep} }`, "./" + dep))); a(0, def.depends.map((dep) => this.generateImport(`${dep}, { apply_${dep} }`, "./" + dep)));
} }
getFileName(typename) { getFileName(typename) {
@ -10440,7 +10446,8 @@ var NodeJSTypescriptTarget = class extends TypescriptTarget {
// src/targets/csharp.ts // src/targets/csharp.ts
var conversion2 = { var conversion2 = {
boolean: "bool", boolean: "bool",
number: "double", int: "long",
float: "double",
string: "string", string: "string",
void: "void", void: "void",
bytes: "" bytes: ""
@ -10454,8 +10461,8 @@ var CSharpTarget = class extends CompileTarget {
return this.options.csharp_namespace || "JRPC"; return this.options.csharp_namespace || "JRPC";
} }
start() { start() {
if (this.options.use_messagepack == true) { if (this.options.allow_bytes == true) {
throw new Error("C# has no support for MessagePack yet!"); throw new Error("C# has no support for 'bytes' yet!");
} }
this.writeFile(this.namespace + ".csproj", this.getTemplate("CSharp/CSharp.csproj")); this.writeFile(this.namespace + ".csproj", this.getTemplate("CSharp/CSharp.csproj"));
const fixNS = (input) => input.replace("__NAMESPACE__", this.namespace); const fixNS = (input) => input.replace("__NAMESPACE__", this.namespace);

View File

@ -1,6 +1,6 @@
{ {
"name": "@hibas123/jrpcgen", "name": "@hibas123/jrpcgen",
"version": "1.0.31", "version": "1.1.1",
"main": "lib/index.js", "main": "lib/index.js",
"license": "MIT", "license": "MIT",
"packageManager": "yarn@3.1.1", "packageManager": "yarn@3.1.1",
@ -19,7 +19,7 @@
"files": [ "files": [
"lib/jrpc.js", "lib/jrpc.js",
"templates/**", "templates/**",
"examples/**", "examples/*.jrpc",
"src/**", "src/**",
"tsconfig.json" "tsconfig.json"
], ],

View File

@ -1,5 +1,5 @@
import * as FS from "fs"; import * as FS from "fs";
import * as FSE from "fs-extra" import * as FSE from "fs-extra";
import * as Path from "path"; import * as Path from "path";
import { import {
EnumDefinition, EnumDefinition,
@ -11,7 +11,10 @@ import {
export abstract class CompileTarget<T = any> { export abstract class CompileTarget<T = any> {
abstract name: string; abstract name: string;
constructor(private outputFolder: string, protected options: T & { use_messagepack: boolean }) { constructor(
private outputFolder: string,
protected options: T & { allow_bytes: boolean }
) {
if (!FS.existsSync(outputFolder)) { if (!FS.existsSync(outputFolder)) {
FS.mkdirSync(outputFolder, { FS.mkdirSync(outputFolder, {
recursive: true, recursive: true,
@ -30,12 +33,13 @@ export abstract class CompileTarget<T = any> {
abstract finalize(steps: Step[]): void; abstract finalize(steps: Step[]): void;
protected writeFile(name: string, content: string | Promise<string>) { protected writeFile(name: string, content: string | Promise<string>) {
let resPath = Path.join(this.outputFolder, name);
let resDir = Path.dirname(resPath);
if (!FS.existsSync(resDir)) FS.mkdirSync(resDir, { recursive: true });
if (content instanceof Promise) { if (content instanceof Promise) {
content.then((res) => content.then((res) => FS.writeFileSync(resPath, res));
FS.writeFileSync(Path.join(this.outputFolder, name), res)
);
} else { } else {
FS.writeFileSync(Path.join(this.outputFolder, name), content); FS.writeFileSync(resPath, content);
} }
} }
@ -59,12 +63,10 @@ export abstract class CompileTarget<T = any> {
return res.join("\n"); return res.join("\n");
} }
protected loadTemplateFolder(name:string) { protected loadTemplateFolder(name: string) {
let root = Path.join(__dirname, "../templates/", name); let root = Path.join(__dirname, "../templates/", name);
FSE.copySync(root, this.outputFolder, {
}); FSE.copySync(root, this.outputFolder, {});
} }
} }

View File

@ -2,7 +2,7 @@ import type { Parsed, StatementNode } from "./parser";
import dbg from "debug"; import dbg from "debug";
const log = dbg("app"); const log = dbg("app");
const BUILTIN = ["number", "string", "boolean"]; const BUILTIN = ["float", "int", "string", "boolean"];
export class IRError extends Error { export class IRError extends Error {
constructor(public statement: StatementNode, message: string) { constructor(public statement: StatementNode, message: string) {
@ -115,7 +115,7 @@ export default function get_ir(parsed: Parsed): IR {
depends.push(field.fieldtype); depends.push(field.fieldtype);
} }
if (field.map && field.map !== "number" && field.map !== "string") { if (field.map && field.map !== "int" && field.map !== "string") {
throw new IRError( throw new IRError(
field, field,
`Type ${field.map} is not valid as map key!` `Type ${field.map} is not valid as map key!`
@ -312,6 +312,7 @@ export default function get_ir(parsed: Parsed): IR {
statement.key == "allow_bytes") && statement.key == "allow_bytes") &&
statement.value == "true" statement.value == "true"
) { ) {
options["allow_bytes"] = true;
builtin.push("bytes"); builtin.push("bytes");
} }
} else { } else {

View File

@ -22,7 +22,6 @@ Targets.set("ts-esm", ESMTypescriptTarget);
Targets.set("ts-node", NodeJSTypescriptTarget); Targets.set("ts-node", NodeJSTypescriptTarget);
Targets.set("c#", CSharpTarget as typeof CompileTarget); Targets.set("c#", CSharpTarget as typeof CompileTarget);
function indexToLineAndCol(src: string, index: number) { function indexToLineAndCol(src: string, index: number) {
let line = 1; let line = 1;
let col = 1; let col = 1;

View File

@ -12,10 +12,11 @@ type lineAppender = (ind: number, line: string | string[]) => void;
const conversion = { const conversion = {
boolean: "bool", boolean: "bool",
number: "double", int: "long",
float: "double",
string: "string", string: "string",
void: "void", void: "void",
bytes: "" bytes: "",
}; };
function toCSharpType(type: string): string { function toCSharpType(type: string): string {
@ -30,8 +31,8 @@ export class CSharpTarget extends CompileTarget<{ csharp_namespace: string }> {
} }
start(): void { start(): void {
if(this.options.use_messagepack == true) { if (this.options.allow_bytes == true) {
throw new Error("C# has no support for MessagePack yet!"); throw new Error("C# has no support for 'bytes' yet!");
} }
this.writeFile( this.writeFile(
this.namespace + ".csproj", this.namespace + ".csproj",

View File

@ -13,7 +13,8 @@ type lineAppender = (ind: number, line: string | string[]) => void;
const conversion = { const conversion = {
boolean: "boolean", boolean: "boolean",
number: "number", int: "number",
float: "number",
string: "string", string: "string",
void: "void", void: "void",
bytes: "Uint8Array", bytes: "Uint8Array",
@ -45,7 +46,7 @@ export class TypescriptTarget extends CompileTarget {
a( a(
0, 0,
this.generateImport( this.generateImport(
`{ VerificationError, apply_number, apply_string, apply_boolean, apply_void }`, `{ VerificationError, apply_int, apply_float, apply_string, apply_boolean, apply_void }`,
`./ts_base` `./ts_base`
) )
); );

View File

@ -4,13 +4,24 @@ export class VerificationError extends Error {
public readonly field?: string, public readonly field?: string,
public readonly value?: any public readonly value?: any
) { ) {
super("Parameter verification failed! " +(type ? "Expected " + type + "! " :"") + (field ? "At: " + field + "! " : "")); super(
"Parameter verification failed! " +
(type ? "Expected " + type + "! " : "") +
(field ? "At: " + field + "! " : "")
);
} }
} }
export function apply_number(data: any) { export function apply_int(data: any) {
data = Math.floor(Number(data));
if (Number.isNaN(data)) throw new VerificationError("int", undefined, data);
return data;
}
export function apply_float(data: any) {
data = Number(data); data = Number(data);
if(Number.isNaN(data)) throw new VerificationError("number", undefined, data); if (Number.isNaN(data))
throw new VerificationError("float", undefined, data);
return data; return data;
} }