(file) Return to WMIType.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / WMIMapper / WMIProvider

File: [Pegasus] / pegasus / src / WMIMapper / WMIProvider / WMIType.cpp (download)
Revision: 1.7, Mon Feb 28 21:54:55 2005 UTC (19 years, 4 months ago) by dave.sudlik
Branch: MAIN
CVS Tags: STABLE, RELEASE_2_5_0-RC1, RELEASE_2_5_0, PEP244_ServerProfile-root, PEP244_ServerProfile-branch, PEP233_EmbeddedInstSupport-root, PEP214ROOT, PEP214BRANCH, PEGASUS_2_5_0_PerformanceDev-string-end, PEGASUS_2_5_0_PerformanceDev-rootlt, PEGASUS_2_5_0_PerformanceDev-root, PEGASUS_2_5_0_PerformanceDev-r2, PEGASUS_2_5_0_PerformanceDev-r1, PEGASUS_2_5_0_PerformanceDev-lit-end, PEGASUS_2_5_0_PerformanceDev-buffer-end, PEGASUS_2_5_0_PerformanceDev-branch, PEGASUS_2_5_0_PerformanceDev-AtomicInt-branch, PEG25_IBM_5_16_05, NPEGASUS_2_5_0_PerformanceDev-String-root, NNPEGASUS_2_5_0_PerformanceDev-String-branch, BUG_4225_PERFORMANCE_VERSION_1_DONE
Branch point for: PEP233_EmbeddedInstSupport-branch
Changes since 1.6: +7 -0 lines
PEP#: 194
TITLE: Embedded Object Support

DESCRIPTION: Add case for CIMTYPE_OBJECT. Note that, while this change seems innocuous, it has not been tested. If you have an issue with it, please let me know. Thanks.

//%2005////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
// 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.
//
// 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: Chip Vincent (cvincent@us.ibm.com)
//
// Modified By: Barbara Packard (barbara_packard@hp.com)
//              Paulo Sehn (paulo_sehn@hp.com)
//              Jair Santos, Hewlett-Packard Company (jair.santos@hp.com)
//
//%/////////////////////////////////////////////////////////////////////////////

#include "StdAfx.h"

#include "WMIType.h"

PEGASUS_NAMESPACE_BEGIN


CIMType WMITypeToCIMType(const CIMTYPE type)
{
   CIMType _type;

   switch(type) {
   case CIM_BOOLEAN:
      _type = CIMTYPE_BOOLEAN;

      break;
   case CIM_SINT8:
      _type = CIMTYPE_SINT8;

      break;
   case CIM_UINT8:
      _type = CIMTYPE_UINT8;

      break;
   case CIM_SINT16:
      _type = CIMTYPE_SINT16;

      break;
   case CIM_UINT16:
      _type = CIMTYPE_UINT16;

      break;
   case CIM_SINT32:
      _type = CIMTYPE_SINT32;

      break;
   case CIM_UINT32:
      _type = CIMTYPE_UINT32;

      break;
   case CIM_SINT64:
      _type = CIMTYPE_SINT64;

      break;
   case CIM_UINT64:
      _type = CIMTYPE_UINT64;

      break;
   case CIM_REAL32:
      _type = CIMTYPE_REAL32;

      break;
   case CIM_REAL64:
      _type = CIMTYPE_REAL64;

      break;
   case CIM_CHAR16:
      _type = CIMTYPE_CHAR16;

      break;
   case CIM_STRING:
      _type = CIMTYPE_STRING;

      break;
   case CIM_DATETIME:
      _type = CIMTYPE_DATETIME;

      break;
   case CIM_REFERENCE:
      _type = CIMTYPE_REFERENCE;

      break;
   case CIM_OBJECT:
       _type = CIMTYPE_OBJECT;

       break;
   case CIM_FLAG_ARRAY:
   case CIM_EMPTY:
   case CIM_ILLEGAL:
   default:
      throw TypeMismatchException();

      break;
   }

   return _type;
}

