Strongly Typed example of using 51Degrees device detection.The example shows how to:
- Specify the name of the data file and properties the data set should be initialised with. const char* fileName = argv[1];fiftyoneDegreesPropertiesRequired properties =
- Instantiate the 51Degrees data set within a resource manager from the specified data file with the required properties and the specified configuration.
- Create a results instance ready to be populated by the data set.
- Process a single HTTP User-Agent string to retrieve the values associated with the User-Agent for the selected properties. results,mobileUserAgent,strlen(mobileUserAgent),exception);
- Check the type of values the property returns. dataSet->properties,dataSet->strings,propertyName,&item,exception);fiftyoneDegreesPropertyValueType type = property->valueType;
- Extract the value of a property as a boolean from the results. requiredPropertyIndex =dataSet->available,propertyName);if (requiredPropertyIndex >= 0) {valueName = FIFTYONE_DEGREES_STRING(results,requiredPropertyIndex,exception));bool value = strcmp(valueName, "True") == 0;
- Release the memory used by the results. fiftyoneDegreesResultsHashFree(results);
- Finally release the memory used by the data set resource. fiftyoneDegreesResourceManagerFree(&manager);
This example differs from the Getting Started example by using boolean values for the isMobile property instead of string values.
/* *********************************************************************
* This Original Work is copyright of 51 Degrees Mobile Experts Limited.
* Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House,
* Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
*
* This Original Work is licensed under the European Union Public Licence
* (EUPL) v.1.2 and is subject to its terms as set out below.
*
* If a copy of the EUPL was not distributed with this file, You can obtain
* one at https://opensource.org/licenses/EUPL-1.2.
*
* The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
* amended by the European Commission) shall be deemed incompatible for
* the purposes of the Work and the provisions of the compatibility
* clause in Article 5 of the EUPL shall not apply.
*
* If using the Work as, or as part of, a network application, by
* including the attribution notice(s) required under Article 5 of the EUPL
* in the end user terms of the application under an appropriate heading,
* such notice(s) shall fulfill the requirements of that article.
* ********************************************************************* */
#include <stdio.h>
// Include ExmapleBase.h before others as it includes Windows 'crtdbg.h'
// which requires to be included before 'malloc.h'.
#include "ExampleBase.h"
#include "../../../src/hash/hash.h"
#include "../../../src/hash/fiftyone.h"
static const char *dataDir = "device-detection-data";
static const char *dataFileName = "51Degrees-LiteV4.1.hash";
static bool getPropertyIsBool(
ResultsHash *results,
const char *propertyName) {
Item item;
dataSet->properties,
dataSet->strings,
propertyName,
&item,
exception);
EXAMPLE_COLLECTION_RELEASE(dataSet->properties, item);
return isBool;
}
static bool getPropertyValueAsBool(
ResultsHash *results,
const char *propertyName) {
bool value = false;
int requiredPropertyIndex;
const char *valueName;
if (getPropertyIsBool(results, propertyName) == true) {
requiredPropertyIndex =
dataSet->available,
propertyName);
if (requiredPropertyIndex >= 0) {
results,
requiredPropertyIndex,
exception) != NULL && EXCEPTION_OKAY) {
if (strcmp(valueName, "True") == 0) {
value = true;
}
}
}
}
return value;
}
uint32_t i;
const char *propertyName;
propertyName = STRING(
printf(" %s: %d\n",
propertyName,
getPropertyValueAsBool(results, propertyName));
}
}
const char* fileName) {
printf("%s\n", message);
}
void fiftyoneDegreesHashStronglyTyped(
const char *dataFilePath,
ConfigHash *config) {
ResourceManager manager;
// Set the properties to be returned for each User-Agent.
properties.string = "ScreenPixelsWidth,HardwareModel,IsMobile,BrowserName";
// Initialise the manager for device detection.
&manager,
config,
&properties,
dataFilePath,
exception);
reportStatus(status, dataFilePath);
fgetc(stdin);
return;
}
// Create a results instance to store and process User-Agents.
// User-Agent string of an iPhone mobile device.
const char* mobileUserAgent = (
"Mozilla/5.0 (iPhone; CPU iPhone OS 7_1 like Mac OS X) "
"AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D167 "
"Safari/9537.53");
// User-Agent string of Firefox Web browser version 41 on desktop.
const char* desktopUserAgent = (
"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) "
"Gecko/20100101 Firefox/41.0");
// User-Agent string of a MediaHub device.
const char* mediaHubUserAgent = (
"Mozilla/5.0 (Linux; Android 4.4.2; X7 Quad Core "
"Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 "
"Chrome/30.0.0.0 Safari/537.36");
printf("Starting Getting Started Example.\n");
// Carries out a match for a mobile User-Agent.
printf("\nMobile User-Agent: %s\n", mobileUserAgent);
results,
mobileUserAgent,
strlen(mobileUserAgent),
exception);
printBoolValues(results);
// Carries out a match for a desktop User-Agent.
printf("\nDesktop User-Agent: %s\n", desktopUserAgent);
results,
desktopUserAgent,
strlen(desktopUserAgent),
exception);
printBoolValues(results);
// Carries out a match for a MediaHub User-Agent.
printf("\nMedia hub User-Agent: %s\n", mediaHubUserAgent);
results,
mediaHubUserAgent,
strlen(mediaHubUserAgent),
exception);
printBoolValues(results);
// Ensure the results are freed to avoid memory leaks.
ResultsHashFree(results);
// Free the resources used by the manager.
ResourceManagerFree(&manager);
}
void fiftyoneDegreesExampleCStronglyTypedRun(ExampleParameters *params) {
// Call the actual function.
fiftyoneDegreesHashStronglyTyped(
params->dataFilePath,
params->config);
}
#ifndef TEST
int main(int argc, char* argv[]) {
StatusCode status = SUCCESS;
if (argc > 1) {
strcpy(dataFilePath, argv[1]);
}
else {
status = FileGetPath(
dataDir,
dataFileName,
dataFilePath,
sizeof(dataFilePath));
}
if (status != SUCCESS) {
reportStatus(status, dataFileName);
fgetc(stdin);
return 1;
}
config = HashInMemoryConfig;
}
ExampleParameters params;
params.dataFilePath = dataFilePath;
params.config = &config;
// Run the example
fiftyoneDegreesExampleMemCheck(
¶ms,
fiftyoneDegreesExampleCStronglyTypedRun);
// Wait for a character to be pressed.
fgetc(stdin);
return 0;
}
#endif