(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.30 and 1.45

version 1.30, 2004/04/14 22:18:56 version 1.45, 2008/02/29 18:55:06
Line 1 
Line 1 
 //%2003////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002  BMC Software, Hewlett-Packard Development  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // Company, L. P., IBM Corp., The Open Group, Tivoli Systems.  // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
 // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L. P.; // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L. P.;
 // IBM Corp.; EMC Corporation, The Open Group. // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; Symantec 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 23 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Mike Brasher (mbrasher@bmc.com)  
 //  
 // Modified By: Carol Ann Krug Graves, Hewlett-Packard Company  
 //                (carolann_graves@hp.com)  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #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 "XmlWriter.h"
   #include "StrLit.h"
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
   CIMParameterRep::CIMParameterRep(const CIMParameterRep& x) :
       Sharable(),
       _name(x._name),
       _type(x._type),
       _isArray(x._isArray),
       _arraySize(x._arraySize),
       _referenceClassName(x._referenceClassName),
       _ownerCount(0)
   {
       x._qualifiers.cloneTo(_qualifiers);
       // Set the CIM name tag.
       _nameTag = generateCIMNameTag(_name);
   }
   
 CIMParameterRep::CIMParameterRep( CIMParameterRep::CIMParameterRep(
     const CIMName& name,     const CIMName& name,
     CIMType type,     CIMType type,
Line 49 
Line 64 
     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),
       _ownerCount(0)
   {
       // ensure name is not null
       if (name.isNull())
       {
           throw UninitializedObjectException();
       }
       // Set the CIM name tag.
       _nameTag = generateCIMNameTag(_name);
   
       if ((_arraySize != 0) && !_isArray)
 { {
     if (_arraySize && !_isArray)  
         throw TypeMismatchException();         throw TypeMismatchException();
       }
  
     if (!referenceClassName.isNull())     if (!referenceClassName.isNull())
     {     {
Line 63 
Line 89 
     }     }
     else     else
     {     {
         // ATTN: revisit this later!  (Make consistent with CIMPropertyRep)  
 #if 0  
         if (_type == CIMTYPE_REFERENCE)         if (_type == CIMTYPE_REFERENCE)
           {
             throw TypeMismatchException();             throw TypeMismatchException();
 #endif          }
     }     }
 } }
  
 CIMParameterRep::~CIMParameterRep() CIMParameterRep::~CIMParameterRep()
 { {
   
 } }
  
 void CIMParameterRep::setName(const CIMName& name) void CIMParameterRep::setName(const CIMName& name)
 { {
       // ensure name is not null
       if (name.isNull())
       {
           throw UninitializedObjectException();
       }
       if (_ownerCount != 0 && _name != name)
       {
           MessageLoaderParms parms(
               "Common.CIMParameterRep.CONTAINED_PARAMETER_NAMECHANGEDEXCEPTION",
               "Attempted to change the name of a parameter"
                   " already in a container.");
           throw Exception(parms);
       }
     _name = name;     _name = name;
       // Set the CIM name tag.
       _nameTag = generateCIMNameTag(_name);
 } }
  
 void CIMParameterRep::removeQualifier(Uint32 index) void CIMParameterRep::removeQualifier(Uint32 index)
Line 108 
Line 147 
         true);         true);
 } }
  
 void CIMParameterRep::toXml(Array<Sint8>& out) const  void CIMParameterRep::toXml(Buffer& out) const
 { {
     if (_isArray)     if (_isArray)
     {     {
         if (_type == CIMTYPE_REFERENCE)         if (_type == CIMTYPE_REFERENCE)
         {         {
             out << "<PARAMETER.REFARRAY";              out << STRLIT("<PARAMETER.REFARRAY NAME=\"") << _name;
             out << " NAME=\"" << _name << "\"";              out.append('"');
  
             if (!_referenceClassName.isNull())             if (!_referenceClassName.isNull())
             {             {
                 out << " REFERENCECLASS=\"" << _referenceClassName.getString()                  out << STRLIT(" REFERENCECLASS=\"");
                     << "\"";                  out << _referenceClassName.getString();
                   out.append('"');
             }             }
  
             out << ">\n";              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);             _qualifiers.toXml(out);
  
             out << "</PARAMETER.REFARRAY>\n";              out << STRLIT("</PARAMETER.REFARRAY>\n");
         }         }
         else         else
         {         {
             out << "<PARAMETER.ARRAY";              out << STRLIT("<PARAMETER.ARRAY");
             out << " NAME=\"" << _name << "\" ";              out << STRLIT(" NAME=\"") << _name;
             out << " TYPE=\"" << cimTypeToString (_type) << "\"";              out << STRLIT("\" ");
               out << STRLIT(" TYPE=\"") << cimTypeToString(_type);
               out.append('"');
  
             if (_arraySize)             if (_arraySize)
             {             {
                 char buffer[32];                 char buffer[32];
                 sprintf(buffer, "%d", _arraySize);                 sprintf(buffer, "%d", _arraySize);
                 out << " ARRAYSIZE=\"" << buffer << "\"";                  out << STRLIT(" ARRAYSIZE=\"") << buffer;
                   out.append('"');
             }             }
  
             out << ">\n";              out << STRLIT(">\n");
  
             _qualifiers.toXml(out);             _qualifiers.toXml(out);
  
             out << "</PARAMETER.ARRAY>\n";              out << STRLIT("</PARAMETER.ARRAY>\n");
         }         }
     }     }
     else if (_type == CIMTYPE_REFERENCE)     else if (_type == CIMTYPE_REFERENCE)
     {     {
         out << "<PARAMETER.REFERENCE";          out << STRLIT("<PARAMETER.REFERENCE");
         out << " NAME=\"" << _name << "\"";          out << STRLIT(" NAME=\"") << _name;
           out.append('"');
   
         if (!_referenceClassName.isNull())         if (!_referenceClassName.isNull())
         {         {
             out << " REFERENCECLASS=\"" << _referenceClassName.getString() <<              out << STRLIT(" REFERENCECLASS=\"");
                    "\"";              out << _referenceClassName.getString();
               out.append('"');
         }         }
         out << ">\n";          out << STRLIT(">\n");
  
         _qualifiers.toXml(out);         _qualifiers.toXml(out);
  
         out << "</PARAMETER.REFERENCE>\n";          out << STRLIT("</PARAMETER.REFERENCE>\n");
     }     }
     else     else
     {     {
         out << "<PARAMETER";          out << STRLIT("<PARAMETER");
         out << " NAME=\"" << _name << "\" ";          out << STRLIT(" NAME=\"") << _name;
         out << " TYPE=\"" << cimTypeToString (_type) << "\"";          out << STRLIT("\" ");
         out << ">\n";          out << STRLIT(" TYPE=\"") << cimTypeToString(_type);
           out << STRLIT("\">\n");
  
         _qualifiers.toXml(out);         _qualifiers.toXml(out);
  
         out << "</PARAMETER>\n";          out << STRLIT("</PARAMETER>\n");
     }     }
 } }
  
