(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.5, Sun Oct 17 19:40:42 2004 UTC (19 years, 8 months ago) by karl
Branch: MAIN
CVS Tags: pegasus25BeforeLicenseUpdate, SLPPERFINST-root, SLPPERFINST-branch, RELEASE_2_4_3, RELEASE_2_4_2, RELEASE_2_4_1-BETA3, RELEASE_2_4_1-BETA2, RELEASE_2_4_1-BETA1, RELEASE_2_4_1, RELEASE_2_4_0-RC3, RELEASE_2_4_0-RC2, RELEASE_2_4_0, RELEASE_2_4-root, RELEASE_2_4-branch, PEP213_SIZE_OPTIMIZATIONS, IBM_241_April1405, CHUNKTESTDONE_PEP140
Changes since 1.4: +6 -4 lines
BUG#: 2196
TITLE: Copyright update

DESCRIPTION: Update all .cpp and .h files for new license and
update the doc/license.txt file.  Note that there were also
a couple of files that had to be fixed because they had violated
the comments rules (ex. blank line at head of file or in the case of
xmlwriter.cpp a comment line //=========  which drove the strip
function nuts.  These were fixed.  This has been compiled and tested
on windows.

//%2004////////////////////////////////////////////////////////////////////////
//
// 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.
//
// 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:
   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:
	//   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