f229f4e773
2007/06/08 09:10:17 kr 1.2.2.2: #i78114# missing includes for precompiled headers 2007/06/05 15:09:13 kr 1.2.2.1: #i77422# Use va_list * instead of plain type; added missing include for precompiled headers
137 lines
3.5 KiB
C++
137 lines
3.5 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: TestEnv.cxx,v $
|
|
*
|
|
* $Revision: 1.3 $
|
|
*
|
|
* last change: $Author: obo $ $Date: 2007-07-18 12:26:03 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library 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 for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
#include "precompiled_cppu.hxx"
|
|
|
|
|
|
#include "cppu/EnvDcp.hxx"
|
|
|
|
#include "cppu/helper/purpenv/Environment.hxx"
|
|
#include "cppu/helper/purpenv/Mapping.hxx"
|
|
|
|
|
|
|
|
#define LOG_LIFECYCLE_TestEnv
|
|
#ifdef LOG_LIFECYCLE_TestEnv
|
|
# include <iostream>
|
|
# define LOG_LIFECYCLE_TestEnv_emit(x) x
|
|
|
|
#else
|
|
# define LOG_LIFECYCLE_TestEnv_emit(x)
|
|
|
|
#endif
|
|
|
|
|
|
class SAL_DLLPRIVATE TestEnv : public cppu::Enterable
|
|
{
|
|
int m_inCount;
|
|
|
|
virtual ~TestEnv(void);
|
|
|
|
public:
|
|
explicit TestEnv(void);
|
|
|
|
protected:
|
|
virtual void v_enter(void);
|
|
virtual void v_leave(void);
|
|
|
|
virtual void v_callInto_v(uno_EnvCallee * pCallee, va_list * pParam);
|
|
virtual void v_callOut_v (uno_EnvCallee * pCallee, va_list * pParam);
|
|
|
|
virtual int v_isValid (rtl::OUString * pReason);
|
|
};
|
|
|
|
TestEnv::TestEnv(void)
|
|
: m_inCount(0)
|
|
{
|
|
LOG_LIFECYCLE_TestEnv_emit(fprintf(stderr, "LIFE: %s -> %p\n", "TestEnv::TestEnv(...)", this));
|
|
}
|
|
|
|
TestEnv::~TestEnv(void)
|
|
{
|
|
LOG_LIFECYCLE_TestEnv_emit(fprintf(stderr, "LIFE: %s -> %p\n", "TestEnv::~TestEnv(void)", this));
|
|
}
|
|
|
|
|
|
void TestEnv::v_callInto_v(uno_EnvCallee * pCallee, va_list * pParam)
|
|
{
|
|
++ m_inCount;
|
|
pCallee(pParam);
|
|
-- m_inCount;
|
|
}
|
|
|
|
void TestEnv::v_callOut_v(uno_EnvCallee * pCallee, va_list * pParam)
|
|
{
|
|
-- m_inCount;
|
|
pCallee(pParam);
|
|
++ m_inCount;
|
|
}
|
|
|
|
void TestEnv::v_enter(void)
|
|
{
|
|
++ m_inCount;
|
|
}
|
|
|
|
void TestEnv::v_leave(void)
|
|
{
|
|
-- m_inCount;
|
|
}
|
|
|
|
int TestEnv::v_isValid(rtl::OUString * pReason)
|
|
{
|
|
int result = m_inCount & 1;
|
|
|
|
if (result)
|
|
*pReason = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("OK"));
|
|
|
|
else
|
|
*pReason = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("not entered/invoked"));
|
|
|
|
return result;
|
|
}
|
|
|
|
extern "C" void SAL_CALL uno_initEnvironment(uno_Environment * pEnv) SAL_THROW_EXTERN_C()
|
|
{
|
|
cppu::helper::purpenv::Environment_initWithEnterable(pEnv, new TestEnv());
|
|
}
|
|
|
|
extern "C" void uno_ext_getMapping(uno_Mapping ** ppMapping,
|
|
uno_Environment * pFrom,
|
|
uno_Environment * pTo )
|
|
{
|
|
cppu::helper::purpenv::createMapping(ppMapping, pFrom, pTo);
|
|
}
|
|
|