ConfigFile.h
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:2k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #ifndef _CONFIGFILE_H
  23. #define _CONFIGFILE_H
  24. #include "VXIplatform.h"
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. /**
  29.  * Constants for configuration file parsing
  30.  */
  31. #define CONFIG_FILE_SEPARATORS " trn"
  32. #define CONFIG_FILE_ENV_VAR_BEGIN_ID "$("
  33. #define CONFIG_FILE_ENV_VAR_END_ID ")"
  34. #define CONFIG_FILE_COMMENT_ID '#'
  35. /**
  36.  * Parse a SBclient configuration file
  37.  *
  38.  * @param configArgs     Properties read from the configuration file are
  39.  *                       stored in this array using the corresponding keys
  40.  * @param fileName       Name and path of the configuration file to be
  41.  *                       parsed. If NULL, the default configuration file
  42.  *                       name defined above will be used.
  43.  *
  44.  * @result VXIplatformResult 0 on success
  45.  */
  46. VXIplatformResult ParseConfigFile (VXIMap **configArgs, const char *fileName);
  47. /**
  48.  * Parse a SBclient configuration line
  49.  *
  50.  * @param buffer         The configuration file line to be parsed, is modified
  51.  *                       during the parse
  52.  * @param configArgs     The property read from the configuration line is
  53.  *                       stored in this array using the corresponding key
  54.  *
  55.  * @result VXIplatformResult 0 on success
  56.  */
  57. VXIplatformResult ParseConfigLine(char* buffer, VXIMap *configArgs);
  58. #ifdef __cplusplus
  59. }
  60. #endif
  61. #endif