smlerror.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:13k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: smlerror.cpp,v 1.2.12.2 2004/07/13 18:38:52 bobclark Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. // include
  50. #include "hxtypes.h"
  51. #include "hxcom.h"
  52. #include "hxerror.h"
  53. #include "hxxres.h"
  54. #include "hxxrsmg.h"
  55. #include "smiltype.h"
  56. // pncont
  57. #include "hxslist.h"
  58. // coreres
  59. #include "xmlres.h"
  60. #include "smilres.h"
  61. #include "xmlreslt.h"
  62. // rmasmil
  63. #include "smlerror.h"
  64. // pndebug
  65. #include "hxheap.h"
  66. #ifdef _DEBUG
  67. #undef HX_THIS_FILE
  68. static const char HX_THIS_FILE[] = __FILE__;
  69. #endif
  70. #ifdef _WINDOWS
  71. extern HINSTANCE g_hInstance;
  72. #endif
  73. const int MAX_ERROR_STRING = 1024;
  74. CSmilErrorHandler::CSmilErrorHandler(IUnknown* pContext):
  75.     m_pContext(pContext)
  76. {
  77.     if(m_pContext)
  78.     {
  79. m_pContext->AddRef();
  80.     }
  81. }
  82. CSmilErrorHandler::~CSmilErrorHandler()
  83. {
  84.     HX_RELEASE(m_pContext);
  85. }
  86. void
  87. CSmilErrorHandler::Report(const char* pErrorText)
  88. {
  89.     IHXErrorMessages* pErrorMessage = 0;
  90.     if(m_pContext &&
  91. pErrorText &&
  92. HXR_OK == m_pContext->QueryInterface(
  93. IID_IHXErrorMessages, (void**)&pErrorMessage))
  94.     {
  95. pErrorMessage->Report(HXLOG_ERR, HXR_BAD_FORMAT,
  96.     0, pErrorText, NULL);
  97.         HX_RELEASE(pErrorMessage);
  98.     }
  99. }
  100. HX_RESULT
  101. CSmilErrorHandler::GetErrorString(UINT32 ulErrorStringID,
  102.   char* pErrorStringBuffer)
  103. {
  104.     HX_RESULT rc = HXR_FAIL;
  105.     const char* pErrorString = NULL;
  106.     IHXExternalResourceManager* pResMgr = NULL;
  107.     if(HXR_OK == m_pContext->QueryInterface(IID_IHXExternalResourceManager,
  108.     (void**)&pResMgr))
  109.     {
  110. IHXExternalResourceReader* pResRdr = NULL;
  111. if(HXR_OK == pResMgr->CreateExternalResourceReader(
  112.      CORE_RESOURCE_SHORT_NAME, pResRdr))
  113. {
  114. #ifdef _WINDOWS
  115.     char szDLLPath[1024]; /* Flawfinder: ignore */
  116.     GetModuleFileName((HMODULE)g_hInstance, szDLLPath, sizeof(szDLLPath));
  117.     pResRdr->SetDefaultResourceFile(szDLLPath);
  118. #endif
  119.     IHXXResource* pRes = pResRdr->GetResource(HX_RT_STRING,
  120. ulErrorStringID);
  121.     if(pRes)
  122.     {
  123. strcpy(pErrorStringBuffer, (const char*)pRes->ResourceData()); /* Flawfinder: ignore */
  124. rc = HXR_OK;
  125.     }
  126.     HX_RELEASE(pRes);
  127.     HX_RELEASE(pResRdr);
  128. }
  129. HX_RELEASE(pResMgr);
  130.     }
  131.     return rc;
  132. }
  133. //     CSmilXMLSyntaxErrorHandler methods
  134. static const struct
  135. {
  136.     UINT32     m_ulErrorTag;
  137.     UINT32     m_ulErrorStringID;
  138. } XMLSyntaxErrorStringTable[] =
  139. {
  140.     { HXR_XML_GENERALERROR,     IDS_ERR_XML_GENERALERROR },
  141.     { HXR_XML_BADENDTAG,     IDS_ERR_XML_BADENDTAG },
  142.     { HXR_XML_NOCLOSE,     IDS_ERR_XML_NOCLOSE },
  143.     { HXR_XML_BADATTRIBUTE,     IDS_ERR_XML_BADATTRIBUTE },
  144.     { HXR_XML_NOVALUE,     IDS_ERR_XML_MISSINGQUOTE },
  145.     { HXR_XML_MISSINGQUOTE,     IDS_ERR_XML_MISSINGQUOTE },
  146.     { HXR_XML_NOTAGTYPE,     IDS_ERR_XML_NOTAGTYPE },
  147.     { HXR_XML_ILLEGALID,     IDS_ERR_XML_ILLEGALID },
  148.     { HXR_XML_DUPATTRIBUTE,     IDS_ERR_XML_DUPATTRIBUTE },
  149.     { HXR_XML_COMMENT_B4_PROCINST,     IDS_ERR_XML_COMMENT_B4_PROCINST },
  150.     { HXR_XML_SYNTAX,     IDS_ERR_XML_SYNTAX },
  151.     { HXR_XML_NO_ELEMENTS,     IDS_ERR_XML_NO_ELEMENTS },
  152. // removed INVALID_TOKEN, replaced with specific errors below
  153. //    { HXR_XML_INVALID_TOKEN,     IDS_ERR_XML_INVALID_TOKEN },
  154.     { HXR_XML_UNCLOSED_TOKEN,     IDS_ERR_XML_UNCLOSED_TOKEN  },
  155.     { HXR_XML_PARTIAL_CHAR,     IDS_ERR_XML_PARTIAL_CHAR },
  156.     { HXR_XML_TAG_MISMATCH,     IDS_ERR_XML_TAG_MISMATCH },
  157. // use DUPATTRIBUTE instead
  158. //    { HXR_XML_DUPLICATE_ATTRIBUTE,     IDS_ERR_XML_DUPLICATE_ATTRIBUTE },
  159.     { HXR_XML_JUNK_AFTER_DOC_ELEMENT,     IDS_ERR_XML_JUNK_AFTER_DOC_ELEMENT },
  160.     { HXR_XML_PARAM_ENTITY_REF,     IDS_ERR_XML_PARAM_ENTITY_REF },
  161.     { HXR_XML_UNDEFINED_ENTITY,     IDS_ERR_XML_UNDEFINED_ENTITY },
  162.     { HXR_XML_RECURSIVE_ENTITY_REF,     IDS_ERR_XML_RECURSIVE_ENTITY_REF },
  163.     { HXR_XML_ASYNC_ENTITY,     IDS_ERR_XML_ASYNC_ENTITY },
  164.     { HXR_XML_BAD_CHAR_REF,     IDS_ERR_XML_BAD_CHAR_REF },
  165.     { HXR_XML_BINARY_ENTITY_REF,     IDS_ERR_XML_BINARY_ENTITY_REF },
  166.     { PNR_XML_ATTRIBUTE_EXTEHXAL_ENTITY_REF, IDS_ERR_XML_ATTRIBUTE_EXTERNAL_ENTITY_REF },
  167.     { HXR_XML_MISPLACED_XML_PI,     IDS_ERR_XML_MISPLACED_XML_PI },
  168.     { HXR_XML_UNKNOWN_ENCODING,     IDS_ERR_XML_UNKNOWN_ENCODING },
  169.     { HXR_XML_INCORRECT_ENCODING,     IDS_ERR_XML_INCORRECT_ENCODING },
  170.     { HXR_XML_UNCLOSED_CDATA_SECTION,     IDS_ERR_XML_UNCLOSED_CDATA_SECTION },
  171.     { PNR_XML_EXTEHXAL_ENTITY_HANDLING, IDS_ERR_XML_EXTERNAL_ENTITY_HANDLING },
  172.     { HXR_XML_NOT_STANDALONE,     IDS_ERR_XML_NOT_STANDALONE },
  173.     { HXR_XML_INVALID_NAME,     IDS_ERR_XML_INVALID_NAME },
  174.     { HXR_XML_INVALID_CHAR_IN_DOC,     IDS_ERR_XML_INVALID_CHAR_IN_DOC },
  175.     { HXR_XML_TWO_DASHES_NOT_ALLOWED_IN_COMMENT, IDS_ERR_XML_TWO_DASHES_NOT_ALLOWED_IN_COMMENT },
  176.     { HXR_XML_INVALID_DECL,     IDS_ERR_XML_INVALID_DECL },
  177.     { HXR_XML_INVALID_PI,     IDS_ERR_XML_INVALID_PI },
  178.     { HXR_XML_INVALID_PI_TARGET,     IDS_ERR_XML_INVALID_PI_TARGET },
  179.     { HXR_XML_INVALID_CDATA,     IDS_ERR_XML_INVALID_CDATA },
  180.     { HXR_XML_NO_CLOSING_GT,     IDS_ERR_XML_NO_CLOSING_GT },
  181.     { HXR_XML_INVALID_HEX_CHAR_REF,     IDS_ERR_XML_INVALID_HEX_CHAR_REF },
  182.     { HXR_XML_INVALID_CHAR_REF,     IDS_ERR_XML_INVALID_CHAR_REF },
  183.     { HXR_XML_INVALID_REF,     IDS_ERR_XML_INVALID_REF },
  184.     { HXR_XML_MISSING_EQUALS,     IDS_ERR_XML_MISSING_EQUALS },
  185. // use MISSINGQUOTE instead
  186. //    { HXR_XML_MISSING_QUOT_APOS,     IDS_ERR_XML_MISSING_QUOT_APOS },
  187.     { HXR_XML_MISSING_REQ_SPACE,     IDS_ERR_XML_MISSING_REQ_SPACE },
  188.     { HXR_XML_LT_NOT_ALLOWED,     IDS_ERR_XML_LT_NOT_ALLOWED },
  189.     { HXR_XML_EXPECTED_GT,     IDS_ERR_XML_EXPECTED_GT },
  190.     { HXR_XML_INVALID_GT_AFFT_2_RSQB_IN_CONTENT, IDS_ERR_XML_INVALID_GT_AFFT_2_RSQB_IN_CONTENT },
  191.     { HXR_XML_INVALID_COMMENT,     IDS_ERR_XML_INVALID_COMMENT }
  192. };
  193. CSmilXMLSyntaxErrorHandler::CSmilXMLSyntaxErrorHandler(IUnknown* pContext):
  194.     CSmilErrorHandler(pContext)
  195. {
  196. }
  197. CSmilXMLSyntaxErrorHandler::~CSmilXMLSyntaxErrorHandler()
  198. {
  199. }
  200. void
  201. CSmilXMLSyntaxErrorHandler::GetReportString(UINT32 ulErrorID,
  202.     char* pErrorString)
  203. {
  204.     UINT32 ulErrorStringID = XMLSyntaxErrorStringTable[0].m_ulErrorStringID;
  205.     for (int i = 0; 
  206. i < sizeof(XMLSyntaxErrorStringTable) / 
  207.     sizeof(XMLSyntaxErrorStringTable[0]); 
  208. ++i)
  209.     {
  210. if(XMLSyntaxErrorStringTable[i].m_ulErrorTag == ulErrorID)
  211. {
  212.     ulErrorStringID = XMLSyntaxErrorStringTable[i].m_ulErrorStringID;
  213.     break;
  214. }
  215.     }
  216.     if (GetErrorString(ulErrorStringID, pErrorString) != HXR_OK)
  217.     {
  218. strcpy(pErrorString, "Error Strings can not be loaded %d: %sn"); /* Flawfinder: ignore */
  219.     }
  220. }
  221. void
  222. CSmilXMLSyntaxErrorHandler::ReportError(UINT32 ulErrorID,
  223. const char* pErrorText,
  224. UINT32 ulLineNumber)
  225. {
  226.     UINT32 ulErrorStringID = XMLSyntaxErrorStringTable[0].m_ulErrorStringID;
  227.     for (int i = 0; 
  228. i < sizeof(XMLSyntaxErrorStringTable) / 
  229.     sizeof(XMLSyntaxErrorStringTable[0]); 
  230. ++i)
  231.     {
  232. if(XMLSyntaxErrorStringTable[i].m_ulErrorTag == ulErrorID)
  233. {
  234.     ulErrorStringID = XMLSyntaxErrorStringTable[i].m_ulErrorStringID;
  235.     break;
  236. }
  237.     }
  238.     char szErrorString[MAX_ERROR_STRING]; /* Flawfinder: ignore */
  239.     if(HXR_OK == GetErrorString(ulErrorStringID,
  240. szErrorString))
  241.     {
  242. CHXString errorText;
  243. // /Checking for NULL pErrorText fixes PR 97290:
  244. errorText.Format(szErrorString, ulLineNumber, NULL==pErrorText?"(unknown)":pErrorText);
  245. Report(errorText);
  246.     }
  247. }
  248. //  CSmilSMILSyntaxErrorHandler methods
  249. static const struct
  250. {
  251.     SMILErrorTag    m_ulErrorTag;
  252.     UINT32     m_ulErrorStringID;
  253. } SMILSyntaxErrorStringTable[] =
  254. {
  255.     { SMILErrorGeneralError,     IDS_ERR_SMIL_GENERALERROR },
  256.     { SMILErrorBadXML,     IDS_ERR_SMIL_BADXML },
  257.     { SMILErrorNotSMIL,     IDS_ERR_SMIL_NOTSMIL },
  258.     { SMILErrorDuplicateID,     IDS_ERR_SMIL_DUPLICATEID },
  259.     { SMILErrorNonexistentID,     IDS_ERR_SMIL_NONEXISTENTID },
  260.     { SMILErrorNoBodyTag,     IDS_ERR_SMIL_NOBODYTAG },
  261.     { SMILErrorNoBodyElements,     IDS_ERR_SMIL_NOBODYELEMENTS },
  262.     { SMILErrorUnrecognizedTag,     IDS_ERR_SMIL_UNRECOGNIZEDTAG },
  263.     { SMILErrorUnrecognizedAttribute,     IDS_ERR_SMIL_UNRECOGNIZEDATTRIBUTE },
  264.     { SMILErrorUnexpectedTag,     IDS_ERR_SMIL_UNEXPECTEDTAG },
  265.     { SMILErrorBadDuration,     IDS_ERR_SMIL_BADDURATION },
  266.     { SMILErrorBadAttribute,     IDS_ERR_SMIL_BADATTRIBUTE },
  267.     { SMILErrorBadFragment,     IDS_ERR_SMIL_BADFRAGMENT },
  268.     { SMILErrorRequiredAttributeMissing,    IDS_ERR_SMIL_REQUIREDATTRIBUTEMISSING },
  269.     { SMILErrorSyncAttributeMissing,     IDS_ERR_SMIL_SYNCATTRIBUTEOUTOFSCOPE },
  270.     { SMILErrorUnexpectedContent,     IDS_ERR_SMIL_UNEXPECTEDCONTENT },
  271.     { SMILErrorSMIL10Document,     IDS_ERR_SMIL_SMIL10DOCUMENT },
  272.     { SMILErrorIndefiniteNotSupported,     IDS_ERR_SMIL_INDEFINITENOTSUPPORTED },
  273.     { SMILErrorMetaDatatype,     IDS_ERR_SMIL_METADATATYPE },
  274.     { SMILErrorRootLayoutHeightWidthRequired,    IDS_ERR_SMIL_ROOTHEIGHTWIDTHREQUIRED },
  275.     { SMILErrorBadID,     IDS_ERR_SMIL_BADID },
  276.     { SMILErrorNoSources,     IDS_ERR_SMIL_NOSOURCES }
  277. };
  278. CSmilSMILSyntaxErrorHandler::CSmilSMILSyntaxErrorHandler(IUnknown* pContext):
  279.     CSmilErrorHandler(pContext)
  280. {
  281. }
  282. CSmilSMILSyntaxErrorHandler::~CSmilSMILSyntaxErrorHandler()
  283. {
  284. }
  285. void
  286. CSmilSMILSyntaxErrorHandler::GetReportString(SMILErrorTag tag,
  287.     char* pErrorString)
  288. {
  289.     UINT32 ulErrorStringID = SMILSyntaxErrorStringTable[0].m_ulErrorStringID;
  290.     for (int i = 0; 
  291. i < sizeof(SMILSyntaxErrorStringTable) / 
  292.     sizeof(SMILSyntaxErrorStringTable[0]); 
  293. ++i)
  294.     {
  295. if(SMILSyntaxErrorStringTable[i].m_ulErrorTag == tag)
  296. {
  297.     ulErrorStringID = SMILSyntaxErrorStringTable[i].m_ulErrorStringID;
  298.     break;
  299. }
  300.     }
  301.     
  302.     if (GetErrorString(ulErrorStringID, pErrorString) != HXR_OK)
  303.     {
  304. strcpy(pErrorString, "Error Strings can not be loaded %d: %sn"); /* Flawfinder: ignore */
  305.     }
  306. }
  307. void
  308. CSmilSMILSyntaxErrorHandler::ReportError(SMILErrorTag tag,
  309. const char* pErrorText,
  310. UINT32 ulLineNumber)
  311. {
  312.     UINT32 ulErrorStringID = SMILSyntaxErrorStringTable[0].m_ulErrorStringID;
  313.     for (int i = 0; 
  314. i < sizeof(SMILSyntaxErrorStringTable) / 
  315.     sizeof(SMILSyntaxErrorStringTable[0]); 
  316. ++i)
  317.     {
  318. if(SMILSyntaxErrorStringTable[i].m_ulErrorTag == tag)
  319. {
  320.     ulErrorStringID = SMILSyntaxErrorStringTable[i].m_ulErrorStringID;
  321.     break;
  322. }
  323.     }
  324.     char szErrorString[MAX_ERROR_STRING]; /* Flawfinder: ignore */
  325.     if(HXR_OK == GetErrorString(ulErrorStringID,
  326. szErrorString))
  327.     {
  328. CHXString errorText;
  329. errorText.Format(szErrorString, ulLineNumber, NULL==pErrorText?"(unknown)":pErrorText);
  330. Report(errorText);
  331.     }
  332. }