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
|
/* apt-utils.h
*
* Copyright (c) 2001, 2005 Daniel Burrows (aptitude)
* Copyright (c) 2009-2016 Daniel Nicoletti <dantti12@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef APT_UTILS_H
#define APT_UTILS_H
#include <apt-pkg/acquire.h>
#include <apt-pkg/pkgrecords.h>
#include <pk-backend.h>
#include "apt-cache-file.h"
using namespace std;
/**
* Return the PkEnumGroup of the give group string.
*/
PkGroupEnum get_enum_group(string group);
/**
* Return the changelog and extract details about the changes.
*/
string fetchChangelogData(
AptCacheFile &CacheFile,
pkgAcquire &Fetcher,
pkgCache::VerIterator Ver,
pkgCache::VerIterator currver,
string *update_text,
string *updated,
string *issued);
/**
* Returns a list of links pairs url;description for CVEs
*/
GPtrArray *getCVEUrls(const string &changelog);
/**
* Returns a list of links pairs url;description for Debian and Ubuntu bugs
*/
GPtrArray *getBugzillaUrls(const string &changelog);
/**
* Return if the given string ends with the other
*/
bool ends_with(const string &str, const char *end);
/**
* Return if the given string starts with the other
*/
bool starts_with(const string &str, const char *end);
/**
* Return true if the given package name is on the list of packages that require a restart
*/
bool utilRestartRequired(const string &packageName);
/**
* Build a unique repository origin, in the form of
* {distro}-{suite}-{component}
*/
string utilBuildPackageOriginId(pkgCache::VerFileIterator vf);
/**
* Return an utf8 string
*/
const char *toUtf8(const char *str);
/**
* Changelog dates are in format RFC2822/RFC5322 compatible:
* "day-of-week, dd month yyyy hh:mm:ss +zzzz"
* Parses and converts to ISO8601 respecting the original timezone
*/
string changelogDateToIso8601(const string &date_str);
#endif
|