summaryrefslogtreecommitdiff
path: root/include/comphelper/weakbag.hxx
blob: c52defab23eb9486016dbbc8b1b9f567ebcbfa9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* -*- 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_COMPHELPER_WEAKBAG_HXX
#define INCLUDED_COMPHELPER_WEAKBAG_HXX

#include <sal/config.h>

#include <vector>
#include <com/sun/star/uno/Reference.h>
#include <cppuhelper/weakref.hxx>
#include <osl/diagnose.h>

namespace comphelper {

/**
   A bag of UNO weak references.
*/
template< typename T > class WeakBag {
public:
    /**
       Add a new weak reference.

       The implementation keeps the amount of memory consumed linear in the
       number of living references added, not linear in the number of total
       references added.

       @param e
       a non-null reference.
    */
    void add(css::uno::Reference< T > const & e) {
        OSL_ASSERT(e.is());
        for (auto i = m_list.begin(); i != m_list.end();) {
            if (css::uno::Reference< T >(*i).is()) {
                ++i;
            } else {
                i = m_list.erase(i);
            }
        }
        m_list.push_back(css::uno::WeakReference< T >(e));
    }

    /**
       Remove a living reference.

       @return
       a living reference, or null if there are none.
    */
    css::uno::Reference< T > remove() {
        while (!m_list.empty()) {
            css::uno::Reference< T > r(m_list.back());
            m_list.pop_back();
            if (r.is()) {
                return r;
            }
        }
        return css::uno::Reference< T >();
    }

private:
    std::vector< css::uno::WeakReference< T > > m_list;
};

}

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
p-5.3-56&id=a3ed338f81a32ecd4ab2ee74cbed6568a458fd3a'>CWS-TOOLING: integrate CWS sb118Jens-Heiner Rechtien 2010-03-31Merge DEV300_m75thb 2010-03-04sb118: #i109791# improved CPPUNIT_CFLAGS handlingsb 2010-03-04sb118: add missing CFLAGS+= $(CPPUNIT_CFLAGS) to loads of other makefiles, tooRene Engelhard 2010-03-03sb118: add forgotten CPPUNIT: in o3tlRene Engelhard 2010-02-25sb118: merged in DEV300_m72sb 2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun Mi...Jens-Heiner Rechtien 2010-01-29sb118: #i108776# changed addsym.awk to also export STLport num_put symbols, a...sb 2010-01-18#i108160# #i10000# backport cairocanvas build fix & more build fixesthb 2010-01-18thbfixes10: merge with DEV300 m69thb 2010-01-13sb118: adapted cppunit.mk to cppunittester and no longer require "dmake test"...sb 2010-01-07sb118: make test libraries RPATH=NONEsb 2010-01-05sb118: merged in DEV300_m68sb 2009-12-11sb118: Replace (heavily modified) CppUnit 1.8.0 with (unmodified) latest 1.12.1.sb 2009-10-16#i105938# Provides simplistic pool memory from a std::vectorthb 2009-09-25merge commitMathias Bauer 2009-09-16CWS-TOOLING: integrate CWS l10nframework01Ivo Hinkelmann 2009-09-14#i103496#: split cppunit in a pure external lib and a lib depending on sal ->...Mathias Bauer 2009-06-16CWS-TOOLING: integrate CWS ause102Ivo Hinkelmann 2009-02-19CWS-TOOLING: integrate CWS sb104Oliver Bolte 2008-12-22#i10000# Do not create signalfiles in in working directory. On failure they d...Rüdiger Timm 2008-10-10CWS-TOOLING: integrate CWS cmcfixes49Oliver Bolte