Skip to content
  1. Dec 14, 2018
  2. Dec 13, 2018
  3. Dec 10, 2018
    • jsimomaa's avatar
      Speeding up platform startup time · da1d2663
      jsimomaa authored and Jani Simomaa's avatar Jani Simomaa committed
      Shaved ~1.5seconds off by starting SCL compiler priming at the beginning
      of platform startup on the background before the LifeCycleProcesses
      project feature needs the compiler.
      
      Also removed seemingly unused VirtualGraphInitializer that installed
      virtualgraphs/*.tg files into random memory-persistent virtual graphs
      during platform startup. It simply piles on some startup overhead and
      does nothing.
      
      gitlab #221
      
      Change-Id: I1ebbc4e292957755cd88f2941cd02730ae8605c8
      (cherry picked from commit 6667a651)
      da1d2663
    • jsimomaa's avatar
      Move shutdown of worker pools to SimanticsPlatform.shutdown() · ab95cc6c
      jsimomaa authored and Jani Simomaa's avatar Jani Simomaa committed
      Closing of public worker pools should be done before we are closing our
      db-connection. The platform-shutdown routine has already started and
      therefore it should not be meaningful to execute any more work for a
      closing platform
      
      gitlab #212
      
      Change-Id: I9fb8fb0970d649f7b53282be0627bf5387c9dde9
      (cherry picked from commit 502db54a)
      ab95cc6c
    • jsimomaa's avatar
      Remove unnecessary logback logger definition · 215f67be
      jsimomaa authored and Jani Simomaa's avatar Jani Simomaa committed
      org.simantics logger is basically identical with the root logger what
      comes to configuration. This specific logger can be removed to keep the
      configuration clear and simple.
      
      Also, this makes it more complicated to programmatically modify loggers
      as both the root logger and org.simantics logger has to be
      programmatically configured
      
      gitlab #216
      
      Change-Id: I8e27ea03ad3c5b6f2654edf0a7d863319e06bfa7
      (cherry picked from commit 1f09c7df)
      215f67be
    • jsimomaa's avatar
      Fix errors with procedural user components for computational values · 05e139af
      jsimomaa authored and Jani Simomaa's avatar Jani Simomaa committed
      gitlab #169
      
      Change-Id: I1d95429ea1c49ca2f8bd20d447500513a3e6f87a
      (cherry picked from commit e807368d)
      05e139af
  4. Dec 07, 2018
  5. Nov 26, 2018
  6. Nov 20, 2018
  7. Nov 15, 2018
  8. Nov 14, 2018
  9. Nov 13, 2018
  10. Nov 12, 2018
  11. Nov 10, 2018
    • Tuukka Lehtonen's avatar
      Fixed GraphExplorerImpl to set selection upon keyboard-based selection · 75dc26da
      Tuukka Lehtonen authored
      Previously scrolling the selection using the keyboard and then pressing
      Enter to open the selected resource would result in the wrong resource
      being opened because the selection hadn't yet propagated through the
      postSelection event.
      
      gitlab #184
      
      Change-Id: Ib1f837b3cb8eb70b32508e4abee36cfa995886ed
      75dc26da
    • Tuukka Lehtonen's avatar
      Still fixes history collection value band endTime setting and rendering · b8850837
      Tuukka Lehtonen authored
      Previous changes set value band end time to be the same as the next
      value band's start time. However this caused the problem that there is
      no way of telling during rendering where exactly within the previous
      value band did the band's value go out of dead band and since t_end does
      not tell us this. This means that line-rendering (not stepped sample
      rendering) will get drawn invalidly if t_end > t_begin within a value
      band.
      
      The fix was to set t_end to the last timestamp where the value was still
      within deadband, i.e:
      ```
      |t0    t0_end  |               VALUE BAND #0 t0 < t0_end
      |      |       |t1      |      VALUE BAND #1 t1 = t1_end
      |      |       |t1_end  |
      |      |       |        |t2... VALUE BAND #2
      ts0----ts1---- ts2------ts3---
      v=0    v=0     v=1      v=2
      ```
      
      gitlab #35
      
      Change-Id: I073d1aed0d3ce0ffe30081937fdd7ff1c22dc107
      b8850837
  12. Nov 08, 2018
    • Tuukka Lehtonen's avatar
      Usability fixes for GraphExplorerImpl -related WB selection propagation · 270834ce
      Tuukka Lehtonen authored and Jani Simomaa's avatar Jani Simomaa committed
      GraphExplorerImpl now uses JFace's OpenStrategy to implement the post
      selection provider mechanism which should work just like in JFace
      Viewers.
      
      SWTExplorer no longer listens to both selection and postSelection
      changes, which caused large amounts of unnecessary selection propagation
      to happen. It listens to postSelection if IPostSelectionProvider is
      available and selection if not.
      
      ModelledView did not implement IPostSelectionProvider at all and
      provided just an ISelectionProvider to the workbench. This partially
      caused other parts, like the property view to always react to model
      browser selection changes via immediate selection events instad of post
      selection events.
      
      The important lesson here is to just listen to either postSelection or
      selection, not both.
      
      gitlab #184
      gitlab #185
      
      Change-Id: I57fd7b6663bfa06f05105f6fa01e8d9a710c0ce0
      270834ce
    • Tuukka Lehtonen's avatar
Loading