\r\n

51Degrees Device Detection C/C++  4.4

A device detection library that is used natively or by 51Degrees products

MetaDataHash.hpp

1 /* *********************************************************************
2  * This Original Work is copyright of 51 Degrees Mobile Experts Limited.
3  * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House,
4  * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
5  *
6  * This Original Work is licensed under the European Union Public Licence
7  * (EUPL) v.1.2 and is subject to its terms as set out below.
8  *
9  * If a copy of the EUPL was not distributed with this file, You can obtain
10  * one at https://opensource.org/licenses/EUPL-1.2.
11  *
12  * The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
13  * amended by the European Commission) shall be deemed incompatible for
14  * the purposes of the Work and the provisions of the compatibility
15  * clause in Article 5 of the EUPL shall not apply.
16  *
17  * If using the Work as, or as part of, a network application, by
18  * including the attribution notice(s) required under Article 5 of the EUPL
19  * in the end user terms of the application under an appropriate heading,
20  * such notice(s) shall fulfill the requirements of that article.
21  * ********************************************************************* */
22 
23 #ifndef FIFTYONE_DEGREES_METADATA_HASH_HPP
24 #define FIFTYONE_DEGREES_METADATA_HASH_HPP
25 
26 #include "../common-cxx/Exceptions.hpp"
27 #include "../common-cxx/MetaData.hpp"
28 #include "PropertyMetaDataCollectionHash.hpp"
29 #include "ValueMetaDataCollectionHash.hpp"
30 #include "ValueMetaDataCollectionForPropertyHash.hpp"
31 #include "ValueMetaDataCollectionForProfileHash.hpp"
32 #include "ComponentMetaDataCollectionHash.hpp"
33 #include "ProfileMetaDataCollectionHash.hpp"
34 #include "PropertyMetaDataCollectionForComponentHash.hpp"
35 #include "PropertyMetaDataCollectionForPropertyHash.hpp"
36 #include "PropertyMetaDataBuilderHash.hpp"
37 #include "hash.h"
38 
39 using namespace FiftyoneDegrees::Common;
40 
41 namespace FiftyoneDegrees {
42  namespace DeviceDetection {
43  namespace Hash {
47  class MetaDataHash : public MetaData
48  {
49  public:
59  shared_ptr<fiftyoneDegreesResourceManager> manager);
60 
64  ~MetaDataHash();
65 
72  Collection<byte, ComponentMetaData>* getComponents() const;
73 
74  Collection<string, PropertyMetaData>* getProperties() const;
75 
76  Collection<uint32_t, ProfileMetaData>* getProfiles() const;
77 
79 
81  getValuesForProperty(PropertyMetaData *property) const;
82 
84  getValuesForProfile(ProfileMetaData *profile) const;
85 
86  ComponentMetaData* getComponentForProfile(
87  ProfileMetaData *profile) const;
88 
89  ComponentMetaData* getComponentForProperty(
90  PropertyMetaData *property) const;
91 
92  ProfileMetaData* getDefaultProfileForComponent(
93  ComponentMetaData *component) const;
94 
95  ValueMetaData* getDefaultValueForProperty(
96  PropertyMetaData *property) const;
97 
99  getPropertiesForComponent(ComponentMetaData *component) const;
100 
102  getEvidencePropertiesForProperty(PropertyMetaData *property) const;
103 
104  PropertyMetaData* getPropertyForValue(ValueMetaData *value) const;
108  };
109  }
110  }
111 }
112 
113 #endif
51Degrees base namespace.
Definition: ComponentMetaDataBuilderHash.hpp:33
Construct a new instance of MetaData.
Definition: MetaDataHash.hpp:47
EntityMetaData relating to a component populated by an engine implementation.
Definition: ComponentMetaData.hpp:36
Meta data relating to a property populated by an engine implementation.
Definition: PropertyMetaData.hpp:37
Meta data relating to a value populated by an engine implementation.
Definition: ValueMetaData.hpp:116
Contains meta data for the properties, values, profiles and components that exist within the engine i...
Definition: MetaData.hpp:70
Shared classes.
Definition: Collection.hpp:31
Meta data relating to a profile populated by an engine implementation.
Definition: ProfileMetaData.hpp:37