libosmscout
0.1
|
Helper template class for easy access to the value of a certain feature for objects of any type. More...
#include <FeatureReader.h>
Public Member Functions | |
FeatureValueReader (const TypeConfig &typeConfig) | |
bool | GetIndex (const FeatureValueBuffer &buffer, size_t &index) const |
Returns the index of the Feature/FeatureValue within the given FeatureValueBuffer. More... | |
V * | GetValue (const FeatureValueBuffer &buffer) const |
Returns the FeatureValue for the given FeatureValueBuffer. More... | |
V | GetValue (const FeatureValueBuffer &buffer, const V &defaultValue) const |
Returns the FeatureValue for the given FeatureValueBuffer or a defaultValue, if the feature is not set. More... | |
Helper template class for easy access to the value of a certain feature for objects of any type.
Each type may have stored the feature in request at a different index. The FeatureValueReader caches the index for each type once in the constructor and later on allows access to the feature value in O(1) - without iterating of all feature(values) of an object.
|
explicit |
bool osmscout::FeatureValueReader< F, V >::GetIndex | ( | const FeatureValueBuffer & | buffer, |
size_t & | index | ||
) | const |
Returns the index of the Feature/FeatureValue within the given FeatureValueBuffer.
buffer | The FeatureValueBuffer instance |
index | The index |
V * osmscout::FeatureValueReader< F, V >::GetValue | ( | const FeatureValueBuffer & | buffer | ) | const |
Returns the FeatureValue for the given FeatureValueBuffer.
buffer | The FeatureValueBuffer instance |
Referenced by osmscout::AbstractRoutingProfile::CanUse(), osmscout::AbstractRoutingProfile::CanUseBackward(), osmscout::AbstractRoutingProfile::CanUseForward(), osmscout::SearchRunnable::GetObjectDetails(), osmscout::SearchRunnable::GetObjectNames(), osmscout::AbstractRoutingProfile::GetTime2(), osmscout::StyleResolveContext::IsOneway(), osmscout::SpeedAgent::Process(), and osmscout::PositionAgent::Process().
V osmscout::FeatureValueReader< F, V >::GetValue | ( | const FeatureValueBuffer & | buffer, |
const V & | defaultValue | ||
) | const |
Returns the FeatureValue for the given FeatureValueBuffer or a defaultValue, if the feature is not set.
buffer | The FeatureValueBuffer instance |