(file) Return to remote.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / ProviderManager2 / CMPIR

File: [Pegasus] / pegasus / src / Pegasus / ProviderManager2 / CMPIR / remote.h (download)
Revision: 1.8, Sun Jul 29 16:54:47 2007 UTC (16 years, 11 months ago) by ms.aruran
Branch: MAIN
CVS Tags: TASK_PEP328_SOLARIS_NEVADA_PORT, TASK-PEP328_SOLARIS_NEVADA_PORT_v2-root, TASK-PEP328_SOLARIS_NEVADA_PORT_v2-branch, TASK-PEP328_SOLARIS_NEVADA_PORT-root, TASK-PEP328_SOLARIS_NEVADA_PORT-branch, TASK-PEP328_SOLARIS_IX86_CC_PORT-root, TASK-PEP328_SOLARIS_IX86_CC_PORT-branch-v2, TASK-PEP328_SOLARIS_IX86_CC_PORT-branch, TASK-PEP311_WSMan-root, TASK-PEP311_WSMan-branch, TASK-PEP305_VXWORKS-root, TASK-PEP305_VXWORKS-branch-pre-solaris-port, TASK-PEP305_VXWORKS-branch-post-solaris-port, TASK-PEP305_VXWORKS-branch-beta2, TASK-PEP305_VXWORKS-branch, TASK-PEP305_VXWORKS-2008-10-23, TASK-BUG7146_SqlRepositoryPrototype-root, TASK-BUG7146_SqlRepositoryPrototype-merged_out_to_branch, TASK-BUG7146_SqlRepositoryPrototype-merged_out_from_trunk, TASK-BUG7146_SqlRepositoryPrototype-merged_in_to_trunk, TASK-BUG7146_SqlRepositoryPrototype-merged_in_from_branch, TASK-BUG7146_SqlRepositoryPrototype-branch, RELEASE_2_8_2-RC1, RELEASE_2_8_2, RELEASE_2_8_1-RC1, RELEASE_2_8_1, RELEASE_2_8_0_BETA, RELEASE_2_8_0-RC2, RELEASE_2_8_0-RC1, RELEASE_2_8_0-FC, RELEASE_2_8_0, RELEASE_2_8-root, RELEASE_2_8-branch, RELEASE_2_7_3-RC1, RELEASE_2_7_3, RELEASE_2_7_2-RC1, RELEASE_2_7_2, RELEASE_2_7_1-RC1, RELEASE_2_7_1, RELEASE_2_7_0-RC1, RELEASE_2_7_0-BETA, RELEASE_2_7_0, RELEASE_2_7-root, RELEASE_2_7-branch
Changes since 1.7: +63 -54 lines
BUG#: 6691
TITLE: Reformat src/Pegasus/ProviderManager2/CMPIR

DESCRIPTION: Fixed as approved.

//%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.
//
//==============================================================================
//
//%/////////////////////////////////////////////////////////////////////////////

/*!
    \file remote.h
    \brief Remote Broker header file.
*/

#ifndef _REMOTE_CMPI_REMOTE_H
#define _REMOTE_CMPI_REMOTE_H

#include <time.h>
#include "cmpir_common.h"

#define CMPIBroker2remote_broker(b) ((remote_broker *) (b))
#define remote_broker2CMPIBroker(rb) ((CMPIBroker *) (rb))
#define RBGetBrokerAddress(rb) \
    (rb)->ft->get_broker_address((rb))
#define RBGetProvider(rb) \
    (rb)->ft->get_provider((rb))
#define RBGetTicket(rb) \
    (rb)->ft->get_ticket((rb))
#define RBAcquireMI(rb) \
    (rb)->ft->acquireMI((rb))
#define RBReleaseMI(rb) \
    (rb)->ft->releaseMI((rb))
#define RBGetUseCount(rb) \
    (rb)->ft->get_use_count((rb))
#define RBGetInstanceMI(rb) \
    (rb)->ft->get_instanceMI((rb))
#define RBGetAssociationMI(rb) \
    (rb)->ft->get_associationMI((rb))
#define RBGetMethodMI(rb) \
    (rb)->ft->get_methodMI((rb))
#define RBGetPropertyMI(rb) \
    (rb)->ft->get_propertyMI((rb))
#define RBGetIndicationMI(rb) \
    (rb)->ft->get_indicationMI((rb))

#define PEGASUS_CMPIR_DAEMON_STOP "04PEGASUS_CMPIR_DAEMON_STOP"
#define PEGASUS_CMPIR_DAEMON_IS_RUNNING "04PEGASUS_CMPIR_DAEMON_IS_RUNNING"

typedef struct remote_broker remote_broker;


#ifndef CMPI_VER_100
# define CMPI_VER_100
#endif

#include <Pegasus/Provider/CMPI/cmpimacs.h>
#include <Pegasus/Provider/CMPI/cmpidt.h>
#include <Pegasus/Provider/CMPI/cmpift.h>
#include "ticket.h"

//! Remote broker function table.
/*!
    This struct defines function pointers to access remote broker functionality,
    as done by remote communication layers.
*/
struct  remote_brokerFT
{
    char * (* get_broker_address) ( remote_broker * );
    char * (* get_provider) ( remote_broker * );
    comm_ticket * (* get_ticket) ( remote_broker * );

    void (* acquireMI) ( remote_broker * );
    void (* releaseMI) ( remote_broker * );
    unsigned int (* get_use_count) ( remote_broker * );

    CMPIInstanceMI * (* get_instanceMI) ( remote_broker * );
    CMPIAssociationMI * (* get_associationMI) ( remote_broker * );
    CMPIMethodMI * (* get_methodMI) ( remote_broker * );
    CMPIPropertyMI * (* get_propertyMI) ( remote_broker * );
    CMPIIndicationMI * (* get_indicationMI) ( remote_broker * );
};


//! Remote broker structure.
/*!
    This structure extends a regular CMPIBroker struct adding a
    remote_brokerFT pointer to it.
*/
struct  remote_broker
{
    CMPIBroker broker;  /*!< original broker to be used by remote
                  providers */
    struct remote_brokerFT * ft; /*!< function table pointer */
};


/****************************************************************************/

PEGASUS_EXPORT remote_broker * PEGASUS_CMPIR_CDECL find_remote_broker ( 
    const char * comm_layer_id,
    const char * broker_address,
    const char * provider,
    const char * provider_module,
    const comm_ticket * ticket,
    CMPIBrokerFT * brokerFT );

PEGASUS_EXPORT void PEGASUS_CMPIR_CDECL cleanup_remote_brokers ( 
    long timeout,
    time_t check_interval );

PEGASUS_EXPORT void PEGASUS_CMPIR_CDECL init_activation_context (
    CMPIContext * ctx );


#endif

/****************************************************************************/

/*** Local Variables:  ***/
/*** mode: C           ***/
/*** c-basic-offset: 8 ***/
/*** End:              ***/

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2