This file is indexed.

/usr/include/k3staticdeleter.h is in kdelibs5-dev 4:4.13.0-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*
 * This file is part of the KDE Libraries
 * Copyright (C) 2000 Stephan Kulow <coolo@kde.org>
 *               2001 KDE Team
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 */

#ifndef _KSTATIC_DELETER_H_
#define _KSTATIC_DELETER_H_

#include <kde3support_export.h>

class K3StaticDeleterBase;

namespace K3StaticDeleterHelpers
{
    /**
     * Registers a static deleter.
     * @param d the static deleter to register
     * @see K3StaticDeleterBase
     * @see K3StaticDeleter
     */
    KDE3SUPPORT_EXPORT void registerStaticDeleter(K3StaticDeleterBase *d);

    /**
     * Unregisters a static deleter.
     * @param d the static deleter to unregister
     * @see K3StaticDeleterBase
     * @see K3StaticDeleter
     */
    KDE3SUPPORT_EXPORT void unregisterStaticDeleter(K3StaticDeleterBase *d);

    /**
     * Calls K3StaticDeleterBase::destructObject() on all
     * registered static deleters and unregisters them all.
     * @see K3StaticDeleterBase
     * @see K3StaticDeleter
     */
    KDE3SUPPORT_EXPORT void deleteStaticDeleters();
} // namespace K3StaticDeleterHelpers

/**
 * @short Base class for K3StaticDeleter
 *
 * Don't use this class directly; this class is used as a base class for
 * the K3StaticDeleter template to allow polymorphism.
 *
 * @see K3StaticDeleter
 * @see K3StaticDeleterHelpers::registerStaticDeleter()
 * @see K3StaticDeleterHelpers::unregisterStaticDeleter()
 * @see K3StaticDeleterHelpers::deleteStaticDeleters()
 */
class KDE3SUPPORT_EXPORT K3StaticDeleterBase {
public:
    virtual ~K3StaticDeleterBase();
    /**
     * Should destruct the resources managed by this K3StaticDeleterBase.
     * Usually you also want to call it in your destructor.
     * @see K3StaticDeleterHelpers::deleteStaticDeleters()
     */
    virtual void destructObject();
};

/**
 * @short Automatically deletes an object on termination
 *
 * Little helper class to clean up static objects that are held as a pointer.
 *
 * Static deleters are used to manage static resources. They can register
 * themselves with K3StaticDeleterHelpers. K3StaticDeleterHelpers will call destructObject() when
 * K3StaticDeleterHelpers::deleteStaticDeleters() is called or when the process
 * finishes.
 *
 * When the library is unloaded, or the app is terminated, all static deleters
 * will be destroyed, which in turn destroys those static objects properly.
 * There are some rules that you should accept in the K3StaticDeleter managed
 * class:
 * @li Don't rely on the global reference variable in the destructor of the
 * object, it will be '0' at destruction time.
 * @li Don't rely on other K3StaticDeleter managed objects in the destructor
 * of the object, because they may be destroyed before your destructor get called.
 * This one can be tricky, because you might not know that you are actually using a
 * K3StaticDeleter managed class. So try to keep your destructor simple.
 *
 * A typical use is
 * \code
 * static K3StaticDeleter<MyClass> sd;
 *
 * MyClass &MyClass::self() {
 *   if (!_self) { sd.setObject(_self, new MyClass()); }
 *   return *_self;
 * }
 * \endcode
 *
 * @warning Don't delete an object which is managed by %K3StaticDeleter without
 * calling setObject() with a null pointer.
 *
 * @deprecated Use \ref K_GLOBAL_STATIC instead of %K3StaticDeleter.
 */
template<class type> class KDE_DEPRECATED K3StaticDeleter : public K3StaticDeleterBase {
public:
    /**
     * Constructor. Initializes the K3StaticDeleter. Note that the static
     * deleter is not registered by the constructor.
     */
    K3StaticDeleter() { deleteit = 0; globalReference = 0; array = false; }

    /**
     * Sets the object to delete and registers that object to
     * K3StaticDeleterHelpers. If the given object is 0, the formerly registered
     * object is unregistered.
     * @param obj the object to delete
     * @param isArray tells the destructor to delete an array instead of an object
     * @deprecated See the other setObject variant.
     **/
    KDE_DEPRECATED type *setObject( type *obj, bool isArray = false) {
        deleteit = obj;
        globalReference = 0;
        array = isArray;
        if (obj)
            K3StaticDeleterHelpers::registerStaticDeleter(this);
        else
            K3StaticDeleterHelpers::unregisterStaticDeleter(this);
        return obj;
    }

    /**
     * Sets the object to delete and registers the object to be
     * deleted to K3StaticDeleterHelpers. If the given object is 0, the previously
     * registered object is unregistered.
     * @param globalRef the static pointer where this object is stored.
     * This pointer will be reset to 0 after deletion of the object.
     * @param obj the object to delete
     * @param isArray tells the destructor to delete an array instead of an object
     * @return the object to delete, @p obj
     **/
    type *setObject( type* & globalRef, type *obj, bool isArray = false) {
        globalReference = &globalRef;
        deleteit = obj;
        array = isArray;
        if (obj)
            K3StaticDeleterHelpers::registerStaticDeleter(this);
        else
            K3StaticDeleterHelpers::unregisterStaticDeleter(this);
        globalRef = obj;
        return obj;
    }

    /**
     * Destructs the registered object. This has the same effect as deleting
     * the K3StaticDeleter.
     */
    virtual void destructObject() {
        if (globalReference)
           *globalReference = 0;
        if (array)
            delete [] deleteit;
        else
            delete deleteit;
        deleteit = 0;
    }

    /**
     * Destructor. Unregisters the static deleter and destroys the registered
     * object by calling destructObject().
     */
    virtual ~K3StaticDeleter() {
        K3StaticDeleterHelpers::unregisterStaticDeleter(this);
        destructObject();
    }
private:
    type *deleteit;
    type **globalReference;
    bool array;
};

#endif