UI: Code Quality Improvements - Low-Hanging Fruits to be Discussed #73781

Closed
opened 2020-02-13 19:19:22 +01:00 by Julian Eisel · 6 comments
Member

UI: Code Quality Improvements - Low-Hanging Fruits to be Discussed

There are many major issues with the quality of our UI code. The argument can be made that much of it is due for a complete rewrite. Such a rewrite is not a short-term goal though. For that reason we should try addressing some low-hanging fruits within regular development.

The following isn't a complete list of low hanging fruits. It's more of an initial idea list.

Reducing bContext dependencies

bContext provides a handy way of passing around state information. The UI code probably relies too much on it though:

  • It's become a real hassle to ensure it's valid as needed
  • There are multiple cases where we know it's not set correctly, but fixing it is difficult. E.g. see #73565.
  • Often passes around redundant data. E.g. some parameter lists include both wmWindow * and bContext * (itself also including a wmWindow *) - which window should be used? Can we rely on them being the same, or when do they differ?
  • Testing the UI code is difficult either way, but removing dependencies on context, and only passing around actually needed data, should make units more isolated, thus more testable.

Ideally, I think context should only be passed to high-level operator, drawing or handler functions and the like. These should then read out needed data from context and use that to perform actions on this data as input. In-between these callbacks there should not be any access to the context.

Plan of action:

  • Get rid of bContext * usage in lower level functions or we it can be easily avoided (see P1250).
  • Add utility structures to wrap common UI data to operate on (wmWindow, bScreen, ScrArea, etc.).
  • Add more sanity checks for context state.

Maybe we should also look into only actually creating a context when it's needed for callbacks. Making that easy and reliable isn't a low-hanging fruit though.

Push/pop bContext semantics

There are more and more places where we temporarily override context members, which always follows the same pattern. It's a good idea to generalize this, for esthetical reasons but also to prevent errors (e.g. single variables not reset in certain execution paths). We could introduce a simple and lightweight static context stack with push and pop calls to wrap any temorary overrides.

Naming conventions

I'd like to point out a pitfall that I still stumble over occasionally after six years: the naming conventions for ARegion - ar and ScrArea - sa. When trying to access an area, it easy to mistakenly type ar, which refers to the region instead.

We should avoid such ambiguous names. We should also avoid abbreviations, esp. extreme ones, for variables with non-small scope. That should further remove ambiguity and make code more readable.

For example:

Type Old naming (convention) Proposed
ARegion ar region
ScrArea sa area
bScreen sc, scr screen
PanelType pt panel_type
MenuType mt menu_type
HeaderType ht header_type
ColorBand coba color_band
ExtensionRNA ext rna_extension
int x1, x2, y1, y2 xmin, width, ymin, height

Note that all these examples can be changed without touching DNA (afaics).

Ghost C++11 features

Ghost probably wouldn't benefit too greatly from modern C++ usage, but there are a few features that might be handy. Changes proposed here should move us closer to following the C++ guidelines: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines.

If in future we add more C++ to our UI code, we should follow the same rules.

  • override, virtual and final keywords: Explicit usage of these terms in class hierarchies may prevent some errors. Especially override and final since they lead to a compile error on function signature mismatch (C.128).
  • std::unique_ptr: It's considered good practise to use smart pointers (esp. std::unique_ptr) to manage lifetimes of C++ objects. They make object ownership explicit and enforce static sanity checks. ([R.1]], http:*isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-newdelete , [http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-owner | R.20). We may want to add our own make_unique() too, which is only available in C++17.
  • default and delete constructors and destructors: Using these may help catch some errors at compile time, make classes more compatible with std containers and allows optimizations for trivial operation (e.g. a = default copy constructor makes a type "trivially copyable", which some containers and compilers optimize for) ([C.43]], http:*isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-eqdefault , [http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-delete | C.81).
  • In-class initializer: Among other reasons, making good use of in-class initialization reduces likelyhood of uninitialized members ([C48]], [http:*isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-in-class-initializer | C.45).
  • Range-based for loops: Ghost uses std containers in a few places. C++11 range-based for loops make iterating them far less verbose (ES.71).
  • auto to avoid verbosity/redundancy: While there are good reasons to be sceptical about auto, there are few cases where they are definitely useful. For example in case of long type names (like std::vector<std::unique_ptr<SomeType>>::const_iterator). (ES.11)
  • using over typedef: The using syntax to create aliases is often considered more readable. (T.43).
  • nullptr: More on the esthetical side of things (although may avoid some nasty surprises!), but we should use standard nullptr instead of NULL. We can avoid including stddef.h everywhere then. (ES.47)

