(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.6.2.1 and 1.25

version 1.6.2.1, 2004/12/16 20:58:59 version 1.25, 2008/12/01 17:49:55
Line 1 
Line 1 
 //%2004////////////////////////////////////////////////////////////////////////  //%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.
 //  //
 // 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
 // of this software and associated documentation files (the "Software"), to  // copy of this software and associated documentation files (the "Software"),
 // deal in the Software without restriction, including without limitation the  // to deal in the Software without restriction, including without limitation
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  // the rights to use, copy, modify, merge, publish, distribute, sublicense,
 // sell copies of the Software, and to permit persons to whom the Software is  // and/or sell copies of the Software, and to permit persons to whom the
 // furnished to do so, subject to the following conditions:  // Software is furnished to do so, subject to the following conditions:
 //  //
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  // The above copyright notice and this permission notice shall be included
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  // in all copies or substantial portions of the Software.
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  //
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 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 58 
Line 62 
     _languageId = languageId;     _languageId = languageId;
 } }
  
 LocaleContainer::~LocaleContainer(void)  LocaleContainer::~LocaleContainer()
 { {
 } }
  
Line 66 
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 99 
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 111 
Line 118 
     *this = *p;     *this = *p;
 } }
  
 ProviderIdContainer::ProviderIdContainer(const CIMInstance & module, const CIMInstance & provider,  ProviderIdContainer::ProviderIdContainer(
         Boolean remoteNameSpace, String remoteInfo)      const CIMInstance& module,
       const CIMInstance& provider,
       Boolean isRemoteNameSpace,
       const String& remoteInfo)
       : _module(module),
       _provider(provider),
       _isRemoteNameSpace(isRemoteNameSpace),
       _remoteInfo(remoteInfo)
 { {
     _module = module;  
     _provider = provider;  
     _remoteNameSpace=remoteNameSpace;  
     _remoteInfo=remoteInfo;  
 } }
  
 ProviderIdContainer::~ProviderIdContainer(void)  ProviderIdContainer::~ProviderIdContainer()
 { {
 } }
  
Line 129 
Line 139 
 { {
     if (this == &container)     if (this == &container)
     {     {
         return (*this);          return *this;
     }     }
  
     _module = container._module;     _module = container._module;
     _provider = container._provider;     _provider = container._provider;
     _remoteNameSpace = container._remoteNameSpace;      _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;
   }
   
   CIMInstance ProviderIdContainer::getProvider() const
   {
       return _provider;
   }
   
   Boolean ProviderIdContainer::isRemoteNameSpace() const
   {
       return _isRemoteNameSpace;
   }
   
   String ProviderIdContainer::getRemoteInfo() const
   {
       return _remoteInfo;
   }
   
   String ProviderIdContainer::getProvMgrPath() const
   {
       return _provMgrPath;
   }
   
   void ProviderIdContainer::setProvMgrPath(String &path)
   {
       _provMgrPath = path;
   }
   
   //
   // CachedClassDefinitionContainer
   //
   
   const String CachedClassDefinitionContainer::NAME =
       "CachedClassDefinitionContainer";
   
   CachedClassDefinitionContainer::CachedClassDefinitionContainer(
       const OperationContext::Container& container)
   {
       const CachedClassDefinitionContainer* p =
           dynamic_cast<const CachedClassDefinitionContainer*>(&container);
   
       if (p == 0)
       {
           throw DynamicCastFailedException();
       }
   
       *this = *p;
   }
   
   
   CachedClassDefinitionContainer::CachedClassDefinitionContainer(
       const CIMConstClass& cimClass)
       : _cimClass(cimClass)
 { {
     return(_module);  
 } }
  
 CIMInstance ProviderIdContainer::getProvider(void) const  CachedClassDefinitionContainer::~CachedClassDefinitionContainer()
 { {
     return(_provider);  
 } }
  
 Boolean ProviderIdContainer::isRemoteNameSpace(void) const  CachedClassDefinitionContainer& CachedClassDefinitionContainer::operator=(
       const CachedClassDefinitionContainer& container)
 { {
     return(_remoteNameSpace);      if (this == &container)
       {
           return *this;
       }
   
       _cimClass = container._cimClass;
   
       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 NormalizerContextContainer::getName() const
   {
       return NAME;
   }
   
   OperationContext::Container* NormalizerContextContainer::clone() const
   {
       return new NormalizerContextContainer(*this);
   }
   
   void NormalizerContextContainer::destroy()
   {
       delete this;
 } }
  
 const String & ProviderIdContainer::getRemoteInfo(void) const  NormalizerContext* NormalizerContextContainer::getContext() const
 { {
     return(_remoteInfo);      return normalizerContext.get();
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.6.2.1  
changed lines
  Added in v.1.25

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2