Line 191 
Line 247 
  
     Format on a single line.     Format on a single line.
     */     */
 void CIMParameterRep::toMof(Array<Sint8>& out) const  void CIMParameterRep::toMof(Buffer& out) const
 { {
     // Output the qualifiers for the parameter     // Output the qualifiers for the parameter
     _qualifiers.toMof(out);     _qualifiers.toMof(out);
  
     if (_qualifiers.getCount())     if (_qualifiers.getCount())
         out << " ";          out.append(' ');
  
     // Output the data type and name     // Output the data type and name
     out << cimTypeToString (_type) << " " <<  _name;      out << cimTypeToString(_type);
       out.append(' ');
       out <<  _name;
  
     if (_isArray)     if (_isArray)
     {     {
Line 208 
Line 266 
         if (_arraySize)         if (_arraySize)
         {         {
             char buffer[32];             char buffer[32];
             sprintf(buffer, "[%d]", _arraySize);              int n = sprintf(buffer, "[%d]", _arraySize);
             out << buffer;              out.append(buffer, n);
         }         }
         else         else
             out << "[]";              out << STRLIT("[]");
     }     }
 } }
  
  
 Boolean CIMParameterRep::identical(const CIMParameterRep* x) const Boolean CIMParameterRep::identical(const CIMParameterRep* x) const
 { {
       // If the pointers are the same, the objects must be identical
       if (this == x)
       {
           return true;
       }
   
     if (!_name.equal (x->_name))     if (!_name.equal (x->_name))
         return false;         return false;
  
Line 234 
Line 298 
     return true;     return true;
 } }
  
 CIMParameterRep::CIMParameterRep()  
 {  
   
 }  
   
 CIMParameterRep::CIMParameterRep(const CIMParameterRep& x) :  
     Sharable(),  
     _name(x._name),  
     _type(x._type),  
     _isArray(x._isArray),  
     _arraySize(x._arraySize),  
     _referenceClassName(x._referenceClassName)  
 {  
     x._qualifiers.cloneTo(_qualifiers);  
 }  
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.30  
changed lines
  Added in v.1.45

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2