pconfig.cxx
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:4k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * pconfig.cxx
  3.  *
  4.  * Operating System utilities.
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25.  * All Rights Reserved.
  26.  *
  27.  * Contributor(s): ______________________________________.
  28.  *
  29.  * $Log: pconfig.cxx,v $
  30.  * Revision 1.2  2000/06/26 11:17:21  robertj
  31.  * Nucleus++ port (incomplete).
  32.  *
  33.  * Revision 1.1  1998/11/30 12:46:17  robertj
  34.  * Initial revision
  35.  *
  36.  */
  37. #include <ptlib.h>
  38. #include <ctype.h>
  39. ///////////////////////////////////////////////////////////////////////////////
  40. // PConfig
  41. PStringToString PConfig::GetAllKeyValues(const PString & section) const
  42. {
  43.   PStringToString dict;
  44.   PStringList keys = GetKeys(section);
  45.   for (PINDEX i = 0; i < keys.GetSize(); i++)
  46.     dict.SetAt(keys[i], GetString(section, keys[i], ""));
  47.   return dict;
  48. }
  49. #if !defined(_WIN32) || defined (__NUCLEUS_MNT__)
  50. BOOL PConfig::GetBoolean(const PString & section, const PString & key, BOOL dflt) const
  51. {
  52.   PString str = GetString(section, key, dflt ? "T" : "F").ToUpper();
  53.   return str[0] == 'T' || str[0] == 'Y' || str.AsInteger() != 0;
  54. }
  55. void PConfig::SetBoolean(const PString & section, const PString & key, BOOL value)
  56. {
  57.   SetString(section, key, value ? "True" : "False");
  58. }
  59. long PConfig::GetInteger(const PString & section, const PString & key, long dflt) const
  60. {
  61.   PString str(PString::Signed, dflt);
  62.   return GetString(section, key, str).AsInteger();
  63. }
  64. void PConfig::SetInteger(const PString & section, const PString & key, long value)
  65. {
  66.   PString str(PString::Signed, value);
  67.   SetString(section, key, str);
  68. }
  69. #endif
  70. PInt64 PConfig::GetInt64(const PString & section, const PString & key, PInt64 dflt) const
  71. {
  72.   PString str = GetString(section, key, "");
  73.   if (!str)
  74.     return str.AsInt64();
  75.   return dflt;
  76. }
  77. void PConfig::SetInt64(const PString & section, const PString & key, PInt64 value)
  78. {
  79.   PStringStream strm;
  80.   strm << value;
  81.   SetString(section, key, strm);
  82. }
  83. double PConfig::GetReal(const PString & section, const PString & key, double dflt) const
  84. {
  85.   PString str(PString::Printf, "%g", dflt);
  86.   return GetString(section, key, str).AsReal();
  87. }
  88. void PConfig::SetReal(const PString & section, const PString & key, double value)
  89. {
  90.   PString str(PString::Printf, "%g", value);
  91.   SetString(section, key, str);
  92. }
  93. PTime PConfig::GetTime(const PString & section, const PString & key) const
  94. {
  95.   return GetString(section, key, "1 Jan 1996");
  96. }
  97. PTime PConfig::GetTime(const PString & section, const PString & key, const PTime & dflt) const
  98. {
  99.   return GetString(section, key, dflt.AsString());
  100. }
  101. void PConfig::SetTime(const PString & section, const PString & key, const PTime & value)
  102. {
  103.   SetString(section, key, value.AsString());
  104. }
  105. // End Of File ///////////////////////////////////////////////////////////////