\r\n

51Degrees Device Detection C/C++  4.5

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

config.h

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_CONFIG_H_INCLUDED
24 #define FIFTYONE_DEGREES_CONFIG_H_INCLUDED
25 
49 typedef struct fiftyone_degrees_config_base_t {
50  bool allInMemory;
54  bool freeData;
58  bool useTempFile;
63  const char **tempDirs;
69 
71 #define FIFTYONE_DEGREES_CONFIG_USE_TEMP_FILE_DEFAULT false
72 
77 #define FIFTYONE_DEGREES_CONFIG_USE_TEMP_FILE \
78 FIFTYONE_DEGREES_CONFIG_USE_TEMP_FILE_DEFAULT
79 
81 #ifndef FIFTYONE_DEGREES_MEMORY_ONLY
82 #define FIFTYONE_DEGREES_CONFIG_ALL_IN_MEMORY_DEFAULT false
83 #else
84 #define FIFTYONE_DEGREES_CONFIG_ALL_IN_MEMORY_DEFAULT true
85 #endif
86 
91 #define FIFTYONE_DEGREES_CONFIG_ALL_IN_MEMORY \
92 FIFTYONE_DEGREES_CONFIG_ALL_IN_MEMORY_DEFAULT
93 
97 #define FIFTYONE_DEGREES_CONFIG_DEFAULT_WITH_INDEX \
98  FIFTYONE_DEGREES_CONFIG_ALL_IN_MEMORY, /* allInMemory */ \
99  true, /* usesUpperPrefixedHeaders */ \
100  false, /* freeData */ \
101  FIFTYONE_DEGREES_CONFIG_USE_TEMP_FILE, /* useTempFile */ \
102  false, /* reuseTempFile */ \
103  NULL, /* tempDirs */ \
104  0, /* tempDirCount */ \
105  true /* propertyValueIndex */
106 
110 #define FIFTYONE_DEGREES_CONFIG_DEFAULT_NO_INDEX \
111  FIFTYONE_DEGREES_CONFIG_ALL_IN_MEMORY, /* allInMemory */ \
112  true, /* usesUpperPrefixedHeaders */ \
113  false, /* freeData */ \
114  FIFTYONE_DEGREES_CONFIG_USE_TEMP_FILE, /* useTempFile */ \
115  false, /* reuseTempFile */ \
116  NULL, /* tempDirs */ \
117  0, /* tempDirCount */ \
118  false /* propertyValueIndex */
119 
123 #endif
const char ** tempDirs
Array of temp directories which can be used in order of preference.
Definition: config.h:63
int tempDirCount
Number of directories in the tempDirs array.
Definition: config.h:65
bool useTempFile
Indicates whether a temporary file should be created instead of using the original file.
Definition: config.h:58
bool propertyValueIndex
Indicates if an index to values for property and profiles should be created.
Definition: config.h:66
bool allInMemory
True if the data file should be loaded entirely into continuous memory.
Definition: config.h:50
Base configuration structure containing common configuration options, and options that apply to struc...
Definition: config.h:49
bool reuseTempFile
Indicates that an existing temp file may be used.
Definition: config.h:60
bool usesUpperPrefixedHeaders
True if the HTTP header field names MIGHT include the prefix HTTP_.
Definition: config.h:52
bool freeData
True if the memory containing the data set should be freed after it is no longer needed.
Definition: config.h:54