(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.37 and 1.55

version 1.37, 2002/04/24 17:34:29 version 1.55, 2002/08/20 17:39:37
Line 1 
Line 1 
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,
   // The Open Group, Tivoli Systems
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 22 
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
   //                (carolann_graves@hp.com)
   //              Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include <cstdio> #include <cstdio>
 #include "Exception.h" #include "Exception.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) : _message(message)
 { {
   
 }  
   
 Exception::Exception(const char* message) : _message(message)  
 {  
   
 } }
  
 Exception::~Exception() Exception::~Exception()
 { {
   
 } }
  
 AssertionFailureException::AssertionFailureException(  const String& Exception::getMessage() const
     const char* file,  
     size_t line,  
     const String& message) : Exception(String())  
 { {
     char lineStr[32];      return _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 UnitializedHandle::MSG[] = "unitialized 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 CIMType::REFERENCE or CIMType::REFERENCE_ARRAY "  
     "in this context";  
  
 const char MissingReferenceClassName::MSG[] = "missing reference class name";  IndexOutOfBoundsException::IndexOutOfBoundsException()
       : Exception("index out of bounds")
 const char IllegalTypeTag::MSG[] = "illegal type tag";  {
   }
 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";  AlreadyExistsException::AlreadyExistsException(const String& message)
       : Exception("already exists: " + message)
   {
   }
  
 const char BadFormat::MSG[] = "bad format passed to Formatter::format()";  InvalidNameException::InvalidNameException(const String& name)
       : Exception("invalid CIM name: " + name)
   {
   }
  
 const char BadDateTimeFormat::MSG[] = "bad datetime format";  InvalidNamespaceNameException::InvalidNamespaceNameException(const String& name)
       : Exception("invalid CIM namespace name: " + name)
   {
   }
  
 const char IncompatibleTypes::MSG[] = "incompatible types";  UninitializedHandleException::UninitializedHandleException()
       : Exception("uninitialized handle")
   {
   }
  
 const char BadlyFormedCGIQueryString::MSG[] = "badly formed CGI query string";  UninitializedObjectException::UninitializedObjectException()
       : Exception("uninitialized object")
   {
   }
  
 const char IllformedObjectName::MSG[] = "illformed object name: ";  ExpectedReferenceValueException::ExpectedReferenceValueException()
       : Exception("Expected CIMValue object to be of type reference "
                       "in this context")
   {
   }
  
 const char DynamicLoadFailed::MSG[] = "load of dynamic library failed: ";  MissingReferenceClassNameException::MissingReferenceClassNameException()
       : Exception("missing reference class name")
   {
   }
  
 const char DynamicLookupFailed::MSG[] =  TypeMismatchException::TypeMismatchException()
     "lookup of symbol in dynamic library failed: ";      : Exception("type mismatch")
   {
   }
  
 const char CannotOpenDirectory::MSG[] = "cannot open directory: ";  CIMValueInvalidTypeException::CIMValueInvalidTypeException()
       : Exception("invalid CIMValue type")
   {
   }
  
 const char CorruptFile::MSG[] = "corrupt file: ";  DynamicCastFailedException::DynamicCastFailedException()
       : Exception("dynamic cast failed")
   {
   }
  
 const char BindFailed::MSG[] = "Bind failed: ";  InvalidDateTimeFormatException::InvalidDateTimeFormatException()
       : Exception("invalid datetime format")
   {
   }
  
 const char InvalidLocator::MSG[] = "Invalid locator: ";  IncompatibleTypesException::IncompatibleTypesException()
       : Exception("incompatible types")
   {
   }
  
 const char CannotCreateSocket::MSG[] = "Cannot create socket";  MalformedObjectNameException::MalformedObjectNameException(
       const String& objectName)
       : Exception("malformed object name: " + objectName)
   {
   }
  
 const char CannotConnect::MSG[] = "Cannot connect to: ";  BindFailedException::BindFailedException(const String& message)
       : Exception("Bind failed: " + message)
   {
   }
  
 const char UnexpectedFailure::MSG[] = "Unexpected failure";  InvalidLocatorException::InvalidLocatorException(const String& locator)
       : Exception("Invalid locator: " + locator)
   {
   }
  
 const char AlreadyConnected::MSG[] = "already connected";  CannotCreateSocketException::CannotCreateSocketException()
       : Exception("Cannot create socket")
   {
   }
  
 const char NotConnected::MSG[] = "not connected";  CannotConnectException::CannotConnectException(const String& locator)
       : Exception("Cannot connect to: " + locator)
   {
   }
  
 const char TimedOut::MSG[] = "timed out";  UnexpectedFailureException::UnexpectedFailureException()
       : Exception("Unexpected failure")
   {
   }
  
 const char ParseError::MSG[] = "parse error: ";  AlreadyConnectedException::AlreadyConnectedException()
       : Exception("already connected")
   {
   }
  
 const char MissingNullTerminator::MSG[] = "missing null terminator: ";  NotConnectedException::NotConnectedException()
       : Exception("not connected")
   {
   }
  
 const char SSL_Exception::MSG[] = "SSL Exception ";  ConnectionTimeoutException::ConnectionTimeoutException()
       : Exception("connection timed out")
   {
   }
  
 const char InvalidAuthHeader::MSG[] = "Invalid Authorization header";  SSLException::SSLException(const String& message)
       : Exception("SSL Exception: " + message)
   {
   }
  
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 208 
Line 176 
 // //
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
  
 //  
 // Creates a description without source file name and line number.  
 //  
 static String _makeCIMExceptionDescription(  
     CIMStatusCode code,  
     const String& message)  
 {  
     String tmp;  
     tmp.append(CIMStatusCodeToString(code));  
     tmp.append(": \"");  
     tmp.append(message);  
     tmp.append("\"");  
     return tmp;  
 }  
   
 //  
 // Creates a description with source file name and line number.  
 //  
 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(CIMStatusCodeToString(code));  
     tmp.append(": \"");  
     tmp.append(message);  
     tmp.append("\"");  
     return tmp;  
 }  
   
 CIMException::CIMException( CIMException::CIMException(
     CIMStatusCode code,     CIMStatusCode code,
     const String& message,      const String& message)
     const char* file,  
     Uint32 line)  
     :     :
     Exception(message),      Exception(message)
     _code(code),  
     _file(file),  
     _line(line)  
 { {
       _rep = new CIMExceptionRep();
       _rep->code = code;
       _rep->file = "";
       _rep->line = 0;
 } }
  
 CIMException::CIMException(const CIMException& cimException) CIMException::CIMException(const CIMException& cimException)
     : Exception(cimException.getMessage()),      : Exception(cimException.getMessage())
     _code(cimException._code),  
     _file(cimException._file),  
     _line(cimException._line)  
 { {
       _rep = new CIMExceptionRep();
       _rep->code = cimException._rep->code;
       _rep->file = cimException._rep->file;
       _rep->line = cimException._rep->line;
 } }
  
 //  CIMException& CIMException::operator=(const CIMException & cimException)
 // Returns a description string fit for human consumption  
 //  
 String CIMException::getDescription() const  
 { {
 #ifdef DEBUG_CIMEXCEPTION      _message = cimException._message;
     return getTraceDescription();      _rep->code = cimException._rep->code;
 #else      _rep->file = cimException._rep->file;
     return _makeCIMExceptionDescription(_code, getMessage());      _rep->line = cimException._rep->line;
 #endif      return *this;
 } }
  
 //  CIMException::~CIMException()
 // Returns a description string with filename and line number information  
 // specifically for tracing.  
 //  
 String CIMException::getTraceDescription() const  
 { {
     String traceDescription =      delete _rep;
         _makeCIMExceptionDescription(_code, getMessage(), _file, _line);  
   
     return traceDescription;  
 } }
  
 void ThrowUnitializedHandle()  CIMStatusCode CIMException::getCode() const
 { {
     throw UnitializedHandle();      return _rep->code;
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.37  
changed lines
  Added in v.1.55

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2