(file) Return to Exception.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/Exception.cpp between version 1.61.2.1 and 1.62

version 1.61.2.1, 2002/10/28 15:43:21 version 1.62, 2002/10/15 22:04:50
Line 23 
Line 23 
 // //
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By: Nag Boranna (nagaraja_boranna@hp.com)  // Modified By: Nag Boranna, Hewlett-Packard Company (nagaraja_boranna@hp.com)
 //  //              Jenny Yu, Hewlett-Packard Company (jenny_yu@hp.com)
 // Modified By: Jenny Yu (jenny_yu@am.exch.hp.com)  
 //              Carol Ann Krug Graves, Hewlett-Packard Company //              Carol Ann Krug Graves, Hewlett-Packard Company
 //                (carolann_graves@hp.com) //                (carolann_graves@hp.com)
   //              Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)
   //              Sushma Fernandes , Hewlett-Packard Company
   //                (sushma_fernandes@hp.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include <cstdio> #include <cstdio>
 #include "Exception.h" #include "Exception.h"
   #include <Pegasus/Common/ExceptionRep.h>
   #include <Pegasus/Common/CIMExceptionRep.h>
 #include "Tracer.h" #include "Tracer.h"
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 Exception::Exception(const String& message) : _message(message)  Exception::Exception(const String& message)
 { {
       _rep = new ExceptionRep();
       _rep->message = message;
 } }
  
 Exception::Exception(const char* message) : _message(message)  Exception::Exception(const Exception& exception)
 { {
       _rep = new ExceptionRep();
       _rep->message = exception._rep->message;
   }
  
   Exception::Exception()
   {
 } }
  
 Exception::~Exception() Exception::~Exception()
 { {
       delete _rep;
 } }
  
 AssertionFailureException::AssertionFailureException(  const String& Exception::getMessage() const
     const char* file,  
     size_t line,  
     const String& message) : Exception(String())  
 { {
     char lineStr[32];      return _rep->message;
     sprintf(lineStr, "%u", line);  
   
     _message = file;  
     _message.append("(");  
     _message.append(lineStr);  
     _message.append("): ");  
     _message.append(message);  
   
     // ATTN-RK-P3-20020408: Should define a "test" trace component  
     PEG_TRACE_STRING(TRC_SERVER, Tracer::LEVEL2, _message);  
 } }
  
 const char OutOfBounds::MSG[] = "out of bounds";  
   
 const char AlreadyExists::MSG[] = "already exists: ";  
   
 const char NullPointer::MSG[] = "null pointer";  
   
 const char UninitializedHandle::MSG[] = "uninitialized handle";  
   
 const char IllegalName::MSG[] = "illegal CIM name";  
   
 const char InvalidPropertyOverride::MSG[] = "invalid property override: ";  
   
 const char InvalidMethodOverride::MSG[] = "invalid method override: ";  
   
 const char UndeclaredQualifier::MSG[] = "undeclared qualifier: ";  
   
 const char BadQualifierScope::MSG[] = "qualifier invalid in this scope: ";  
   
 const char BadQualifierOverride::MSG[] = "qualifier not overridable: ";  
   
 const char BadQualifierType::MSG[] =  
     "CIMType of qualifier different than its declaration: ";  
   
 const char NullType::MSG[] = "type is null";  
   
 const char AddedReferenceToClass::MSG[] =  
     "attempted to add reference to a non-association class: ";  
   
 const char ClassAlreadyResolved::MSG[] =  
     "attempt to resolve a class that is already resolved: ";  
   
 const char ClassNotResolved::MSG[] =  
     "class is not yet resolved: ";  
   
 const char InstanceAlreadyResolved::MSG[] =  
     "attempted to resolve a instance that is already resolved";  
   
 const char InstantiatedAbstractClass::MSG[] =  
     "attempted to instantiate an abstract class ";  
   
 const char NoSuchProperty::MSG[] = "no such property: ";  
   
 const char TruncatedCharacter::MSG[] =  
     "truncated character during conversion from Char16 to char";  
   
 const char ExpectedReferenceValue::MSG[] =  
     "Expected CIMValue object to be of type reference "  
     "in this context";  
   
 const char MissingReferenceClassName::MSG[] = "missing reference class name";  
  
 const char IllegalTypeTag::MSG[] = "illegal type tag";  IndexOutOfBoundsException::IndexOutOfBoundsException()
       : Exception("index out of bounds")
 const char TypeMismatch::MSG[] = "type mismatch";  {
   }
 const char CIMValueIsNull::MSG[] = "null CIMValue accessed";  
   
 const char CIMValueInvalidType::MSG[] = "invalid CIMValue type";  
   
 const char DynamicCastFailed::MSG[] = "dynamic cast failed";  
   
 const char NoSuchFile::MSG[] = "no such file: ";  
   
 const char FileNotReadable::MSG[] = "file not readable: ";  
   
 const char CannotBindToAddress::MSG[] = "cannot bind to address: ";  
   
 const char NoSuchDirectory::MSG[] = "no such directory: ";  
   
 const char ChangeDirectoryFailed::MSG[] = "cannot change directory: ";  
   
 const char CannotCreateDirectory::MSG[] = "cannot create directory: ";  
   
 const char NoSuchNameSpace::MSG[] = "no such namespace: ";  
   
 const char CannotOpenFile::MSG[] = "cannot open file: ";  
   
 const char NotImplemented::MSG[] = "not implemented: ";  
   
 const char CannotRemoveDirectory::MSG[] = "cannot remove directory: ";  
   
 const char CannotRemoveFile::MSG[] = "cannot remove file: ";  
   
 const char CannotRenameFile::MSG[] = "cannot rename file: ";  
   
 const char StackUnderflow::MSG[] = "stack underflow";  
   
 const char StackOverflow::MSG[] = "stack overflow";  
   
 const char QueueUnderflow::MSG[] = "queue Underflow";  
   
 const char BadFormat::MSG[] = "bad format passed to Formatter::format()";  
   
 const char BadDateTimeFormat::MSG[] = "bad datetime format";  
   
 const char IncompatibleTypes::MSG[] = "incompatible types";  
   
 const char BadlyFormedCGIQueryString::MSG[] = "badly formed CGI query string";  
   
 const char IllformedObjectName::MSG[] = "illformed object name: ";  
   
 const char DynamicLoadFailed::MSG[] = "load of dynamic library failed: ";  
  
 const char DynamicLookupFailed::MSG[] =  AlreadyExistsException::AlreadyExistsException(const String& message)
     "lookup of symbol in dynamic library failed: ";      : Exception("already exists: " + message)
   {
   }
  
 const char CannotOpenDirectory::MSG[] = "cannot open directory: ";  InvalidNameException::InvalidNameException(const String& name)
       : Exception("invalid CIM name: " + name)
   {
   }
  
 const char CorruptFile::MSG[] = "corrupt file: ";  InvalidNamespaceNameException::InvalidNamespaceNameException(const String& name)
       : Exception("invalid CIM namespace name: " + name)
   {
   }
  
 const char BindFailed::MSG[] = "Bind failed: ";  UninitializedObjectException::UninitializedObjectException()
       : Exception("uninitialized object")
   {
   }
  
 const char InvalidLocator::MSG[] = "Invalid locator: ";  TypeMismatchException::TypeMismatchException()
       : Exception("type mismatch")
   {
   }
  
 const char CannotCreateSocket::MSG[] = "Cannot create socket";  DynamicCastFailedException::DynamicCastFailedException()
       : Exception("dynamic cast failed")
   {
   }
  
 const char CannotConnect::MSG[] = "Cannot connect to: ";  InvalidDateTimeFormatException::InvalidDateTimeFormatException()
       : Exception("invalid datetime format")
   {
   }
  
 const char UnexpectedFailure::MSG[] = "Unexpected failure";  MalformedObjectNameException::MalformedObjectNameException(
       const String& objectName)
       : Exception("malformed object name: " + objectName)
   {
   }
  
 const char AlreadyConnected::MSG[] = "already connected";  BindFailedException::BindFailedException(const String& message)
       : Exception("Bind failed: " + message)
   {
   }
  
 const char NotConnected::MSG[] = "not connected";  InvalidLocatorException::InvalidLocatorException(const String& locator)
       : Exception("Invalid locator: " + locator)
   {
   }
  
 const char TimedOut::MSG[] = "timed out";  CannotCreateSocketException::CannotCreateSocketException()
       : Exception("Cannot create socket")
   {
   }
  
 const char ParseError::MSG[] = "parse error: ";  CannotConnectException::CannotConnectException(const String& locator)
       : Exception("Cannot connect to: " + locator)
   {
   }
  
 const char MissingNullTerminator::MSG[] = "missing null terminator: ";  AlreadyConnectedException::AlreadyConnectedException()
       : Exception("already connected")
   {
   }
  
 const char SSL_Exception::MSG[] = "SSL Exception ";  NotConnectedException::NotConnectedException()
       : Exception("not connected")
   {
   }
  
 const char InvalidAuthHeader::MSG[] = "Invalid Authorization header";  ConnectionTimeoutException::ConnectionTimeoutException()
       : Exception("connection timed out")
   {
   }
  
 const char UnauthorizedAccess::MSG[] = "Unauthorized access";  SSLException::SSLException(const String& message)
       : Exception("SSL Exception: " + message)
   {
   }
  
   DateTimeOutOfRangeException::DateTimeOutOfRangeException(const String& message)
       : Exception("DateTime is out of range : " + message)
   {
   }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
 // //
Line 213 
Line 165 
 // //
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
  
 //  CIMException::CIMException(
 // Creates a description without source file name and line number.  
 //  
 static String _makeCIMExceptionDescription(  
     CIMStatusCode code,     CIMStatusCode code,
     const String& message)     const String& message)
       : Exception()
 { {
     String tmp;      CIMExceptionRep * tmp = new CIMExceptionRep ();
     tmp.append(CIMStatusCodeToString(code));      tmp->message = message;
     if (message != String::EMPTY)      tmp->code = code;
     {      tmp->file = "";
         tmp.append(": \"");      tmp->line = 0;
         tmp.append(message);      _rep = tmp;
         tmp.append("\"");  
     }  
     return tmp;  
 } }
  
 //  CIMException::CIMException(const CIMException & cimException)
 // Creates a description with source file name and line number.      : Exception()
 //  
 static String _makeCIMExceptionDescription(  
     CIMStatusCode code,  
     const String& message,  
     const char* file,  
     Uint32 line)  
 {  
     String tmp = file;  
     tmp.append("(");  
     char buffer[32];  
     sprintf(buffer, "%d", line);  
     tmp.append(buffer);  
     tmp.append("): ");  
     tmp.append(_makeCIMExceptionDescription(code, message));  
     return tmp;  
 }  
   
 CIMException::CIMException(  
     CIMStatusCode code,  
     const String& message,  
     const char* file,  
     Uint32 line)  
     :  
     Exception(message),  
     _code(code),  
     _file(file),  
     _line(line)  
 { {
       CIMExceptionRep * tmp = new CIMExceptionRep ();
       CIMExceptionRep * rep;
       rep = reinterpret_cast<CIMExceptionRep*>(cimException._rep);
       tmp->message = rep->message;
       tmp->code = rep->code;
       tmp->file = rep->file;
       tmp->line = rep->line;
       _rep = tmp;
 } }
  
 //  CIMException& CIMException::operator=(const CIMException & cimException)
 // Returns a description string fit for human consumption  
 //  
 String CIMException::getDescription() const  
 { {
 #ifdef DEBUG_CIMEXCEPTION      CIMExceptionRep* left;
     return getTraceDescription();      CIMExceptionRep* right;
 #else      left = reinterpret_cast<CIMExceptionRep*>(this->_rep);
     return _makeCIMExceptionDescription(_code, getMessage());      right = reinterpret_cast<CIMExceptionRep*>(cimException._rep);
 #endif      left->message = right->message;
       left->code = right->code;
       left->file = right->file;
       left->line = right->line;
       return *this;
 } }
  
 //  CIMException::~CIMException()
 // Returns a description string with filename and line number information  
 // specifically for tracing.  
 //  
 String CIMException::getTraceDescription() const  
 { {
     String traceDescription =  
         _makeCIMExceptionDescription(_code, getMessage(), _file, _line);  
   
     return traceDescription;  
 } }
  
 void ThrowUninitializedHandle()  CIMStatusCode CIMException::getCode() const
 { {
     throw UninitializedHandle();      CIMExceptionRep* rep;
       rep = reinterpret_cast<CIMExceptionRep*>(_rep);
       return rep->code;
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.61.2.1  
changed lines
  Added in v.1.62

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2