[drape] Refactor apply_feature_functors #6243

Merged
root merged 3 commits from pastk-drape-apply_feature_functors into master 2023-10-10 20:54:51 +00:00
Member

Follow-up to #6034.

Optimizations:

  • don't parse a road ref if there is no shield drule
  • don't process a shield drule if there are no road shields in a ref
  • call ClipSplineByRect() once per linear feature (not for each line drule)
  • calculate areaDepth for BG-by-size areas only

...and many minor things like replace redundant checks with asserts, less params wrapping and passing, simpler structure, etc.

P.S. I'll squash and sign commits after review.

Follow-up to #6034. Optimizations: - don't parse a road ref if there is no shield drule - don't process a shield drule if there are no road shields in a ref - call ClipSplineByRect() once per linear feature (not for each line drule) - calculate areaDepth for BG-by-size areas only ...and many minor things like replace redundant checks with asserts, less params wrapping and passing, simpler structure, etc. P.S. I'll squash and sign commits after review.
vng (Migrated from github.com) reviewed 2023-10-08 13:13:26 +00:00
vng (Migrated from github.com) commented 2023-10-08 13:12:21 +00:00

I'd prefer to keep here and fix in other functors best (double) precision for m_currentScaleGtoP.
Also, make m_baseGtoPScale -> double (LineViewParams, AreaViewParams). Because later they are used as double. I suspect that may have an impact in points conversion. float plays only after the final points conversion.

I'd prefer to keep here and fix in other functors best (double) precision for m_currentScaleGtoP. Also, make m_baseGtoPScale -> double (LineViewParams, AreaViewParams). Because later they are used as double. I suspect that may have an impact in points conversion. float plays only after the final points conversion.
pastk reviewed 2023-10-08 13:18:39 +00:00
Author
Member

Ok, I'll do!

Ok, I'll do!
pastk reviewed 2023-10-08 16:46:08 +00:00
Author
Member

actually it seems like in LineShape its used as float only

actually it seems like in LineShape its used as float only
vng (Migrated from github.com) approved these changes 2023-10-08 17:06:46 +00:00
vng (Migrated from github.com) left a comment

LGTM. Can't guarantee that I've checked all possible cases :)
All changes looks reasonable for me. Should test on devices.

LGTM. Can't guarantee that I've checked all possible cases :) All changes looks reasonable for me. Should test on devices.
vng (Migrated from github.com) commented 2023-10-08 16:53:10 +00:00

Ok, good to convert here.

Ok, good to convert here.
biodranik (Migrated from github.com) reviewed 2023-10-08 21:07:01 +00:00
biodranik (Migrated from github.com) commented 2023-10-08 18:30:49 +00:00

Why was this assert removed?

Why was this assert removed?
biodranik (Migrated from github.com) commented 2023-10-08 18:31:58 +00:00

An explanation "why" it should not be here in the assert message would be helpful.

An explanation "why" it should not be here in the assert message would be helpful.
biodranik (Migrated from github.com) commented 2023-10-08 18:33:07 +00:00

indentation?

indentation?
biodranik (Migrated from github.com) commented 2023-10-08 20:47:00 +00:00
  // TODO(KP): degenerate triangles filtering should be done in the generator.

and other TODOs too.

```suggestion // TODO(KP): degenerate triangles filtering should be done in the generator. ``` and other TODOs too.
biodranik (Migrated from github.com) commented 2023-10-08 20:53:39 +00:00

nit: refactor spline to set it in constructor's initializer list, like m_spline{std::make_shared<m2::Spline>(f.GetPointsCount())}

nit: refactor spline to set it in constructor's initializer list, like `m_spline{std::make_shared<m2::Spline>(f.GetPointsCount())}`
biodranik (Migrated from github.com) commented 2023-10-08 20:55:35 +00:00
  1. Why the spline was created in operator() before? Is there a chance that operator() won't be called at all?
  2. Is shared_ptr for spline really needed here? Can we use m2::Spline object member and avoid memory allocation/deallocation?
1. Why the spline was created in operator() before? Is there a chance that operator() won't be called at all? 2. Is shared_ptr for spline really needed here? Can we use m2::Spline object member and avoid memory allocation/deallocation?
biodranik (Migrated from github.com) commented 2023-10-08 20:56:57 +00:00

Will compiler or IDE help us to know if we forgot to initialize/set some variable in all places?

Will compiler or IDE help us to know if we forgot to initialize/set some variable in all places?
biodranik (Migrated from github.com) commented 2023-10-08 20:58:46 +00:00

The code doesn't check areaRule for null. Should it be a reference?

The code doesn't check areaRule for null. Should it be a reference?
biodranik (Migrated from github.com) commented 2023-10-08 21:02:58 +00:00

What is this case? How often does it happen? Should the higher level code filter it out?

What is this case? How often does it happen? Should the higher level code filter it out?
biodranik (Migrated from github.com) commented 2023-10-08 21:02:01 +00:00

Can you reuse these vars in the if above to avoid double checking of the same flags?

Can you reuse these vars in the if above to avoid double checking of the same flags?
biodranik (Migrated from github.com) commented 2023-10-08 21:03:21 +00:00

Why is it not needed anymore?

Why is it not needed anymore?
@ -28,0 +25,4 @@
static double constexpr k6plusScale = 2.4;
static double constexpr kXxhdpiScale = 3.0;
static double constexpr kXxxhdpiScale = 3.5;
biodranik (Migrated from github.com) commented 2023-10-08 21:04:38 +00:00

There is no need to use static with constexpr.

There is no need to use `static` with constexpr.
biodranik (Migrated from github.com) commented 2023-10-08 21:05:29 +00:00

