(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.23 and 1.63

version 1.23, 2001/12/13 14:53:56 version 1.63, 2003/03/13 23:09:55
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:  //              Carol Ann Krug Graves, Hewlett-Packard Company
   //                (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"
  
 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, "%d", line);  
   
     _message = file;  
     _message.append("(");  
     _message.append(lineStr);  
     _message.append("): ");  
     _message.append(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 instantiated 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";  
   
 const char IllegalTypeTag::MSG[] = "illegal type tag";  
   
 const char TypeMismatch::MSG[] = "type mismatch";  
   
 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";  IndexOutOfBoundsException::IndexOutOfBoundsException()
       : Exception("index out of bounds")
   {
   }
  
 const char IllformedObjectName::MSG[] = "illformed object name: ";  AlreadyExistsException::AlreadyExistsException(const String& message)
       : Exception("already exists: " + message)
   {
   }
  
 const char DynamicLoadFailed::MSG[] = "load of dynamic library failed: ";  InvalidNameException::InvalidNameException(const String& name)
       : Exception("invalid CIM name: " + name)
   {
   }
  
 const char DynamicLookupFailed::MSG[] =  InvalidNamespaceNameException::InvalidNamespaceNameException(const String& name)
     "lookup of symbol in dynamic library failed: ";      : Exception("invalid CIM namespace name: " + name)
   {
   }
  
 const char CannotOpenDirectory::MSG[] = "cannot open directory: ";  UninitializedObjectException::UninitializedObjectException()
       : Exception("uninitialized object")
   {
   }
  
 const char CorruptFile::MSG[] = "corrupt file: ";  TypeMismatchException::TypeMismatchException()
       : Exception("type mismatch")
   {
   }
  
 const char BindFailed::MSG[] = "Bind failed: ";  DynamicCastFailedException::DynamicCastFailedException()
       : Exception("dynamic cast failed")
   {
   }
  
 const char InvalidLocator::MSG[] = "Invalid locator: ";  InvalidDateTimeFormatException::InvalidDateTimeFormatException()
       : Exception("invalid datetime format")
   {
   }
  
 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 FailedToConnect::MSG[] = "failed to connect";  CannotCreateSocketException::CannotCreateSocketException()
       : Exception("Cannot create socket")
   {
   }
  
 const char AlreadyConnected::MSG[] = "already connected";  CannotConnectException::CannotConnectException(const String& message)
       : Exception(message)
   {
   }
  
 const char NotConnected::MSG[] = "not connected";  AlreadyConnectedException::AlreadyConnectedException()
       : Exception("already connected")
   {
   }
  
 const char TimedOut::MSG[] = "timed out";  NotConnectedException::NotConnectedException()
       : Exception("not connected")
   {
   }
  
 const char ParseError::MSG[] = "parse error: ";  ConnectionTimeoutException::ConnectionTimeoutException()
       : Exception("connection timed out")
   {
   }
  
 const char MissingNullTerminator::MSG[] = "missing null terminator: ";  SSLException::SSLException(const String& message)
       : Exception("SSL Exception: " + message)
   {
   }
  
 const char SSL_Exception::MSG[] = "SSL Exception ";  DateTimeOutOfRangeException::DateTimeOutOfRangeException(const String& message)
       : Exception("DateTime is out of range : " + message)
   {
   }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
 // //
Line 197 
Line 165 
 // //
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
  
 static String _makeCIMExceptionMessage(  CIMException::CIMException(
     CIMStatusCode code,     CIMStatusCode code,
     const char* file,      const String& message)
     Uint32 line,      : Exception()
     const String& extraMessage)  {
 {      CIMExceptionRep * tmp = new CIMExceptionRep ();
     String tmp = file;      tmp->message = message;
     tmp.append("(");      tmp->code = code;
     char buffer[32];      tmp->file = "";
     sprintf(buffer, "%d", line);      tmp->line = 0;
     tmp.append(buffer);      _rep = tmp;
     tmp.append("): ");  
   
     tmp.append(CIMStatusCodeToString(code));  
     tmp.append(": \"");  
     tmp.append(extraMessage);  
     tmp.append("\"");  
     return tmp;  
 } }
  
 CIMException::CIMException(  CIMException::CIMException(const CIMException & cimException)
     CIMStatusCode code,      : Exception()
     const char* file,  
     Uint32 line,  
     const String& extraMessage)  
     : Exception(_makeCIMExceptionMessage(code, file, line, extraMessage)),  
     _code(code)  
 { {
       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)
   {
       CIMExceptionRep* left;
       CIMExceptionRep* right;
       left = reinterpret_cast<CIMExceptionRep*>(this->_rep);
       right = reinterpret_cast<CIMExceptionRep*>(cimException._rep);
       left->message = right->message;
       left->code = right->code;
       left->file = right->file;
       left->line = right->line;
       return *this;
   }
   
   CIMException::~CIMException()
   {
 } }
  
 void ThrowUnitializedHandle()  CIMStatusCode CIMException::getCode() const
 { {
     throw UnitializedHandle();      CIMExceptionRep* rep;
       rep = reinterpret_cast<CIMExceptionRep*>(_rep);
       return rep->code;
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.23  
changed lines
  Added in v.1.63

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2