Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP testing a lot of changes in order to get full support to SSW software suite for solar satellites. #2007

Merged
merged 31 commits into from
Mar 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5764ac0
with these modifications, idlneturl works approx OK with all ssw get …
Mar 6, 2025
823aedd
setting fake idl version to 8.4 now that we have boolean(). #1960
Mar 6, 2025
380f7b0
need to have wait() doing a widget update if wait is in a loop . Abso…
Mar 6, 2025
3fe37bf
solve #1855 -- an error while sending commands interactively while in…
Mar 7, 2025
ad5d51e
Merge origin/master
Mar 8, 2025
57e20e9
removed a few unused very internal functions (gdl_warning(), usym())
Mar 8, 2025
fcf5872
NAMES keyword also suppress traceback.
Mar 8, 2025
457b5f2
last error (?) corrected
Mar 9, 2025
85a5bed
insure STOP does not jump inside newt command in some cases.
Mar 9, 2025
a9bb2e5
IDL always shows a point in float's formats, we do this using the "sh…
Mar 9, 2025
9ae7ac9
This treatment of .RET avoids Assertion `returnValue == NULL' failed …
Mar 10, 2025
292bf71
need a modified wait (named gdlwait_responsive, not blocking the wige…
Mar 12, 2025
a1a0727
revised all event handling, now 90% in line with IDL's behaviour. Sti…
Mar 14, 2025
9e1b1db
revised all event handling, now 100% in line with IDL's behaviour. Ad…
Mar 15, 2025
f7924b3
added cw_field using D. Fanning alternate version.
Mar 17, 2025
4c8a47c
modified event handler for text (and test_widgets.pro), regarding the…
Mar 17, 2025
19eebbc
do NOT compile event_func or event_pro at defintion of widget. compil…
Mar 17, 2025
19bda81
do NOT compile event_func or event_pro at defintion of widget. compil…
Mar 17, 2025
acd2edb
discard 'other' widget_draw events when in widget_event loop
Mar 18, 2025
201375d
list (wxListBox) was issuing many GTK errors. Now this looks better
Mar 19, 2025
b699324
temporary save
Mar 21, 2025
a96c542
seems to reproduce all event/xmanager/block/unblock types.
Mar 22, 2025
5dc2660
corrected types in output event structure, and avoid NULL in this str…
Mar 22, 2025
f51446b
find_by_uname was not using the widget id and was thus completely wro…
Mar 22, 2025
f89738a
CallEventHandler() logic was once again wrong after previous simplifi…
Mar 23, 2025
471e1be
Adjusted sleep times to avoid gdl using 100% of cpu. (mostly in line …
Mar 24, 2025
0b8070a
XPOS YPOS are real values due to UNITS.
Mar 24, 2025
d87a6e8
1) insure XSIZE etc (all size-related KEYWORDS) are real values due t…
Mar 25, 2025
37fd21d
solved small logic of imbricated scrolled/ frames widget_bases.
Mar 25, 2025
73d63df
mainly WIDGET_TABLE : solves size /scroll size etc problem, accept -1…
Mar 28, 2025
34a18aa
oops not calling the widget eventloop makes the event-waiting routine…
Mar 30, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
171 changes: 78 additions & 93 deletions src/GDLInterpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,38 +81,22 @@ GDLInterpreter::GDLInterpreter()

try { // for error handling

//optimize speed: differentiate inner loops to avoid one externally implicit comparison on controlc for each loop (if possible)
if (interruptEnable) { //will test for sigControlC
{
do {
last = _retTree;
callStack.back()->SetLineNumber(last->getLine()); // track actual line number
retCode = last->Run(); // Run() sets _retTree
} while (_retTree != NULL && retCode == RC_OK && !(sigControlC) && (debugMode <= DEBUG_RETURN)); //loops if debug_clear or debug_return
if (_retTree != NULL) last = _retTree; //this is OK see https://github.com/gnudatalanguage/gdl/issues/1403#issuecomment-1326490113
goto afterStatement;
}
} else { //will not test for sigControlC
{
do {
last = _retTree;
callStack.back()->SetLineNumber(last->getLine()); // track actual line number
retCode = last->Run(); // Run() sets _retTree
} while (_retTree != NULL && retCode == RC_OK && (debugMode <= DEBUG_RETURN)); //loops if debug_clear or debug_return
if (_retTree != NULL) last = _retTree; //this is OK see https://github.com/gnudatalanguage/gdl/issues/1403#issuecomment-1326490113
//optimize speed: differentiate inner loops to avoid one externally implicit comparison on controlc for each loop (if possible)
if (interruptEnable) { //will test for sigControlC
do {
last = _retTree;
callStack.back()->SetLineNumber(last->getLine()); // track actual line number
retCode = last->Run(); // Run() sets _retTree
} while (_retTree != NULL && retCode == RC_OK && !(sigControlC) && (debugMode <= DEBUG_RETURN)); //loops if debug_clear or debug_return
} else { //will not test for sigControlC
do {
last = _retTree;
callStack.back()->SetLineNumber(last->getLine()); // track actual line number
retCode = last->Run(); // Run() sets _retTree
} while (_retTree != NULL && retCode == RC_OK && (debugMode <= DEBUG_RETURN)); //loops if debug_clear or debug_return
}
if (_retTree != NULL && debugMode != DEBUG_RETURN ) last = _retTree;
goto afterStatement;
}
}
// original single loop with all checks
// {
// do {
// last = _retTree;
// callStack.back()->SetLineNumber(last->getLine()); // track actual line number
// retCode = last->Run(); // Run() sets _retTree
// } while (_retTree != NULL && retCode == RC_OK && !(sigControlC && interruptEnable) && (debugMode <= DEBUG_RETURN)); //loops if debug_clear or debug_return
// if (_retTree != NULL) last = _retTree; //this is OK see https://github.com/gnudatalanguage/gdl/issues/1403#issuecomment-1326490113
// goto afterStatement;
// }

// The following code (up to afterStatement is never executed - here only because ANTLR code needs it, although it should not (not optimized parser)

Expand Down Expand Up @@ -358,72 +342,73 @@ GDLInterpreter::GDLInterpreter()
}
}

afterStatement:
// tested a possible optimization: make CtrlCHandler produce a DEBUG_STOP, and do not test sigControlC here at all.
// Apparently does not perform noticeably better and has adverse effects. Forget it.
if (interruptEnable && sigControlC) {
DebugMsg(last, "Interrupted at: ");
sigControlC = false;
retCode = NewInterpreterInstance(last->getLine()); //-1);
} else if (interruptEnable && _retTree == NULL && (debugMode == DEBUG_RETURN || debugMode == DEBUG_OUT)) {
if (debugMode == DEBUG_RETURN) {
if (callStack.back()->GetProName() == MyProName) {
DebugMsg(last, "Return encountered: ");
debugMode = DEBUG_CLEAR;
return NewInterpreterInstance(last->getLine()); //-1);
}
} else { //DEBUG_OUT --> just do an additional .step if we are at MyProName
if (callStack.back()->GetProName() == MyProName) {
debugMode = DEBUG_STEP;
stepCount=1;
return retCode; //continue
}
}
} else if (debugMode != DEBUG_CLEAR) {
if (debugMode == DEBUG_STOP) {
DebugMsg(last, "Stop encountered: ");
if (!interruptEnable) debugMode = DEBUG_PROCESS_STOP;
} else if (debugMode == DEBUG_STOP_SILENT) {
if (!interruptEnable) debugMode = DEBUG_PROCESS_STOP;
}

if (debugMode == DEBUG_STEP) {
if (stepCount == 1) {
stepCount = 0;
DebugMsg(last, "Stepped to: ");

debugMode = DEBUG_CLEAR;

retCode = NewInterpreterInstance(last->getLine()); //-1);
} else {
--stepCount;
afterStatement:
// tested a possible optimization: make CtrlCHandler produce a DEBUG_STOP, and do not test sigControlC here at all.
// Apparently does not perform noticeably better and has adverse effects. Forget it.
if (interruptEnable && sigControlC) {
DebugMsg(last, "Interrupted at: ");
sigControlC = false;
retCode = NewInterpreterInstance(last->getLine()); //-1);
} else if (interruptEnable && _retTree == NULL && (debugMode == DEBUG_RETURN || debugMode == DEBUG_OUT)) {
if (debugMode == DEBUG_RETURN) {
if (callStack.back()->GetProName() == MyProName) {
DebugMsg(last, "Return encountered: ");
debugMode = DEBUG_STOP_SILENT;
return retCode;
}
} else { //DEBUG_OUT --> just do an additional .step if we are at MyProName
if (callStack.back()->GetProName() == MyProName) {
debugMode = DEBUG_STEP;
stepCount=1;
return retCode; //continue
}
}
} else if (debugMode != DEBUG_CLEAR) {
if (debugMode == DEBUG_STOP) {
DebugMsg(last, "Stop encountered: ");
if (!interruptEnable) debugMode = DEBUG_PROCESS_STOP;
} else if (debugMode == DEBUG_STOP_SILENT) {
if (!interruptEnable) debugMode = DEBUG_PROCESS_STOP;
}
if (debugMode == DEBUG_STEP) {
if (stepCount == 1) {
stepCount = 0;
DebugMsg(last, "Stepped to: ");
debugMode = DEBUG_CLEAR;
retCode = NewInterpreterInstance(last->getLine()); //-1);
} else {
--stepCount;
#ifdef GDL_DEBUG
std::cout << "stepCount-- = " << stepCount << std::endl;
std::cout << "stepCount-- = " << stepCount << std::endl;
#endif
}
} else if (debugMode == DEBUG_STEPOVER) {
if (callStack.back()->GetProName() == MyProName) { //we count only in current level
if (stepCount == 1) {
stepCount = 0;
DebugMsg(last, "Stepped to: ");

debugMode = DEBUG_CLEAR;
MyProName="";
retCode = NewInterpreterInstance(last->getLine()); //-1);
} else {
--stepCount;
}
} else if (debugMode == DEBUG_STEPOVER) {
if (callStack.back()->GetProName() == MyProName) { //we count only in current level
if (stepCount == 1) {
stepCount = 0;
DebugMsg(last, "Stepped to: ");
debugMode = DEBUG_CLEAR;
MyProName="";
retCode = NewInterpreterInstance(last->getLine()); //-1);
} else {
--stepCount;
#ifdef GDL_DEBUG
std::cout << "stepCount-- = " << stepCount << std::endl;
std::cout << "stepCount-- = " << stepCount << std::endl;
#endif
}
}
} else if (interruptEnable) {
if (debugMode == DEBUG_PROCESS_STOP) DebugMsg(last, "Stepped to: ");
debugMode = DEBUG_CLEAR;
retCode = NewInterpreterInstance(last->getLine()); //-1);
} else {
retCode = RC_ABORT;
}
}
}
} else if (interruptEnable) {
if (debugMode == DEBUG_PROCESS_STOP) DebugMsg(last, "Stepped to: ");
debugMode = DEBUG_CLEAR;
retCode = NewInterpreterInstance(last->getLine()); //-1);
} else {
if (debugMode == DEBUG_PROCESS_STOP) {
debugMode = DEBUG_CLEAR;
retCode = NewInterpreterInstance(last->getLine());
} else {
retCode = RC_ABORT;
}
}
}
return retCode;

Expand Down
73 changes: 71 additions & 2 deletions src/basic_pro_jmg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <string>
#include <fstream>
#include <limits>
#include "gdleventhandler.hpp"
#include "gdleventhandler.hpp" //for gdlwait_responsive
#include "dinterpreter.hpp"
#include "basic_pro_jmg.hpp"

Expand Down Expand Up @@ -483,6 +483,76 @@ namespace lib {
DllContainer::clear();
}

//idem WAIT_PRO, but needed in idlneturl as we wait while some widgets events must happen.
//should NEVER be used elsewhere (the idlneturl.pro procedure should disappear in favor of a pure C/C++ use of the CURL library)
//The real WAIT blocks absolutely anything --- as it should.
void gdlwait_responsive(EnvT* e) {
e->NParam(1); //, "WAIT");

DDouble waittime;
e->AssureDoubleScalarPar(0, waittime);

if (waittime < 0)
throw GDLException(e->CallingNode(),
"WAIT: Argument must be non-negative"
+ e->GetParString(0));

#ifdef _WIN32
LARGE_INTEGER Frequency;
LARGE_INTEGER BeginTime;
LARGE_INTEGER Endtime;
LARGE_INTEGER elapsed;
LARGE_INTEGER waittime_us;
waittime_us.QuadPart = waittime * 1e6;

QueryPerformanceFrequency(&Frequency);
QueryPerformanceCounter(&BeginTime);

while (1) {
QueryPerformanceCounter(&Endtime);
elapsed.QuadPart = (Endtime.QuadPart - BeginTime.QuadPart) / (Frequency.QuadPart / 1000000);
if (elapsed.QuadPart >= waittime_us.QuadPart) break;
else if (elapsed.QuadPart > 100) Sleep(80);
}
#else
int old_version = 0;

if (waittime <= 0.005) old_version = 1;

// AC 2010-09-16
// this version is OK and very accurate for small durations
// but used 100% of one CPU :((
if (old_version == 1) {
struct timeval tval;
struct timezone tzone;

// derivated from the current version of SYSTIME()
gettimeofday(&tval, &tzone);
double t_start = tval.tv_sec + tval.tv_usec / 1e+6; // time in UTC seconds
double t_current = 0.0;

double diff = 0.0;
while (diff < waittime) {

gettimeofday(&tval, &tzone);
t_current = tval.tv_sec + tval.tv_usec / 1e+6;
diff = t_current - t_start;
}
}

// AC 2010-09-16 this version should used much less CPU !
if (old_version == 0) {
//cout << floor(waittime) << " " << waittime-floor(waittime) << endl;
struct timespec tv;
tv.tv_sec = floor(waittime);
tv.tv_nsec = (waittime - floor(waittime))*1e9;
int retval;
retval = nanosleep(&tv, NULL);
}
#endif
GDLEventHandler(); //this is probably not OK, but is at the moment needed to permit delivery of callback functions in idlneturl__define.pro where a waiting loop uses teh WAIT command.
}

void wait_pro( EnvT* e)
{
e->NParam( 1);//, "WAIT");
Expand Down Expand Up @@ -548,7 +618,6 @@ namespace lib {
retval=nanosleep(&tv,NULL);
}
#endif
GDLEventHandler(); //this is probably not OK, but is at the moment needed to permit delivery of callback functions in idlneturl__define.pro where a waiting loop uses teh WAIT command.
}


Expand Down
1 change: 1 addition & 0 deletions src/basic_pro_jmg.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ namespace lib {
void unlinksymbol( EnvT* e );
void ResetDLLs( void );
void wait_pro( EnvT* e);
void gdlwait_responsive( EnvT* e);

void kwtest( EnvT* e);

Expand Down
5 changes: 2 additions & 3 deletions src/devicewx.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,8 @@ if(hide) {
return gcFunction;
}

DLongGDL* GetScreenSize(char* disp) {
DLongGDL* res;
res = new DLongGDL(2, BaseGDL::NOZERO);
DIntGDL* GetScreenSize(char* disp) {
DIntGDL* res = new DIntGDL(2, BaseGDL::NOZERO);
(*res)[0] = wxSystemSettings::GetMetric(wxSYS_SCREEN_X);
(*res)[1] = wxSystemSettings::GetMetric(wxSYS_SCREEN_Y);
return res;
Expand Down
5 changes: 2 additions & 3 deletions src/devicex.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,9 @@ class DeviceX : public GraphicsMultiDevice {
return gcFunction;
}

DLongGDL* GetScreenSize(char* disp) {
DIntGDL* GetScreenSize(char* disp) {
Display* display = XOpenDisplay(disp);
int screen_num, screen_width, screen_height;
DLongGDL* res;

if (display == NULL) {
screen_width = 0;
Expand All @@ -196,7 +195,7 @@ class DeviceX : public GraphicsMultiDevice {
screen_height = DisplayHeight(display, screen_num);
XCloseDisplay(display);
}
res = new DLongGDL(2, BaseGDL::NOZERO);
DIntGDL* res = new DIntGDL(2, BaseGDL::NOZERO);
(*res)[0]= screen_width;
(*res)[1]= screen_height;
return res;
Expand Down
2 changes: 1 addition & 1 deletion src/devicez.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ class DeviceZ: public GraphicsDevice
memBuffer[i] = bColor;
}

DLong GetPixelDepth() { return 24;}
DInt GetPixelDepth() { return 24;}

bool SetPixelDepth(DInt value) {
static int displayed=0;
Expand Down
2 changes: 1 addition & 1 deletion src/dpro.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ class DLibFunRetNewTP: public DLibFun
bool RetConstant() { return this->retConstant;}
};
// direct call functions must have:
// ony one parameter, no keywords
// only one parameter, no keywords
// these functions are called "direct", no environment is created
class DLibFunDirect: public DLibFunRetNew
{
Expand Down
Loading
Loading