Other, similar improvements are possible. These are just a few examples of low hanging fruits.

Various

  • Introduce wrappers for commonly bundled variables (e.g. PointerRNA & PropertyRNA, wmOperatorType & PointerRNA, ScrArea & ARegion).
  • Split up bigger, "generic" types. For example uiBut contains data that only applies to certain button-types. uiButTab is an example of how this can be avoided.
  • Wrap related struct members into nested structs. E.g. rather than uiBut.editstr, uiBut.editval, uiBut.editvec, etc, it could be uiBut.edit_values.foo.
  • Replace booleans in parameter lists with enums. Having a parameter list like foo(true, false, false) is cumbersome to use (what does each boolean mean) and leads to mistakes (using wrong order of booleans). It's better to be explicit what each value refers to by using enum types. Bitflags are also an option.
  • Split big functions into more manageable chunks.
  • Add const where applicable
  • Of course improving naming, comments and documentation is always a good idea!
# UI: Code Quality Improvements - Low-Hanging Fruits to be Discussed There are many major issues with the quality of our UI code. The argument can be made that much of it is due for a complete rewrite. Such a rewrite is not a short-term goal though. For that reason we should try addressing some low-hanging fruits within regular development. The following isn't a complete list of low hanging fruits. It's more of an initial idea list. **Reducing `bContext` dependencies** `bContext` provides a handy way of passing around state information. The UI code probably relies too much on it though: * It's become a real hassle to ensure it's valid as needed * There are multiple cases where we know it's not set correctly, but fixing it is difficult. E.g. see #73565. * Often passes around redundant data. E.g. some parameter lists include both `wmWindow *` and `bContext *` (itself also including a `wmWindow *`) - which window should be used? Can we rely on them being the same, or when do they differ? * Testing the UI code is difficult either way, but removing dependencies on context, and only passing around actually needed data, should make units more isolated, thus more testable. Ideally, I think context should only be passed to high-level operator, drawing or handler functions and the like. These should then read out needed data from context and use that to perform actions on this data as input. In-between these callbacks there should not be any access to the context. Plan of action: * Get rid of `bContext *` usage in lower level functions or we it can be easily avoided (see [P1250](https://archive.blender.org/developer/P1250.txt)). * Add utility structures to wrap common UI data to operate on (`wmWindow`, `bScreen`, `ScrArea`, etc.). * Add more sanity checks for context state. Maybe we should also look into only actually creating a context when it's needed for callbacks. Making that easy and reliable isn't a low-hanging fruit though. **Push/pop `bContext` semantics** There are more and more places where we temporarily override context members, which always follows the same pattern. It's a good idea to generalize this, for esthetical reasons but also to prevent errors (e.g. single variables not reset in certain execution paths). We could introduce a simple and lightweight static context stack with push and pop calls to wrap any temorary overrides. **Naming conventions** I'd like to point out a pitfall that I still stumble over occasionally after six years: the naming conventions for `ARegion` - `ar` and `ScrArea` - `sa`. When trying to access an area, it easy to mistakenly type `ar`, which refers to the region instead. We should avoid such ambiguous names. We should also avoid abbreviations, esp. extreme ones, for variables with non-small scope. That should further remove ambiguity and make code more readable. For example: | Type | Old naming (convention) | Proposed | ---- | --------------------- | -------- | `ARegion` | `ar` | `region` | `ScrArea` | `sa` | `area` | `bScreen` | `sc`, `scr` | `screen` | `PanelType` | `pt` | `panel_type` | `MenuType` | `mt` | `menu_type` | `HeaderType` | `ht` | `header_type` | `ColorBand` | `coba` | `color_band` | `ExtensionRNA` | `ext` | `rna_extension` | `int` | `x1`, `x2`, `y1`, `y2` | `xmin`, `width`, `ymin`, `height` Note that all these examples can be changed without touching DNA (afaics). **Ghost C++11 features** Ghost probably wouldn't benefit too greatly from modern C++ usage, but there are a few features that might be handy. Changes proposed here should move us closer to following the C++ guidelines: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines. If in future we add more C++ to our UI code, we should follow the same rules. * `override`, `virtual` and `final` keywords: Explicit usage of these terms in class hierarchies may prevent some errors. Especially `override` and `final` since they lead to a compile error on function signature mismatch ([C.128](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override)). * `std::unique_ptr`: It's considered good practise to use smart pointers (esp. `std::unique_ptr`) to manage lifetimes of C++ objects. They make object ownership explicit and enforce static sanity checks. ([R.1]], [[http:*isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-newdelete | R.11]], [[http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-owner | R.20](http:*isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-raii)). We may want to add our own `make_unique()` too, which is only available in C++17. * `default` and `delete` constructors and destructors: Using these may help catch some errors at compile time, make classes more compatible with `std` containers and allows optimizations for trivial operation (e.g. a `= default` copy constructor makes a type "trivially copyable", which some containers and compilers optimize for) ([C.43]], [[http:*isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-eqdefault | C.80]], [[http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-delete | C.81](http:*isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-default0)). * In-class initializer: Among other reasons, making good use of in-class initialization reduces likelyhood of uninitialized members ([C48]], [[http:*isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-in-class-initializer | C.45](http:*isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-in-class-initializer)). * Range-based for loops: Ghost uses `std` containers in a few places. C++11 range-based for loops make iterating them far less verbose ([ES.71](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-for-range)). * `auto` to avoid verbosity/redundancy: While there are good reasons to be sceptical about `auto`, there are few cases where they are definitely useful. For example in case of long type names (like `std::vector<std::unique_ptr<SomeType>>::const_iterator`). ([ES.11](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-auto)) * `using` over `typedef`: The `using` syntax to create aliases is often considered more readable. ([T.43](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rt-using)). * `nullptr`: More on the esthetical side of things (although may avoid some nasty surprises!), but we should use standard `nullptr` instead of `NULL`. We can avoid including `stddef.h` everywhere then. ([ES.47](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-nullptr)) Other, similar improvements are possible. These are just a few examples of low hanging fruits. **Various** * Introduce wrappers for commonly bundled variables (e.g. `PointerRNA` & `PropertyRNA`, `wmOperatorType` & `PointerRNA`, `ScrArea` & `ARegion`). * Split up bigger, "generic" types. For example `uiBut` contains data that only applies to certain button-types. `uiButTab` is an example of how this can be avoided. * Wrap related struct members into nested structs. E.g. rather than `uiBut.editstr`, `uiBut.editval`, `uiBut.editvec`, etc, it could be `uiBut.edit_values.foo`. * Replace booleans in parameter lists with enums. Having a parameter list like `foo(true, false, false)` is cumbersome to use (what does each boolean mean) and leads to mistakes (using wrong order of booleans). It's better to be explicit what each value refers to by using enum types. Bitflags are also an option. * Split big functions into more manageable chunks. * Add `const` where applicable * Of course improving naming, comments and documentation is always a good idea!
Author
Member

