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

Diff for /pegasus/src/Pegasus/Common/OperationContextInternal.cpp between version 1.14.16.2 and 1.27

version 1.14.16.2, 2006/02/10 16:09:38 version 1.27, 2010/09/02 06:37:56
Line 1 
Line 1 
 //%2006////////////////////////////////////////////////////////////////////////  //%LICENSE////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development  // Licensed to The Open Group (TOG) under one or more contributor license
 // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.  // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;  // this work for additional information regarding copyright ownership.
 // IBM Corp.; EMC Corporation, The Open Group.  // Each contributor licenses this file to you under the OpenPegasus Open
 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;  // Source License; you may not use this file except in compliance with the
 // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.  // License.
 // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;  //
 // EMC Corporation; VERITAS Software Corporation; The Open Group.  // Permission is hereby granted, free of charge, to any person obtaining a
 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;  // copy of this software and associated documentation files (the "Software"),
 // EMC Corporation; Symantec Corporation; The Open Group.  // to deal in the Software without restriction, including without limitation
 //  // the rights to use, copy, modify, merge, publish, distribute, sublicense,
 // Permission is hereby granted, free of charge, to any person obtaining a copy  // and/or sell copies of the Software, and to permit persons to whom the
 // of this software and associated documentation files (the "Software"), to  // Software is furnished to do so, subject to the following conditions:
 // deal in the Software without restriction, including without limitation the  //
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  // The above copyright notice and this permission notice shall be included
 // sell copies of the Software, and to permit persons to whom the Software is  // in all copies or substantial portions of the Software.
 // furnished to do so, subject to the following conditions:  //
 //  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  
 // //
 //==============================================================================  //////////////////////////////////////////////////////////////////////////
 //  
 // Author: Chip Vincent (cvincent@us.ibm.com)  
 //  
 // Modified By:  
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "OperationContextInternal.h" #include "OperationContextInternal.h"
  
   #if defined(PEGASUS_PLATFORM_LINUX_GENERIC_GNU) || \
       defined(PEGASUS_PLATFORM_DARWIN_PPC_GNU) || \
       defined(PEGASUS_PLATFORM_DARWIN_IX86_GNU)
   # define PEGASUS_INCLUDE_SUPERCLASS_INITIALIZER
   #endif
   
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 // //
Line 62 
Line 62 
     _languageId = languageId;     _languageId = languageId;
 } }
  
 LocaleContainer::~LocaleContainer(void)  LocaleContainer::~LocaleContainer()
 { {
 } }
  
Line 70 
Line 70 
 { {
     if(this == &container)     if(this == &container)
     {     {
         return(*this);          return *this;
     }     }
  
     _languageId = container._languageId;     _languageId = container._languageId;
  
     return(*this);      return *this;
 } }
  
 String LocaleContainer::getName(void) const  String LocaleContainer::getName() const
 { {
     return(NAME);      return NAME;
 } }
  
 OperationContext::Container * LocaleContainer::clone(void) const  OperationContext::Container* LocaleContainer::clone() const
 { {
     return(new LocaleContainer(*this));      return new LocaleContainer(*this);
 } }
  
 void LocaleContainer::destroy(void)  void LocaleContainer::destroy()
 { {
     delete this;     delete this;
 } }
  
 String LocaleContainer::getLanguageId(void) const  String LocaleContainer::getLanguageId() const
 { {
     return(_languageId);      return _languageId;
 } }
  
 // //
