Skip to content

Commit e814da4

Browse files
Coldzer0Coldzer0
Coldzer0
authored and
Coldzer0
committed
Update And Fix FPC Demo
Update the eval_buf function to detect modules automaticaly. Fix a big in argc and argv. Will update Delphi Demo later :D
1 parent a7aadfa commit e814da4

File tree

4 files changed

+34
-239
lines changed

4 files changed

+34
-239
lines changed

.gitignore

-28
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,3 @@
1-
# Uncomment these types if you want even more clean repository. But be careful.
2-
# It can make harm to an existing project source. Read explanations below.
3-
#
4-
# Resource files are binaries containing manifest, project icon and version info.
5-
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
6-
#*.res
7-
#
8-
# Type library file (binary). In old Delphi versions it should be stored.
9-
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
10-
#*.tlb
11-
#
12-
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
13-
# Uncomment this if you are not using diagrams or use newer Delphi version.
14-
#*.ddp
15-
#
16-
# Visual LiveBindings file. Added in Delphi XE2.
17-
# Uncomment this if you are not using LiveBindings Designer.
18-
#*.vlb
19-
#
20-
# Deployment Manager configuration file for your project. Added in Delphi XE2.
21-
# Uncomment this if it is not mobile development and you do not use remote debug feature.
22-
#*.deployproj
23-
#
24-
# C++ object files produced when C/C++ Output file generation is configured.
25-
# Uncomment this if you are not using external objects (zlib library for example).
26-
#*.obj
27-
#
28-
291
# Delphi compiler-generated binaries (safe to delete)
302
*.exe
313
*.bpl

QJSPascalDemo/Demo.lpr

+33-13
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,41 @@
1919
QuickJSDemo,RawExecution;
2020

2121

22-
function eval_buf(ctx : JSContext; Buf : PChar; buf_len : Integer; filename : PChar; eval_flags : Integer): Integer;
22+
function eval_buf(ctx: JSContext; Buf: PChar; buf_len: integer;
23+
filename: PChar; is_main : boolean; eval_flags: integer = -1): JSValue;
2324
var
24-
val : JSValue;
25+
ret: JSValue;
2526
begin
26-
val := JS_Eval(ctx, buf, buf_len, filename, eval_flags);
27-
if JS_IsException(val) then
27+
if eval_flags = -1 then
28+
begin
29+
if JS_DetectModule(Buf,buf_len) then
30+
eval_flags := JS_EVAL_TYPE_MODULE
31+
else
32+
eval_flags := JS_EVAL_TYPE_GLOBAL;
33+
end;
34+
35+
if (eval_flags and JS_EVAL_TYPE_MASK) = JS_EVAL_TYPE_MODULE then
36+
begin
37+
ret := JS_Eval(ctx, buf, buf_len, filename, eval_flags or JS_EVAL_FLAG_COMPILE_ONLY);
38+
if not JS_IsException(ret) then
39+
begin
40+
js_module_set_import_meta(ctx, ret, True, is_main);
41+
ret := JS_EvalFunction(ctx, ret);
42+
end;
43+
end
44+
else
45+
ret := JS_Eval(ctx, buf, buf_len, filename, eval_flags);
46+
47+
if JS_IsException(ret) then
2848
begin
2949
js_std_dump_error(ctx);
30-
Result := -1;
50+
Result := JS_NULL;
3151
end
3252
else
33-
Result := 0;
34-
JS_FreeValue(ctx, val);
53+
Result := ret;
3554
end;
3655

37-
function eval_file(ctx : JSContext; filename : PChar; eval_flags : Integer): Integer;
56+
function eval_file(ctx : JSContext; filename : PChar; eval_flags : Integer = -1): JSValue;
3857
var
3958
buf_len : size_t;
4059
Buf : Pointer;
@@ -43,9 +62,9 @@ function eval_file(ctx : JSContext; filename : PChar; eval_flags : Integer): Int
4362
if not Assigned(buf) then
4463
begin
4564
Writeln('Error While Loading : ',filename);
46-
exit(1);
65+
exit(JS_EXCEPTION);
4766
end;
48-
Result := eval_buf(ctx, buf, buf_len, filename, eval_flags);
67+
Result := eval_buf(ctx, buf, buf_len, filename, true, eval_flags);
4968
js_free(ctx, buf);
5069
end;
5170

@@ -94,7 +113,7 @@ procedure RunCode();
94113
// ES6 Module loader.
95114
JS_SetModuleLoaderFunc(rt, nil, @js_module_loader, nil);
96115

97-
js_std_add_helpers(ctx,argc,argv);
116+
js_std_add_helpers(ctx,argc-1,@argv[1]);
98117
js_init_module_std(ctx, 'std');
99118
js_init_module_os(ctx, 'os');
100119

@@ -111,7 +130,7 @@ procedure RunCode();
111130
m := JS_NewCModule(ctx, 'Cmu', @Emu_init);
112131
JS_AddModuleExport(ctx,m,'ApiHook');
113132

114-
eval_buf(ctx, std_hepler, strlen(std_hepler), '<global_helper>', JS_EVAL_TYPE_MODULE);
133+
eval_buf(ctx, std_hepler, strlen(std_hepler), '<global_helper>', False, JS_EVAL_TYPE_MODULE);
115134

116135

117136
global := JS_GetGlobalObject(ctx);
@@ -124,7 +143,7 @@ procedure RunCode();
124143
if ParamCount >= 1 then
125144
begin
126145
filename := PChar(ParamStr(1));
127-
eval_file(ctx,filename,JS_EVAL_TYPE_GLOBAL {or JS_EVAL_TYPE_MODULE});
146+
eval_file(ctx,filename);
128147
end;
129148

130149
js_std_loop(ctx);
@@ -140,6 +159,7 @@ procedure RunCode();
140159

141160

142161
begin
162+
{ TODO -oColdzer0 : RawTest Bytes need to be updated }
143163
//RawTest; // If you unComment this comment the next line.
144164
RunCode;
145165
end.

QJSPascalDemo/Demo.lps

-197
This file was deleted.

QJSPascalDemo/quickjsdemo.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ procedure RegisterNativeClass(ctx : JSContext); cdecl;
8989
JS_NewClass(JS_GetRuntime(ctx),API_Class_id,@JClass);
9090

9191
// Properties list.
92-
tab[0] := JS_CFUNC_DEF('install', 1, JSCFunctionType(@install));
92+
tab[0] := JS_CFUNC_DEF('install', 1, install);
9393
tab[1] := JS_PROP_INT32_DEF('version', 1337, JS_PROP_CONFIGURABLE);// add "or JS_PROP_WRITABLE" to make it writable.
9494

9595
// New Object act as Prototype for the Class.

0 commit comments

Comments
 (0)