David Carlier | 0470d70 | 2019-04-26 12:02:28 +0000 | [diff] [blame] | 1 | #ifndef MOBI_DA_DAC_H |
| 2 | #define MOBI_DA_DAC_H |
| 3 | |
| 4 | /** |
| 5 | * @file dac.h |
| 6 | * @author Afilias Technologies |
| 7 | * |
| 8 | * @brief API main header file |
| 9 | */ |
| 10 | |
| 11 | #include <sys/types.h> |
| 12 | #include <limits.h> |
| 13 | #include <inttypes.h> |
| 14 | #include <stdlib.h> |
| 15 | #include <stdarg.h> |
| 16 | |
| 17 | #ifndef __cplusplus |
| 18 | #ifndef true |
| 19 | #ifdef HAVE_NO_BUILTIN__BOOL |
| 20 | typedef int _Bool; |
| 21 | #endif |
| 22 | #define bool _Bool |
| 23 | |
| 24 | #define true 1 |
| 25 | #define false 0 |
| 26 | #endif |
| 27 | #endif |
| 28 | |
| 29 | #define MOBI_DA_MAJOR 2 |
| 30 | #define MOBI_DA_MINOR 1 |
| 31 | #define MOBI_DA_DUMMY_LIBRARY 1 |
| 32 | |
| 33 | |
| 34 | /** |
| 35 | * @brief All values returned by the API have one of these types. |
| 36 | * da_getprop*() return data in the appropriate C type for the given da_type. |
| 37 | */ |
| 38 | enum da_type { |
| 39 | DA_TYPE_NONE, |
| 40 | DA_TYPE_BOOLEAN, |
| 41 | DA_TYPE_INTEGER, |
| 42 | DA_TYPE_NUMBER, |
| 43 | DA_TYPE_STRING, |
| 44 | DA_TYPE_ARRAY, |
| 45 | DA_TYPE_OBJECT, |
| 46 | DA_TYPE_NULL |
| 47 | }; |
| 48 | |
| 49 | /** |
| 50 | * Any method that returns a da_status may potentially fail for one of these reasons. |
| 51 | * XXX: Error reporting needs to be improved. |
| 52 | */ |
| 53 | enum da_status { |
| 54 | DA_OK, /* Success. */ |
| 55 | DA_INVALID_JSON, /* The JSON format is invalid, or the content is unexpected in a given context. */ |
| 56 | DA_OVERFLOW, /* Overflow occurred. Note this is used to indicate an unfinished string parse in JSON */ |
| 57 | DA_FORMAT_ERROR, /* The data supplied is formatted incorrectly. */ |
| 58 | DA_NOMEM, /* There was not enough space to complete the operation */ |
| 59 | DA_SYS, /* A system error occurred - consult the OS for more details (eg, check errno) */ |
| 60 | DA_NOTIMPL, /* This method is not implemented */ |
| 61 | DA_NOTFOUND, /* The requested item was not found. */ |
| 62 | DA_REGEXBAD, /* An invalid regex was provided. */ |
| 63 | DA_NOMORE, /* Used to indicate the end of an iterator. */ |
| 64 | DA_INVALID_COOKIE, /* Cookie value supplied was invalid */ |
| 65 | DA_INVALID_TYPE, /* A value of an unexpected type was found. */ |
| 66 | DA_INTERNAL_ERROR, |
| 67 | DA_STATUS_LAST /* Placeholder to indicate highest possible error value. (value will change as API matures) */ |
| 68 | }; |
| 69 | |
| 70 | enum da_severity { |
| 71 | DA_SEV_FATAL, /* The operation will not continue, and the operation will return an error. */ |
| 72 | DA_SEV_ERROR, /* An error occurred, but the API call will return at least some valid information */ |
| 73 | DA_SEV_WARN, /* An unexpected event occured, but the system dealt with it */ |
| 74 | DA_SEV_INFO /* An informational message. */ |
| 75 | }; |
| 76 | /* Forward references to tagged types */ |
| 77 | struct atlas_image; |
| 78 | struct da_atlas; |
| 79 | struct da_deviceinfo; |
| 80 | struct da_jsonparser; |
| 81 | struct da_node; |
| 82 | struct da_propset; |
| 83 | union da_value; |
| 84 | struct da_evidence; |
| 85 | struct da_bitset; |
| 86 | struct da_allocator; |
| 87 | struct da_config; |
| 88 | |
| 89 | /** |
| 90 | * @brief Primary types of the interface. |
| 91 | * Primary types used by API client. |
| 92 | * Non-typedef structures and unions are considered private to the API. |
| 93 | * |
| 94 | */ |
| 95 | typedef enum da_severity da_severity_t; /* A severity for the error callback. */ |
| 96 | typedef enum da_status da_status_t; /* An error code - returned from most API calls. */ |
| 97 | typedef da_status_t (*da_setpos_fn)(void *ctx, off_t off); /* callback provided to API to rewind input stream */ |
| 98 | typedef enum da_type da_type_t; /* A value type (integer, string, etc) */ |
| 99 | |
| 100 | /** |
| 101 | * @brief An operation on an atlas involves converting a set of evidence strings into a set of property/value pairs. |
| 102 | * The ID for a particular type of evidence is extract from the atlas (eg, for a specific HTTP header, use: |
| 103 | * |
| 104 | * da_evidence_id_t evidence = da_atlas_header_evidence_id(atlas, "User-Agent"); |
| 105 | * |
| 106 | */ |
| 107 | typedef int da_evidence_id_t; |
| 108 | |
| 109 | /** |
| 110 | * @brief The search result encompasses a key/value set. Keys are handles retrieved via |
| 111 | * _either_ da_atlas_getpropid() or da_getpropid(). |
| 112 | * Some search results may have keys not available when the atlas is opened (eg, |
| 113 | * when the name of the property itself is contained within the evidence) |
| 114 | * Such properties by necessity are given a "local" da_propid_t |
| 115 | * |
| 116 | * You can ensure any properties you are interested in get a global propid by |
| 117 | * passing a list of interesting named properties to da_atlas_open() |
| 118 | */ |
| 119 | typedef int da_propid_t; |
| 120 | typedef size_t (*da_read_fn)(void *ctx, size_t maxlen, char *ptr); |
| 121 | typedef struct da_atlas da_atlas_t; |
| 122 | typedef struct da_deviceinfo da_deviceinfo_t; |
| 123 | typedef struct da_evidence da_evidence_t; |
| 124 | typedef struct da_jsonparser da_jsonparser_t; |
| 125 | typedef struct da_node da_node_t; |
| 126 | typedef struct da_property_decl da_property_decl_t; |
| 127 | typedef struct da_propset da_propset_t; |
| 128 | typedef struct da_config da_config_t; |
| 129 | typedef void *(*da_alloc_fn)(void *ctx, size_t); |
| 130 | typedef void (*da_free_fn)(void *ctx, void *); |
| 131 | typedef void *(*da_realloc_fn)(void *ctx, void *, size_t); |
| 132 | typedef void (*da_errorfunc_t)(da_severity_t severity, da_status_t status, const char *msg, va_list args); |
| 133 | |
| 134 | |
| 135 | /* Manifest constants. */ |
| 136 | enum { |
| 137 | /* |
| 138 | * used as the initial guess for the compiled size of an atlas. |
| 139 | * If atlas sizes grow more beyond this, it can be expanded to avoid multiple scans of the data. |
| 140 | */ |
| 141 | DA_INITIAL_MEMORY_ESTIMATE = 1024 * 1024 * 14 |
| 142 | }; |
| 143 | |
| 144 | struct da_config { |
| 145 | unsigned int ua_props; |
| 146 | unsigned int lang_props; |
| 147 | unsigned int __reserved[14]; /* enough reserved keywords for future use */ |
| 148 | }; |
| 149 | |
| 150 | /** |
| 151 | * Functional interface. |
| 152 | */ |
| 153 | |
| 154 | /** |
| 155 | * @brief Initialize process to use the DA API. |
| 156 | */ |
| 157 | void da_init(void); |
| 158 | |
| 159 | |
| 160 | /** |
| 161 | * @brief Release all resources used by the API |
| 162 | */ |
| 163 | void da_fini(void); |
| 164 | |
| 165 | /** |
| 166 | * @brief User-supplied callback to be invoked with information about an error. |
| 167 | * Note this may use thread-local storage etc to store the info on return from the current call |
| 168 | * It is guaranteed that an error-reporting function returning an error-code will have called |
| 169 | * this function at least once. |
| 170 | * @param callback function |
| 171 | */ |
| 172 | void da_seterrorfunc(da_errorfunc_t callback); |
| 173 | |
| 174 | /** |
| 175 | * @brief Given a specific HTTP header, return the associated ID for that header. |
| 176 | * When passing evidence to the API, its type is identified using its da_evidince_id_t. |
| 177 | * @param atlas atlas instance |
| 178 | * @param header_name Header's name |
| 179 | * @return evidence id |
| 180 | */ |
| 181 | da_evidence_id_t da_atlas_header_evidence_id(const da_atlas_t *atlas, const char *header_name); |
| 182 | /** |
| 183 | * @brief Return the associated ID of the client side properties evidence |
| 184 | * @param atlas Atlas instance |
| 185 | * @return evidence id |
| 186 | */ |
| 187 | da_evidence_id_t da_atlas_clientprop_evidence_id(const da_atlas_t *atlas); |
| 188 | /** |
| 189 | * @brief Return the associated ID of the accept language header evidence |
| 190 | * @param atlas Atlas instance |
| 191 | * @return evidence id |
| 192 | */ |
| 193 | da_evidence_id_t da_atlas_accept_language_evidence_id(const da_atlas_t *atlas); |
| 194 | |
| 195 | /** |
| 196 | * @brief readfn should present JSON content from ctx. |
| 197 | * atlasp points to an uninitialized da_atlas structure. |
| 198 | * Result is a compiled atlas at atlasp. |
| 199 | * Result is allocated via normal memory-allocation methods, malloc/calloc/realloc, so should be |
| 200 | * Free'd with free() |
| 201 | * XXX TODO: Change this to take a da_allocator |
| 202 | * @param ctx pointer given to read the json file |
| 203 | * @param readfn function pointer, set accordingly to the attended given pointer |
| 204 | * @param setposfn function pointer |
| 205 | * @param ptr Pointer dynamically allocated if the json parsing happened normally |
| 206 | * @param len size of the atlas image |
| 207 | * @return status of atlas compilation |
| 208 | */ |
| 209 | da_status_t da_atlas_compile(void *ctx, da_read_fn readfn, da_setpos_fn setposfn, void **ptr, size_t *len); |
| 210 | |
| 211 | /** |
| 212 | * @brief opens a previously compiled atlas for operations. extra_props will be available in calls to |
| 213 | * da_getpropid on the atlas, and if generated by the search, the ID will be consistent across |
| 214 | * different calls to search. |
| 215 | * Properties added by a search that are neither in the compiled atlas, nor in the extra_props list |
| 216 | * Are assigned an ID within the context that is not transferrable through different search results |
| 217 | * within the same atlas. |
| 218 | * @param atlas Atlas instance |
| 219 | * @param extra_props properties |
| 220 | * @param ptr given pointer from previously compiled atlas |
| 221 | * @param pos atlas image size |
| 222 | * @return status of atlas data opening |
| 223 | */ |
| 224 | da_status_t da_atlas_open(da_atlas_t *atlas, da_property_decl_t *extra_props, const void *ptr, size_t pos); |
| 225 | |
| 226 | /** |
| 227 | * @brief Release any resources associated with the atlas structure atlas, which was previously generated from |
| 228 | * da_read_atlas or da_compile_atlas. |
| 229 | * @param atlas instance |
| 230 | */ |
| 231 | void da_atlas_close(da_atlas_t *atlas); |
| 232 | |
| 233 | /** |
| 234 | * @brief Find device properties given a set of evidence. |
| 235 | * Search results are returned in da_deviceinfo_t, and must be cleaned using da_close |
| 236 | * "Evidence" is an array of length count, of string data tagged with an evidence ID. |
| 237 | * @param atlas Atlas instance |
| 238 | * @param info Device info |
| 239 | * @param ev Array of evidences |
| 240 | * @param count Number of evidence given |
| 241 | * @return status of the search |
| 242 | */ |
| 243 | da_status_t da_searchv(const da_atlas_t *atlas, da_deviceinfo_t *info, da_evidence_t *ev, size_t count); |
| 244 | |
| 245 | /** |
| 246 | * @brief As da_search, but unrolls the evidence array into variable arguments for simpler calling |
| 247 | * convention with known evidence types. |
| 248 | * varargs are pairs of (da_evidence_id, string), terminated with da_evidence_id DA_END |
| 249 | * @code da_search(&myAtlas, &deviceInfo, da_get_header_evidence_id("User-Agent"), |
| 250 | * "Mozilla/5.0 (Linux...", DA_END); |
| 251 | * @endcode |
| 252 | * @param atlas Atlas instance |
| 253 | * @param info given device info which holds on device properties |
| 254 | * @param pairs of evidence id / evidence value |
| 255 | * @return status of the search |
| 256 | */ |
| 257 | da_status_t da_search(const da_atlas_t *atlas, da_deviceinfo_t *info, ...); |
| 258 | |
| 259 | /** |
| 260 | * @brief After finishing with a search result, release resources associated with it. |
| 261 | * @param info Device info previously allocated by search functions |
| 262 | */ |
| 263 | void da_close(da_deviceinfo_t *info); |
| 264 | |
| 265 | /** |
| 266 | * @brief Given a property name (Eg, "displayWidth"), return the property ID associated with it for the |
| 267 | * specified atlas. |
| 268 | * @param atlas Atlas instance |
| 269 | * @param propname Property name |
| 270 | * @param propid Property id |
| 271 | * @return status of the property id search |
| 272 | */ |
| 273 | da_status_t da_atlas_getpropid(const da_atlas_t *atlas, const char *propname, da_propid_t *propid); |
| 274 | |
| 275 | /** |
| 276 | * @brief Given a property ID, return the type of that property. |
| 277 | * @code |
| 278 | * da_getproptype(&myAtlas, da_getpropid(&myAtlas, "displayWidth"), &propertyType); |
| 279 | * assert(propertyType == DA_TYPE_INT); |
| 280 | * @endcode |
| 281 | * @param atlas Atlas instance |
| 282 | * @param propid Property id |
| 283 | * @param type Type id of the property |
| 284 | * @return status of the type id search |
| 285 | */ |
| 286 | da_status_t da_atlas_getproptype(const da_atlas_t *atlas, da_propid_t propid, da_type_t *type); |
| 287 | |
| 288 | /** |
| 289 | * @brief Given a property ID, return the name of that property. |
| 290 | * @code |
| 291 | * da_atlas_getpropname(&myAtlas, da_getpropid(&myAtlas, "displayWidth"), &propertyName); |
| 292 | * assert(strcmp("displayWidth", propertyName) == 0); |
| 293 | * @endcode |
| 294 | * @param atlas Atlas instance |
| 295 | * @param propid property id |
| 296 | * @param propname property name returned |
| 297 | * @return status of the property name search |
| 298 | */ |
| 299 | da_status_t da_atlas_getpropname(const da_atlas_t *atlas, da_propid_t propid, const char **propname); |
| 300 | |
| 301 | |
| 302 | /** |
| 303 | * @brief Given an atlas instance, return its counters + the builtins |
| 304 | * @code |
| 305 | * da_atlas_getpropcount(&myAtlas); |
| 306 | * @endcode |
| 307 | * @param atlas Atlas instance |
| 308 | * @return counters |
| 309 | */ |
| 310 | size_t da_atlas_getpropcount(const da_atlas_t *atlas); |
| 311 | |
| 312 | /** |
| 313 | * @brief Given an atlas instance, set the detection config |
| 314 | * @param atlas Atlas instance |
| 315 | * @param config instance |
| 316 | */ |
| 317 | void da_atlas_setconfig(da_atlas_t *atlas, da_config_t *config); |
| 318 | |
| 319 | /** |
| 320 | * @brief Given a search result, find the value of a specific property. |
| 321 | * @code |
| 322 | * long displayWidth; // width of display in pixels. |
| 323 | * da_getpropinteger(&deviceInfo, da_getpropid(&myAtlas, "displayWidth"), &displayWidth); |
| 324 | * @endcode |
| 325 | * String contents are owned by the search result, and are valid until the search is closed. |
| 326 | */ |
| 327 | /** |
| 328 | * @brief returns a property value as a string from a given string typed property id |
| 329 | * @param info Device info |
| 330 | * @param propid Property id |
| 331 | * @param value Value of the property |
| 332 | * @return status of property value search |
| 333 | */ |
| 334 | da_status_t da_getpropstring(const da_deviceinfo_t *info, da_propid_t propid, const char **value); |
| 335 | /** |
| 336 | * @brief returns a property value as a long from a given long typed property id |
| 337 | * @param info Device info |
| 338 | * @param propid Property id |
| 339 | * @param value Value of the property |
| 340 | * @return status of property value search |
| 341 | */ |
| 342 | da_status_t da_getpropinteger(const da_deviceinfo_t *info, da_propid_t propid, long *value); |
| 343 | /** |
| 344 | * @brief returns a property value as a boolean from a given boolean typed property id |
| 345 | * @param info Device info |
| 346 | * @param propid Property id |
| 347 | * @param value Value of the property |
| 348 | * @return status of property value search |
| 349 | */ |
| 350 | da_status_t da_getpropboolean(const da_deviceinfo_t *info, da_propid_t propid, bool *value); |
| 351 | /** |
| 352 | * @brief returns a property value as a float from a given float typed property id |
| 353 | * @param info Device info |
| 354 | * @param propid Property id |
| 355 | * @param value Value of the property |
| 356 | * @return status of property value search |
| 357 | */ |
| 358 | da_status_t da_getpropfloat(const da_deviceinfo_t *info, da_propid_t propid, double *value); |
| 359 | |
| 360 | /** |
| 361 | * @brief Some properties may not be not known to the atlas before the search commences. |
| 362 | * Such properties cannot have a da_propid_t assigned to them on the atlas, but will |
| 363 | * have a local property assigned during search. The name and type of such properties |
| 364 | * can be discovered here. |
| 365 | * |
| 366 | * Properties that are used in the atlas source and properties specifically registered |
| 367 | * with da_atlas_open() will always be assigned to a property discovered during search. |
| 368 | * Therefore, if there are specific properties that you want to use, and are unsure |
| 369 | * if they are in your device atlas source, registering them with da_atlas_open will |
| 370 | * make access to them easier and more efficient |
| 371 | */ |
| 372 | /** |
| 373 | * @brief returns the type of a given device property from the search functions |
| 374 | * @param info Device info |
| 375 | * @param propid Property id |
| 376 | * @param type Type id |
| 377 | * @return status of property type search |
| 378 | */ |
| 379 | da_status_t da_getproptype(const da_deviceinfo_t *info, da_propid_t propid, da_type_t *type); |
| 380 | /** |
| 381 | * @brief returns the name of a given device property from the search functions |
| 382 | * @param info Device info |
| 383 | * @param propid Property id |
| 384 | * @param propname Property name |
| 385 | * @return status of property type search |
| 386 | */ |
| 387 | da_status_t da_getpropname(const da_deviceinfo_t *info, da_propid_t propid, const char **propname); |
| 388 | |
| 389 | /** |
| 390 | * @brief da_getfirstprop/da_getnextprop provide iteration over all properties |
| 391 | * in a search result. |
| 392 | * Both will return DA_OK if there is a result available, and DA_NOMORE |
| 393 | * if the search is complete. |
| 394 | * @code |
| 395 | * |
| 396 | * da_propid_t *propidp; |
| 397 | * for (da_status_t status = da_getfirstprop(&result, &propidp); |
| 398 | * status == DA_OK; |
| 399 | * status = da_getnextprop(&result, &propidp)) { |
| 400 | * const char *propname; |
| 401 | * if (da_getpropname(&result, *propidp, &propname) == DA_OK) |
| 402 | * fprintf("found property %s\n", propname); |
| 403 | * } |
| 404 | * @endcode |
| 405 | */ |
| 406 | |
| 407 | /** |
| 408 | * @brief returns the first property from device info |
| 409 | * @param info Device info |
| 410 | * @param propid Property |
| 411 | * @return status |
| 412 | */ |
| 413 | da_status_t da_getfirstprop(const da_deviceinfo_t *info, da_propid_t **propid); |
| 414 | /** |
| 415 | * @brief device info properties iterator |
| 416 | * @param info Device info |
| 417 | * @param propid Property |
| 418 | * @return status |
| 419 | */ |
| 420 | da_status_t da_getnextprop(const da_deviceinfo_t *info, da_propid_t **propid); |
| 421 | |
| 422 | /** |
| 423 | * @brief Report an error, as per a report from the API to the user-callback. |
| 424 | * @param severity Severity level of the error |
| 425 | * @param fmt format error message |
| 426 | * @param va_list |
| 427 | * @return status |
| 428 | */ |
| 429 | da_status_t da_reporterror(da_status_t severity, const char *fmt, ...); |
| 430 | |
| 431 | /** |
| 432 | * @brief returns a textual description of the type "type". |
| 433 | * @param type Type id |
| 434 | * @return type name |
| 435 | */ |
| 436 | const char *da_typename(da_type_t type); |
| 437 | |
| 438 | /** |
| 439 | * @brief returns the version from the JSON in memory |
| 440 | * @param atlas |
| 441 | * @return version |
| 442 | */ |
| 443 | char *da_getdataversion(da_atlas_t *atlas); |
| 444 | |
| 445 | /** |
| 446 | * @brief returns the date creation's timestamp from the JSON in memory |
| 447 | * @param atlas |
| 448 | * @return version |
| 449 | */ |
| 450 | time_t da_getdatacreation(da_atlas_t *atlas); |
| 451 | |
| 452 | /** |
| 453 | * @brief returns the revision's number from the JSON in memory |
| 454 | * @param atlas |
| 455 | * @return version |
| 456 | */ |
| 457 | int da_getdatarevision(da_atlas_t *atlas); |
| 458 | |
| 459 | /** |
| 460 | * @brief returns the name of a global property |
| 461 | * @param atlas Atlas instance |
| 462 | * @param propid Property id |
| 463 | * @return property name |
| 464 | */ |
| 465 | const char *da_get_property_name(const da_atlas_t *atlas, da_propid_t propid); |
| 466 | |
| 467 | /** |
| 468 | * @brief returns the number of properties in a result. |
| 469 | * @param info Device info |
| 470 | * @return properties count |
| 471 | */ |
| 472 | size_t da_getpropcount(const da_deviceinfo_t *info); |
| 473 | |
| 474 | /* |
| 475 | * Details below should not be required for usage of the API |
| 476 | */ |
| 477 | |
| 478 | /** |
| 479 | * @brief Represents a usable device atlas interface. |
| 480 | * |
| 481 | * No user servicable parts inside: access should |
| 482 | * be via the functional API. |
| 483 | */ |
| 484 | struct da_atlas { |
| 485 | const struct atlas_image *image; |
| 486 | struct header_evidence_entry *header_priorities; |
| 487 | size_t header_evidence_count; |
| 488 | |
| 489 | struct pcre_regex_info *uar_regexes; |
| 490 | size_t uar_regex_count; |
| 491 | |
| 492 | struct pcre_regex_info *replacement_regexes; |
| 493 | size_t replacement_regex_count; |
| 494 | |
| 495 | da_evidence_id_t user_agent_evidence; |
| 496 | da_evidence_id_t clientprops_evidence; |
| 497 | da_evidence_id_t accept_language_evidence; |
| 498 | da_evidence_id_t next_evidence; |
| 499 | |
| 500 | da_propset_t *properties; |
| 501 | da_propid_t id_propid; |
| 502 | da_propid_t id_proplang; |
| 503 | da_propid_t id_proplang_locale; |
| 504 | |
| 505 | da_config_t config; |
| 506 | |
| 507 | da_deviceinfo_t **cpr_props; |
| 508 | size_t cpr_count; |
| 509 | }; |
| 510 | |
| 511 | /* fixed constants. */ |
| 512 | enum { |
| 513 | DA_BUFSIZE = 16000 |
| 514 | }; |
| 515 | |
| 516 | /** |
| 517 | * Represents a chunk of memory. See comments on da_deviceinfo. |
| 518 | * This is presented here to allow aggregation in da_deviceinfo: |
| 519 | * Not for public consumption. |
| 520 | */ |
| 521 | struct da_buf { |
| 522 | struct da_buf *next; |
| 523 | char *cur; |
| 524 | char *limit; |
| 525 | char buf[DA_BUFSIZE]; |
| 526 | }; |
| 527 | |
| 528 | /** |
| 529 | * A callback interface for allocating memory from some source |
| 530 | * Not for public consumption. |
| 531 | */ |
| 532 | struct da_allocator { |
| 533 | da_alloc_fn alloc; |
| 534 | da_free_fn free; |
| 535 | da_realloc_fn realloc; |
| 536 | void *context; |
| 537 | }; |
| 538 | |
| 539 | |
| 540 | /** |
| 541 | * Represents a search result |
| 542 | * Can be used to retrieve values of known properties discovered from the evidence, |
| 543 | * iterate over the properties with known values, and query property types that are |
| 544 | * local to this result. |
| 545 | * |
| 546 | * The atlas the search is carried out on must survive any da_deviceinfo results |
| 547 | * it provides. |
| 548 | */ |
| 549 | struct da_deviceinfo { |
| 550 | struct da_allocator allocator; |
| 551 | const da_atlas_t *atlas; /* reference to the atlas the search was carried out on. */ |
| 552 | struct da_bitset *present; /* property received from tree */ |
| 553 | struct da_bitset *localprop; /* property was received from UAR rule or CPR */ |
| 554 | struct da_bitset *cprprop; /* property was received from CPR */ |
| 555 | union da_value *properties; /* properties - indexed by property id. */ |
| 556 | da_propid_t *proplist; /* list of properties present in this result. */ |
| 557 | size_t propcount; /* size of proplist */ |
| 558 | da_propset_t *local_types; /* property descriptors local to this search result. */ |
| 559 | |
| 560 | /** |
| 561 | * The per-deviceinfo heap is stored here. Allocations for data in the result |
| 562 | * come from the raw data in these buffers. The size of the fixed-size buffer |
| 563 | * built in to da_buf is sized such that all known search results will not |
| 564 | * require memory allocation via malloc() |
| 565 | */ |
| 566 | struct da_buf *heap; |
| 567 | struct da_buf initial_heap; |
| 568 | }; |
| 569 | |
| 570 | /** |
| 571 | * Used to pass evidence to da_searchv() |
| 572 | */ |
| 573 | struct da_evidence { |
| 574 | da_evidence_id_t key; |
| 575 | char *value; |
| 576 | }; |
| 577 | |
| 578 | /** |
| 579 | * Used to pass properties the API intends to query to the da_atlas_open function |
| 580 | * This can be used to improve performance of lookup on properties well-known |
| 581 | * to the API user, but not present in the JSON database. |
| 582 | */ |
| 583 | struct da_property_decl { |
| 584 | const char *name; |
| 585 | da_type_t type; |
| 586 | }; |
| 587 | |
| 588 | |
| 589 | #endif /* DEVATLAS_DAC_H */ |