office-gobmx/configmgr/source/access.hxx
Stephan Bergmann e57ca02849 Remove dynamic exception specifications
...(for now, from LIBO_INTERNAL_CODE only).  See the mail thread starting at
<https://lists.freedesktop.org/archives/libreoffice/2017-January/076665.html>
"Dynamic Exception Specifications" for details.

Most changes have been done automatically by the rewriting loplugin:dynexcspec
(after enabling the rewriting mode, to be committed shortly).  The way it only
removes exception specs from declarations if it also sees a definition, it
identified some dead declarations-w/o-definitions (that have been removed
manually) and some cases where a definition appeared in multiple include files
(which have also been cleaned up manually).  There's also been cases of macro
paramters (that were used to abstract over exception specs) that have become
unused now (and been removed).

Furthermore, some code needed to be cleaned up manually
(avmedia/source/quicktime/ and connectivity/source/drivers/kab/), as I had no
configurations available that would actually build that code.  Missing @throws
documentation has not been applied in such manual clean-up.

Change-Id: I3408691256c9b0c12bc5332de976743626e13960
Reviewed-on: https://gerrit.libreoffice.org/33574
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2017-01-26 12:54:43 +00:00

464 lines
15 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 .
*/
#ifndef INCLUDED_CONFIGMGR_SOURCE_ACCESS_HXX
#define INCLUDED_CONFIGMGR_SOURCE_ACCESS_HXX
#include <sal/config.h>
#include <map>
#include <memory>
#include <set>
#include <vector>
#include "config_map.hxx"
#include <com/sun/star/beans/PropertyVetoException.hpp>
#include <com/sun/star/beans/UnknownPropertyException.hpp>
#include <com/sun/star/beans/XExactName.hpp>
#include <com/sun/star/beans/XHierarchicalPropertySet.hpp>
#include <com/sun/star/beans/XHierarchicalPropertySetInfo.hpp>
#include <com/sun/star/beans/XMultiHierarchicalPropertySet.hpp>
#include <com/sun/star/beans/XMultiPropertySet.hpp>
#include <com/sun/star/beans/XProperty.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/beans/XPropertySetInfo.hpp>
#include <com/sun/star/container/ElementExistException.hpp>
#include <com/sun/star/container/NoSuchElementException.hpp>
#include <com/sun/star/container/XContainer.hpp>
#include <com/sun/star/container/XHierarchicalName.hpp>
#include <com/sun/star/container/XHierarchicalNameReplace.hpp>
#include <com/sun/star/container/XNameContainer.hpp>
#include <com/sun/star/container/XNamed.hpp>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/lang/NoSupportException.hpp>
#include <com/sun/star/lang/WrappedTargetException.hpp>
#include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XTypeProvider.hpp>
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include <com/sun/star/uno/Exception.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/RuntimeException.hpp>
#include <com/sun/star/uno/Sequence.hxx>
#include <cppuhelper/weak.hxx>
#include <osl/interlck.h>
#include <rtl/ref.hxx>
#include <sal/types.h>
#include "modifications.hxx"
#include "type.hxx"
namespace com { namespace sun { namespace star {
namespace beans {
class XHierarchicalPropertySetInfo;
class XPropertiesChangeListener;
class XPropertyChangeListener;
class XVetoableChangeListener;
struct Property;
}
namespace container { class XContainerListener; }
namespace lang { class XEventListener; }
namespace uno {
class Any;
class Type;
class XInterface;
}
namespace util { struct ElementChange; }
} } }
namespace configmgr {
class Broadcaster;
class ChildAccess;
class Components;
class Node;
class RootAccess;
class Access:
public cppu::OWeakObject, public css::lang::XTypeProvider,
public css::lang::XServiceInfo,
public css::lang::XComponent,
public css::container::XHierarchicalNameReplace,
public css::container::XContainer,
public css::beans::XExactName,
public css::beans::XPropertySetInfo,
public css::container::XHierarchicalName,
public css::container::XNamed,
public css::beans::XProperty,
public css::beans::XPropertySet,
public css::beans::XMultiPropertySet,
public css::beans::XHierarchicalPropertySet,
public css::beans::XMultiHierarchicalPropertySet,
public css::beans::XHierarchicalPropertySetInfo,
public css::container::XNameContainer,
public css::lang::XSingleServiceFactory
{
public:
oslInterlockedCount acquireCounting();
void releaseNondeleting();
bool isValue();
void markChildAsModified(rtl::Reference< ChildAccess > const & child);
void releaseChild(OUString const & name);
virtual std::vector<OUString> getAbsolutePath() = 0;
virtual std::vector<OUString> getRelativePath() = 0;
virtual OUString getRelativePathRepresentation() = 0;
virtual rtl::Reference< Node > getNode() = 0;
virtual bool isFinalized() = 0;
virtual void initBroadcaster(
Modifications::Node const & modifications, Broadcaster * broadcaster);
using OWeakObject::acquire;
using OWeakObject::release;
virtual css::uno::Sequence< css::uno::Type > SAL_CALL
getTypes() override;
virtual css::uno::Sequence< sal_Int8 > SAL_CALL
getImplementationId() override;
virtual OUString SAL_CALL getImplementationName() override;
virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override;
virtual css::uno::Sequence< OUString > SAL_CALL
getSupportedServiceNames() override;
virtual void SAL_CALL dispose() override;
virtual void SAL_CALL addEventListener(
css::uno::Reference< css::lang::XEventListener >
const & xListener) override;
virtual void SAL_CALL removeEventListener(
css::uno::Reference< css::lang::XEventListener >
const & aListener) override;
virtual css::uno::Type SAL_CALL getElementType() override;
virtual sal_Bool SAL_CALL hasElements() override;
virtual css::uno::Any SAL_CALL getByName(
OUString const & aName) override;
virtual css::uno::Sequence< OUString > SAL_CALL
getElementNames() override;
virtual sal_Bool SAL_CALL hasByName(OUString const & aName) override;
virtual css::uno::Any SAL_CALL getByHierarchicalName(
OUString const & aName) override;
virtual sal_Bool SAL_CALL hasByHierarchicalName(OUString const & aName) override;
virtual void SAL_CALL replaceByHierarchicalName(
OUString const & aName, css::uno::Any const & aElement) override;
virtual void SAL_CALL addContainerListener(
css::uno::Reference<
css::container::XContainerListener > const & xListener) override;
virtual void SAL_CALL removeContainerListener(
css::uno::Reference<
css::container::XContainerListener > const & xListener) override;
virtual OUString SAL_CALL getExactName(
OUString const & aApproximateName) override;
virtual css::uno::Sequence< css::beans::Property >
SAL_CALL getProperties() override;
virtual css::beans::Property SAL_CALL getPropertyByName(
OUString const & aName) override;
virtual sal_Bool SAL_CALL hasPropertyByName(OUString const & Name) override;
virtual OUString SAL_CALL getHierarchicalName() override;
virtual OUString SAL_CALL composeHierarchicalName(
OUString const & aRelativeName) override;
virtual OUString SAL_CALL getName() override;
virtual void SAL_CALL setName(OUString const & aName) override;
virtual css::beans::Property SAL_CALL getAsProperty() override;
virtual
css::uno::Reference< css::beans::XPropertySetInfo >
SAL_CALL getPropertySetInfo() override;
virtual void SAL_CALL setPropertyValue(
OUString const & aPropertyName,
css::uno::Any const & aValue) override;
virtual css::uno::Any SAL_CALL getPropertyValue(
OUString const & PropertyName) override;
virtual void SAL_CALL addPropertyChangeListener(
OUString const & aPropertyName,
css::uno::Reference<
css::beans::XPropertyChangeListener > const & xListener) override;
virtual void SAL_CALL removePropertyChangeListener(
OUString const & aPropertyName,
css::uno::Reference<
css::beans::XPropertyChangeListener > const & aListener) override;
virtual void SAL_CALL addVetoableChangeListener(
OUString const & PropertyName,
css::uno::Reference<
css::beans::XVetoableChangeListener > const & aListener) override;
virtual void SAL_CALL removeVetoableChangeListener(
OUString const & PropertyName,
css::uno::Reference<
css::beans::XVetoableChangeListener > const & aListener) override;
virtual void SAL_CALL setPropertyValues(
css::uno::Sequence< OUString > const & aPropertyNames,
css::uno::Sequence< css::uno::Any > const &
aValues) override;
virtual css::uno::Sequence< css::uno::Any > SAL_CALL
getPropertyValues(
css::uno::Sequence< OUString > const & aPropertyNames) override;
virtual void SAL_CALL addPropertiesChangeListener(
css::uno::Sequence< OUString > const & aPropertyNames,
css::uno::Reference<
css::beans::XPropertiesChangeListener > const &
xListener) override;
virtual void SAL_CALL removePropertiesChangeListener(
css::uno::Reference<
css::beans::XPropertiesChangeListener > const &
xListener) override;
virtual void SAL_CALL firePropertiesChangeEvent(
css::uno::Sequence< OUString > const & aPropertyNames,
css::uno::Reference<
css::beans::XPropertiesChangeListener > const &
xListener) override;
virtual
css::uno::Reference<
css::beans::XHierarchicalPropertySetInfo > SAL_CALL
getHierarchicalPropertySetInfo() override;
virtual void SAL_CALL setHierarchicalPropertyValue(
OUString const & aHierarchicalPropertyName,
css::uno::Any const & aValue) override;
virtual css::uno::Any SAL_CALL getHierarchicalPropertyValue(
OUString const & aHierarchicalPropertyName) override;
virtual void SAL_CALL setHierarchicalPropertyValues(
css::uno::Sequence< OUString > const &
aHierarchicalPropertyNames,
css::uno::Sequence< css::uno::Any > const &
Values) override;
virtual css::uno::Sequence< css::uno::Any > SAL_CALL
getHierarchicalPropertyValues(
css::uno::Sequence< OUString > const &
aHierarchicalPropertyNames) override;
virtual css::beans::Property SAL_CALL
getPropertyByHierarchicalName(OUString const & aHierarchicalName) override;
virtual sal_Bool SAL_CALL hasPropertyByHierarchicalName(
OUString const & aHierarchicalName) override;
virtual void SAL_CALL replaceByName(
OUString const & aName, css::uno::Any const & aElement) override;
virtual void SAL_CALL insertByName(
OUString const & aName, css::uno::Any const & aElement) override;
virtual void SAL_CALL removeByName(OUString const & aName) override;
virtual css::uno::Reference< css::uno::XInterface >
SAL_CALL createInstance() override;
virtual css::uno::Reference< css::uno::XInterface >
SAL_CALL createInstanceWithArguments(
css::uno::Sequence< css::uno::Any > const &
aArguments) override;
protected:
explicit Access(Components & components);
virtual ~Access() override;
virtual OUString getNameInternal() = 0;
virtual rtl::Reference< RootAccess > getRootAccess() = 0;
virtual rtl::Reference< Access > getParentAccess() = 0;
virtual void addTypes(std::vector< css::uno::Type > * types)
const = 0;
virtual void addSupportedServiceNames(
std::vector<OUString> * services) = 0;
virtual void initDisposeBroadcaster(Broadcaster * broadcaster);
virtual void clearListeners() throw ();
virtual css::uno::Any SAL_CALL queryInterface(
css::uno::Type const & aType) override;
Components & getComponents() const { return components_;}
void checkLocalizedPropertyAccess();
rtl::Reference< Node > getParentNode();
rtl::Reference< ChildAccess > getChild(OUString const & name);
std::vector< rtl::Reference< ChildAccess > > getAllChildren();
void checkValue(
css::uno::Any const & value, Type type, bool nillable);
void insertLocalizedValueChild(
OUString const & name, css::uno::Any const & value,
Modifications * localModifications);
void reportChildChanges(
std::vector< css::util::ElementChange > * changes);
void commitChildChanges(bool valid, Modifications * globalModifications);
void initBroadcasterAndChanges(
Modifications::Node const & modifications, Broadcaster * broadcaster,
std::vector< css::util::ElementChange > * changes);
bool isDisposed() const { return disposed_;}
private:
Access(const Access&) = delete;
Access& operator=(const Access&) = delete;
struct ModifiedChild {
rtl::Reference< ChildAccess > child;
bool directlyModified;
ModifiedChild();
ModifiedChild(
rtl::Reference< ChildAccess > const & theChild,
bool theDirectlyModified);
};
typedef config_map< ModifiedChild > ModifiedChildren;
rtl::Reference< ChildAccess > getModifiedChild(
ModifiedChildren::iterator const & childIterator);
rtl::Reference< ChildAccess > getUnmodifiedChild(
OUString const & name);
rtl::Reference< ChildAccess > getSubChild(OUString const & path);
bool setChildProperty(
OUString const & name, css::uno::Any const & value,
Modifications * localModifications);
css::beans::Property asProperty();
bool getByNameFast(const OUString & name, css::uno::Any & value);
rtl::Reference< ChildAccess > createUnmodifiedChild(const OUString &name,
const rtl::Reference< Node > &node);
void checkFinalized();
void checkKnownProperty(OUString const & descriptor);
rtl::Reference< ChildAccess > getFreeSetMember( css::uno::Any const & value);
rtl::Reference< Access > getNotificationRoot();
typedef config_map< ChildAccess * > WeakChildMap;
typedef
std::multiset<
css::uno::Reference<
css::lang::XEventListener > >
DisposeListeners;
typedef
std::multiset<
css::uno::Reference<
css::container::XContainerListener > >
ContainerListeners;
typedef
std::multiset<
css::uno::Reference<
css::beans::XPropertyChangeListener > >
PropertyChangeListenersElement;
typedef config_map< PropertyChangeListenersElement >
PropertyChangeListeners;
typedef
std::multiset<
css::uno::Reference<
css::beans::XVetoableChangeListener > >
VetoableChangeListenersElement;
typedef config_map< VetoableChangeListenersElement >
VetoableChangeListeners;
typedef
std::multiset<
css::uno::Reference<
css::beans::XPropertiesChangeListener > >
PropertiesChangeListeners;
Components & components_;
ModifiedChildren modifiedChildren_;
WeakChildMap cachedChildren_;
DisposeListeners disposeListeners_;
ContainerListeners containerListeners_;
PropertyChangeListeners propertyChangeListeners_;
VetoableChangeListeners vetoableChangeListeners_;
PropertiesChangeListeners propertiesChangeListeners_;
bool disposed_;
std::shared_ptr<osl::Mutex> lock_;
#if !defined NDEBUG
protected:
enum {
IS_ANY = 0, IS_GROUP = 0x01, IS_SET = 0x02, IS_EXTENSIBLE = 0x04,
IS_GROUP_MEMBER = 0x08, IS_SET_MEMBER = 0x10, IS_UPDATE = 0x20 };
bool thisIs(int what);
#endif
};
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */