Changes between Version 1 and Version 2 of NFR_GENERAL_PERFORMANCE_R0


Ignore:
Timestamp:
11/16/09 10:19:56 (15 years ago)
Author:
kyli
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NFR_GENERAL_PERFORMANCE_R0

    v1 v2  
    1515 
    1616== Task requirements == 
    17 We believe that these slow-downs are caused by too much updating pro objects. The following  requirements should solve most of the performance problems:  
    18  * Minimize the number of updates of automatic properties. Currently, if prop C reads prop B and A, and prop B reads prop A, changing the prop A will cause 2 updates of prop C.  
    1917 * A halo menu and its children should not compute anything if it's not visible. The current version of Sophie without halo menus is much faster and this means that halos perform lots of computations even if not used. 
     18 * Not every book needs a halo menu itself. The halo menus should be common for the application. 
    2019 
    2120== Task result == 
     
    2423== Implementation idea == 
    2524 * In order to make the visibility requirement, VisualElements need to know about their visibility. This means adding a new prop to the interface. 
    26  * The pro lib could use a queue for performing updates of props. It also needs a better algorithm to compute the best possible order of updating. 
    2725 
    2826== Related == 
     
    3432 
    3533= Design = 
    36 ^(Describe your design here.)^ 
     34 
     35===  Visibility === 
     36 
     37 * Add Prop<Boolean> visible() in VisualElement; 
     38 * Override the method in BaseVisualElement, like this: '''if (parent().get() == null) return true; return parent().get().visible().get() && computeVisible();'''.  
     39 * This way, a visual element will not be visible unless all its parent are also visible. 
     40 * Create '''protected boolean computeVisible()''' in BaseVisualElement, which returns true by default. This will cause some conflicts because of overrides, returning Boolean. Solve them :)  
     41 * In most of the needed cases, this method is overriden already and no more work is needed. This considers halo menus. However, look around for possible problems. 
     42 * In BoundControl, add '''protected abstract M getDefaultValue()'''. This will be implemented in subclasses, according to their type. It will return the value which will be used when nothing in computed. 
     43 * Again in BoundControl, in computeModelData(), if the control is not visible, return the default value.  
     44 * This way, a bound control will not recompute when not shown. 
     45 
     46=== Halo menus === 
     47 
     48 * Currently, the halo menus of a book contain about 170 bound controls. They are created and initialized every time a new BookDocView is opened.  
     49 * If we want the halo menus to be in the main window, this means they will not have a parent of type PageWorkArea. Find all the '''findParentElement(PageWorkArea.class)''' and replace them with '''AppHaloUtil.getWorkArea()'''. The same about the static alternative of this method. 
     50 * Find all '''findParentElement(BookDocView.class)''' and replace them with appropriate logic (for example, get the parent of the workArea). 
     51 * Refactor the AppHalotil.getWorkArea(VisualElement element) so that it looks like: '''return AppViewUtil.getCurBookDocView(element).workArea().get()'''. 
     52 * Move the prop haloMenus() from PageWorkArea to AppMainWindow. 
     53 * Change the visualElementDefs of all the halo menus so that their parent will be of type AppMainWindow. 
     54 * Move the part related to halo menus from the setup methods in the swingComponent() in PageWorkArea to a resource prop in AppMainWindow. 
     55 * The new setup must firstly remove all the halo components from the halo layer of the last previous and the current PageWorkArea. Otherwise, the swing will not work properly. 
     56 * Result: faster book opening, preview opening (about 5 sec), less memory usage. 
    3757 
    3858= Implementation = 
    39 ^(Describe and link the implementation results here (from the wiki or the repository).)^ 
     59 Done in [browser:branches/private/milo/prop-opt]. 
    4060 
    4161= Testing =