AnswerParser.hpp
上传用户: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 __ANSWER_PARSER_HPP__
  23. #define __ANSWER_PARSER_HPP__
  24. #include "VXItypes.h"
  25. #include <parsers/XercesDOMParser.hpp>
  26. extern "C" struct VXIContent;
  27. extern "C" struct VXIValue;
  28. class SimpleLogger;
  29. class AnswerHolder;
  30. class AnswerTranslator {
  31. public:
  32.   virtual void EvaluateExpression(const vxistring & expression) = 0;
  33.   virtual void SetString(const vxistring & var, const vxistring & val) = 0;
  34.   AnswerTranslator() { }
  35.   virtual ~AnswerTranslator() { }
  36. };
  37. class AnswerParser {
  38. public:
  39.   enum ParseResult {
  40.     Success,
  41. NoInput,
  42. NoMatch,
  43. ParseError,
  44. UnsupportedContent,
  45. InvalidParameter
  46.   };
  47.   /**
  48.    * Parses a NLSML recognition result.
  49.    */
  50.   ParseResult Parse(SimpleLogger & log, AnswerTranslator &, GrammarManager &, int, VXIContent *, VXMLElement &);
  51.   AnswerParser();
  52.   ~AnswerParser();
  53. private:
  54.   // Returns: -1 Parse error
  55.   //           0 Success - application.lastresult$ written
  56.   //           1 Success - noinput event
  57.   //           2 Success - nomatch event
  58.   int ProcessNLSML(SimpleLogger & log, AnswerTranslator &, GrammarManager &, int, VXMLElement &);
  59.   bool IsAllWhiteSpace(const XMLCh* str);
  60. private:
  61.   xercesc::XercesDOMParser * nlsmlParser;
  62. };
  63. #endif