/* -*- 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 . */ #pragma once #include #include #include #include namespace xforms { class OXSDDataType; typedef ::cppu::WeakImplHelper < css::xforms::XDataTypeRepository > ODataTypeRepository_Base; class ODataTypeRepository : public ODataTypeRepository_Base { private: typedef ::rtl::Reference< OXSDDataType > DataType; typedef ::std::map< OUString, DataType > Repository; ::osl::Mutex m_aMutex; Repository m_aRepository; public: ODataTypeRepository( ); protected: virtual ~ODataTypeRepository( ) override; // XDataTypeRepository virtual css::uno::Reference< css::xsd::XDataType > SAL_CALL getBasicDataType( sal_Int16 dataTypeClass ) override; virtual css::uno::Reference< css::xsd::XDataType > SAL_CALL cloneDataType( const OUString& sourceName, const OUString& newName ) override; virtual void SAL_CALL revokeDataType( const OUString& typeName ) override; virtual css::uno::Reference< css::xsd::XDataType > SAL_CALL getDataType( const OUString& typeName ) override; // XEnumerationAccess (base of XDataTypeRepository) virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration( ) override; // XNameAccess (base of XDataTypeRepository) virtual css::uno::Any SAL_CALL getByName( const OUString& aName ) override; virtual css::uno::Sequence< OUString > SAL_CALL getElementNames( ) override; virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) override; // XElementAccess (base of XEnumerationAccess and XNameAccess) virtual css::uno::Type SAL_CALL getElementType( ) override; virtual sal_Bool SAL_CALL hasElements( ) override; private: ODataTypeRepository( const ODataTypeRepository& ) = delete; ODataTypeRepository& operator=( const ODataTypeRepository& ) = delete; private: /** locates the type with the given name in our repository, or throws an exception if there is no such type */ Repository::iterator implLocate( const OUString& _rName, bool _bAllowMiss = false ); }; } // namespace xforms /* vim:set shiftwidth=4 softtabstop=4 expandtab: */