/usr/include/ptlib/config.h is in libpt-dev 2.10.11~dfsg-2.1.
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 | /*
* config.h
*
* Application/System configuration access class.
*
* Portable Windows Library
*
* Copyright (c) 1993-1998 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Portions are Copyright (C) 1993 Free Software Foundation, Inc.
* All Rights Reserved.
*
* Contributor(s): ______________________________________.
*
* $Revision: 24177 $
* $Author: rjongbloed $
* $Date: 2010-04-05 06:52:04 -0500 (Mon, 05 Apr 2010) $
*/
#ifndef PTLIB_CONFIG_H
#define PTLIB_CONFIG_H
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include "ptbuildopts.h"
#ifdef P_CONFIG_FILE
class PXConfig;
/** A class representing a configuration for the application.
There are four sources of configuration information. The system environment,
a system wide configuration file, an application specific configuration file
or an explicit configuration file.
Configuration information follows a three level hierarchy: <code>file</code>,
<code>section</code> and <code>variable</code>. Thus, a configuration file consists of
a number of sections each with a number of variables selected by a
<code>key</code>. Each variable has an associated value.
Note that the evironment source for configuration information does not have
sections. The section is ignored and the same set of keys are available.
The configuration file is a standard text file for the platform with its
internals appearing in the form:
<pre><code>
[Section String]
Key Name=Value String
</code></pre>
*/
class PConfig : public PObject
{
PCLASSINFO(PConfig, PObject);
public:
/**@name Construction */
//@{
/** Description of the standard source for configuration information.
*/
enum Source {
/** The platform specific environment. For Unix, MSDOS, NT etc this is
{\b the} environment current when the program was run. For the
MacOS this is a subset of the Gestalt and SysEnviron information.
*/
Environment,
/** The platform specific system wide configuration file. For MS-Windows
this is the WIN.INI file. For Unix, plain MS-DOS, etc this is a
configuration file similar to that for applications except there is
only a single file that applies to all PWLib applications.
*/
System,
/** The application specific configuration file. This is the most common
source of configuration for an application. The location of this file
is platform dependent, but its contents are always the same. For
MS-Windows the file should be either in the same directory as the
executable or in the Windows directory. For the MacOS this would be
either in the System Folder or the Preferences folder within it. For
Unix this would be the users home directory.
*/
Application,
NumSources
};
/** Create a new configuration object. Once a source is selected for the
configuration it cannot be changed. Only at the next level of the
hierarchy (sections) are selection able to be made dynamically with an
active PConfig object.
*/
PConfig(
Source src = Application ///< Standard source for the configuration.
);
/** Create a new configuration object. */
PConfig(
Source src, ///< Standard source for the configuration.
const PString & appname ///< Name of application
);
/** Create a new configuration object. */
PConfig(
Source src, ///< Standard source for the configuration.
const PString & appname, ///< Name of application
const PString & manuf ///< Manufacturer
);
/** Create a new configuration object. */
PConfig(
const PString & section, ///< Default section to search for variables.
Source src = Application ///< Standard source for the configuration.
);
/** Create a new configuration object. */
PConfig(
const PString & section, ///< Default section to search for variables.
Source src, ///< Standard source for the configuration.
const PString & appname ///< Name of application
);
/** Create a new configuration object. */
PConfig(
const PString & section, ///< Default section to search for variables.
Source src, ///< Standard source for the configuration.
const PString & appname, ///< Name of application
const PString & manuf ///< Manufacturer
);
/** Create a new configuration object. */
PConfig(
const PFilePath & filename, ///< Explicit name of the configuration file.
const PString & section ///< Default section to search for variables.
);
//@}
/**@name Section functions */
//@{
/** Set the default section for variable operations. All functions that deal
with keys and get or set configuration values will use this section
unless an explicit section name is specified.
Note when the <code>Environment</code> source is being used the default
section may be set but it is ignored.
*/
virtual void SetDefaultSection(
const PString & section ///< New default section name.
);
/** Get the default section for variable operations. All functions that deal
with keys and get or set configuration values will use this section
unless an explicit section name is specified.
Note when the <code>Environment</code> source is being used the default
section may be retrieved but it is ignored.
@return default section name string.
*/
virtual PString GetDefaultSection() const;
/** Get all of the section names currently specified in the file. A section
is the part specified by the [ and ] characters.
Note when the <code>Environment</code> source is being used this will
return an empty list as there are no section present.
@return list of all section names.
*/
virtual PStringArray GetSections() const;
/** Get a list of all the keys in the section. If the section name is not
specified then use the default section.
@return list of all key names.
*/
virtual PStringArray GetKeys() const;
/** Get a list of all the keys in the section. */
virtual PStringArray GetKeys(
const PString & section ///< Section to use instead of the default.
) const;
/** Get all of the keys in the section and their values. If the section
name is not specified then use the default section.
@return Dictionary of all key names and their values.
*/
virtual PStringToString GetAllKeyValues() const;
/** Get all of the keys in the section and their values. */
virtual PStringToString GetAllKeyValues(
const PString & section ///< Section to use instead of the default.
) const;
/** Delete all variables in the specified section. If the section name is
not specified then the default section is deleted.
Note that the section header is also removed so the section will not
appear in the GetSections() function.
*/
virtual void DeleteSection();
/** Delete all variables in the specified section. */
virtual void DeleteSection(
const PString & section ///< Name of section to delete.
);
/** Delete the particular variable in the specified section. If the section
name is not specified then the default section is used.
Note that the variable and key are removed from the file. The key will
no longer appear in the GetKeys() function. If you wish to delete the
value without deleting the key, use SetString() to set it to the empty
string.
*/
virtual void DeleteKey(
const PString & key ///< Key of the variable to delete.
);
/** Delete the particular variable in the specified section. */
virtual void DeleteKey(
const PString & section, ///< Section to use instead of the default.
const PString & key ///< Key of the variable to delete.
);
/**Determine if the particular variable in the section is actually present.
This function allows a caller to distinguish between getting a saved
value or using the default value. For example if you called
GetString("MyKey", "DefVal") there is no way to distinguish between
the default "DefVal" being used, or the user had explicitly saved the
value "DefVal" into the PConfig.
*/
virtual PBoolean HasKey(
const PString & key ///< Key of the variable.
) const;
/**Determine if the particular variable in the section is actually present. */
virtual PBoolean HasKey(
const PString & section, ///< Section to use instead of the default.
const PString & key ///< Key of the variable.
) const;
//@}
/**@name Get/Set variables */
//@{
/** Get a string variable determined by the key in the section. If the
section name is not specified then the default section is used.
If the key is not present the value returned is the that provided by
the <code>dlft</code> parameter. Note that this is different from the
key being present but having no value, in which case an empty string is
returned.
@return string value of the variable.
*/
virtual PString GetString(
const PString & key ///< The key name for the variable.
) const;
/** Get a string variable determined by the key in the section. */
virtual PString GetString(
const PString & key, ///< The key name for the variable.
const PString & dflt ///< Default value for the variable.
) const;
/** Get a string variable determined by the key in the section. */
virtual PString GetString(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
const PString & dflt ///< Default value for the variable.
) const;
/** Set a string variable determined by the key in the section. If the
section name is not specified then the default section is used.
*/
virtual void SetString(
const PString & key, ///< The key name for the variable.
const PString & value ///< New value to set for the variable.
);
/** Set a string variable determined by the key in the section. */
virtual void SetString(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
const PString & value ///< New value to set for the variable.
);
/** Get a boolean variable determined by the key in the section. If the
section name is not specified then the default section is used.
The boolean value can be specified in a number of ways. The true value
is returned if the string value for the variable begins with either the
'T' character or the 'Y' character. Alternatively if the string can
be converted to a numeric value, a non-zero value will also return true.
Thus the values can be Key=True, Key=Yes or Key=1 for true and
Key=False, Key=No, or Key=0 for false.
If the key is not present the value returned is the that provided by
the <code>dlft</code> parameter. Note that this is different from the
key being present but having no value, in which case false is returned.
@return boolean value of the variable.
*/
virtual PBoolean GetBoolean(
const PString & key, ///< The key name for the variable.
PBoolean dflt = false ///< Default value for the variable.
) const;
/** Get a boolean variable determined by the key in the section. */
virtual PBoolean GetBoolean(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
PBoolean dflt = false ///< Default value for the variable.
) const;
/** Set a boolean variable determined by the key in the section. If the
section name is not specified then the default section is used.
If value is true then the string "True" is written to the variable
otherwise the string "False" is set.
*/
virtual void SetBoolean(
const PString & key, ///< The key name for the variable.
PBoolean value ///< New value to set for the variable.
);
/** Set a boolean variable determined by the key in the section. */
virtual void SetBoolean(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
PBoolean value ///< New value to set for the variable.
);
/* Get an integer variable determined by the key in the section. If the
section name is not specified then the default section is used.
If the key is not present the value returned is the that provided by
the <code>dlft</code> parameter. Note that this is different from the
key being present but having no value, in which case zero is returned.
@return integer value of the variable.
*/
virtual long GetInteger(
const PString & key, ///< The key name for the variable.
long dflt = 0 ///< Default value for the variable.
) const;
/* Get an integer variable determined by the key in the section. */
virtual long GetInteger(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
long dflt = 0 ///< Default value for the variable.
) const;
/** Set an integer variable determined by the key in the section. If the
section name is not specified then the default section is used.
The value is always formatted as a signed number with no leading or
trailing blanks.
*/
virtual void SetInteger(
const PString & key, ///< The key name for the variable.
long value ///< New value to set for the variable.
);
/** Set an integer variable determined by the key in the section. */
virtual void SetInteger(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
long value ///< New value to set for the variable.
);
/** Get a 64 bit integer variable determined by the key in the section. If the
section name is not specified then the default section is used.
If the key is not present the value returned is the that provided by
the <code>dlft</code> parameter. Note that this is different from the
key being present but having no value, in which case zero is returned.
@return integer value of the variable.
*/
virtual PInt64 GetInt64(
const PString & key, ///< The key name for the variable.
PInt64 dflt = 0 ///< Default value for the variable.
) const;
/** Get a 64 bit integer variable determined by the key in the section. */
virtual PInt64 GetInt64(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
PInt64 dflt = 0 ///< Default value for the variable.
) const;
/** Set a 64 bit integer variable determined by the key in the section. If the
section name is not specified then the default section is used.
The value is always formatted as a signed number with no leading or
trailing blanks.
*/
virtual void SetInt64(
const PString & key, ///< The key name for the variable.
PInt64 value ///< New value to set for the variable.
);
/** Set a 64 bit integer variable determined by the key in the section. */
virtual void SetInt64(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
PInt64 value ///< New value to set for the variable.
);
/** Get a floating point variable determined by the key in the section. If
the section name is not specified then the default section is used.
If the key is not present the value returned is the that provided by
the <code>dlft</code> parameter. Note that this is different from the
key being present but having no value, in which case zero is returned.
@return floating point value of the variable.
*/
virtual double GetReal(
const PString & key, ///< The key name for the variable.
double dflt = 0 ///< Default value for the variable.
) const;
/** Get a floating point variable determined by the key in the section. */
virtual double GetReal(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
double dflt = 0 ///< Default value for the variable.
) const;
/** Set a floating point variable determined by the key in the section. If
the section name is not specified then the default section is used.
The value is always formatted as a signed decimal or exponential form
number with no leading or trailing blanks, ie it uses the %g formatter
from the printf() function.
*/
virtual void SetReal(
const PString & key, ///< The key name for the variable.
double value ///< New value to set for the variable.
);
/** Set a floating point variable determined by the key in the section. */
virtual void SetReal(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
double value ///< New value to set for the variable.
);
/** Get a <code>PTime</code> variable determined by the key in the section. If
the section name is not specified then the default section is used.
If the key is not present the value returned is the that provided by
the <code>dlft</code> parameter. Note that this is different from the
key being present but having no value, in which case zero is returned.
@return time/date value of the variable.
*/
virtual PTime GetTime(
const PString & key ///< The key name for the variable.
) const;
/** Get a <code>PTime</code> variable determined by the key in the section. */
virtual PTime GetTime(
const PString & key, ///< The key name for the variable.
const PTime & dflt ///< Default value for the variable.
) const;
/** Get a <code>PTime</code> variable determined by the key in the section. */
virtual PTime GetTime(
const PString & section, ///< Section to use instead of the default.
const PString & key ///< The key name for the variable.
) const;
/** Get a <code>PTime</code> variable determined by the key in the section. */
virtual PTime GetTime(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
const PTime & dflt ///< Default value for the variable.
) const;
/** Set a <code>PTime</code> variable determined by the key in the section. If
the section name is not specified then the default section is used.
*/
virtual void SetTime(
const PString & key, ///< The key name for the variable.
const PTime & value ///< New value to set for the variable.
);
/** Set a <code>PTime</code> variable determined by the key in the section. */
virtual void SetTime(
const PString & section, ///< Section to use instead of the default.
const PString & key, ///< The key name for the variable.
const PTime & value ///< New value to set for the variable.
);
//@}
protected:
// Member variables
/// The current section for variable values.
PString defaultSection;
private:
// Do common construction code.
void Construct(
Source src, ///< Standard source for the configuration.
const PString & appname, ///< Name of application
const PString & manuf ///< Manufacturer
);
void Construct(
const PFilePath & filename ///< Explicit name of the configuration file.
);
// Include platform dependent part of class
#ifdef _WIN32
#include "msos/ptlib/config.h"
#else
#include "unix/ptlib/config.h"
#endif
};
#endif // P_CONFIG_FILE
#endif // PTLIB_CONFIG_H
// End Of File ///////////////////////////////////////////////////////////////
|