--- parser3/src/main/pa_exception.C 2001/01/30 13:07:31 1.2 +++ parser3/src/main/pa_exception.C 2001/10/19 12:43:30 1.19 @@ -1,29 +1,19 @@ -/* - $Id: pa_exception.C,v 1.2 2001/01/30 13:07:31 paf Exp $ -*/ +/** @file + Parser: exception class. -#include -#include + Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexander Petrosyan (http://design.ru/paf) -#include "pa_exception.h" -#include "pa_common.h" - -Exception::Exception()/* : - ftype(0), - fcode(0), - fproblem_source(0), - fcomment("")*/ { -} + $Id: pa_exception.C,v 1.19 2001/10/19 12:43:30 parser Exp $ +*/ -void Exception::die(char *acomment) { - // FIX: log(LOG_ERROR, acomment) - fprintf(stderr, "die: %s\n", acomment); - exit(1); -} +#include "pa_common.h" +#include "pa_exception.h" -void Exception::raise(const String *atype, const String *acode, +Exception::Exception(const String *atype, const String *acode, const String *aproblem_source, const char *comment_fmt, ...) { + //_asm int 3; ftype=atype; fcode=acode; fproblem_source=aproblem_source; @@ -35,6 +25,89 @@ void Exception::raise(const String *atyp va_end(args); } else fcomment[0]=0; +} + +#ifdef XML +void Exception::_throw(Pool& pool, const String *source, const XSLException& e) { + if(e.getURI().empty()) + _throw(0, 0, + source, + "%s (%s)", + pool.transcode_cstr(e.getMessage()), // message for exception + pool.transcode_cstr(e.getType()) // type of exception + ); + else + _throw(0, 0, + source, + "%s (%s). %s(%d:%d)'", + pool.transcode_cstr(e.getMessage()), // message for exception + pool.transcode_cstr(e.getType()), // type of exception + + pool.transcode_cstr(e.getURI()), // URI for the associated document, if any + e.getLineNumber(), // line number, or -1 if unknown + e.getColumnNumber() // column number, or -1 if unknown + ); +} + +void Exception::_throw(Pool& pool, const String *source, const SAXException& e) { + _throw(0, 0, + source, + "%s", + pool.transcode_cstr(XalanDOMString(e.getMessage())) // message for exception + ); +} +void Exception::_throw(Pool& pool, const String *source, const SAXParseException& e) { + _throw(0, 0, + source, + "%s. %s(%d:%d)", + pool.transcode_cstr(XalanDOMString(e.getMessage())), // message for exception + e.getSystemId()?pool.transcode_cstr(XalanDOMString(e.getSystemId())):"block", // file of exception + e.getLineNumber(), e.getColumnNumber() // line:col + ); +} + + +void Exception::_throw(Pool& pool, const String *source, const XMLException& e) { + _throw(0, 0, + source, + "%s (%s). %s(%d)'", + pool.transcode_cstr(XalanDOMString(e.getMessage())), // message for exception + pool.transcode_cstr(XalanDOMString((e.getType()))), // type of exception + + e.getSrcFile()?e.getSrcFile():"block", // file of exception + e.getSrcLine() // line number + //e.getCode() + ); +} - longjmp(mark, 1); +void Exception::_throw(Pool& pool, const String *source, const XalanDOMException& e) { + const char *s; + int code=(int)e.getExceptionCode(); + switch(code) { + case 1: s="INDEX_SIZE_ERR"; break; + case 2: s="DOMSTRING_SIZE_ERR"; break; + case 3: s="HIERARCHY_REQUEST_ERR"; break; + case 4: s="WRONG_DOCUMENT_ERR"; break; + case 5: s="INVALID_CHARACTER_ERR"; break; + case 6: s="NO_DATA_ALLOWED_ERR"; break; + case 7: s="NO_MODIFICATION_ALLOWED_ERR"; break; + case 8: s="NOT_FOUND_ERR"; break; + case 9: s="NOT_SUPPORTED_ERR"; break; + case 10: s="INUSE_ATTRIBUTE_ERR"; break; + case 11: s="INVALID_STATE_ERR"; break; + case 12: s="SYNTAX_ERR"; break; + case 13: s="INVALID_MODIFICATION_ERR"; break; + case 14: s="NAMESPACE_ERR"; break; + case 15: s="INVALID_ACCESS_ERR"; break; + case 201: s="UNKNOWN_ERR"; break; + case 202: s="TRANSCODING_ERR"; break; + default: s=""; break; + } + _throw(0, 0, + source, + "XalanDOMException %s (%d)", + s, // decoded code of exception + code // code of exception + ); } +#endif