2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2006-09-17 08:35:36 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 02:37:50 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2006-09-17 08:35:36 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2006-09-17 08:35:36 +00:00
|
|
|
*
|
2008-04-11 02:37:50 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2006-09-17 08:35:36 +00:00
|
|
|
*
|
2008-04-11 02:37:50 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2006-09-17 08:35:36 +00:00
|
|
|
*
|
2008-04-11 02:37:50 +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.
|
2006-09-17 08:35:36 +00:00
|
|
|
*
|
2008-04-11 02:37:50 +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).
|
2006-09-17 08:35:36 +00:00
|
|
|
*
|
2008-04-11 02:37:50 +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.
|
2006-09-17 08:35:36 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
2002-09-18 14:31:05 +00:00
|
|
|
|
|
|
|
#include "configinit.hxx"
|
|
|
|
|
|
|
|
#include "desktop.hrc"
|
|
|
|
#include "app.hxx"
|
2004-08-20 12:14:00 +00:00
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
#include <uno/current_context.hxx>
|
|
|
|
#include <cppuhelper/implbase1.hxx>
|
2002-09-18 14:31:05 +00:00
|
|
|
#include <rtl/ustrbuf.hxx>
|
|
|
|
#include <osl/diagnose.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace uno = ::com::sun::star::uno;
|
|
|
|
namespace lang = ::com::sun::star::lang;
|
|
|
|
using rtl::OUString;
|
|
|
|
using uno::UNO_QUERY;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2004-08-20 12:14:00 +00:00
|
|
|
static char const CONFIGURATION_ERROR_HANDLER[] = "com.sun.star.configuration.backend.InteractionHandler";
|
|
|
|
|
|
|
|
// must be aligned with configmgr/source/misc/configinteractionhandler
|
|
|
|
static char const CONFIG_ERROR_HANDLER[] = "configuration.interaction-handler";
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2002-09-18 14:31:05 +00:00
|
|
|
#define OUSTRING( constascii ) OUString( RTL_CONSTASCII_USTRINGPARAM( constascii ) )
|
|
|
|
|
2004-11-15 12:49:03 +00:00
|
|
|
#define k_ERRORHANDLER OUSTRING( CONFIGURATION_ERROR_HANDLER )
|
2003-03-25 12:52:54 +00:00
|
|
|
|
2004-08-20 12:14:00 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// ConfigurationErrorHandler
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
typedef uno::Reference< uno::XCurrentContext > CurrentContext;
|
|
|
|
class SimpleCurrentContext : public cppu::WeakImplHelper1< uno::XCurrentContext >
|
|
|
|
{
|
|
|
|
CurrentContext m_xChainedContext;
|
|
|
|
public:
|
|
|
|
explicit
|
|
|
|
SimpleCurrentContext(const CurrentContext & xChainedContext)
|
|
|
|
: m_xChainedContext(xChainedContext)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void install() { uno::setCurrentContext(this); }
|
|
|
|
void deinstall() { uno::setCurrentContext(m_xChainedContext); }
|
|
|
|
|
|
|
|
uno::Any getChainedValueByName( OUString const & aName) const
|
|
|
|
{
|
|
|
|
return m_xChainedContext.is()
|
|
|
|
? m_xChainedContext->getValueByName(aName)
|
|
|
|
: uno::Any();
|
|
|
|
}
|
|
|
|
|
|
|
|
// XCurrentContext
|
2005-03-18 09:41:31 +00:00
|
|
|
virtual uno::Any SAL_CALL
|
2004-08-20 12:14:00 +00:00
|
|
|
getValueByName( OUString const & aName)
|
|
|
|
throw (uno::RuntimeException);
|
|
|
|
};
|
|
|
|
|
|
|
|
uno::Any SAL_CALL
|
|
|
|
SimpleCurrentContext::getValueByName( OUString const & aName)
|
|
|
|
throw (uno::RuntimeException)
|
|
|
|
{
|
2005-03-18 09:41:31 +00:00
|
|
|
return getChainedValueByName(aName);
|
2004-08-20 12:14:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class ConfigurationErrorHandler::Context : public SimpleCurrentContext
|
|
|
|
{
|
|
|
|
public:
|
2006-10-12 13:05:05 +00:00
|
|
|
Context()
|
2004-08-20 12:14:00 +00:00
|
|
|
: SimpleCurrentContext( uno::getCurrentContext() )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~Context()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-03-18 09:41:31 +00:00
|
|
|
// XCurrentContext
|
|
|
|
virtual uno::Any SAL_CALL
|
|
|
|
getValueByName( OUString const & aName)
|
|
|
|
throw (uno::RuntimeException);
|
|
|
|
|
|
|
|
private:
|
|
|
|
InteractionHandler m_xHandler;
|
2004-08-20 12:14:00 +00:00
|
|
|
};
|
|
|
|
|
2005-03-18 09:41:31 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
uno::Any SAL_CALL ConfigurationErrorHandler::Context::getValueByName( OUString const & aName)
|
|
|
|
throw (uno::RuntimeException)
|
|
|
|
{
|
2011-01-15 16:51:11 +00:00
|
|
|
if ( aName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(CONFIG_ERROR_HANDLER)) )
|
2005-03-18 09:41:31 +00:00
|
|
|
{
|
|
|
|
if ( !m_xHandler.is() )
|
|
|
|
m_xHandler = ConfigurationErrorHandler::getDefaultInteractionHandler();
|
|
|
|
return uno::Any( m_xHandler );
|
|
|
|
}
|
|
|
|
return SimpleCurrentContext::getValueByName( aName );
|
|
|
|
}
|
|
|
|
|
2004-08-20 12:14:00 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
ConfigurationErrorHandler::~ConfigurationErrorHandler()
|
|
|
|
{
|
|
|
|
deactivate();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/// installs the handler into the current context
|
|
|
|
void ConfigurationErrorHandler::activate()
|
|
|
|
{
|
|
|
|
if (!m_pContext)
|
|
|
|
{
|
2006-10-12 13:05:05 +00:00
|
|
|
m_pContext = new Context;
|
2004-08-20 12:14:00 +00:00
|
|
|
m_pContext->acquire();
|
|
|
|
}
|
|
|
|
m_pContext->install();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/// deinstalls the handler from the current context, restoring the previous context
|
|
|
|
void ConfigurationErrorHandler::deactivate()
|
|
|
|
{
|
|
|
|
if (m_pContext)
|
|
|
|
{
|
|
|
|
m_pContext->deinstall();
|
|
|
|
m_pContext->release();
|
|
|
|
m_pContext = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
ConfigurationErrorHandler::InteractionHandler ConfigurationErrorHandler::getDefaultInteractionHandler()
|
|
|
|
{
|
|
|
|
uno::Reference< lang::XMultiServiceFactory > xServiceManager = ::comphelper::getProcessServiceFactory();
|
|
|
|
|
|
|
|
OSL_ENSURE( xServiceManager.is(),"No ServiceManager set for ConfigurationErrorHandler");
|
|
|
|
|
|
|
|
InteractionHandler xHandler;
|
|
|
|
|
|
|
|
if (xServiceManager.is())
|
|
|
|
{
|
|
|
|
xHandler.set( xServiceManager->createInstance(k_ERRORHANDLER), UNO_QUERY );
|
|
|
|
}
|
|
|
|
|
|
|
|
return xHandler;
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
2003-03-25 12:52:54 +00:00
|
|
|
|
2005-03-18 09:41:31 +00:00
|
|
|
|
2010-10-12 15:53:47 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|