/usr/include/gmerlin/cfg_registry.h is in libgmerlin-dev 1.2.0~dfsg+1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | /*****************************************************************
* gmerlin - a general purpose multimedia framework and applications
*
* Copyright (c) 2001 - 2011 Members of the Gmerlin project
* gmerlin-general@lists.sourceforge.net
* http://gmerlin.sourceforge.net
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#ifndef __BG_CFG_REGISTRY_H_
#define __BG_CFG_REGISTRY_H_
#include <gmerlin/parameter.h>
/** \defgroup cfg_registry Configuration registry
*
* This is a registry for configuration data, which stores the configuration
* of a whole application. Each module has it's own section, sections can
* have subsections. Inside the section, the configuration is stored as
* name-value pairs.
*
* You can save a registry in an xml-file and load it again. Furthermore,
* sections can be attached to GUI-widgets. Special
* routines are available to copy all values from/to a section by using
* functions of type \ref bg_set_parameter_func_t and
* \ref bg_get_parameter_func_t.
*/
/** \defgroup cfg_section Configuration section
* \ingroup cfg_registry
*
* Sections are nodes in the configuration tree. They can contain
* name-value pairs and child sections. Usually, config sections are
* kept within a configuration registry to store the applications
* configuration data.
*
* They can, however, be used indepentently from a registry as
* universal data containers.
*/
/** \ingroup cfg_section
* \brief Configuration section
*
* Opaque container for configuration data and child sections
*/
typedef struct bg_cfg_section_s bg_cfg_section_t;
/** \ingroup cfg_registry
* \brief Configuration registry
*
* Opaque container for configuration sections.
*/
typedef struct bg_cfg_registry_s bg_cfg_registry_t;
/** \ingroup cfg_registry
* \brief Create an empty configuration registry
* \returns A newly allocated and empty registry.
*
* To free the registry, use \ref bg_cfg_registry_destroy.
*/
bg_cfg_registry_t * bg_cfg_registry_create();
/** \ingroup cfg_registry
* \brief Destroy configuration registry and free all associated memory
* \param reg A configuration registry.
*/
void bg_cfg_registry_destroy(bg_cfg_registry_t * reg);
/* cfg_xml.c */
/** \ingroup cfg_registry
* \brief Load a configuration registry from an xml- file
* \param reg A configuration registry.
* \param filename Name of the file
*/
void bg_cfg_registry_load(bg_cfg_registry_t * reg, const char * filename);
/** \ingroup cfg_registry
* \brief Save a configuration registry to an xml-file
* \param reg A configuration registry.
* \param filename Name of the file
*/
void bg_cfg_registry_save(bg_cfg_registry_t * reg, const char * filename);
/** \ingroup cfg_registry
* \brief Check if a registry has a section
* \param reg A configuration registry.
* \param name Name of the section
* \returns 1 if the section is present, 0 else
*/
int bg_cfg_registry_has_section(bg_cfg_registry_t * reg, const char * name);
/* The name and xml tag of the section must be set before */
/** \ingroup cfg_section
* \brief Convert a configuration section into a libxml2 node
* \param section Configuration section
* \param xml_section Pointer to the xml node for the section
*
* See the libxml2 documentation for more infos
*/
void bg_cfg_section_2_xml(const bg_cfg_section_t * section, xmlNodePtr xml_section);
/** \ingroup cfg_section
* \brief Convert libxml2 node into a configuration section
* \param xml_doc Pointer to the xml document
* \param xml_section Pointer to the xml node for the section
* \param section Configuration section
*
* See the libxml2 documentation for more infos
*/
void bg_cfg_xml_2_section(xmlDocPtr xml_doc, xmlNodePtr xml_section,
bg_cfg_section_t * section);
/** \ingroup cfg_section
* \brief Dump a config section to a file
* \param section Configuration section
* \param filename File to write this to
*
* Used for debugging
*/
void bg_cfg_section_dump(bg_cfg_section_t * section, const char * filename);
/*
* Path looks like "section:subsection:subsubsection"
*/
/** \ingroup cfg_registry
* \brief Find a section in the registry
* \param reg A configuration registry
* \param path The path
* \returns Configuration section
*
* Path looks like "section:subsection:subsubsection". If the section
* does not exist, an empty section is created (including enevtually
* missing parent sections).
*/
bg_cfg_section_t * bg_cfg_registry_find_section(bg_cfg_registry_t * reg,
const char * path);
/** \ingroup cfg_section
* \brief Find a child of a section
* \param section A configuration section
* \param name name of the subsection
* \returns Configuration section
*
* If the child section does not exist, an empty section is created.
*/
bg_cfg_section_t * bg_cfg_section_find_subsection(bg_cfg_section_t * section,
const char * name);
/** \ingroup cfg_section
* \brief Create a subsection at the specified position
* \param section A configuration section
* \param pos Position of the subsection (starting with 0)
* \returns Configuration section
*/
bg_cfg_section_t * bg_cfg_section_create_subsection_at_pos(bg_cfg_section_t * section,
int pos);
/** \ingroup cfg_section
* \brief Move a subsection to the specified position
* \param section A configuration section
* \param child Subsection to be moved
* \param pos New position of the subsection (starting with 0)
*/
void bg_cfg_section_move_child(bg_cfg_section_t * section, bg_cfg_section_t * child,
int pos);
/** \ingroup cfg_section
* \brief Find a child of a section by index
* \param section A configuration section
* \param index Index (starting with 0)
* \returns Configuration section
*
* If the child section does not exist, NULL is returned.
*/
bg_cfg_section_t * bg_cfg_section_find_subsection_by_index(bg_cfg_section_t * section,
int index);
/*
* Create/destroy config sections
*/
/** \ingroup cfg_section
* \brief Create an empty config section
* \param name Name
* \returns Configuration section
*/
bg_cfg_section_t * bg_cfg_section_create(const char * name);
/** \ingroup cfg_section
* \brief Create a config section from a parameter array
* \param name Name
* \param parameters A parameter array
* \returns Configuration section
*
* Creates a configuration section from a parameter array.
* The values in the section are set from the defaults given in the
* array.
*/
bg_cfg_section_t *
bg_cfg_section_create_from_parameters(const char * name,
const bg_parameter_info_t * parameters);
/** \ingroup cfg_section
* \brief Create items from a parameter info
* \param section Configuration section
* \param parameters A parameter array
*
* This iterates through parameters and creates all missing
* entries with the values set to their defaults
*/
void bg_cfg_section_create_items(bg_cfg_section_t * section,
const bg_parameter_info_t * parameters);
/** \ingroup cfg_section
* \brief Destroy a config section
* \param section Configuration section
*/
void bg_cfg_section_destroy(bg_cfg_section_t * section);
/** \ingroup cfg_section
* \brief Duplicate a configuration section
* \param src Configuration section
* \returns A newly allocated section with all values copied from src.
*/
bg_cfg_section_t * bg_cfg_section_copy(const bg_cfg_section_t * src);
/** \ingroup cfg_section
* \brief Set values in a configuration section from another section
* \param src Source section
* \param dst Destination section
*
* This function iterates through all entries of src and copies the values
* to dst. Values, which don't exist in dst, are created. The same is then
* done for all children of src.
*/
void bg_cfg_section_transfer(bg_cfg_section_t * src, bg_cfg_section_t * dst);
/** \ingroup cfg_section
* \brief Like \ref bg_cfg_section_transfer but acts only on the subsections
* \param src Source section
* \param dst Destination section
*/
void bg_cfg_section_transfer_children(bg_cfg_section_t * src, bg_cfg_section_t * dst);
/** \ingroup cfg_section
* \brief Insert a reference to a section as child
* \param section Configuration section
* \param ref Child section to be added as reference
*/
void bg_cfg_section_add_ref(bg_cfg_section_t * section, bg_cfg_section_t * ref);
/*
* Get/Set section names
*/
/** \ingroup cfg_section
* \brief Get the name of a configuration section
* \param section Configuration section
* \returns The name
*/
const char * bg_cfg_section_get_name(bg_cfg_section_t * section);
/** \ingroup cfg_section
* \brief Get the translated name of a configuration section
* \param section Configuration section
* \returns The translated name
*
* The returned string must be freed by the caller
*/
char * bg_cfg_section_get_name_translated(bg_cfg_section_t * section);
/** \ingroup cfg_section
* \brief Set the name of a configuration section
* \param section Configuration section
* \param name The new name
* \param gettext_domain First argument for bindtextdomain()
* \param gettext_directory Second argument for bindtextdomain()
*/
void bg_cfg_section_set_name(bg_cfg_section_t * section, const char * name,
const char * gettext_domain,
const char * gettext_directory);
/*
* Get/Set values
*/
/** \ingroup cfg_section
* \brief Store a value in the section
* \param section The configuration section
* \param info The parameter destription
* \param value The value to be stored
*
* If the value does not exist in the section, it is created
* from the parameter description.
*/
void bg_cfg_section_set_parameter(bg_cfg_section_t * section,
const bg_parameter_info_t * info,
const bg_parameter_value_t * value);
/** \ingroup cfg_section
* \brief Set values from an option string
* \param section The configuration section
* \param info The parameter destription
* \param str A string describing the values
*
* This takes a string from the commandline and
* stores it in the section.
*
* \todo Document syntax for all parameter types
*/
int bg_cfg_section_set_parameters_from_string(bg_cfg_section_t * section,
const bg_parameter_info_t * info,
const char * str);
/** \ingroup cfg_section
* \brief Read a value from the section
* \param section The configuration section
* \param info The parameter destription
* \param value The value will be stored here
*
* If the value does not exist in the section, it is created
* from the parameter description.
*/
void bg_cfg_section_get_parameter(bg_cfg_section_t * section,
const bg_parameter_info_t * info,
bg_parameter_value_t * value);
/** \ingroup cfg_section
* \brief Delete a subsection
* \param section The configuration section
* \param subsection The child section to be deleten
*
* If the subsection if no child of section, this function does nothing.
*/
void bg_cfg_section_delete_subsection(bg_cfg_section_t * section,
bg_cfg_section_t * subsection);
/** \ingroup cfg_section
* \brief Delete all subsections
* \param section The configuration section
*/
void bg_cfg_section_delete_subsections(bg_cfg_section_t * section);
/*
* Type specific get/set functions, which don't require
* an info structure
*/
/** \ingroup cfg_section
* \brief Store an integer value in a section
* \param section The configuration section
* \param name Name of the entry
* \param value Value to be stored
*/
void bg_cfg_section_set_parameter_int(bg_cfg_section_t * section,
const char * name, int value);
/** \ingroup cfg_section
* \brief Store a float value in a section
* \param section The configuration section
* \param name Name of the entry
* \param value Value to be stored
*/
void bg_cfg_section_set_parameter_float(bg_cfg_section_t * section,
const char * name, float value);
/** \ingroup cfg_section
* \brief Store a string value in a section
* \param section The configuration section
* \param name Name of the entry
* \param value Value to be stored
*/
void bg_cfg_section_set_parameter_string(bg_cfg_section_t * section,
const char * name, const char * value);
/** \ingroup cfg_section
* \brief Store a time value in a section
* \param section The configuration section
* \param name Name of the entry
* \param value Value to be stored
*/
void bg_cfg_section_set_parameter_time(bg_cfg_section_t * section,
const char * name, gavl_time_t value);
/* Get parameter values, return 0 if no such entry */
/** \ingroup cfg_section
* \brief Get an integer value from a section
* \param section The configuration section
* \param name Name of the entry
* \param value Returns value
* \returns 1 if entry was available, 0 else.
*/
int bg_cfg_section_get_parameter_int(bg_cfg_section_t * section,
const char * name, int * value);
/** \ingroup cfg_section
* \brief Get an float value from a section
* \param section The configuration section
* \param name Name of the entry
* \param value Returns value
* \returns 1 if entry was available, 0 else.
*/
int bg_cfg_section_get_parameter_float(bg_cfg_section_t * section,
const char * name, float * value);
/** \ingroup cfg_section
* \brief Get an string value from a section
* \param section The configuration section
* \param name Name of the entry
* \param value Returns value
* \returns 1 if entry was available, 0 else.
*/
int bg_cfg_section_get_parameter_string(bg_cfg_section_t * section,
const char * name, const char ** value);
/** \ingroup cfg_section
* \brief Get an time value from a section
* \param section The configuration section
* \param name Name of the entry
* \param value Returns value
* \returns 1 if entry was available, 0 else.
*/
int bg_cfg_section_get_parameter_time(bg_cfg_section_t * section,
const char * name, gavl_time_t * value);
/* Apply all values found in the parameter info */
/** \ingroup cfg_section
* \brief Send all parameters to a module
* \param section The configuration section
* \param parameters Parameter array
* \param func Function to be called
* \param callback_data First argument passed to func
*
* This function iterates though all parameters and calls
* func with the stored values. It is the main function to transfer
* data from the section to a module.
*/
void bg_cfg_section_apply(bg_cfg_section_t * section,
const bg_parameter_info_t * parameters,
bg_set_parameter_func_t func,
void * callback_data);
/** \ingroup cfg_section
* \brief Send all parameters to a module without terminating
* \param section The configuration section
* \param infos Parameter array
* \param func Function to be called
* \param callback_data First argument passed to func
*
* This function works like \ref bg_cfg_section_apply but doesn't
* call func with a NULL name argument at the end.
*/
void bg_cfg_section_apply_noterminate(bg_cfg_section_t * section,
const bg_parameter_info_t * infos,
bg_set_parameter_func_t func,
void * callback_data);
/** \ingroup cfg_section
* \brief Get parameters from a module
* \param section The configuration section
* \param parameters Parameter array
* \param func Function to be called
* \param callback_data First argument passed to func
*
* This function iterates though all parameters and calls
* func with the stored values. It is the main function to transfer
* data from the module to a section. It is used only, if the module
* has parameters, which are changed internally.
*/
void bg_cfg_section_get(bg_cfg_section_t * section,
const bg_parameter_info_t * parameters,
bg_get_parameter_func_t func,
void * callback_data);
/** \ingroup cfg_section
* \brief Qurey if a child section is available
* \param section The configuration section
* \param name Name of the child section
* \returns 1 if the child section is available, 0 else.
*/
int bg_cfg_section_has_subsection(bg_cfg_section_t * section,
const char * name);
/** \ingroup cfg_section
* \brief Restore default values of a section
* \param section The configuration section
* \param info Parameter info
*/
void bg_cfg_section_restore_defaults(bg_cfg_section_t * section,
const bg_parameter_info_t * info);
#endif /* __BG_CFG_REGISTRY_H_ */
|