mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 10:07:48 +02:00
127 lines
2.9 KiB
ObjectPascal
127 lines
2.9 KiB
ObjectPascal
program memtesthost;
|
|
|
|
{$mode objfpc}
|
|
|
|
uses
|
|
browserconsole, browserapp, JS, Classes, SysUtils, Web, WebAssembly, types, wasienv, wasm.pas2js.memutils;
|
|
|
|
Type
|
|
|
|
{ TMyApplication }
|
|
|
|
TMyApplication = class(TBrowserApplication)
|
|
Private
|
|
FWasiEnv: TPas2JSWASIEnvironment;
|
|
FMemUtils : TWasiMemUtils;
|
|
FMemory : TJSWebAssemblyMemory; // Memory of webassembly
|
|
FTable : TJSWebAssemblyTable; // exported functions.
|
|
function CreateWebAssembly(Path: string; ImportObject: TJSObject
|
|
): TJSPromise;
|
|
procedure DoWrite(Sender: TObject; const aOutput: String);
|
|
procedure HandleMemoryGrow(aPages: Integer);
|
|
function initEnv(aValue: JSValue): JSValue;
|
|
procedure InitWebAssembly;
|
|
Public
|
|
Constructor Create(aOwner : TComponent); override;
|
|
Destructor Destroy; override;
|
|
procedure doRun; override;
|
|
end;
|
|
|
|
function TMyApplication.InitEnv(aValue: JSValue): JSValue;
|
|
|
|
Var
|
|
Module : TJSInstantiateResult absolute aValue;
|
|
exps : TWASIExports;
|
|
|
|
begin
|
|
Result:=True;
|
|
Exps := TWASIExports(TJSObject(Module.Instance.exports_));
|
|
FWasiEnv.Instance:=Module.Instance;
|
|
Exps.Start;
|
|
end;
|
|
|
|
procedure TMyApplication.DoWrite(Sender: TObject; const aOutput: String);
|
|
begin
|
|
Writeln(aOutput);
|
|
end;
|
|
|
|
procedure TMyApplication.HandleMemoryGrow(aPages: Integer);
|
|
begin
|
|
Writeln('Webassembly host: memory has grown with ',aPages,' pages of 64k');
|
|
end;
|
|
|
|
constructor TMyApplication.Create(aOwner: TComponent);
|
|
begin
|
|
inherited Create(aOwner);
|
|
FWasiEnv:=TPas2JSWASIEnvironment.Create;
|
|
FWasiEnv.OnStdErrorWrite:=@DoWrite;
|
|
FWasiEnv.OnStdOutputWrite:=@DoWrite;
|
|
FMemUtils:=TWasiMemUtils.Create(FWasiEnv);
|
|
FMemUtils.OnMemoryGrow:=@HandleMemoryGrow;
|
|
end;
|
|
|
|
function TMyApplication.CreateWebAssembly(Path: string; ImportObject: TJSObject): TJSPromise;
|
|
|
|
begin
|
|
Result:=window.fetch(Path)._then(Function (res : jsValue) : JSValue
|
|
begin
|
|
Result:=TJSResponse(Res).arrayBuffer._then(Function (res2 : jsValue) : JSValue
|
|
begin
|
|
Result:=TJSWebAssembly.instantiate(TJSArrayBuffer(res2),ImportObject);
|
|
end,Nil)
|
|
end,Nil
|
|
);
|
|
end;
|
|
|
|
procedure TMyApplication.InitWebAssembly;
|
|
|
|
Var
|
|
mDesc : TJSWebAssemblyMemoryDescriptor;
|
|
tDesc: TJSWebAssemblyTableDescriptor;
|
|
ImportObj : TJSObject;
|
|
|
|
begin
|
|
// Setup memory
|
|
mDesc.initial:=256;
|
|
mDesc.maximum:=256;
|
|
FMemory:=TJSWebAssemblyMemory.New(mDesc);
|
|
// Setup table
|
|
tDesc.initial:=0;
|
|
tDesc.maximum:=0;
|
|
tDesc.element:='anyfunc';
|
|
FTable:=TJSWebAssemblyTable.New(tDesc);
|
|
// Setup ImportObject
|
|
ImportObj:=new([
|
|
'js', new([
|
|
'mem', FMemory,
|
|
'tbl', FTable
|
|
])
|
|
]);
|
|
FWasiEnv.AddImports(ImportObj);
|
|
CreateWebAssembly('memtest.wasm',ImportObj)._then(@initEnv)
|
|
end;
|
|
|
|
|
|
destructor TMyApplication.Destroy;
|
|
begin
|
|
FreeAndNil(FWasiEnv);
|
|
inherited Destroy;
|
|
end;
|
|
|
|
procedure TMyApplication.doRun;
|
|
|
|
begin
|
|
// Your code here
|
|
Terminate;
|
|
InitWebAssembly;
|
|
end;
|
|
|
|
var
|
|
Application : TMyApplication;
|
|
|
|
begin
|
|
Application:=TMyApplication.Create(nil);
|
|
Application.Initialize;
|
|
Application.Run;
|
|
end.
|