Added subscribers: @JulianEisel, @brecht, @ideasman42

Added subscribers: @JulianEisel, @brecht, @ideasman42
Member

Added subscriber: @HooglyBoogly

Added subscriber: @HooglyBoogly

Coudl this be split into multiple proposals? Each are large enough to have own discussion which will get mixed up in a single task.

Coudl this be split into multiple proposals? Each are large enough to have own discussion which will get mixed up in a single task.
Member

Changed status from 'Needs Triage' to: 'Confirmed'

Changed status from 'Needs Triage' to: 'Confirmed'
Author
Member

Changed status from 'Confirmed' to: 'Archived'

Changed status from 'Confirmed' to: 'Archived'
Julian Eisel self-assigned this 2020-03-04 14:15:26 +01:00
Author
Member

Split into multiple tasks: #74430 (UI Code Quality: Ghost C++ Coding-Style), #74429 (UI Code Quality: bContext Management), #74432 (UI Code Quality: General, Smaller Changes). If needed we can split them further.

We could leave this open as a parent task, but we can also use #73586 for that. Closing this one for now.

Split into multiple tasks: #74430 (UI Code Quality: Ghost C++ Coding-Style), #74429 (UI Code Quality: bContext Management), #74432 (UI Code Quality: General, Smaller Changes). If needed we can split them further. We could leave this open as a parent task, but we can also use #73586 for that. Closing this one for now.
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
4 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#73781
No description provided.