Line 104 
Line 104 
  
 const String ProviderIdContainer::NAME = "ProviderIdContainer"; const String ProviderIdContainer::NAME = "ProviderIdContainer";
  
 ProviderIdContainer::ProviderIdContainer(const OperationContext::Container & container)  ProviderIdContainer::ProviderIdContainer(
       const OperationContext::Container& container)
 { {
     const ProviderIdContainer * p = dynamic_cast<const ProviderIdContainer *>(&container);      const ProviderIdContainer* p =
           dynamic_cast<const ProviderIdContainer*>(&container);
  
     if(p == 0)     if(p == 0)
     {     {
Line 128 
Line 130 
 { {
 } }
  
 ProviderIdContainer::~ProviderIdContainer(void)  ProviderIdContainer::~ProviderIdContainer()
 { {
 } }
  
 ProviderIdContainer & ProviderIdContainer::operator=(const ProviderIdContainer & container)  ProviderIdContainer& ProviderIdContainer::operator=(
       const ProviderIdContainer& container)
 { {
     if(this == &container)     if(this == &container)
     {     {
         return(*this);          return *this;
     }     }
  
     _module = container._module;     _module = container._module;
     _provider = container._provider;     _provider = container._provider;
     _isRemoteNameSpace = container._isRemoteNameSpace;     _isRemoteNameSpace = container._isRemoteNameSpace;
     _remoteInfo = container._remoteInfo;     _remoteInfo = container._remoteInfo;
       _provMgrPath = container._provMgrPath;
  
     return(*this);      return *this;
 } }
  
 String ProviderIdContainer::getName(void) const  String ProviderIdContainer::getName() const
 { {
     return(NAME);      return NAME;
 } }
  
 OperationContext::Container * ProviderIdContainer::clone(void) const  OperationContext::Container* ProviderIdContainer::clone() const
 { {
     return(new ProviderIdContainer(*this));      return new ProviderIdContainer(*this);
 } }
  
 void ProviderIdContainer::destroy(void)  void ProviderIdContainer::destroy()
 { {
     delete this;     delete this;
 } }
  
 CIMInstance ProviderIdContainer::getModule(void) const  CIMInstance ProviderIdContainer::getModule() const
 { {
     return(_module);      return _module;
 } }
  
 CIMInstance ProviderIdContainer::getProvider(void) const  CIMInstance ProviderIdContainer::getProvider() const
 { {
     return(_provider);      return _provider;
 } }
  
 Boolean ProviderIdContainer::isRemoteNameSpace(void) const  Boolean ProviderIdContainer::isRemoteNameSpace() const
 { {
     return(_isRemoteNameSpace);      return _isRemoteNameSpace;
 } }
  
 String ProviderIdContainer::getRemoteInfo(void) const  String ProviderIdContainer::getRemoteInfo() const
 { {
     return(_remoteInfo);      return _remoteInfo;
   }
   
   String ProviderIdContainer::getProvMgrPath() const
   {
       return _provMgrPath;
   }
   
   void ProviderIdContainer::setProvMgrPath(const String &path)
   {
       _provMgrPath = path;
 } }
  
 // //
 // CachedClassDefinitionContainer // CachedClassDefinitionContainer
 // //
  
 const String CachedClassDefinitionContainer::NAME = "CachedClassDefinitionContainer";  const String CachedClassDefinitionContainer::NAME =
       "CachedClassDefinitionContainer";
  
 CachedClassDefinitionContainer::CachedClassDefinitionContainer(const OperationContext::Container & container)  CachedClassDefinitionContainer::CachedClassDefinitionContainer(
       const OperationContext::Container& container)
 { {
     const CachedClassDefinitionContainer * p = dynamic_cast<const CachedClassDefinitionContainer *>(&container);      const CachedClassDefinitionContainer* p =
           dynamic_cast<const CachedClassDefinitionContainer*>(&container);
  
     if(p == 0)     if(p == 0)
     {     {
Line 201 
Line 218 
 } }
  
  
 CachedClassDefinitionContainer::CachedClassDefinitionContainer(const CIMClass & cimClass)  CachedClassDefinitionContainer::CachedClassDefinitionContainer(
       const CIMConstClass& cimClass)
     : _cimClass(cimClass)     : _cimClass(cimClass)
 { {
 } }
  
 CachedClassDefinitionContainer::~CachedClassDefinitionContainer(void)  CachedClassDefinitionContainer::~CachedClassDefinitionContainer()
 { {
 } }
  
 CachedClassDefinitionContainer & CachedClassDefinitionContainer::operator=(const CachedClassDefinitionContainer & container)  CachedClassDefinitionContainer& CachedClassDefinitionContainer::operator=(
       const CachedClassDefinitionContainer& container)
 { {
     if(this == &container)     if(this == &container)
     {     {
         return(*this);          return *this;
     }     }
  
     _cimClass = container._cimClass;     _cimClass = container._cimClass;
  
     return(*this);      return *this;
 } }
  
 String CachedClassDefinitionContainer::getName(void) const  String CachedClassDefinitionContainer::getName() const
 { {
     return(NAME);      return NAME;
 } }
  
 OperationContext::Container * CachedClassDefinitionContainer::clone(void) const  OperationContext::Container* CachedClassDefinitionContainer::clone() const
 { {
     return(new CachedClassDefinitionContainer(*this));      return new CachedClassDefinitionContainer(*this);
 } }
  
 void CachedClassDefinitionContainer::destroy(void)  void CachedClassDefinitionContainer::destroy()
 { {
     delete this;     delete this;
 } }
  
 CIMClass CachedClassDefinitionContainer::getClass(void) const  CIMConstClass CachedClassDefinitionContainer::getClass() const
 { {
     return(_cimClass);      return _cimClass;
 } }
  
   
 #ifdef PEGASUS_EMBEDDED_INSTANCE_SUPPORT  
 // Only needed if normalization is enabled  
 #ifdef PEGASUS_ENABLE_OBJECT_NORMALIZATION  
 // //
 // NormalizerContextContainer // NormalizerContextContainer
 // //
  
 const String NormalizerContextContainer::NAME = "NormalizerContextContainer"; const String NormalizerContextContainer::NAME = "NormalizerContextContainer";
  
 NormalizerContextContainer::NormalizerContextContainer(const OperationContext::Container & container)  NormalizerContextContainer::NormalizerContextContainer(
       const OperationContext::Container& container)
 { {
     const NormalizerContextContainer * p =     const NormalizerContextContainer * p =
       dynamic_cast<const NormalizerContextContainer *>(&container);       dynamic_cast<const NormalizerContextContainer *>(&container);
Line 262 
Line 278 
         throw DynamicCastFailedException();         throw DynamicCastFailedException();
     }     }
  
     *this = *const_cast<NormalizerContextContainer *>(p);      *this = *p;
 } }
  
  
 NormalizerContextContainer::NormalizerContextContainer(AutoPtr<NormalizerContext> & context)  NormalizerContextContainer::NormalizerContextContainer(
     : _context(context)      AutoPtr<NormalizerContext>& context) : normalizerContext(context.get())
   {
     context.release();
   }
   
   NormalizerContextContainer::NormalizerContextContainer(
       const NormalizerContextContainer& container)
   #ifdef PEGASUS_INCLUDE_SUPERCLASS_INITIALIZER
       : OperationContext::Container()
   #endif
 { {
       if (this != &container)
       {
           normalizerContext.reset(container.normalizerContext->clone());
       }
 } }
  
 NormalizerContextContainer::~NormalizerContextContainer(void)  NormalizerContextContainer::~NormalizerContextContainer()
 { {
 } }
  
 NormalizerContextContainer & NormalizerContextContainer::operator=(NormalizerContextContainer & container)  NormalizerContextContainer& NormalizerContextContainer::operator=(
       const NormalizerContextContainer& container)
 { {
     if(this == &container)     if(this == &container)
     {     {
         return(*this);          return *this;
     }     }
  
     _context = container._context;      normalizerContext.reset(container.normalizerContext->clone());
  
     return(*this);      return *this;
 } }
  
 String NormalizerContextContainer::getName(void) const  String NormalizerContextContainer::getName() const
 { {
     return(NAME);      return NAME;
 } }
  
 OperationContext::Container * NormalizerContextContainer::clone(void) const  OperationContext::Container* NormalizerContextContainer::clone() const
 { {
     return(new NormalizerContextContainer(*this));      return new NormalizerContextContainer(*this);
 } }
  
 void NormalizerContextContainer::destroy(void)  void NormalizerContextContainer::destroy()
 { {
     delete this;     delete this;
 } }
  
 NormalizerContext * NormalizerContextContainer::getContext(void) const  NormalizerContext* NormalizerContextContainer::getContext() const
 { {
     return(_context.get());      return normalizerContext.get();
 } }
 #endif // PEGASUS_ENABLE_OBJECT_NORMALIZATION  
 #endif // PEGASUS_EMBEDDED_INSTANCE_SUPPORT  
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.14.16.2  
changed lines
  Added in v.1.27

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2