Builds Spark (minus the Install4j distributables) after every change to the code.

Build: #405 was successful Changes by Guus der Kinderen

Build result summary

Details

Completed
Queue duration
< 1 second
Duration
21 seconds
Labels
None
Agent
Default Agent
Revision
1833d7e29963370a135682197217ec035c473f68
Total tests
5
Successful since
#340 ()

Tests

  • 0 New failures
  • 0 Existing failures
  • 0 Fixed

Code commits

Author Commit Message Commit date
Guus der Kinderen Guus der Kinderen 1833d7e29963370a135682197217ec035c473f68 Add debug logging for startup timing
This adds log lines that will help show how long particular bits of the initial startup take.

No functional changes are introduced by this commit.
Guus der Kinderen Guus der Kinderen 85be64fabdf1cfa3824b51163704762b72f21378 SPARK-2257: Make execution on Event Dispatch Thread more explicit
Swing event handling code runs on a special thread known as the event dispatch thread. Most code that invokes Swing methods also runs on this thread. This is necessary because most Swing object methods are not "thread safe": invoking them from multiple threads risks thread interference or memory consistency errors. Some Swing component methods are labelled "thread safe" in the API specification; these can be safely invoked from any thread. All other Swing component methods must be invoked from the event dispatch thread. Programs that ignore this rule may function correctly most of the time, but are subject to unpredictable errors that are difficult to reproduce.

It's useful to think of the code running on the event dispatch thread as a series of short tasks. Most tasks are invocations of event-handling methods, such as ActionListener.actionPerformed. Other tasks can be scheduled by application code, using invokeLater or invokeAndWait. Tasks on the event dispatch thread must finish quickly; if they don't, unhandled events back up and the user interface becomes unresponsive.

Spark should make clear what code is, and what code is not supposed to be executed on the Event Dispatch thread. This will help reduce instances where the UI seems frozen for prolonged periods of time, or otherwise behaves in an unexpected manner.

This commit adds comments to various methods (particularly around the login sequence) that define if the method is to be executed on the Event Dispatch Thread. Also, when ran in debug mode, code-checks will fail-fast, if such methods are executed differently. This will help spot problems.

Jira issues

IssueDescriptionStatus
Unknown Issue TypeSPARK-2257Could not obtain issue details from Jira