This file is indexed.

/usr/include/PackageKit/packagekit-qt2/package.h is in libpackagekit-qt2-dev 0.7.2-4ubuntu3.

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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
/*
 * This file is part of the QPackageKit project
 * Copyright (C) 2008 Adrien Bustany <madcat@mymadcat.com>
 * Copyright (C) 2010-2011 Daniel Nicoletti <dantti85-pk@yahoo.com.br>
 *
 * 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 PACKAGEKIT_PACKAGE_H
#define PACKAGEKIT_PACKAGE_H

#include <QtCore/QString>
#include <QtCore/QDateTime>
#include <QtCore/QSet>

namespace PackageKit {

/**
 * \class Package package.h Package
 * \author Adrien Bustany \e <madcat@mymadcat.com>
 * \author Daniel Nicoletti \e <dantti85-pk@yahoo.com.br>
 *
 * \brief Represents a software package
 *
 * This class represents a software package.
 *
 * \note All Package objects should be deleted by the user.
 */
class PackagePrivate;
class Package
{
    Q_GADGET
    Q_ENUMS(Info)
    Q_ENUMS(Group)
    Q_ENUMS(UpdateState)
    Q_ENUMS(Restart)
public:
    /**
     * Describes the state of a package
     */
    typedef enum {
        UnknownInfo,
        InfoInstalled,
        InfoAvailable,
        InfoLow,
        InfoEnhancement,
        InfoNormal,
        InfoBugfix,
        InfoImportant,
        InfoSecurity,
        InfoBlocked,
        InfoDownloading,
        InfoUpdating,
        InfoInstalling,
        InfoRemoving,
        InfoCleanup,
        InfoObsoleting,
        InfoCollectionInstalled,
        InfoCollectionAvailable,
        InfoFinished,
        InfoReinstalling,
        InfoDowngrading,
        InfoPreparing,
        InfoDecompressing,
        InfoUntrusted,
        InfoTrusted
    } Info;

    /**
     * Describes the different package groups
     */
    typedef enum {
        UnknownGroup,
        GroupAccessibility,
        GroupAccessories,
        GroupAdminTools,
        GroupCommunication,
        GroupDesktopGnome,
        GroupDesktopKde,
        GroupDesktopOther,
        GroupDesktopXfce,
        GroupEducation,
        GroupFonts,
        GroupGames,
        GroupGraphics,
        GroupInternet,
        GroupLegacy,
        GroupLocalization,
        GroupMaps,
        GroupMultimedia,
        GroupNetwork,
        GroupOffice,
        GroupOther,
        GroupPowerManagement,
        GroupProgramming,
        GroupPublishing,
        GroupRepos,
        GroupSecurity,
        GroupServers,
        GroupSystem,
        GroupVirtualization,
        GroupScience,
        GroupDocumentation,
        GroupElectronics,
        GroupCollections,
        GroupVendor,
        GroupNewest
    } Group;
    typedef QSet<Group> Groups;

    /**
     * Describes an update's state
     */
    typedef enum {
        UnknownUpdateState,
        UpdateStateStable,
        UpdateStateUnstable,
        UpdateStateTesting,
    } UpdateState;

    /**
     * Describes a restart type
     */
    typedef enum {
        UnknownRestart,
        RestartNone,
        RestartApplication,
        RestartSession,
        RestartSystem,
        RestartSecuritySession, /* a library that is being used by this package has been updated for security */
        RestartSecuritySystem
    } Restart;

    /**
     * Constructs package
     */
    Package(const QString &packageId, Info info = UnknownInfo, const QString &summary = QString());

    /**
     * Constructs a copy of other.
     */
    Package(const Package &other);

    /**
     * Constructs an invalid package.
     */
    Package();

    /**
     * Destructor
     */
    ~Package();

    /**
     * \brief Returns the package ID
     *
     * A PID (package ID) uniquely identifies a package among all software repositories
     */
    QString id() const;

    /**
     * Returns the package name, for example vim
     */
    QString name() const;

    /**
     * Returns the package version, for example 7.0
     */
    QString version() const;

    /**
     * Returns the package's architecture, for example x86_64
     */
    QString arch() const;

    /**
     * Holds additionnal data about the package set by the backend
     */
    QString data() const;

    /**
     * Returns the package's summary. You can get more details by using Client::getDetails
     */
    QString summary() const;

    /**
     * Returns the package's info
     */
    Info info() const;

    /**
     * Checks weither the package has details or not
     * \sa Transaction::getDetails()
    */
    bool hasDetails() const;

    /**
     * Returns the package's license
     * \note this will only return a valid value if hasDetails() returns true
     */
    QString license() const;

    /**
     * Define the package's license
     * \note this will make hasDetails() return true
     */
    void setLicense(const QString &license);

    /**
     * Returns the package's group (for example Multimedia, Editors...)
     * \note this will only return a valid value if hasDetails() returns true
     */
    Group group() const;

    /**
     * Define the package's group
     * \note this will make hasDetails() return true
     */
    void setGroup(Group group);

    /**
     * Returns the package's long description
     * \note this will only return a valid value if hasDetails() returns true
     */
    QString description() const;

    /**
     * Define the package's long description
     * \note this will make hasDetails() return true
     */
    void setDescription(const QString &description);

    /**
     * Returns the software's homepage url
     * \note this will only return a valid value if hasDetails() returns true
     */
    QString url() const;

    /**
     * Define the package's url
     * \note this will make hasDetails() return true
     */
    void setUrl(const QString &url);

    /**
     * Returns the package's size
     * \note this will only return a valid value if hasDetails() returns true
     */
    qulonglong size() const;

    /**
     * Define the package's size
     * \note this will make hasDetails() return true
     */
    void setSize(qulonglong size);

    /**
     * Returns if the package has update details
     */
    bool hasUpdateDetails() const;

    /**
     * Returns the package list of packages that will be updated by updating this package
     * \note this will only return a valid value if hasUpdateDetails() returns true
     */
    QList<Package> updates() const;

    /**
     * Define the list of packages that will be updated by updating this package
     * \note this will make hasUpdateDetails() return true
     */
    void setUpdates(const QList<Package> &updates);

    /**
     * Returns the package list of packages that will be obsoleted by this update
     * \note this will only return a valid value if hasUpdateDetails() returns true
     */
    QList<Package> obsoletes() const;

    /**
     * Define the list of packages that will be obsoleted by updating this package
     * \note this will make hasUpdateDetails() return true
     */
    void setObsoletes(const QList<Package> &obsoletes);

    /**
     * Returns the verdor URL of this update
     * \note this will only return a valid value if hasUpdateDetails() returns true
     */
    QString vendorUrl() const;

    /**
     * Define the vendor URL
     * \note this will make hasUpdateDetails() return true
     */
    void setVendorUrl(const QString &vendorUrl);

    /**
     * Returns the bugzilla URL of this update
     * \note this will only return a valid value if hasUpdateDetails() returns true
     */
    QString bugzillaUrl() const;

    /**
     * Define the bugzilla URL
     * \note this will make hasUpdateDetails() return true
     */
    void setBugzillaUrl(const QString &bugzillaUrl);

    /**
     * Returns the CVE (Common Vulnerabilities and Exposures) URL of this update
     * \note this will only return a valid value if hasUpdateDetails() returns true
     */
    QString cveUrl() const;

    /**
     * Define the CVE (Common Vulnerabilities and Exposures) URL
     * \note this will make hasUpdateDetails() return true
     */
    void setCveUrl(const QString &cveUrl);

    /**
     * Returns the what kind of restart will be required after this update
     * \note this will only return a valid value if hasUpdateDetails() returns true
     */
    Package::Restart restart() const;

    /**
     * Define the restart type
     * \note this will make hasUpdateDetails() return true
     */
    void setRestart(Package::Restart restart);

    /**
     * Returns the update description's
     * \note this will only return a valid value if hasUpdateDetails() returns true
     */
    QString updateText() const;

    /**
     * Define the update description's
     * \note this will make hasUpdateDetails() return true
     */
    void setUpdateText(const QString &updateText);

    /**
     * Returns the update changelog's
     * \note this will only return a valid value if hasUpdateDetails() returns true
     */
    QString changelog() const;

    /**
     * Define the update changelog's
     * \note this will make hasUpdateDetails() return true
     */
    void setChangelog(const QString &changelog);

    /**
     * Returns the category of the update, eg. stable or testing
     * \note this will only return a valid value if hasUpdateDetails() returns true
     */
    UpdateState state() const;

    /**
     * Define the update changelog's
     * \note this will make hasUpdateDetails() return true
     */
    void setState(UpdateState state);

    /**
     * Returns the date and time when this update was first issued
     * \note this will only return a valid value if hasUpdateDetails() returns true
     */
    QDateTime issued() const;

    /**
     * Define the date and time when this update was first issued
     * \note this will make hasUpdateDetails() return true
     */
    void setIssued(const QDateTime &issued);

    /**
     * Returns the date and time when this updated was updated
     * \note this will only return a valid value if hasUpdateDetails() returns true
     */
    QDateTime updated() const;

    /**
     * Define the date and time when this updated was updated
     * \note this will make hasUpdateDetails() return true
     */
    void setUpdated(const QDateTime &updated);

    /**
     * Returns the path to the package icon, if known
     * \return A QString holding the path to the package icon if known, an empty QString else
     */
    QString iconPath() const;

    /**
     * Compares two packages by it's ids
     */
    bool operator==(const Package &package) const;

    /**
     * Copy the other package data
     */
    Package& operator=(const Package &package);

private:
    PackagePrivate * const d_ptr;

private:
    Q_DECLARE_PRIVATE(Package);
};

} // End namespace PackageKit

#endif