-
Notifications
You must be signed in to change notification settings - Fork 375
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
Unable to debug GWT in firefox #9787
Comments
Does this break with any other FF edition than the ESR? Is there any chance that a plugin/extension could be affecting this? Any other prior exceptions in your logs before this is hit? The Impl.java class has no ff vs chrome implementation specifics, and is mostly driven through this code, which is typically called from JS using gwt/user/src/com/google/gwt/core/client/impl/Impl.java Lines 332 to 368 in 18c5d99
First enter() is called, which tests that value, then increments it before running any code that should be executed before the invoked java (such as your event handler). Before this, the entryDepth is assumed to be 0 or positive, and after this, it will be positive, since it was incremented. gwt/user/src/com/google/gwt/core/client/impl/Impl.java Lines 313 to 330 in 18c5d99
Then, all the java runs, and finally exit() is called at the end of entry0(). This might run any finally commands, then will decrement entryDepth (bringing it back down to either 0 or some other positive value), and then return control to the calling JS. gwt/user/src/com/google/gwt/core/client/impl/Impl.java Lines 373 to 388 in 18c5d99
Somehow it seems that your code is calling exit() without calling enter, or something else that is modifying entryDepth in a way that isn't allowed or expected. After that, watchdogEntryDepthRun() should be run which seems to zero out the entryDepth, though I'm not at this time why, since the try/finally above should manage that. The only way this could get out of balance that I can see (aside from some code calling Impl methods where it shouldn't) is if SchedulerImpl.INSTANCE.flushEntryCommands() were to throw so that entryDepth couldn't be decremented - but that would produce the opposite effect from what you are seeing. |
i've seen this Impl code, but did not understand it completly. |
Tried with the current Firefox Version 107. No Plugins installed. The same error still occurs. Uncaught Error: java.lang.AssertionError: Negative entryDepth value at entry -1 KA_g$ aa-0.js:3854 VA_g$ aa-0.js:3917 EA_g$ aa-0.js:3770 Nsd_g$ aa-0.js:16889 Xsd_g$ aa-0.js:16943 Vjc_g$ aa-0.js:11726 EJ_g$ aa-0.js:4856 GJ_g$ aa-0.js:4892 FJ_g$/< aa-0.js:4876 EventListener.handleEvent*MGc_g$/< aa-0.js:13879 vHc_g$ aa-0.js:14078 MGc_g$ aa-0.js:13878 YGc_g$ aa-0.js:14015 rGc_g$ aa-0.js:13701 SGc_g$ aa-0.js:13923 $Gc_g$ aa-0.js:14035 PBc_g$ aa-0.js:12864 GOc_g$ aa-0.js:15051 mPc_g$ aa-0.js:15300 POc_g$ aa-0.js:15120 RQc_g$ aa-0.js:15808 w_g$ aa-0.js:3122 Tlc_g$ aa-0.js:12201 initializeModules_0_g$ aa-0.js:28 DJ_g$ aa-0.js:4840 GJ_g$ aa-0.js:4910 FJ_g$/< aa-0.js:4876 klc_g$ aa-0.js:41 aa-0.js:25715 |
I attempted to reproduce this on linux+ff107 and failed. I also tried a windows 10 VM, running firefox 107, and could not reproduce there either. Here's the git repo for my project, can you confirm? It was generated from the webapp-modular archetype for the ltgt maven plugin. There is a readme file to show how to run this. I can see from your stack trace that you are testing in SDM - I've uploaded the generated SDM output to a website to make it easier to test in other browsers. I have not yet found a browser that errors instead of behaving as I would expect. Note that the JS is only generated for user.agent=gecko1_8, as this was copied from a running SDM instance, which could in theory mean that it won't work from some other browsers, but in practice it shouldn't matter (and hasnt failed in my testing). No sourcemaps are included. Can you confirm that this hosted build behaves for you, and that building locally from the linked project also succeeds for you? If you can reproduce on the website, I'd like to know more about your FF installation (and see if we can find anyone else who can confirm this). If not, if you can reproduce this from building locally, it sounds like you could possibly have a bad set of GWT jars or some other setup problem locally. If you cannot reproduce with either, I'd like to see all details of the sample project you made. |
I can reproduce the error with both, the website and the local build. Stacktrace looks different, but the Behavior is the same. Maybe my English is to bad, and/or i did not explain it correctly. |
Ah! I'm very sorry, you were clear, and I misunderstood. I can reproduce it now, and will get back to you when I know more. |
Maybe this is caused, because there are 2 threads? |
JS only has a single thread per "process" - web/shared/service workers can operate on their own thread, but objects aren't shared, they can't read and write each others variables and fields (only special "shared array buffers" can directly be shared, other "Transferable" types have "move" semantics instead of "copy"). I still don't know what's going on here, but I do know a few things:
I'll update when I have any actual progress to report. |
Could it somehow be due to GWT code running inside an iframe? In any case, if there are errors while execution is stopped on a breakpoint, that's a bug in Firefox. The different behavior between SDM and prod mode would be weird though. |
SDM unfortunately only functions with CrossSiteIframeLinker or DirectInstallLinker, so I can't test the iframe theory easily without being able to repro the bug with non-SDM generated output. It doesn't seem likely though since prod JS is also via iframe, and all of my tests are using launcherDir from the same origin, so that's the same SDM or prod. I don't believe it is actually error'ing while paused, but it might be continuing to execute something which gets the entry depth out of whack. |
I can confirm that this does not happen in production mode. So it seems to be something in GWT and Super Dev Mode. <set-property name="compiler.stackMode" value="emulated" /> <set-configuration-property name="compiler.emulatedStack.recordLineNumbers" value="true"/> <set-configuration-property name="compiler.emulatedStack.recordFileNames" value="true"/> <inherits name="com.google.gwt.logging.Logging" /> The result is still the same in SDM, but the stacktrace changed. Fri Dec 02 09:57:22 GMT+100 2022 com.google.gwt.logging.client.LogConfiguration SEVERE: Negative entryDepth value at entry -1 java.lang.AssertionError: Negative entryDepth value at entry -1 at Unknown.AA_g$(Throwable.java:75) at Unknown.avd_g$(Error.java:30) at Unknown.kvd_g$(AssertionError.java:51) at Unknown.AJ_g$(Impl.java:314) at Unknown.CJ_g$(Impl.java:336) at Unknown.anonymous(Impl.java:78) at Unknown.AJ_g$(Impl.java:314) at Unknown.CJ_g$(Impl.java:336) at Unknown.anonymous(Impl.java:78) at Unknown.AJ_g$(Impl.java:314) at Unknown.CJ_g$(Impl.java:336) at Unknown.anonymous(Impl.java:78) at Unknown.AJ_g$(Impl.java:314) at Unknown.CJ_g$(Impl.java:336) at Unknown.anonymous(Impl.java:78) at Unknown.AJ_g$(Impl.java:314) at Unknown.CJ_g$(Impl.java:336) at Unknown.anonymous(Impl.java:78) at Unknown.AJ_g$(Impl.java:314) at Unknown.CJ_g$(Impl.java:336) at Unknown.anonymous(Impl.java:78) at Unknown.AJ_g$(Impl.java:314) at Unknown.CJ_g$(Impl.java:336) at Unknown.anonymous(Impl.java:78) at Unknown.DJ_g$(Impl.java:380) at Unknown.CJ_g$(Impl.java:366) at Unknown.anonymous(Impl.java:78) Uncaught Error: java.lang.AssertionError: Negative entryDepth value at entry -1 GA_g$ aa-0.js:6185 RA_g$ aa-0.js:6286 AA_g$ aa-0.js:6068 avd_g$ aa-0.js:28301 kvd_g$ aa-0.js:28385 Rjc_g$ aa-0.js:18750 AJ_g$ aa-0.js:7809 CJ_g$ aa-0.js:7859 BJ_g$/< aa-0.js:7836 AJ_g$ aa-0.js:7808 CJ_g$ aa-0.js:7859 BJ_g$/< aa-0.js:7836 EventListener.handleEvent*SJc_g$/< aa-0.js:23653 BKc_g$ aa-0.js:23920 SJc_g$ aa-0.js:23650 cKc_g$ aa-0.js:23825 xJc_g$ aa-0.js:23390 YJc_g$ aa-0.js:23714 eKc_g$ aa-0.js:23853 VEc_g$ aa-0.js:21820 MRc_g$ aa-0.js:25486 sSc_g$ aa-0.js:25849 VRc_g$ aa-0.js:25586 XTc_g$ aa-0.js:26602 w_g$ aa-0.js:5094 Plc_g$ aa-0.js:19535 initializeModules_0_g$ aa-0.js:43 zJ_g$ aa-0.js:7786 CJ_g$ aa-0.js:7878 BJ_g$/< aa-0.js:7836 glc_g$ aa-0.js:57 aa-0.js:43974 Caused by: null I noticed, that the emulated Stacktrace gets longer with every mousemove. Looks like a loop, or emulated Stacktrace not beeing cleaned up? |
I've got a fairly minimal plain html/js test case that demonstrates this - as @tbroyer suspected, it is related to running in an iframe. So far, the requirements are
In these circumstances, the timer can elapse and run from within the current stack, instead of waiting until the current event finishes and returns. With a setup like this, no dom events need elapse, only timeouts and breakpoints. Here's a smallish sample that will cause this, still with the structure of the GWT Impl logic (note that it is the watchdog timer in Impl.java that is ultimately responsible for this bug):
I'll tidy this up a bit more and submit a bug to Firefox. For mitigation in GWT, you can copy the Impl.java class and change the watchdogEntryDepthSchedule call to use setTImeout instead of $wnd.setTimeout:
I don't think this is a reasonable fix to make to GWT itself, since there is nothing that says a browser couldnt have the same bug on the iframe's setTimeout etc, but it does look like we could remove the watchdog entirely, or only conditionally enable it. We should also consider adding a |
Thanks a lot for your investigation!!! |
Description
It is impossible to debug a GWT Application with Firefox, because Firefox throws lots of Exceptions on any MouseEvent after a breakpoint was hit, and thread was resumed.
The Error Messages are:
Uncaught Error: java.lang.AssertionError: Negative entryDepth value at exit -1
Steps to reproduce
Known workarounds
None.
Edge and Chromium don't have the Problem.
The text was updated successfully, but these errors were encountered: