Welcome to mirror list, hosted at ThFree Co, Russian Federation.

invoke-cs.ts « runtime « wasm « mono « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0201be0d2d9603c0109f284bd6d427d29ac55a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

import { MonoObject, MonoString } from "./export-types";
import { EXPORTS, Module, runtimeHelpers } from "./imports";
import { generate_arg_marshal_to_cs } from "./marshal-to-cs";
import { marshal_exception_to_js, generate_arg_marshal_to_js } from "./marshal-to-js";
import {
    JSMarshalerArguments, JavaScriptMarshalerArgSize, JSFunctionSignature,
    JSMarshalerTypeSize, JSMarshalerSignatureHeaderSize,
    get_arg, get_sig, set_arg_type,
    get_signature_argument_count, is_args_exception, bound_cs_function_symbol, get_signature_version, MarshalerType,
} from "./marshal";
import { parseFQN, wrap_error_root } from "./method-calls";
import { mono_wasm_new_external_root, mono_wasm_new_root } from "./roots";
import { conv_string, conv_string_root } from "./strings";
import { mono_assert, MonoObjectRef, MonoStringRef } from "./types";
import { Int32Ptr } from "./types/emscripten";
import cwraps, { wrap_c_function } from "./cwraps";
import { find_method } from "./method-binding";
import { assembly_load } from "./class-loader";

const exportedMethods = new Map<string, Function>();

export function mono_wasm_bind_cs_function(fully_qualified_name: MonoStringRef, signature_hash: number, signature: JSFunctionSignature, is_exception: Int32Ptr, result_address: MonoObjectRef): void {
    const fqn_root = mono_wasm_new_external_root<MonoString>(fully_qualified_name), resultRoot = mono_wasm_new_external_root<MonoObject>(result_address);
    const anyModule = Module as any;
    try {
        const version = get_signature_version(signature);
        mono_assert(version === 1, () => `Signature version ${version} mismatch.`);

        const args_count = get_signature_argument_count(signature);
        const js_fqn = conv_string_root(fqn_root)!;
        mono_assert(js_fqn, "fully_qualified_name must be string");

        if (runtimeHelpers.config.diagnostic_tracing) {
            console.trace(`MONO_WASM: Binding [JSExport] ${js_fqn}`);
        }

        const { assembly, namespace, classname, methodname } = parseFQN(js_fqn);

        const asm = assembly_load(assembly);
        if (!asm)
            throw new Error("Could not find assembly: " + assembly);

        const klass = cwraps.mono_wasm_assembly_find_class(asm, namespace, classname);
        if (!klass)
            throw new Error("Could not find class: " + namespace + ":" + classname + " in assembly " + assembly);

        const wrapper_name = `__Wrapper_${methodname}_${signature_hash}`;
        const method = find_method(klass, wrapper_name, -1);
        if (!method)
            throw new Error(`Could not find method: ${wrapper_name} in ${klass} [${assembly}]`);

        const closure: any = {
            method, get_arg, signature,
            stackSave: anyModule.stackSave, stackAlloc: anyModule.stackAlloc, stackRestore: anyModule.stackRestore,
            conv_string,
            mono_wasm_new_root, init_void, init_result, /*init_argument,*/ marshal_exception_to_js, is_args_exception,
            mono_wasm_invoke_method_bound: wrap_c_function("mono_wasm_invoke_method_bound"),
        };
        const bound_js_function_name = "_bound_cs_" + `${namespace}_${classname}_${methodname}`.replace(/\./g, "_");
        let body = `//# sourceURL=https://mono-wasm.invalid/${bound_js_function_name} \n`;
        let bodyToCs = "";
        let converter_names = "";

        for (let index = 0; index < args_count; index++) {
            const arg_offset = (index + 2) * JavaScriptMarshalerArgSize;
            const sig_offset = (index + 2) * JSMarshalerTypeSize + JSMarshalerSignatureHeaderSize;
            const sig = get_sig(signature, index + 2);
            const { converters, call_body } = generate_arg_marshal_to_cs(sig, index + 2, arg_offset, sig_offset, `arguments[${index}]`, closure);
            converter_names += converters;
            bodyToCs += call_body;
        }
        const { converters: res_converters, call_body: res_call_body, marshaler_type: res_marshaler_type } = generate_arg_marshal_to_js(get_sig(signature, 1), 1, JavaScriptMarshalerArgSize, JSMarshalerTypeSize + JSMarshalerSignatureHeaderSize, "js_result", closure);
        converter_names += res_converters;

        body += `const { method, get_arg, signature, stackSave, stackAlloc, stackRestore, mono_wasm_new_root, conv_string, init_void, init_result, init_argument, marshal_exception_to_js, is_args_exception, mono_wasm_invoke_method_bound ${converter_names} } = closure;\n`;
        // TODO named arguments instead of arguments keyword
        body += `return function ${bound_js_function_name} () {\n`;
        if (res_marshaler_type === MarshalerType.String) {
            body += "let root = null;\n";
        }
        body += "const sp = stackSave();\n";
        body += "try {\n";
        body += `  const args = stackAlloc(${(args_count + 2) * JavaScriptMarshalerArgSize});\n`;
        if (res_marshaler_type !== MarshalerType.Void && res_marshaler_type !== MarshalerType.Discard) {
            if (res_marshaler_type === MarshalerType.String) {
                body += "  root = mono_wasm_new_root(0);\n";
                body += "  init_result(args);\n";
            }
            else {
                body += "  init_result(args);\n";
            }
        } else {
            body += "  init_void(args);\n";
        }

        body += bodyToCs;

        body += "  const fail = mono_wasm_invoke_method_bound(method, args);\n";
        body += "  if (fail) throw new Error(\"ERR22: Unexpected error: \" + conv_string(fail));\n";
        body += "  if (is_args_exception(args)) throw marshal_exception_to_js(get_arg(args, 0));\n";
        if (res_marshaler_type !== MarshalerType.Void && res_marshaler_type !== MarshalerType.Discard) {
            body += res_call_body;
        }

        if (res_marshaler_type !== MarshalerType.Void && res_marshaler_type !== MarshalerType.Discard) {
            body += "return js_result;\n";
        }

        body += "} finally {\n";
        body += "  stackRestore(sp);\n";
        if (res_marshaler_type === MarshalerType.String) {
            body += "  if(root) root.release()\n";
        }
        body += "}}";
        const factory = new Function("closure", body);
        const bound_fn = factory(closure);
        bound_fn[bound_cs_function_symbol] = true;

        exportedMethods.set(js_fqn, bound_fn);
        _walk_exports_to_set_function(assembly, namespace, classname, methodname, signature_hash, bound_fn);
    }
    catch (ex) {
        wrap_error_root(is_exception, ex, resultRoot);
    } finally {
        resultRoot.release();
        fqn_root.release();
    }
}