Why floats are assigned to doubles?

Why floats are assigned to doubles?
biodranik (Migrated from github.com) commented 2023-10-08 21:06:13 +00:00

Why check and not assert?

Why check and not assert?
biodranik (Migrated from github.com) commented 2023-10-08 21:06:45 +00:00

Should it be ASSERT?

Should it be ASSERT?
pastk reviewed 2023-10-10 09:16:45 +00:00
Author
Member

it was moved to drules loading in drawing_rules.cpp

it was moved to drules loading in drawing_rules.cpp
pastk reviewed 2023-10-10 09:17:19 +00:00
Author
Member

fixed,thanks!

fixed,thanks!
pastk reviewed 2023-10-10 09:17:56 +00:00
Author
Member

fixed, thanks!

fixed, thanks!
pastk reviewed 2023-10-10 09:20:30 +00:00
Author
Member

fixed, thanks!

fixed, thanks!
pastk reviewed 2023-10-10 09:20:52 +00:00
pastk reviewed 2023-10-10 09:27:46 +00:00
Author
Member

fixed, thanks

fixed, thanks
pastk reviewed 2023-10-10 09:29:12 +00:00
Author
Member

nope, they're init to defaults in shape_view_params.hpp...

nope, they're init to defaults in shape_view_params.hpp...
pastk reviewed 2023-10-10 09:30:53 +00:00
Author
Member

nope, this code is under #ifdef DEBUG

nope, this code is under `#ifdef DEBUG`
pastk reviewed 2023-10-10 09:39:13 +00:00
Author
Member

its being validated in kothic already

its being validated in kothic already
pastk reviewed 2023-10-10 09:43:06 +00:00
Author
Member

fixed, thanks!

fixed, thanks!
pastk reviewed 2023-10-10 09:49:30 +00:00
@ -28,0 +25,4 @@
static double constexpr k6plusScale = 2.4;
static double constexpr kXxhdpiScale = 3.0;
static double constexpr kXxxhdpiScale = 3.5;
Author
Member

GCC complains

src/drape_frontend/visual_params.hpp:22:33: error: non-static data member ‘kMdpiScale’ declared ‘constexpr’
   double constexpr kMdpiScale = 1.0;
GCC complains ``` src/drape_frontend/visual_params.hpp:22:33: error: non-static data member ‘kMdpiScale’ declared ‘constexpr’ double constexpr kMdpiScale = 1.0; ```
pastk reviewed 2023-10-10 09:56:03 +00:00
Author
Member

I prefer not to touch the Spline for now..

I prefer not to touch the Spline for now..
pastk reviewed 2023-10-10 09:56:13 +00:00
Author
Member
  1. Shouldn't be possible (only in case there is a line with 0 points, which shouldn't be possible)
  2. IDK, I didn't touch the Spline class
1. Shouldn't be possible (only in case there is a line with 0 points, which shouldn't be possible) 2. IDK, I didn't touch the Spline class
pastk reviewed 2023-10-10 10:01:29 +00:00
Author
Member

It happens when e.g. all feature's drules are not drawable on a given zoom level, normally it means the feature shouldn't be in the visibility index for this zoom. But there could be old mwms, vis changes in styles...
Maybe there are some other cases also.

It happens when e.g. all feature's drules are not drawable on a given zoom level, normally it means the feature shouldn't be in the visibility index for this zoom. But there could be old mwms, vis changes in styles... Maybe there are some other cases also.
pastk reviewed 2023-10-10 10:18:24 +00:00
Author
Member

What would be the benefit?
(looks like its more matter of style nowadays? https://stackoverflow.com/questions/6732706/c-passing-arguments-by-reference-and-pointer)
I thought to keep passing as pointers so its the same way across the whole file.

What would be the benefit? (looks like its more matter of style nowadays? https://stackoverflow.com/questions/6732706/c-passing-arguments-by-reference-and-pointer) I thought to keep passing as pointers so its the same way across the whole file.
biodranik (Migrated from github.com) reviewed 2023-10-10 12:11:23 +00:00
biodranik (Migrated from github.com) commented 2023-10-10 12:11:23 +00:00

It's not about the spline class. Is spline recreation here necessary? Each allocation and deallocation slows down the code.

It's not about the spline class. Is spline recreation here necessary? Each allocation and deallocation slows down the code.
biodranik (Migrated from github.com) reviewed 2023-10-10 12:12:21 +00:00
biodranik (Migrated from github.com) commented 2023-10-10 12:12:21 +00:00

The benefit is that it's clear that a non-null object is expected.

The benefit is that it's clear that a non-null object is expected.
pastk reviewed 2023-10-10 12:34:29 +00:00
Author
Member

Its not necessary and that is why I've removed it.

Its not necessary and that is why I've removed it.
pastk reviewed 2023-10-10 14:11:12 +00:00
Author
Member

changed to refs

changed to refs
biodranik (Migrated from github.com) reviewed 2023-10-10 20:53:31 +00:00
@ -28,0 +25,4 @@
static double constexpr k6plusScale = 2.4;
static double constexpr kXxhdpiScale = 3.0;
static double constexpr kXxxhdpiScale = 3.5;
biodranik (Migrated from github.com) commented 2023-10-10 20:53:31 +00:00

My bad, in class members it's required!

My bad, in class members it's required!
biodranik (Migrated from github.com) approved these changes 2023-10-10 20:54:13 +00:00
This repo is archived. You cannot comment on pull requests.
No reviewers
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
2 participants
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: organicmaps/organicmaps-tmp#6243
No description provided.