(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 and 1.27

version 1.14, 2005/02/10 02:40:44 version 1.27, 2010/09/02 06:37:56
Line 1 
Line 1 
 //%2005////////////////////////////////////////////////////////////////////////  //%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
 //  // copy of this software and associated documentation files (the "Software"),
 // Permission is hereby granted, free of charge, to any person obtaining a copy  // to deal in the Software without restriction, including without limitation
 // of this software and associated documentation files (the "Software"), to  // the rights to use, copy, modify, merge, publish, distribute, sublicense,
 // deal in the Software without restriction, including without limitation the  // and/or sell copies of the Software, and to permit persons to whom the
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  // Software is furnished to do so, subject to the following conditions:
 // sell copies of the Software, and to permit persons to whom the Software is  //
 // furnished to do so, subject to the following conditions:  // The above copyright notice and this permission notice shall be included
 //  // in all copies or substantial portions of the Software.
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  //
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  // 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 60 
Line 62 
     _languageId = languageId;     _languageId = languageId;
 } }
  
 LocaleContainer::~LocaleContainer(void)  LocaleContainer::~LocaleContainer()
 { {
 } }
  
Line 68 
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 102 
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 126 
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 199 
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() const
   {
       return NAME;
   }
   
   OperationContext::Container* CachedClassDefinitionContainer::clone() const
   {
       return new CachedClassDefinitionContainer(*this);
   }
   
   void CachedClassDefinitionContainer::destroy()
   {
       delete this;
   }
   
   CIMConstClass CachedClassDefinitionContainer::getClass() const
   {
       return _cimClass;
   }
   
   //
   // NormalizerContextContainer
   //
   
   const String NormalizerContextContainer::NAME = "NormalizerContextContainer";
   
   NormalizerContextContainer::NormalizerContextContainer(
       const OperationContext::Container& container)
   {
       const NormalizerContextContainer* p =
           dynamic_cast<const NormalizerContextContainer*>(&container);
   
       if (p == 0)
       {
           throw DynamicCastFailedException();
       }
   
       *this = *p;
   }
   
   
   NormalizerContextContainer::NormalizerContextContainer(
       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()
   {
   }
   
   NormalizerContextContainer& NormalizerContextContainer::operator=(
       const NormalizerContextContainer& container)
   {
       if (this == &container)
       {
           return *this;
       }
   
       normalizerContext.reset(container.normalizerContext->clone());
   
       return *this;
 } }
  
 String CachedClassDefinitionContainer::getName(void) const  String NormalizerContextContainer::getName() const
 { {
     return(NAME);      return NAME;
 } }
  
 OperationContext::Container * CachedClassDefinitionContainer::clone(void) const  OperationContext::Container* NormalizerContextContainer::clone() const
 { {
     return(new CachedClassDefinitionContainer(*this));      return new NormalizerContextContainer(*this);
 } }
  
 void CachedClassDefinitionContainer::destroy(void)  void NormalizerContextContainer::destroy()
 { {
     delete this;     delete this;
 } }
  
 CIMClass CachedClassDefinitionContainer::getClass(void) const  NormalizerContext* NormalizerContextContainer::getContext() const
 { {
     return(_cimClass);      return normalizerContext.get();
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2