//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor licenses this file to you under the OpenPegasus Open // Source License; you may not use this file except in compliance with the // License. // // 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. // ////////////////////////////////////////////////////////////////////////// // //%///////////////////////////////////////////////////////////////////////////// /*! \file serialization.h \brief Header file for the binary serializer component for Remote CMPI. This file defines a function table of methods to be used for serializing and deserializing CMPI data respectively. It covers most of the encapsulated data types, however, those which cannot be fully serialized or deserialized due to API restrictions are not included, e.g. CMPIResult, CMPIContext or CMPIEnumeration. */ #ifndef _SOCKETCOMM_H #define _SOCKETCOMM_H #include "serialization.h" #include "debug.h" /****************************************************************************/ //! MI service request identifier. /*! This struct holds the function name and a function pointer for remote MI calls. Once the function name has been deserialized, the appropriate method may then resolve the handler function to be called. */ struct socket_mi_function { char * name; /*!< function name */ void (* function) ( int, CONST CMPIBroker *, CONST CMPIContext *, CONST CMPIObjectPath * ); /*!< function pointer */ }; //! Broker service request identifier. /*! This struct holds the function name and a function pointer for up-calls. Once the function name has been deserialized, the appropriate method may then resolve the handler function to be called. */ struct socket_mb_function { char * name; /*!< function name */ void (* function) ( int, CONST CMPIBroker *, CONST CMPIContext * ); /*!< function pointer */ }; /****************************************************************************/ extern char * RCMPI_CTX_ID; /****************************************************************************/ void socketcomm_copy_args ( CMPIArgs * src, CMPIArgs * dst ); void socketcomm_array2result ( CMPIArray * array, CONST CMPIResult * result ); void socketcomm_serialize_props ( int socket, const struct BinarySerializerFT * sft, char ** props ); char ** socketcomm_deserialize_props ( int socket, const struct BinarySerializerFT * sft, CONST CMPIBroker * broker ); void socketcomm_serialize_context ( int socket, const struct BinarySerializerFT * sft, CONST CMPIContext * ctx ); void socketcomm_deserialize_context ( int socket, const struct BinarySerializerFT * sft, CONST CMPIBroker * broker, CONST CMPIContext * ctx ); #endif /****************************************************************************/ /*** Local Variables: ***/ /*** mode: C ***/ /*** c-basic-offset: 8 ***/ /*** End: ***/