This file is indexed.

/usr/include/soprano/filtermodel.h is in libsoprano-dev 2.9.4+dfsg1-0ubuntu2.

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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/*
 * This file is part of Soprano Project.
 *
 * Copyright (C) 2007 Sebastian Trueg <trueg@kde.org>
 *
 * 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 _SOPRANO_FILTER_MODEL_H_
#define _SOPRANO_FILTER_MODEL_H_

#include "model.h"
#include "soprano_export.h"


namespace Soprano {
    /**
     * \class FilterModel filtermodel.h Soprano/FilterModel
     *
     * \brief A FilterModel is a virtual model that wraps another Model.
     * 
     * FilterModels can be stacked to provide filtering on each of
     * the Model's methods. A FilterModel has a parent model which
     * is the data base for this filter. The parent can be an actual
     * StorageModel or another FilterModel.
     *
     * <b>Error handling:</b>
     *
     * The FilterModel "inherits" its parent Model's errors, i.e. FilterModel::lastError()
     * always equals FilterModel::parent()->lastError() (If the FilterModel implementations
     * are called in subclasses).
     *
     * \author Sebastian Trueg <trueg@kde.org>
     */
    class SOPRANO_EXPORT FilterModel : public Model
    {
        Q_OBJECT

    public:
        /**
         * Destructor
         */
        virtual ~FilterModel();

        //@{
        /**
         * Set the parent Model.
         * \param model The Model that this filter will forward any commands to.
         */
        virtual void setParentModel( Model* model );

        /**
         * Get the parent model.
         * \return The parent Model or 0 if none has been set.
         */
        virtual Model* parentModel() const;
        //@}

        //@{
        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual Error::ErrorCode addStatement( const Statement &statement );

        /**
         * Reimplemented for convenience. Calls Model::addStatement(const Node&,const Node&,const Node&,const Node&)
         */
        Error::ErrorCode addStatement( const Node& subject, const Node& predicate, const Node& object, const Node& context = Node() );
        //@}

        //@{
        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual Error::ErrorCode removeStatement( const Statement &statement );

        /**
         * Reimplemented for convenience. Calls Model::removeStatement(const Node&,const Node&,const Node&,const Node&)
         */
        Error::ErrorCode removeStatement( const Node& subject, const Node& predicate, const Node& object, const Node& context = Node() );

        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual Error::ErrorCode removeAllStatements( const Statement &statement );

        /**
         * Reimplemented for convenience. Calls Model::removeAllStatements(const Node&,const Node&,const Node&,const Node&)
         */
        Error::ErrorCode removeAllStatements( const Node& subject, const Node& predicate, const Node& object, const Node& context = Node() );
        //@}

        //@{
        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual StatementIterator listStatements( const Statement &partial ) const;

        /**
         * Reimplemented for convenience. Calls Model::listStatements(const Node&,const Node&,const Node&,const Node&)
         */
        StatementIterator listStatements( const Node& subject, const Node& predicate, const Node& object, const Node& context = Node() ) const;

        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual NodeIterator listContexts() const;

        /**
         * Default implementation simply pipes the call through to the parent model.
         */
//    virtual QueryResultIterator executeQuery( const Query::Query& query ) const;

        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual QueryResultIterator executeQuery( const QString& query, Query::QueryLanguage language, const QString& userQueryLanguage = QString() ) const;
        //@}

        //@{
        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual bool containsStatement( const Statement &statement ) const;

        /**
         * Reimplemented for convenience. Calls Model::containsStatement(const Node&,const Node&,const Node&,const Node&)
         */
        bool containsStatement( const Node& subject, const Node& predicate, const Node& object, const Node& context = Node() ) const;

        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual bool containsAnyStatement( const Statement &statement ) const;

        /**
         * Reimplemented for convenience. Calls Model::containsAnyStatement(const Node&,const Node&,const Node&,const Node&)
         */
        bool containsAnyStatement( const Node& subject, const Node& predicate, const Node& object, const Node& context = Node() ) const;
        //@}

        //@{
        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual bool isEmpty() const;

        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual int statementCount() const;
        //@}

        //@{
        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual Error::ErrorCode write( QTextStream &os ) const;
        //@}

        //@{
        /**
         * Default implementation simply pipes the call through to the parent model.
         */
        virtual Node createBlankNode();
        //@}

        using Model::addStatement;
        using Model::removeStatement;
        using Model::removeAllStatements;
        using Model::listStatements;
        using Model::containsStatement;
        using Model::containsAnyStatement;

    protected:
        /**
         * Create an empty filter model.
         */
        FilterModel();

        /**
         * Create a new FilterModel which works on parent.
         * Calls setParentModel.
         * \param parent The parent Model.
         */
        FilterModel( Model* parent );

        /**
         * Handle a statementsAdded() signal from the parent Model.
         *
         * The default implementation simply re-emits the signal.
         */
        virtual void parentStatementsAdded();

        /**
         * Handle a statementsRemoved() signal from the parent Model.
         *
         * The default implementation simply re-emits the signal.
         */
        virtual void parentStatementsRemoved();

        /**
         * Handle a statementsAdded() signal from the parent Model.
         *
         * The default implementation simply re-emits the signal.
         */
        virtual void parentStatementAdded( const Statement& );

        /**
         * Handle a statementsRemoved() signal from the parent Model.
         *
         * The default implementation simply re-emits the signal.
         */
        virtual void parentStatementRemoved( const Statement& );

    private Q_SLOTS:
        /**
         * This slot gets connected to Model::statementsAdded of the parent
         * model.
         */
        void slotStatementsAdded();

        /**
         * This slot gets connected to Model::statementsRemoved of the parent
         * model.
         */
        void slotStatementsRemoved();

        /**
         * This slot gets connected to Model::statementAdded of the parent
         * model.
         */
        void slotStatementAdded( const Soprano::Statement& );

        /**
         * This slot gets connected to Model::statementRemoved of the parent
         * model.
         */
        void slotStatementRemoved( const Soprano::Statement& );

    private:
        class Private;
        Private* const d;
    };
}

#endif