office-gobmx/svl/source/config/itemholder2.cxx
Thomas Arnhold 2beba8f93e reduce ascii noise and useless comments
Change-Id: I317058e3b25cebb7c1d89361636261c5f16a84d4
2012-08-08 13:53:54 +02:00

166 lines
4.5 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "itemholder2.hxx"
#include <comphelper/processfactory.hxx>
#include <com/sun/star/lang/XComponent.hpp>
#include <svl/cjkoptions.hxx>
#include <svl/ctloptions.hxx>
#include <svl/languageoptions.hxx>
#include <unotools/options.hxx>
#include <tools/debug.hxx>
//-----------------------------------------------
// namespaces
namespace css = ::com::sun::star;
//-----------------------------------------------
ItemHolder2::ItemHolder2()
: ItemHolderMutexBase()
{
try
{
css::uno::Reference< css::lang::XMultiServiceFactory > xSMGR = ::comphelper::getProcessServiceFactory();
css::uno::Reference< css::lang::XComponent > xCfg(
xSMGR->createInstance(::rtl::OUString("com.sun.star.configuration.ConfigurationProvider")),
css::uno::UNO_QUERY);
if (xCfg.is())
xCfg->addEventListener(static_cast< css::lang::XEventListener* >(this));
}
catch(const css::uno::RuntimeException&)
{
throw;
}
#ifdef DBG_UTIL
catch(const css::uno::Exception& rEx)
{
static sal_Bool bMessage = sal_True;
if(bMessage)
{
bMessage = sal_False;
::rtl::OString sMsg("CreateInstance with arguments exception: ");
sMsg += ::rtl::OString(rEx.Message.getStr(),
rEx.Message.getLength(),
RTL_TEXTENCODING_ASCII_US);
OSL_FAIL(sMsg.getStr());
}
}
#else
catch(css::uno::Exception&){}
#endif
}
//-----------------------------------------------
ItemHolder2::~ItemHolder2()
{
impl_releaseAllItems();
}
//-----------------------------------------------
void ItemHolder2::holdConfigItem(EItem eItem)
{
static ItemHolder2* pHolder = new ItemHolder2();
pHolder->impl_addItem(eItem);
}
//-----------------------------------------------
void SAL_CALL ItemHolder2::disposing(const css::lang::EventObject&)
throw(css::uno::RuntimeException)
{
impl_releaseAllItems();
}
//-----------------------------------------------
void ItemHolder2::impl_addItem(EItem eItem)
{
::osl::ResettableMutexGuard aLock(m_aLock);
TItems::const_iterator pIt;
for ( pIt = m_lItems.begin();
pIt != m_lItems.end() ;
++pIt )
{
const TItemInfo& rInfo = *pIt;
if (rInfo.eItem == eItem)
return;
}
TItemInfo aNewItem;
aNewItem.eItem = eItem;
impl_newItem(aNewItem);
if (aNewItem.pItem)
m_lItems.push_back(aNewItem);
}
//-----------------------------------------------
void ItemHolder2::impl_releaseAllItems()
{
::osl::ResettableMutexGuard aLock(m_aLock);
TItems::iterator pIt;
for ( pIt = m_lItems.begin();
pIt != m_lItems.end() ;
++pIt )
{
TItemInfo& rInfo = *pIt;
impl_deleteItem(rInfo);
}
m_lItems.clear();
}
//-----------------------------------------------
void ItemHolder2::impl_newItem(TItemInfo& rItem)
{
switch(rItem.eItem)
{
case E_CJKOPTIONS :
rItem.pItem = new SvtCJKOptions();
break;
case E_CTLOPTIONS :
rItem.pItem = new SvtCTLOptions();
break;
case E_LANGUAGEOPTIONS :
// capsulate CTL and CJL options ! rItem.pItem = new SvtLanguageOptions();
break;
default:
OSL_ASSERT(false);
break;
}
}
//-----------------------------------------------
void ItemHolder2::impl_deleteItem(TItemInfo& rItem)
{
if (rItem.pItem)
{
delete rItem.pItem;
rItem.pItem = 0;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */