⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 string.c

📁 Pegasus is an open-source implementationof the DMTF CIM and WBEM standards. It is designed to be por
💻 C
字号:
//%2006//////////////////////////////////////////////////////////////////////////// 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.// 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// 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: Frank Scheffler//// Modified By:  Adrian Schuur (schuur@de.ibm.com)////%//////////////////////////////////////////////////////////////////////////////*!  \file string.c  \brief Native CMPIString implementation.  This is the native CMPIString implementation as used for remote  providers. It reflects the well-defined interface of a regular  CMPIString, however, it works independently from the management broker.    It is part of a native broker implementation that simulates CMPI data  types rather than interacting with the entities in a full-grown CIMOM.   \author Frank Scheffler  \todo Once CMGetCharPtr() macro uses the appropriate function call instead  of casting the internal hdl, store "CMPIString" type in there.*/#include <string.h>#include "mm.h"#include "native.h"struct native_string {	CMPIString string;	int mem_state;};static struct native_string * __new_string ( int, const char *, CMPIStatus * );/*****************************************************************************/static CMPIStatus __sft_release ( CMPIString * string ){	struct native_string * s = (struct native_string *) string;	if ( s->mem_state == TOOL_MM_NO_ADD ) {		tool_mm_add ( s );		tool_mm_add ( s->string.hdl );		CMReturn ( CMPI_RC_OK );	}	CMReturn ( CMPI_RC_ERR_FAILED );}static CMPIString * __sft_clone ( CONST CMPIString * string, CMPIStatus * rc ){	return (CMPIString * )		__new_string ( TOOL_MM_NO_ADD,			       string->ft->getCharPtr ( string, rc ),			       rc );}static char * __sft_getCharPtr ( CONST CMPIString * string, CMPIStatus * rc ){	return (char *) string->hdl;}static struct native_string * __new_string ( int mm_add,					     const char * ptr,					     CMPIStatus * rc ){	static CMPIStringFT sft = {		NATIVE_FT_VERSION,		__sft_release,		__sft_clone,		__sft_getCharPtr	};	struct native_string * string =		(struct native_string *)		tool_mm_alloc ( mm_add, sizeof ( struct native_string ) );	string->string.hdl = ( ptr )? strdup ( ptr ): NULL;	string->string.ft  = &sft;	string->mem_state  = mm_add;	if ( mm_add == TOOL_MM_ADD ) {		tool_mm_add ( string->string.hdl );	}	if ( rc ) CMSetStatus ( rc, CMPI_RC_OK );	return string;}CMPIString * native_new_CMPIString ( const char * ptr, CMPIStatus * rc ){	return (CMPIString *) __new_string ( TOOL_MM_ADD, ptr, rc );}/****************************************************************************//*** Local Variables:  ***//*** mode: C           ***//*** c-basic-offset: 8 ***//*** End:              ***/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -