(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.22.2.1 and 1.71

version 1.22.2.1, 2001/07/30 05:23:07 version 1.71, 2004/06/29 11:42:44
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2003////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002  BMC Software, Hewlett-Packard Development
   // Company, L. P., IBM Corp., The Open Group, Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L. P.;
   // IBM Corp.; EMC Corporation, The Open Group.
 // //
 // 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 25 
 // //
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By:  // Modified By: Nag Boranna, Hewlett-Packard Company (nagaraja_boranna@hp.com)
   //              Jenny Yu, Hewlett-Packard Company (jenny_yu@hp.com)
   //              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)
   //              Amit K Arora, IBM (amita@in.ibm.com) for bug# 1593
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #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;
       _rep->contentLanguages = ContentLanguages::EMPTY;  // l10n
   }
  
   Exception::Exception(const Exception& exception)
   {
       _rep = new ExceptionRep();
       _rep->message = exception._rep->message;
       _rep->contentLanguages = exception._rep->contentLanguages;    // l10n
 } }
  
 Exception::Exception(const char* message) : _message(message)  // l10n
   Exception::Exception(const MessageLoaderParms& msgParms)
 { {
       _rep = new ExceptionRep();
       _rep->message = MessageLoader::getMessage(
           const_cast<MessageLoaderParms &>(msgParms));
       // Must be after MessageLoader::getMessage call
       _rep->contentLanguages = msgParms.contentlanguages;
   }
  
   Exception::Exception()
   {
       _rep = NULL;
 } }
  
 Exception::~Exception() Exception::~Exception()
 { {
       delete _rep;
   }
  
   const String& Exception::getMessage() const
   {
       return _rep->message;
 } }
  
 AssertionFailureException::AssertionFailureException(  // l10n
     const char* file,  const ContentLanguages& Exception::getContentLanguages() const
     size_t line,  
     const String& message) : Exception(String())  
 { {
     char lineStr[32];          return _rep->contentLanguages;
     sprintf(lineStr, "%d", line);  }
  
     _message = file;  // l10n
     _message.append("(");  void Exception::setContentLanguages(const ContentLanguages& langs)
     _message.append(lineStr);  {
     _message.append("): ");          _rep->contentLanguages = langs;
     _message.append(message);  
 } }
  
 const char OutOfBounds::MSG[] = "out of bounds";  /*
   IndexOutOfBoundsException::IndexOutOfBoundsException()
       : Exception("index out of bounds")
   {
   }
   */
  
 const char AlreadyExists::MSG[] = "already exists: ";  IndexOutOfBoundsException::IndexOutOfBoundsException()
       : Exception(MessageLoaderParms("Common.Exception.INDEX_OUT_OF_BOUNDS_EXCEPTION","index out of bounds"))
   {
   }
  
 const char NullPointer::MSG[] = "null pointer";  /*
   AlreadyExistsException::AlreadyExistsException(const String& message)
       : Exception("already exists: " + message)
   {
   }
   */
   
   AlreadyExistsException::AlreadyExistsException(const String& message)
       : Exception(MessageLoaderParms("Common.Exception.ALREADY_EXISTS_EXCEPTION",
                                                                   "already exists: $0",
                                                                    message))
   {
   }
   
   AlreadyExistsException::AlreadyExistsException(MessageLoaderParms& msgParms)
       : Exception(MessageLoaderParms("Common.Exception.ALREADY_EXISTS_EXCEPTION",
                                                                   "already exists: "))
   {
           _rep->message.append(MessageLoader::getMessage(msgParms));
   }
   
   /*
   InvalidNameException::InvalidNameException(const String& name)
       : Exception("invalid CIM name: " + name)
   {
   }
   */
   
   InvalidNameException::InvalidNameException(const String& message)
       : Exception(MessageLoaderParms("Common.Exception.INVALID_NAME_EXCEPTION",
                                                                   "invalid CIM name: $0",
                                                                    message))
   {
   }
   
   InvalidNameException::InvalidNameException(MessageLoaderParms& msgParms)
       : Exception(MessageLoaderParms("Common.Exception.INVALID_NAME_EXCEPTION",
                                                                   "invalid CIM name: "))
   {
           _rep->message.append(MessageLoader::getMessage(msgParms));
   }
  
 const char UnitializedHandle::MSG[] = "unitialized handle";  /*
   InvalidNamespaceNameException::InvalidNamespaceNameException(const String& name)
       : Exception("invalid CIM namespace name: " + name)
   {
   }
   */
  
 const char IllegalName::MSG[] = "illegal CIM name";  
  
 const char InvalidPropertyOverride::MSG[] = "invalid property override: ";  InvalidNamespaceNameException::InvalidNamespaceNameException(const String& name)
       : Exception(MessageLoaderParms("Common.Exception.INVALID_NAMESACE_NAME_EXCEPTION",
                                                                   "invalid CIM namespace name: $0",
                                                                    name))
   {
   }
  
 const char InvalidMethodOverride::MSG[] = "invalid method override: ";  InvalidNamespaceNameException::InvalidNamespaceNameException(MessageLoaderParms& msgParms)
       : Exception(MessageLoaderParms("Common.Exception.INVALID_NAMESPACE_NAME_EXCEPTION",
                                                                   "invalid CIM namespace name: "))
   {
           _rep->message.append(MessageLoader::getMessage(msgParms));
   }
  
 const char UndeclaredQualifier::MSG[] = "undeclared qualifier: ";  /*
   UninitializedObjectException::UninitializedObjectException()
       : Exception("uninitialized object")
   {
   }
   */
  
 const char BadQualifierScope::MSG[] = "qualifier invalid in this scope: ";  UninitializedObjectException::UninitializedObjectException()
       : Exception(MessageLoaderParms("Common.Exception.UNINITIALIZED_OBJECT_EXCEPTION",
                                                                   "uninitialized object"))
   {
   }
  
 const char BadQualifierOverride::MSG[] = "qualifier not overridable: ";  /*
   TypeMismatchException::TypeMismatchException()
       : Exception("type mismatch")
   {
   }
   */
  
 const char BadQualifierType::MSG[] =  TypeMismatchException::TypeMismatchException()
     "CIMType of qualifier different than its declaration: ";      : Exception(MessageLoaderParms("Common.Exception.TYPE_MISMATCH_EXCEPTION",
                                                                   "type mismatch"))
   {
   }
  
 const char NullType::MSG[] = "type is null";  TypeMismatchException::TypeMismatchException(const String& message)
       : Exception(MessageLoaderParms("Common.Exception.TYPE_MISMATCH_EXCEPTION",
                                                                   "type mismatch: $0",message))
   {
  
 const char AddedReferenceToClass::MSG[] =  }
     "attempted to add reference to a non-association class: ";  
  
 const char ClassAlreadyResolved::MSG[] =  TypeMismatchException::TypeMismatchException(MessageLoaderParms& msgParms)
     "attempt to resolve a class that is already resolved: ";      : Exception(MessageLoaderParms("Common.Exception.TYPE_MISMATCH_EXCEPTION",
                                                                   "type mismatch: "))
   {
       _rep->message.append(MessageLoader::getMessage(msgParms));
   }
  
 const char ClassNotResolved::MSG[] =  /*
     "class is not yet resolved: ";  DynamicCastFailedException::DynamicCastFailedException()
       : Exception("dynamic cast failed")
   {
   }
   */
  
 const char InstanceAlreadyResolved::MSG[] =  DynamicCastFailedException::DynamicCastFailedException()
     "attempted to resolve a instance that is already resolved";      : Exception(MessageLoaderParms("Common.Exception.DYNAMIC_CAST_FAILED_EXCEPTION",
                                                                   "dynamic cast failed"))
   {
   }
  
 const char InstantiatedAbstractClass::MSG[] =  /*
     "attempted to instantiated an abstract class";  InvalidDateTimeFormatException::InvalidDateTimeFormatException()
       : Exception("invalid datetime format")
   {
   }
   */
  
 const char NoSuchProperty::MSG[] = "no such property: ";  InvalidDateTimeFormatException::InvalidDateTimeFormatException()
       : Exception(MessageLoaderParms("Common.Exception.INVALID_DATETIME_FORMAT_EXCEPTION",
                                                                   "invalid datetime format"))
   {
   }
  
 const char TruncatedCharacter::MSG[] =  /*
     "truncated character during conversion from Char16 to char";  MalformedObjectNameException::MalformedObjectNameException(
       const String& objectName)
       : Exception("malformed object name: " + objectName)
   {
   }
   */
  
 const char ExpectedReferenceValue::MSG[] =  MalformedObjectNameException::MalformedObjectNameException(const String& message)
     "Expected CIMValue object to be CIMType::REFERENCE or CIMType::REFERENCE_ARRAY "      : Exception(MessageLoaderParms("Common.Exception.MALFORMED_OBJECT_NAME_EXCEPTION",
     "in this context";                                                                  "malformed object name: $0",
                                                                    message))
   {
   }
  
 const char MissingReferenceClassName::MSG[] = "missing reference class name";  MalformedObjectNameException::MalformedObjectNameException(MessageLoaderParms& msgParms)
       : Exception(MessageLoaderParms("Common.Exception.MALFORMED_OBJECT_NAME_EXCEPTION",
                                                                   "malformed object name: "))
   {
           _rep->message.append(MessageLoader::getMessage(msgParms));
   }
  
 const char IllegalTypeTag::MSG[] = "illegal type tag";  /*
   BindFailedException::BindFailedException(const String& message)
       : Exception("Bind failed: " + message)
   {
   }
   */
  
 const char TypeMismatch::MSG[] = "type mismatch";  BindFailedException::BindFailedException(const String& message)
       : Exception(MessageLoaderParms("Common.Exception.BIND_FAILED_EXCEPTION",
                                                                   "Bind failed: $0",
                                                                    message))
   {
   }
  
 const char NoSuchFile::MSG[] = "no such file: ";  BindFailedException::BindFailedException(MessageLoaderParms& msgParms)
       : Exception(MessageLoaderParms("Common.Exception.BIND_FAILED_EXCEPTION",
                                                                   "Bind failed: "))
   {
           _rep->message.append(MessageLoader::getMessage(msgParms));
   }
  
 const char CannotBindToAddress::MSG[] = "cannot bind to address: ";  /*
   InvalidLocatorException::InvalidLocatorException(const String& locator)
       : Exception("Invalid locator: " + locator)
   {
   }
   */
  
 const char NoSuchDirectory::MSG[] = "no such directory: ";  InvalidLocatorException::InvalidLocatorException(const String& message)
       : Exception(MessageLoaderParms("Common.Exception.INVALID_LOCATOR_EXCEPTION",
                                                                   "Invalid locator: $0",
                                                                    message))
   {
   }
  
 const char ChangeDirectoryFailed::MSG[] = "cannot change directory: ";  InvalidLocatorException::InvalidLocatorException(MessageLoaderParms& msgParms)
       : Exception(MessageLoaderParms("Common.Exception.INVALID_LOCATOR_EXCEPTION",
                                                                   "Invalid locator: "))
   {
           _rep->message.append(MessageLoader::getMessage(msgParms));
   }
  
 const char CannotCreateDirectory::MSG[] = "cannot create directory: ";  /*
   CannotCreateSocketException::CannotCreateSocketException()
       : Exception("Cannot create socket")
   {
   }
   */
  
 const char NoSuchNameSpace::MSG[] = "no such namespace: ";  CannotCreateSocketException::CannotCreateSocketException()
       : Exception(MessageLoaderParms("Common.Exception.CANNOT_CREATE_SOCKET_EXCEPTION",
                                                                   "Cannot create socket"))
   {
   }
  
 const char CannotOpenFile::MSG[] = "cannot open file: ";  
  
 const char NotImplemented::MSG[] = "not implemented: ";  CannotConnectException::CannotConnectException(const String& message)//???
       : Exception(message)
   {
   }
  
 const char CannotRemoveDirectory::MSG[] = "cannot remove directory: ";  
  
 const char CannotRemoveFile::MSG[] = "cannot remove file: ";  CannotConnectException::CannotConnectException(MessageLoaderParms& msgParms)
       : Exception(msgParms)
   {
   }
  
 const char CannotRenameFile::MSG[] = "cannot rename file: ";  /*
   AlreadyConnectedException::AlreadyConnectedException()
       : Exception("already connected")
   {
   }
   */
  
 const char StackUnderflow::MSG[] = "stack Underflow";  AlreadyConnectedException::AlreadyConnectedException()
       : Exception(MessageLoaderParms("Common.Exception.ALREADY_CONNECTED_EXCEPTION",
                                                                   "already connected"))
   {
   }
  
 const char QueueUnderflow::MSG[] = "queue Underflow";  /*
   NotConnectedException::NotConnectedException()
       : Exception("not connected")
   {
   }
   */
  
 const char BadFormat::MSG[] = "bad format passed to Formatter::format()";  NotConnectedException::NotConnectedException()
       : Exception(MessageLoaderParms("Common.Exception.NOT_CONNECTED_EXCEPTION",
                                                                   "not connected"))
   {
   }
  
 const char BadDateTimeFormat::MSG[] = "bad datetime format";  /*
   ConnectionTimeoutException::ConnectionTimeoutException()
       : Exception("connection timed out")
   {
   }
   */
  
 const char IncompatibleTypes::MSG[] = "incompatible types";  ConnectionTimeoutException::ConnectionTimeoutException()
       : Exception(MessageLoaderParms("Common.Exception.CONNECTION_TIMEOUT_EXCEPTION",
                                                                   "connection timed out"))
   {
   }
  
 const char BadlyFormedCGIQueryString::MSG[] = "badly formed CGI query string";  /*
   SSLException::SSLException(const String& message)
       : Exception("SSL Exception: " + message)
   {
   }
   */
  
 const char IllformedObjectName::MSG[] = "illformed object name: ";  SSLException::SSLException(const String& message)
       : Exception(MessageLoaderParms("Common.Exception.SSL_EXCEPTION",
                                                                   "SSL Exception: $0" ,
                                                                    message))
   {
   }
  
 const char DynamicLoadFailed::MSG[] = "load of dynamic library failed: ";  SSLException::SSLException(MessageLoaderParms& msgParms)
       : Exception(MessageLoaderParms("Common.Exception.SSL_EXCEPTION",
                                                                   "SSL Exception: " ))
   {
           _rep->message.append(MessageLoader::getMessage(msgParms));
   }
  
 const char DynamicLookupFailed::MSG[] =  /*
     "lookup of symbol in dynamic library failed: ";  DateTimeOutOfRangeException::DateTimeOutOfRangeException(const String& message)
       : Exception("DateTime is out of range : " + message)
   {
   }
   */
  
 const char CannotOpenDirectory::MSG[] = "cannot open directory: ";  DateTimeOutOfRangeException::DateTimeOutOfRangeException(const String& message)
       : Exception(MessageLoaderParms("Common.Exception.DATETIME_OUT_OF_RANGE_EXCEPTION",
                                                                   "DateTime is out of range : $0" ,
                                                                    message))
   {
   }
  
 const char CorruptFile::MSG[] = "corrupt file: ";  DateTimeOutOfRangeException::DateTimeOutOfRangeException(MessageLoaderParms& msgParms)
       : Exception(MessageLoaderParms("Common.Exception.DATETIME_OUT_OF_RANGE_EXCEPTION",
                                                                   "DateTime is out of range : " ))
   {
           _rep->message.append(MessageLoader::getMessage(msgParms));
   }
  
 const char BindFailed::MSG[] = "Bind failed: ";  
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
 // //
