2010-10-27 13:13:11 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 14:29:57 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 09:24:35 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 14:29:57 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 14:29:57 +00:00
|
|
|
*
|
2008-04-11 09:24:35 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 14:29:57 +00:00
|
|
|
*
|
2008-04-11 09:24:35 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 14:29:57 +00:00
|
|
|
*
|
2008-04-11 09:24:35 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 14:29:57 +00:00
|
|
|
*
|
2008-04-11 09:24:35 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 14:29:57 +00:00
|
|
|
*
|
2008-04-11 09:24:35 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 14:29:57 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef _UNO_MAPPING_H_
|
|
|
|
#define _UNO_MAPPING_H_
|
|
|
|
|
|
|
|
#include <sal/types.h>
|
|
|
|
#include <rtl/ustring.h>
|
|
|
|
|
2000-12-21 13:35:28 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2001-04-17 12:29:25 +00:00
|
|
|
struct _typelib_InterfaceTypeDescription;
|
|
|
|
struct _uno_Mapping;
|
|
|
|
struct _uno_Environment;
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2006-06-19 12:11:52 +00:00
|
|
|
/**
|
|
|
|
Function pointer declaration to acquire a UNO mapping.
|
|
|
|
*/
|
|
|
|
typedef void (SAL_CALL * uno_AcquireMappingFunc)(struct _uno_Mapping *);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Function pointer declaration to release a UNO mapping.
|
|
|
|
*/
|
|
|
|
typedef void (SAL_CALL * uno_ReleaseMappingFunc)(struct _uno_Mapping *);
|
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
/** Function pointer declaration to map an interface from one environment to another.
|
2001-08-21 08:17:07 +00:00
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
@param pMapping mapping
|
|
|
|
@param ppOut [inout] destination interface; existing interfaces are released
|
|
|
|
@param pInterface source interface
|
|
|
|
@param pInterfaceTypeDescr type description of the interface
|
|
|
|
*/
|
|
|
|
typedef void (SAL_CALL * uno_MapInterfaceFunc)(
|
2001-04-17 12:29:25 +00:00
|
|
|
struct _uno_Mapping * pMapping,
|
2000-09-18 14:29:57 +00:00
|
|
|
void ** ppOut, void * pInterface,
|
2001-04-17 12:29:25 +00:00
|
|
|
struct _typelib_InterfaceTypeDescription * pInterfaceTypeDescr );
|
2000-09-18 14:29:57 +00:00
|
|
|
|
|
|
|
|
2007-09-20 13:44:07 +00:00
|
|
|
#if defined( SAL_W32)
|
2000-09-18 14:29:57 +00:00
|
|
|
#pragma pack(push, 8)
|
|
|
|
#elif defined(SAL_OS2)
|
2007-09-20 13:44:07 +00:00
|
|
|
#pragma pack(push, 8)
|
2000-09-18 14:29:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/** This is the binary specification of a mapping.
|
|
|
|
*/
|
|
|
|
typedef struct _uno_Mapping
|
|
|
|
{
|
|
|
|
/** Acquires mapping
|
|
|
|
*/
|
2006-06-19 12:11:52 +00:00
|
|
|
uno_AcquireMappingFunc acquire;
|
2001-08-21 08:17:07 +00:00
|
|
|
|
2006-06-19 12:11:52 +00:00
|
|
|
/** Releases mapping. The last release may unload bridges.
|
2000-09-18 14:29:57 +00:00
|
|
|
*/
|
2006-06-19 12:11:52 +00:00
|
|
|
uno_ReleaseMappingFunc release;
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2001-08-21 08:17:07 +00:00
|
|
|
/** mapping function
|
2000-09-18 14:29:57 +00:00
|
|
|
*/
|
|
|
|
uno_MapInterfaceFunc mapInterface;
|
|
|
|
} uno_Mapping;
|
|
|
|
|
2007-09-20 13:44:07 +00:00
|
|
|
#if defined( SAL_W32) || defined(SAL_OS2)
|
2000-09-18 14:29:57 +00:00
|
|
|
#pragma pack(pop)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** Gets an interface mapping from one environment to another.
|
2001-08-21 08:17:07 +00:00
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
@param ppMapping [inout] mapping; existing mapping will be released
|
|
|
|
@param pFrom source environment
|
|
|
|
@param pTo destination environment
|
|
|
|
(interfaces resulting in mapInterface() call can be used
|
|
|
|
in this language environment)
|
|
|
|
@param pAddPurpose additional purpose of mapping (e.g., protocolling); defaults to 0 (none)
|
|
|
|
*/
|
2001-03-28 09:50:37 +00:00
|
|
|
void SAL_CALL uno_getMapping(
|
2001-04-17 12:29:25 +00:00
|
|
|
struct _uno_Mapping ** ppMapping,
|
|
|
|
struct _uno_Environment * pFrom,
|
|
|
|
struct _uno_Environment * pTo,
|
2000-12-21 13:35:28 +00:00
|
|
|
rtl_uString * pAddPurpose )
|
2001-03-09 11:10:57 +00:00
|
|
|
SAL_THROW_EXTERN_C();
|
2000-09-18 14:29:57 +00:00
|
|
|
|
|
|
|
/** Callback function pointer declaration to get a mapping.
|
2001-08-21 08:17:07 +00:00
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
@param ppMapping inout mapping
|
|
|
|
@param pFrom source environment
|
|
|
|
@param pTo destination environment
|
|
|
|
@param pAddPurpose additional purpose
|
|
|
|
*/
|
|
|
|
typedef void (SAL_CALL * uno_getMappingFunc)(
|
2001-04-17 12:29:25 +00:00
|
|
|
struct _uno_Mapping ** ppMapping,
|
|
|
|
struct _uno_Environment * pFrom,
|
|
|
|
struct _uno_Environment * pTo,
|
2000-09-18 14:29:57 +00:00
|
|
|
rtl_uString * pAddPurpose );
|
|
|
|
|
|
|
|
/** Registers a callback being called each time a mapping is demanded.
|
2001-08-21 08:17:07 +00:00
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
@param pCallback callback function
|
|
|
|
*/
|
2001-03-28 09:50:37 +00:00
|
|
|
void SAL_CALL uno_registerMappingCallback(
|
2000-12-21 13:35:28 +00:00
|
|
|
uno_getMappingFunc pCallback )
|
2001-03-09 11:10:57 +00:00
|
|
|
SAL_THROW_EXTERN_C();
|
2000-09-18 14:29:57 +00:00
|
|
|
|
|
|
|
/** Revokes a mapping callback registration.
|
2001-08-21 08:17:07 +00:00
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
@param pCallback callback function
|
|
|
|
*/
|
2001-03-28 09:50:37 +00:00
|
|
|
void SAL_CALL uno_revokeMappingCallback(
|
2000-12-21 13:35:28 +00:00
|
|
|
uno_getMappingFunc pCallback )
|
2001-03-09 11:10:57 +00:00
|
|
|
SAL_THROW_EXTERN_C();
|
2000-09-18 14:29:57 +00:00
|
|
|
|
|
|
|
/** Function pointer declaration to free a mapping.
|
2001-08-21 08:17:07 +00:00
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
@param pMapping mapping to be freed
|
|
|
|
*/
|
2001-04-17 12:29:25 +00:00
|
|
|
typedef void (SAL_CALL * uno_freeMappingFunc)( struct _uno_Mapping * pMapping );
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2001-08-21 08:17:07 +00:00
|
|
|
/** Registers a mapping. A mapping registers itself on first acquire and revokes itself on last
|
|
|
|
release. The given freeMapping function is called by the runtime to cleanup any resources.
|
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
@param ppMapping inout mapping to be registered
|
|
|
|
@param freeMapping called by runtime to delete mapping
|
|
|
|
@param pFrom source environment
|
|
|
|
@param pTo destination environment
|
|
|
|
@param pAddPurpose additional purpose string; defaults to 0
|
|
|
|
*/
|
2001-03-28 09:50:37 +00:00
|
|
|
void SAL_CALL uno_registerMapping(
|
2001-04-17 12:29:25 +00:00
|
|
|
struct _uno_Mapping ** ppMapping, uno_freeMappingFunc freeMapping,
|
|
|
|
struct _uno_Environment * pFrom, struct _uno_Environment * pTo, rtl_uString * pAddPurpose )
|
2001-03-09 11:10:57 +00:00
|
|
|
SAL_THROW_EXTERN_C();
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2001-08-21 08:17:07 +00:00
|
|
|
/** Revokes a mapping. A mapping registers itself on first acquire and revokes itself on last
|
|
|
|
release.
|
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
@param pMapping mapping to be revoked
|
|
|
|
*/
|
2001-03-28 09:50:37 +00:00
|
|
|
void SAL_CALL uno_revokeMapping(
|
2001-04-17 12:29:25 +00:00
|
|
|
struct _uno_Mapping * pMapping )
|
2001-03-09 11:10:57 +00:00
|
|
|
SAL_THROW_EXTERN_C();
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2001-08-21 08:17:07 +00:00
|
|
|
/** Gets an interface mapping from one language environment to another by corresponding environment
|
|
|
|
type names.
|
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
@param ppMapping [inout] mapping; existing mapping will be released
|
|
|
|
@param pFrom source environment type name
|
|
|
|
@param pTo destination environment type name
|
|
|
|
(interfaces resulting in mapInterface() call can be used
|
|
|
|
in this language environment)
|
|
|
|
@param pAddPurpose additional purpose of mapping (e.g., protocolling); defaults to 0 (none)
|
|
|
|
*/
|
2001-03-28 09:50:37 +00:00
|
|
|
void SAL_CALL uno_getMappingByName(
|
2001-04-17 12:29:25 +00:00
|
|
|
struct _uno_Mapping ** ppMapping,
|
2000-09-18 14:29:57 +00:00
|
|
|
rtl_uString * pFrom,
|
|
|
|
rtl_uString * pTo,
|
2000-12-21 13:35:28 +00:00
|
|
|
rtl_uString * pAddPurpose )
|
2001-03-09 11:10:57 +00:00
|
|
|
SAL_THROW_EXTERN_C();
|
2000-09-18 14:29:57 +00:00
|
|
|
|
|
|
|
/* symbol exported by each language binding library */
|
|
|
|
#define UNO_EXT_GETMAPPING "uno_ext_getMapping"
|
|
|
|
|
2001-08-21 08:17:07 +00:00
|
|
|
/** Function pointer declaration to get a mapping from a loaded bridge. Bridges export a function
|
|
|
|
called uno_ext_getMapping() of this signature.
|
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
@param ppMapping [inout] mapping; existing mapping will be released
|
|
|
|
@pFrom source environment
|
|
|
|
@pTo destination environment
|
|
|
|
*/
|
|
|
|
typedef void (SAL_CALL * uno_ext_getMappingFunc)(
|
2001-04-17 12:29:25 +00:00
|
|
|
struct _uno_Mapping ** ppMapping,
|
|
|
|
struct _uno_Environment * pFrom,
|
|
|
|
struct _uno_Environment * pTo );
|
2000-09-18 14:29:57 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
2010-10-27 13:13:11 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|