function init_void(args: JSMarshalerArguments) {
    mono_assert(args && (<any>args) % 8 == 0, "Arg alignment");
    const exc = get_arg(args, 0);
    set_arg_type(exc, MarshalerType.None);

    const res = get_arg(args, 1);
    set_arg_type(res, MarshalerType.None);
}

function init_result(args: JSMarshalerArguments) {
    mono_assert(args && (<any>args) % 8 == 0, "Arg alignment");
    const exc = get_arg(args, 0);
    set_arg_type(exc, MarshalerType.None);

    const res = get_arg(args, 1);
    set_arg_type(res, MarshalerType.None);
}

export const exportsByAssembly: Map<string, any> = new Map();

function _walk_exports_to_set_function(assembly: string, namespace: string, classname: string, methodname: string, signature_hash: number, fn: Function): void {
    let scope: any = EXPORTS;
    let parts = `${namespace}.${classname}`.split(".");

    for (let i = 0; i < parts.length; i++) {
        const part = parts[i];
        let newscope = scope[part];
        if (!newscope) {
            newscope = {};
            scope[part] = newscope;
        }
        mono_assert(newscope, () => `${part} not found while looking up ${classname}`);
        scope = newscope;
    }

    if (!scope[methodname]) {
        scope[methodname] = fn;
    }
    scope[`${methodname}.${signature_hash}`] = fn;

    // do it again for per assemly scope
    let assemblyScope = exportsByAssembly.get(assembly);
    if (!assemblyScope) {
        assemblyScope = {};
        exportsByAssembly.set(assembly, assemblyScope);
        exportsByAssembly.set(assembly + ".dll", assemblyScope);
    }
    scope = assemblyScope;
    parts = `${namespace}.${classname}`.split(".");
    for (let i = 0; i < parts.length; i++) {
        const part = parts[i];
        let newscope = scope[part];
        if (!newscope) {
            newscope = {};
            scope[part] = newscope;
        }
        mono_assert(newscope, () => `${part} not found while looking up ${classname}`);
        scope = newscope;
    }

    if (!scope[methodname]) {
        scope[methodname] = fn;
    }
    scope[`${methodname}.${signature_hash}`] = fn;
}

export async function mono_wasm_get_assembly_exports(assembly: string): Promise<any> {
    const asm = assembly_load(assembly);
    if (!asm)
        throw new Error("Could not find assembly: " + assembly);
    cwraps.mono_wasm_runtime_run_module_cctor(asm);

    return exportsByAssembly.get(assembly) || {};
}