LibreOffice Module xmloff (master) 1
unointerfacetouniqueidentifiermapper.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#ifndef INCLUDED_XMLOFF_UNOINTERFACETOUNIQUEIDENTIFIERMAPPER_HXX
21#define INCLUDED_XMLOFF_UNOINTERFACETOUNIQUEIDENTIFIERMAPPER_HXX
22
23#include <sal/config.h>
24#include <xmloff/dllapi.h>
25#include <sal/types.h>
26
27#include <deque>
28#include <map>
29#include <rtl/ustring.hxx>
30#include <com/sun/star/uno/XInterface.hpp>
31
32namespace comphelper
33{
34
35typedef ::std::map< OUString, css::uno::Reference< css::uno::XInterface > > IdMap_t;
36
38{
39 typedef std::deque< OUString > Reserved_t;
40
41public:
43
47 const OUString& registerReference( const css::uno::Reference< css::uno::XInterface >& rInterface );
48
54 bool registerReference( const OUString& rIdentifier, const css::uno::Reference< css::uno::XInterface >& rInterface );
55
61 bool reserveIdentifier( const OUString& rIdentifier );
62
65 bool registerReservedReference( const OUString& rIdentifier, const css::uno::Reference< css::uno::XInterface >& rInterface );
66
71 const OUString& getIdentifier( const css::uno::Reference< css::uno::XInterface >& rInterface ) const;
72
77 const css::uno::Reference< css::uno::XInterface >& getReference( const OUString& rIdentifier ) const;
78
79private:
80 bool findReference( const css::uno::Reference< css::uno::XInterface >& rInterface, IdMap_t::const_iterator& rIter ) const;
81 bool findIdentifier( const OUString& rIdentifier, IdMap_t::const_iterator& rIter ) const;
82 bool findReserved( const OUString& rIdentifier ) const;
83 bool findReserved( const OUString& rIdentifier, Reserved_t::const_iterator& rIter ) const;
84
86 sal_uInt32 mnNextId;
88};
89
90}
91
92#endif
93
94/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const OUString & registerReference(const css::uno::Reference< css::uno::XInterface > &rInterface)
returns a unique identifier for the given uno object.
bool registerReference(const OUString &rIdentifier, const css::uno::Reference< css::uno::XInterface > &rInterface)
registers the given uno object with the given identifier.
#define XMLOFF_DLLPUBLIC
Definition: dllapi.h:29
::std::map< OUString, css::uno::Reference< css::uno::XInterface > > IdMap_t
DESKTOP_DEPLOYMENTMISC_DLLPUBLIC OUString getIdentifier(css::uno::Reference< css::deployment::XPackage > const &package)