CIMType variantToCIMType(const CComVariant & vValue)
{
	return vartypeToCIMType(vValue.vt);
}

CIMType vartypeToCIMType(const VARTYPE vt)
{
	CIMType type;

	switch(vt & ~VT_ARRAY) 
	{
		case VT_UI1:
			type = CIMTYPE_UINT8;
			break;

		case VT_I2:
			type = CIMTYPE_SINT16;
			break;
   
		case VT_UI2:
      		type = CIMTYPE_UINT16;
			break;
   
		case VT_I4:
			type = CIMTYPE_SINT32;
			break;

   		case VT_UI4:
			type = CIMTYPE_UINT32;
			break;

   		case VT_I8:
			type = CIMTYPE_SINT64;
			break;

		case VT_UI8:
			type = CIMTYPE_UINT64;
			break;

   		case VT_R4:
			type = CIMTYPE_REAL32;
			break;

		case VT_R8:
			type = CIMTYPE_REAL64;
			break;
   
		case VT_BSTR:
			//type = CIMTYPE_REFERENCE;
			//type = CIMTYPE_DATETIME;
			type = CIMTYPE_STRING;
			break;

		case VT_DATE:
			type = CIMTYPE_DATETIME;
			break;

		case VT_BOOL:
			type = CIMTYPE_BOOLEAN;
			break;

		case VT_INT:
			type = (sizeof(int) == 8) ? CIMTYPE_SINT64 : CIMTYPE_SINT32;
			break;

		case VT_UINT:
			type = (sizeof(int) == 8) ? CIMTYPE_UINT64 : CIMTYPE_UINT32;
			break;

		case VT_EMPTY:
		case VT_NULL:
		default:
			throw TypeMismatchException();
			break;
	}

	return type;
}


CIMTYPE_ENUMERATION CIMTypeToWMIType(const CIMTYPE type)
{
   CIMTYPE_ENUMERATION _type;

   switch(type) 
   {
	   case CIMTYPE_BOOLEAN:
		  _type = CIM_BOOLEAN;
		  break;

	   case CIMTYPE_SINT8:
		  _type = CIM_SINT8;
		  break;

	   case CIMTYPE_UINT8:
		  _type = CIM_UINT8;
		  break;

	   case CIMTYPE_SINT16:
		  _type = CIM_SINT16;
		  break;

	   case CIMTYPE_UINT16:
		  _type = CIM_UINT16;
		  break;

	   case CIMTYPE_SINT32:
		  _type = CIM_SINT32;
		  break;

	   case CIMTYPE_UINT32:
		  _type = CIM_UINT32;
		  break;

	   case CIMTYPE_SINT64:
		  _type = CIM_SINT64;
		  break;

	   case CIMTYPE_UINT64:
		  _type = CIM_UINT64;
		  break;

	   case CIMTYPE_REAL32:
		  _type = CIM_REAL32;
		  break;

	   case CIMTYPE_REAL64:
		  _type = CIM_REAL64;
		  break;

	   case CIMTYPE_CHAR16:
		  _type = CIM_CHAR16;
		  break;

	   case CIMTYPE_STRING:
		  _type = CIM_STRING;
		  break;

	   case CIMTYPE_DATETIME:
		  _type = CIM_DATETIME;
		  break;

	   case CIMTYPE_REFERENCE:
		  _type = CIM_REFERENCE;
		  break;

	   case CIMTYPE_OBJECT:
		  _type = CIM_OBJECT;
		  break;

	//   case CIMTYPE_OBJECT:
	//   case CIMTYPE_FLAG_ARRAY:
	//   case CIMTYPE_EMPTY:
	//   case CIMTYPE_ILLEGAL:
	   default:
		  throw TypeMismatchException();
      break;
   }

   return _type;
}

PEGASUS_NAMESPACE_END

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2