DWScript is an object-oriented scripting engine for Delphi based on the Delphi language, with extensions borrowed from other Pascal languages (FreePascal, Prism, etc.).
0
votes
0answers
24 views
DWScript, retreiving a property symbol for a global variable
I'm overriding TRTTIEnvironment and am implementing function FindUnknownName(). I'd like to return a Symbol that is already exposed to the program by ExposeInstanceToUnit().
In some of my scripts the ...
0
votes
1answer
21 views
DWScript: TdwsGuardianThread.Finalize freeze when inside a DLL
When dwsExprs is added to a DLL, his finalization section freeze. Actaully TdwsGuardianThread.Finalize is frozen on the line guardian.WaitFor.
To demonstrate the issue, I made a sample DLL, which is ...
0
votes
1answer
62 views
DWScript: Issue updating to current development version
This weekend, I updated my code base from DWScript SVN. I used Preview 2.7 and now I'm using up-to-date trunk version.
I recompile my application and now the OnAfterInitUnitTable is no more ...
0
votes
0answers
70 views
Calling query.locate in dwscript
Is it possible to call a procedure that has a parameter of type set in dwscript?
I am exposing TDataSet and TADOQuery using ExposeClassToUnit.
var ScriptUnit : TdwsUnit;
...
0
votes
1answer
59 views
dwsscript Invalid Operands
I'm getting a compilation error "Invalid Operands" when compiling my dws script with RTTIVariable types. Is it possible for the following to work?
Declare variable which is a form.
gVar := ...
0
votes
0answers
81 views
Injecting interface implementation into script
How one is supposed to "inject interface implementation" into script? Say I define an interface type in TdwsUnit, like
IFoo = interface
procedure Bar;
end;
now how can I implement an function ...
3
votes
1answer
44 views
How to find variable calling TdwsGlobal.onReadVar/OnWriteVar event
I am dynamically creating variables within a DWSUnit as follows:
v := dwsUnit.Variables.Add('c', 'float'); // etc
v.OnWriteVar := writeVar;
v.OnReadVar := readVar;
All variables point to the same ...
5
votes
0answers
99 views
DWScript: using an event in an exposed Delphi class
I expose a Delphi class to the scripts using TdwsUnit.ExposeRTTI method. It works very well with basic data types.
But it doesn't work when I add a TNotifyEvent. My Delphi class has an OnChange : ...
2
votes
1answer
49 views
Get result data context in an OnFastEval event in DWScript
How do you get an IDataContext for the result value in the OnFastEval event in a TDWSUnit function?
The "magic functions"-functionality presented through the OnFastEval event can't return complex ...
0
votes
0answers
93 views
How to Load/Unload a DLL and use its methods inside a script executed by Delphi DWScript
Hi my questions is regarding DLL loading/ binding inside a script because I want to create a scripting interface where there could be plugins based on Delphi DWScript. Some of those plugins could lad ...
1
vote
2answers
131 views
Use dwscript as a plugin framework for Delphi Application
Is there a way to use dwscript as a plugin framework for a Delphi app? Eg I have a simple method in dwscript that adds to numbers and this needs to be called from the hosting application.
One ...
3
votes
0answers
80 views
Invoking overloaded method from Delphi in DWScript
In the dwsDatabaseLibModule.pas unit, which is included with the engine, the constructor of a class is invoked by accessing the class through TProgramInfo.Vars[]. Analogously, I was thinking I could ...
2
votes
1answer
79 views
DWScript basetype efficiency
The limited amount basetypes in DWScript can be very convenient, but doesn't it add a lot of overhead. Considering that integers are Int64, this should be quite a bit of overhead when you're working ...
1
vote
1answer
52 views
Using a TdwsUnit implicitly
Is assigning the TDelphiWebScript object to the TdwsUnit's Script property sufficient to use it implicitly? (Without having to add it to uses in the script)
4
votes
1answer
79 views
TdwsUnit performance
Will registering functions in a TdwsUnit yield the same performance as regular magic functions such as those registered in the dwsMathComplexFunctions.pas unit?
1
vote
1answer
52 views
Record methods in TdwsUnit
Is there a way to add methods to records in a TdwsUnit? It seems the members property only allows you to add fields. And is it possible to register constructors as well?
1
vote
1answer
75 views
Retrieving record parameters from TProgramInfo in DWScript
How do you retrieve record parameters from a TProgramInfo object in the Eval events for functions in a TdwsUnit? It seems that the object only provides ways to retrieve the basic datatypes directly or ...
2
votes
1answer
112 views
Adding methods to records type from Delphi in DWScript
After I've created a TRecordSymbol, how do I add a constructor and methods to it? I've tried using TMethodSymbol with little success, as I can't find a way to define the execution of the method.
1
vote
1answer
61 views
Registering implicit/explicit typecast operators in dwscript
Is it possible to register an implicit and/or explicit typecasting operator from Delphi?
I found http://code.google.com/p/dwscript/issues/detail?id=124, but it seems to deal with in-script operator ...
3
votes
2answers
127 views
Setting entry point in DWScript
Is there a way to set an entry point in DWScript?
For example, if I start a script execution, I'd like it to execute a procedure Main, rather than the code in the regular entry point (begin ... ...
5
votes
1answer
131 views
run-time evaluation of values in DelphiWebScript
My delphi application runs scripts using JvInterpreter (from the Jedi project).
A feature I use is runtime evaluation of expressions.
Script Example:
[...]
ShowMessage(X_SomeName);
[...]
...
5
votes
1answer
151 views
DWScript: how do I get Result after Call
Alright, I am totally new to DWScript. For now I am fascinated by its abilities, but although I read all the pages in the accompanying wiki and questions/answers here I still cannot find a way to ...
3
votes
1answer
114 views
DWScript: Add an new array definition to a dwsUnit at runtime
What is the method, using Delphi XE2, to call to add Array definition to a dwsUnit component at runtime?
MyDwsUnit.Arrays.Add returns a TCollectionItem, not TdwsArray, while adding an array ...
5
votes
2answers
343 views
Delphi Web Script (DWScript) link a script method to an external control event
I'm wondering if DWScript supports using a script method as an event handler for a control on a Delphi form. For example I want to link a TButton OnClick event to a method that exists in script.
I ...
3
votes
2answers
219 views
DWScript Install
I'm trying to install DWScript in XE2 and I seem to be struggling. I can't find any up to date installation instructions, and the older instructions I did find no longer seems applicable.
I've tried ...
7
votes
1answer
175 views
Serializing a TdwsProgram
As I understand it, DWScript does not compile scripts into an intermediary bytecode. However, I would like to be able to store a "compiled" script, to be able to send it through a stream or save it to ...
9
votes
2answers
212 views
Is there a way to keep variable values when executing a DWScript twice?
The application I am working on allows embedding script sinppets into a document. For example:
SomeText
<* PrintLn("This line is generated by a script"); *>
Some other text
<* PrintLn("This ...
7
votes
2answers
332 views
Is DWScript thread-safe?
I would like to know if DWScript is capable of using threads inside of scripts, as some engines do not synchronize access to it's internal data structures.
3
votes
1answer
171 views
Invoke a dwscript procedure with a class as param from delphi
How can I call from delphi a DWScript procedure which takes a class as param?
ex:
DWScript side:
procedure Proc1(AParam: TObject);
begin
// do something useful
end;
Delphi side:
var
Obj: ...
5
votes
1answer
270 views
Stack overflow when compiling a dwscript containing a TForm.Create(nil)
I'm trying to create a modal form with dwscript. Im registering the form with the ExposeRtti, then execute the script but it fails on a "Stack overflow" during the Script.Compile. Does anybody have a ...
5
votes
1answer
306 views
Dwscript web server
I want to use dwscript for web programming ( generating dynamic content). I was wondering if there is any module for apache web server? Or how can I run my own web server based on dwscript?
1
vote
1answer
207 views
delphi DWScript - change script variable value of type TObject at scriptruntime
I have a DWScript like this
var Outputter: TOutputter;
procedure OutputterTester;
begin
Outputter.Print;
end;
TOutputter (is only a example for a complex class) is declared and created in delphi ...
1
vote
2answers
459 views
How to install DWSScript
I am having trouble installing DWSScript component. I am using Delphi XE2 and when I try to compile the dwsLibRuntime.dpk I get an error ( Array type required ). I am using the latest DWScript source ...
5
votes
1answer
1k views
How call the CreateOleObject function using dwscript?
I'm trying to execute this code (this is a minimal sample in order to use CreateOleObject) from inside of a dwscript
function GetFileVersion(const FileName: string): string;
var
V : OleVariant;
...
1
vote
1answer
213 views
Creating macros using DWScript
I read this paragraph from the Delphi Tools Site
Changes since the last SVN update are:
Added support for FreePascal-like compile-time $INCLUDE “macros”:
%FILE% and %LINE% insert the current ...
2
votes
1answer
300 views
sending a record type as parameter using dwscript
Please consider this record:
Type
TStudent = record
Name:String;
Age: Integer;
Class:String;
end;
I have a class TSchool that has the following function:
function ...
1
vote
1answer
131 views
Using classes in dwsunit
1- Why is it necessary to name the methods of a class in a dwsunit this way?
dwsUnitClasses'ClassName''MethodName'Eval(Info: TProgramInfo;
var ExtObject: ...
3
votes
2answers
171 views
Calling a script from another one
Suppose I have this function saved in a certain script:
function Add(a,b:integer):integer;
begin
result:=a+b;
end;
and I have another script which is the following:
var
...
3
votes
2answers
633 views
'designide' must be recompiled when installing DWScript on Delphi XE2
I'm running Delphi XE2 w/ update 3.
I've just checked out the read-only branch of DWScript from the svn repository. I try to install dwsLib.dpk from the DelphiXE2 folder but receive the following ...
3
votes
2answers
388 views
What's exactly is the web part of delphi web script?
I'm currently starting to integrate "Delphi Web Script" in my application basically only as a scripting engine (interfacing with functions, classes, etc.); awesome software for the standard delphi ...
6
votes
2answers
246 views
How to create a 'local variables' display using DWScript and its debugger
I'm writing an IDE for DWScript and have got it stepping through code using the debugger. I now wish to add a display of 'local variables' (i.e those in scope). Can someone give me a pointer to the ...
2
votes
1answer
225 views
How to obtain the line numbers of executable lines from DWScript context map or symbol table
I am writing an IDE to use with Delphi DWScript and now have a simple debuggable script. I now want to highlight the executable lines in my source (like the blue dots at the left of the Delphi ...
4
votes
1answer
347 views
How best to expose a class instance in DWScript
I am putting together a built-in script capability using the excellent Pascal DWScript. I have also add my own Delphi-side class definition (TDemo) to DWScript using:
dwsUnit.ExposeRTTI( ...
2
votes
1answer
182 views
Delphi Web Script: How to Debug a specific Script Function
Thanks to TdwsDebugger I can debug a complete script using:
Debugger := TdwsDebugger.Create(nil);
Debugger.BeginDebug(Execution);
In my use case I don't run the whole script, but only a function of ...
1
vote
1answer
173 views
Delphi Web Script: How to find the Class Name of a Script-TClass in Delphi
Imagine this procedure, which is callable in a script:
// Foo is not implemented in the Script but via Delphi
procedure Foo(ClassType: TClass);
The Script looks like that:
type
TMyClass = ...
3
votes
2answers
574 views
Help with integrating latest Delphi Web Script (DWS) with SynEdit
I decided to have a concerted effort to get the excellent DWScript (Delph Web Script DWS) integrated into a simple IDE using SynEdit. DWScript is currently being agressively developed and has a number ...
1
vote
1answer
122 views
Does dwscript support operator overloading
I know dwscript has operator overloading for compound operators += etc.
I would like to have operator overloading for +, - etc as well for use in addition, multiplication etc. of matrix objects.
Does ...
7
votes
1answer
246 views
dwscript - how to enumerate all available types?
Hey,
Delphi Web Script is really great scripting engine. I'm trying to use it in one of my projects. However, I'm not sure if it is possible to enumerate all the types, functions that are available ...
2
votes
1answer
236 views
Delphi Web Script: Accessing a Variable after the Script is Executed
Imagine this Script:
var s = TStrings.Create;
s.Add('Line 1');
s.Add('Line 2');
procedure MyProc;
begin
if s.count = 2 then
// ...
end;
When the Script runs it creates the variable "s". Now ...
3
votes
1answer
427 views
Delphi Web Script: How to call a Script Function from Delphi Code within an Execution Context?
Imaging this scripting code:
procedure A;
begin
CallToDelphi;
end;
procedure B;
begin
// do something
end;
I have exposed the procedure "CallToDelphi" to the script. So when it is called, I'm ...

