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

Diff for /pegasus/src/Pegasus/Common/CIMParameterRep.cpp between version 1.38 and 1.51

version 1.38, 2005/11/07 23:15:59 version 1.51, 2008/12/02 09:00:43
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"),
   // to deal in the Software without restriction, including without limitation
   // the rights to use, copy, modify, merge, publish, distribute, sublicense,
   // and/or 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
   // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
   // 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.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy  //////////////////////////////////////////////////////////////////////////
 // of this software and associated documentation files (the "Software"), to  
 // deal in the Software without restriction, including without limitation the  
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  
 // 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 SOFTWARE IS PROVIDED  
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  
 // HOLDERS BE LIABLE FOR ANY 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: Mike Brasher (mbrasher@bmc.com)  
 //  
 // Modified By: Carol Ann Krug Graves, Hewlett-Packard Company  
 //                  (carolann_graves@hp.com)  
 //              David Dillard, VERITAS Software Corp.  
 //                  (david.dillard@veritas.com)  
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 40 
Line 33 
 #include <cstdio> #include <cstdio>
 #include "CIMParameter.h" #include "CIMParameter.h"
 #include "CIMParameterRep.h" #include "CIMParameterRep.h"
 #include "Indentor.h"  
 #include "CIMName.h" #include "CIMName.h"
 #include "CIMScope.h" #include "CIMScope.h"
 #include "XmlWriter.h"  
 #include "StrLit.h" #include "StrLit.h"
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 CIMParameterRep::CIMParameterRep()  
 {  
 }  
   
 CIMParameterRep::CIMParameterRep(const CIMParameterRep& x) : CIMParameterRep::CIMParameterRep(const CIMParameterRep& x) :
     Sharable(),  
     _name(x._name),     _name(x._name),
     _type(x._type),     _type(x._type),
     _isArray(x._isArray),     _isArray(x._isArray),
     _arraySize(x._arraySize),     _arraySize(x._arraySize),
     _referenceClassName(x._referenceClassName)      _referenceClassName(x._referenceClassName),
       _refCounter(1),
       _ownerCount(0)
 { {
     x._qualifiers.cloneTo(_qualifiers);     x._qualifiers.cloneTo(_qualifiers);
       // Set the CIM name tag.
       _nameTag = generateCIMNameTag(_name);
 } }
  
 CIMParameterRep::CIMParameterRep( CIMParameterRep::CIMParameterRep(
Line 71 
Line 61 
     const CIMName& referenceClassName)     const CIMName& referenceClassName)
     : _name(name), _type(type),     : _name(name), _type(type),
     _isArray(isArray), _arraySize(arraySize),     _isArray(isArray), _arraySize(arraySize),
     _referenceClassName(referenceClassName)      _referenceClassName(referenceClassName),
       _refCounter(1),
       _ownerCount(0)
 { {
     // ensure name is not null     // ensure name is not null
     if(name.isNull())     if(name.isNull())
     {     {
         throw UninitializedObjectException();         throw UninitializedObjectException();
     }     }
       // Set the CIM name tag.
       _nameTag = generateCIMNameTag(_name);
  
     if((_arraySize != 0) && !_isArray)     if((_arraySize != 0) && !_isArray)
     {     {
Line 100 
Line 94 
     }     }
 } }
  
 CIMParameterRep::~CIMParameterRep()  
 {  
 }  
   
 void CIMParameterRep::setName(const CIMName& name) void CIMParameterRep::setName(const CIMName& name)
 { {
     // ensure name is not null     // ensure name is not null
Line 111 
Line 101 
     {     {
         throw UninitializedObjectException();         throw UninitializedObjectException();
     }     }
       if (_ownerCount != 0 && _name != name)
     _name = name;  
 }  
   
 void CIMParameterRep::removeQualifier(Uint32 index)  
 { {
     if (index >= _qualifiers.getCount())          MessageLoaderParms parms(
         throw IndexOutOfBoundsException();              "Common.CIMParameterRep.CONTAINED_PARAMETER_NAMECHANGEDEXCEPTION",
               "Attempted to change the name of a parameter"
     _qualifiers.removeQualifier (index);                  " already in a container.");
           throw Exception(parms);
       }
       _name = name;
       // Set the CIM name tag.
       _nameTag = generateCIMNameTag(_name);
 } }
  
 void CIMParameterRep::resolve( void CIMParameterRep::resolve(
Line 142 
Line 133 
         true);         true);
 } }
  
 void CIMParameterRep::toXml(Buffer& out) const  Boolean CIMParameterRep::identical(const CIMParameterRep* x) const
 {  
     if (_isArray)  
     {  
         if (_type == CIMTYPE_REFERENCE)  
         {  
             out << STRLIT("<PARAMETER.REFARRAY NAME=\"") << _name;  
             out.append('"');  
   
             if (!_referenceClassName.isNull())  
             {  
                 out << STRLIT(" REFERENCECLASS=\"");  
                 out << _referenceClassName.getString();  
                 out.append('"');  
             }  
   
             if (_arraySize)  
             {  
                 char buffer[32];  
                 int n = sprintf(buffer, "%d", _arraySize);  
                 out << STRLIT(" ARRAYSIZE=\"");  
                 out.append(buffer, n);  
                 out.append('"');  
             }  
   
             out << STRLIT(">\n");  
   
             _qualifiers.toXml(out);  
   
             out << STRLIT("</PARAMETER.REFARRAY>\n");  
         }  
         else  
         {  
             out << STRLIT("<PARAMETER.ARRAY");  
             out << STRLIT(" NAME=\"") << _name;  
             out << STRLIT("\" ");  
             out << STRLIT(" TYPE=\"") << cimTypeToString(_type);  
             out.append('"');  
   
             if (_arraySize)  
             {  
                 char buffer[32];  
                 sprintf(buffer, "%d", _arraySize);  
                 out << STRLIT(" ARRAYSIZE=\"") << buffer;  
                 out.append('"');  
             }  
   
             out << STRLIT(">\n");  
   
             _qualifiers.toXml(out);  
   
             out << STRLIT("</PARAMETER.ARRAY>\n");  
         }  
     }  
     else if (_type == CIMTYPE_REFERENCE)  
     {  
         out << STRLIT("<PARAMETER.REFERENCE");  
         out << STRLIT(" NAME=\"") << _name;  
         out.append('"');  
   
         if (!_referenceClassName.isNull())  
         {  
             out << STRLIT(" REFERENCECLASS=\"");  
             out << _referenceClassName.getString();  
             out.append('"');  
         }  
         out << STRLIT(">\n");  
   
         _qualifiers.toXml(out);  
   
         out << STRLIT("</PARAMETER.REFERENCE>\n");  
     }  
     else  
     {  
         out << STRLIT("<PARAMETER");  
         out << STRLIT(" NAME=\"") << _name;  
         out << STRLIT("\" ");  
         out << STRLIT(" TYPE=\"") << cimTypeToString(_type);  
         out << STRLIT("\">\n");  
   
         _qualifiers.toXml(out);  
   
         out << STRLIT("</PARAMETER>\n");  
     }  
 }  
   
 /** toMof - puts the Mof representation of teh Parameter object to  
     the output parameter array  
     The BNF for this conversion is:  
     parameterList    =  parameter *( "," parameter )  
   
         parameter    =  [ qualifierList ] (dataType|objectRef) parameterName  
                                 [ array ]  
   
         parameterName=  IDENTIFIER  
   
         array        =  "[" [positiveDecimalValue] "]"  
   
     Format on a single line.  
     */  
 void CIMParameterRep::toMof(Buffer& out) const  
 {  
     // Output the qualifiers for the parameter  
     _qualifiers.toMof(out);  
   
     if (_qualifiers.getCount())  
         out.append(' ');  
   
     // Output the data type and name  
     out << cimTypeToString(_type);  
     out.append(' ');  
     out <<  _name;  
   
     if (_isArray)  
     {     {
         //Output the array indicator "[ [arraysize] ]"      // If the pointers are the same, the objects must be identical
         if (_arraySize)      if (this == x)
         {         {
             char buffer[32];          return true;
             int n = sprintf(buffer, "[%d]", _arraySize);  
             out.append(buffer, n);  
         }  
         else  
             out << STRLIT("[]");  
     }  
 } }
  
   
 Boolean CIMParameterRep::identical(const CIMParameterRep* x) const  
 {  
     if (!_name.equal (x->_name))     if (!_name.equal (x->_name))
         return false;         return false;
  


Legend:
Removed from v.1.38  
changed lines
  Added in v.1.51

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2