VXmlParser.cxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:8k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. static const char* const VXmlParser_cxx_Version =
  51.     "$Id: VXmlParser.cxx,v 1.4 2000/12/18 23:49:08 bko Exp $";
  52. #include <assert.h>
  53. #include <stdio.h>
  54. #include <fstream.h>
  55. #include "VXmlParser.hxx"
  56. #include "VBadDataException.hxx"
  57. #include "parser.h"
  58. #include "tree.h"
  59. #include "debugXML.h"
  60. VXmlParser::VXmlParser(const VFile& file) throw (VBadDataException&)
  61.         : _doc(NULL)
  62. {
  63.     char buf[256];
  64.     if (!VFileBrowser::fileExists(file))
  65.     {
  66.         sprintf(buf, "File %s does not exist." , file.getFullName().c_str());
  67.         throw VBadDataException(buf, __FILE__, __LINE__, 0);
  68.     }
  69.     ifstream inRead(file.getFullName().c_str());
  70.     string dRead;
  71.     while (inRead.getline(buf, 256))
  72.     {
  73.         dRead += buf;
  74.     }
  75.     if (dRead.size()) parseContents(dRead);
  76. }
  77. VXmlParser::VXmlParser(const string& contents) throw (VBadDataException&)
  78.         : _doc(NULL)
  79. {
  80.     if (contents.size()) parseContents(contents);
  81. }
  82. VXmlParser::~VXmlParser()
  83. {
  84.     xmlFreeDoc(_doc);
  85. }
  86. void
  87. VXmlParser::parseContents(const string& contents) throw (VBadDataException&)
  88. {
  89.     _doc = xmlParseMemory((char*)contents.c_str(), contents.size());
  90.     if (!_doc)
  91.     {
  92.         throw VBadDataException("Failed to parse XML", __FILE__, __LINE__, 0);
  93.     }
  94. }
  95. string
  96. VXmlParser::getAttribute(xmlNodePtr node, const string& attr)
  97. throw (VBadDataException&)
  98. {
  99.     xmlChar *result = xmlGetProp(node, (xmlChar*)attr.c_str());
  100.     if (result == NULL)
  101.     {
  102.         char buf[256];
  103.         sprintf(buf, "Failed to get attribute (%s)",
  104.                 attr.c_str());
  105.         throw VBadDataException(buf, __FILE__, __LINE__, 0);
  106.     }
  107.     else
  108.     {
  109.         string returnVal((char*)result);
  110.         free(result);
  111.         return returnVal;
  112.     }
  113. }
  114. string
  115. VXmlParser::getContent(xmlNodePtr root, const string& tag)
  116. throw (VBadDataException&)
  117. {
  118.     string retString;
  119.     xmlNodePtr node = findNode(root, tag);
  120.     if (node)
  121.     {
  122.         char* c = (char*)xmlNodeGetContent(node);
  123.         if (c)
  124.         {
  125.             retString = c;
  126.             free(c);
  127.         }
  128.     }
  129.     if (!retString.size())
  130.     {
  131.         char buf[256];
  132.         sprintf(buf, "Failed to get contents for tag (%s)",
  133.                 tag.c_str());
  134.         throw VBadDataException(buf, __FILE__, __LINE__, 0);
  135.     }
  136.     return retString;
  137. }
  138. string
  139. VXmlParser::getContent(const string& tag, const string& subTag)
  140. throw (VBadDataException&)
  141. {
  142.     string retString;
  143.     if (!_doc)
  144.     {
  145.         throw VBadDataException("Failed to parse XML", __FILE__, __LINE__, 0);
  146.     }
  147.     xmlNodePtr node = findNode( xmlDocGetRootElement( _doc ), tag);
  148.     if (node)
  149.     {
  150.         node = findNode(node, subTag);
  151.         if (node)
  152.         {
  153.             char* c = (char*)xmlNodeGetContent(node);
  154.             if (c)
  155.             {
  156.                 retString = c;
  157.                 free(c);
  158.             }
  159.         }
  160.     }
  161.     if (!retString.size())
  162.     {
  163.         char buf[256];
  164.         sprintf(buf, "Failed to get contents for tag (%s) and subtag (%s)",
  165.                 tag.c_str(), subTag.c_str());
  166.         throw VBadDataException(buf, __FILE__, __LINE__, 0);
  167.     }
  168.     return retString;
  169. }
  170. void
  171. VXmlParser::getContent(const string& tag, const string& subTag, list < string > & retList)
  172. throw (VBadDataException&)
  173. {
  174.     char* c = NULL;
  175.     list < xmlNodePtr > nodeList;
  176.     if (!_doc)
  177.     {
  178.         throw VBadDataException("Failed to parse XML", __FILE__, __LINE__, 0);
  179.     }
  180.     findNode( xmlDocGetRootElement( _doc ), tag, nodeList);
  181.     for (list < xmlNodePtr > ::iterator itr = nodeList.begin();
  182.             itr != nodeList.end(); itr++)
  183.     {
  184.         xmlNodePtr node = (*itr);
  185.         if (subTag.size())
  186.         {
  187.             c = (char*)xmlNodeGetContent(findNode(node, subTag));
  188.         }
  189.         else
  190.         {
  191.             c = (char*)xmlNodeGetContent(node);
  192.         }
  193.         if (c)
  194.         {
  195.             retList.push_back(c);
  196.             free(c);
  197.         }
  198.     }
  199. }
  200. void
  201. VXmlParser::getContent(xmlNodePtr root, const string& tag, const string& subTag, list < string > & retList)
  202. throw (VBadDataException&)
  203. {
  204.     char* c = NULL;
  205.     list < xmlNodePtr > nodeList;
  206.     findNode( root, tag, nodeList);
  207.     for (list < xmlNodePtr > ::iterator itr = nodeList.begin();
  208.             itr != nodeList.end(); itr++)
  209.     {
  210.         xmlNodePtr node = (*itr);
  211.         if (subTag.size())
  212.         {
  213.             c = (char*)xmlNodeGetContent(findNode(node, subTag));
  214.         }
  215.         else
  216.         {
  217.             c = (char*)xmlNodeGetContent(node);
  218.         }
  219.         if (c)
  220.         {
  221.             retList.push_back(c);
  222.             free(c);
  223.         }
  224.     }
  225. }
  226. xmlNodePtr
  227. VXmlParser::findNode(xmlNodePtr root, const string& name) throw (VBadDataException&)
  228. {
  229.     xmlNodePtr retNode = NULL;
  230.     xmlNodePtr startNode = NULL;
  231.     if (root == NULL)
  232.     {
  233.         if (!_doc)
  234.         {
  235.             throw VBadDataException("Failed to parse XML", __FILE__, __LINE__, 0);
  236.         }
  237.         startNode = xmlDocGetRootElement( _doc );
  238.     }
  239.     else startNode = root;
  240.     assert(startNode);
  241.     if (strcmp((char*)startNode->name, name.c_str()) == 0) return startNode ;
  242.     xmlNodePtr node = startNode->children;
  243.     while (node)
  244.     {
  245.         if (strcmp((char*)node->name, name.c_str()) == 0) return node;
  246.         xmlNodePtr cNode = node->children;
  247.         if (cNode)
  248.         {
  249.             retNode = findNode(node, name);
  250.             if (retNode) break;
  251.         }
  252.         node = node->next;
  253.     }
  254.     return retNode;
  255. }
  256. void
  257. VXmlParser::findNode(xmlNodePtr root, const string& name, list < xmlNodePtr > & retList)
  258. throw (VBadDataException&)
  259. {
  260.     xmlNodePtr startNode;
  261.     if (root == NULL)
  262.     {
  263.         if (!_doc)
  264.         {
  265.             throw VBadDataException("Failed to parse XML", __FILE__, __LINE__, 0);
  266.         }
  267.         startNode = xmlDocGetRootElement( _doc );
  268.     }
  269.     else startNode = root;
  270.     if (strcmp((char*)startNode->name, name.c_str()) == 0)
  271.     {
  272.         retList.push_back(startNode);
  273.     }
  274.     xmlNodePtr node = startNode->children;
  275.     while (node)
  276.     {
  277.         if (node->type == XML_ELEMENT_NODE)
  278.         {
  279.             findNode(node, name, retList);
  280.         }
  281.         node = node->next;
  282.     }
  283. }
  284. void
  285. VXmlParser::dump(FILE* file)
  286. {
  287.     xmlDocDump(file, _doc);
  288. }
  289. void
  290. VXmlParser::dump()
  291. {
  292.     xmlDocDump(NULL, _doc);
  293. }