Line 169 
Line 414 
 // //
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
  
 static String _makeCIMExceptionMessage(  // l10n - note - use this when you have an exception with no
   // detail message, or one with an untranslated detail message
   // The pegasus message associated with code will be translated.
   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);      tmp->contentLanguages = ContentLanguages::EMPTY;
     tmp.append("): ");      tmp->cimMessage = String::EMPTY;
       _rep = tmp;
     tmp.append(CIMStatusCodeToString(code));  
     tmp.append(": \"");  
     tmp.append(extraMessage);  
     tmp.append("\"");  
     return tmp;  
 } }
  
   // l10n - note use this when you have an exception with a translated
   // detail message
   // l10n
 CIMException::CIMException( CIMException::CIMException(
     CIMStatusCode code,     CIMStatusCode code,
     const char* file,      const MessageLoaderParms& msgParms)
     Uint32 line,      : Exception()
     const String& extraMessage)  {
     : Exception(_makeCIMExceptionMessage(code, file, line, extraMessage)),      CIMExceptionRep * tmp = new CIMExceptionRep ();
     _code(code)      tmp->message = MessageLoader::getMessage(
           const_cast<MessageLoaderParms &>(msgParms));
       // Must be after MessageLoader::getMessage call
       tmp->contentLanguages = msgParms.contentlanguages;
       tmp->cimMessage = String::EMPTY;
       tmp->code = code;
       tmp->file = "";
       tmp->line = 0;
       _rep = tmp;
   }
   
   CIMException::CIMException(const CIMException & cimException)
       : Exception()
 { {
       CIMExceptionRep * tmp = new CIMExceptionRep ();
       CIMExceptionRep * rep;
       rep = reinterpret_cast<CIMExceptionRep*>(cimException._rep);
       tmp->message = rep->message;
       tmp->contentLanguages = rep->contentLanguages;  // l10n
       tmp->cimMessage = rep->cimMessage;  // l10n
       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->contentLanguages = right->contentLanguages;  // l10n
       left->cimMessage = right->cimMessage;  // l10n
       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.22.2.1  
changed lines
  Added in v.1.71

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2