pamac-classic/src/alpm_config.vala

411 lines
13 KiB
Vala
Raw Normal View History

2014-10-22 13:44:02 -03:00
/*
* pamac-vala
*
2015-03-04 11:55:36 -03:00
* Copyright (C) 2014-2015 Guillaume Benoit <guillaume@manjaro.org>
2014-10-22 13:44:02 -03:00
*
* 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 3 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 get of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Alpm {
class Repo {
public string name;
2014-12-03 12:02:14 -03:00
public Signature.Level siglevel;
public DB.Usage usage;
2014-10-22 13:44:02 -03:00
public string[] urls;
public Repo (string name) {
this.name = name;
2015-01-02 17:39:32 -03:00
siglevel = Signature.Level.USE_DEFAULT;
2014-12-03 12:02:14 -03:00
usage = 0;
2014-10-22 13:44:02 -03:00
urls = {};
}
}
public class Config {
2014-12-03 12:02:14 -03:00
string conf_path;
2014-10-30 10:44:09 -03:00
string rootdir;
string dbpath;
string gpgdir;
string logfile;
string arch;
double deltaratio;
int usesyslog;
public int checkspace;
2015-01-03 15:32:10 -03:00
Alpm.List<string> *cachedirs;
Alpm.List<string> *ignoregroups;
2015-08-20 10:11:18 -03:00
public Alpm.List<string> *ignorepkgs;
2015-01-03 15:32:10 -03:00
Alpm.List<string> *noextracts;
Alpm.List<string> *noupgrades;
public GLib.List<string> holdpkgs;
public GLib.List<string> syncfirsts;
2014-12-03 12:02:14 -03:00
Signature.Level defaultsiglevel;
Signature.Level localfilesiglevel;
Signature.Level remotefilesiglevel;
2014-10-22 13:44:02 -03:00
Repo[] repo_order;
2014-12-03 12:02:14 -03:00
public unowned Handle? handle;
2014-10-22 13:44:02 -03:00
public Config (string path) {
2014-12-03 12:02:14 -03:00
conf_path = path;
handle = null;
reload ();
}
public void reload () {
// set default options
2014-10-30 10:44:09 -03:00
rootdir = "/";
dbpath = "/var/lib/pacman";
gpgdir = "/etc/pacman.d/gnupg/";
logfile = "/var/log/pacman.log";
2015-01-03 15:32:10 -03:00
string default_cachedir = "/var/cache/pacman/pkg/";
2014-10-30 10:44:09 -03:00
arch = Posix.utsname().machine;
holdpkgs = new GLib.List<string> ();
syncfirsts = new GLib.List<string> ();
2015-01-03 15:32:10 -03:00
Alpm.List.free_all (cachedirs);
Alpm.List.free_all (ignoregroups);
Alpm.List.free_all (ignorepkgs);
Alpm.List.free_all (noextracts);
Alpm.List.free_all (noupgrades);
cachedirs = new Alpm.List<string> ();
2015-01-03 15:32:10 -03:00
cachedirs->add_str (default_cachedir);
2015-01-03 13:26:47 -03:00
ignoregroups = new Alpm.List<string> ();
ignorepkgs = new Alpm.List<string> ();
noextracts = new Alpm.List<string> ();
noupgrades = new Alpm.List<string> ();
2014-10-30 10:44:09 -03:00
usesyslog = 0;
checkspace = 0;
deltaratio = 0.7;
2014-12-03 12:02:14 -03:00
defaultsiglevel = Signature.Level.PACKAGE | Signature.Level.PACKAGE_OPTIONAL | Signature.Level.DATABASE | Signature.Level.DATABASE_OPTIONAL;
localfilesiglevel = Signature.Level.USE_DEFAULT;
remotefilesiglevel = Signature.Level.USE_DEFAULT;
2014-10-22 13:44:02 -03:00
repo_order = {};
// parse conf file
2014-12-03 12:02:14 -03:00
parse_file (conf_path);
2014-10-30 10:44:09 -03:00
}
2014-12-03 12:02:14 -03:00
public void get_handle () {
2014-10-30 10:44:09 -03:00
Alpm.Errno error;
2015-03-04 11:55:36 -03:00
if (handle != null) {
2014-12-03 12:02:14 -03:00
Handle.release (handle);
2015-03-04 11:55:36 -03:00
}
2014-12-03 12:02:14 -03:00
handle = Handle.new (rootdir, dbpath, out error);
2014-10-30 10:44:09 -03:00
if (handle == null) {
stderr.printf ("Failed to initialize alpm library" + " (%s)\n".printf(Alpm.strerror (error)));
2014-12-03 12:02:14 -03:00
return;
2014-10-30 10:44:09 -03:00
}
// define options
handle.gpgdir = gpgdir;
handle.logfile = logfile;
handle.arch = arch;
handle.deltaratio = deltaratio;
handle.usesyslog = usesyslog;
handle.checkspace = checkspace;
handle.defaultsiglevel = defaultsiglevel;
2015-01-02 17:39:32 -03:00
localfilesiglevel = merge_siglevel (defaultsiglevel, localfilesiglevel);
remotefilesiglevel = merge_siglevel (defaultsiglevel, remotefilesiglevel);
2014-10-30 10:44:09 -03:00
handle.localfilesiglevel = localfilesiglevel;
handle.remotefilesiglevel = remotefilesiglevel;
handle.cachedirs = cachedirs;
2015-01-03 13:26:47 -03:00
handle.ignoregroups = ignoregroups;
handle.ignorepkgs = ignorepkgs;
handle.noextracts = noextracts;
handle.noupgrades = noupgrades;
2014-10-22 13:44:02 -03:00
// register dbs
foreach (var repo in repo_order) {
2014-10-22 13:44:02 -03:00
unowned DB db = handle.register_syncdb (repo.name, repo.siglevel);
2015-03-04 11:55:36 -03:00
foreach (var url in repo.urls) {
2014-10-22 13:44:02 -03:00
db.add_server (url.replace ("$repo", repo.name).replace ("$arch", handle.arch));
2015-03-04 11:55:36 -03:00
}
if (repo.usage == 0) {
2014-12-03 12:02:14 -03:00
db.usage = DB.Usage.ALL;
2015-03-04 11:55:36 -03:00
} else {
2014-12-03 12:02:14 -03:00
db.usage = repo.usage;
2015-03-04 11:55:36 -03:00
}
2014-10-22 13:44:02 -03:00
}
}
public void parse_file (string path, string? section = null) {
string? current_section = section;
2014-10-22 13:44:02 -03:00
var file = GLib.File.new_for_path (path);
2015-08-20 10:11:18 -03:00
if (file.query_exists ()) {
2014-10-22 13:44:02 -03:00
try {
// Open file for reading and wrap returned FileInputStream into a
// DataInputStream, so we can read line by line
var dis = new DataInputStream (file.read ());
2015-08-20 10:11:18 -03:00
string? line;
2014-10-22 13:44:02 -03:00
// Read lines until end of file (null) is reached
2015-08-20 10:11:18 -03:00
while ((line = dis.read_line ()) != null) {
2015-03-04 11:55:36 -03:00
if (line.length == 0) {
continue;
}
// ignore whole line and end of line comments
string[] splitted = line.split ("#", 2);
line = splitted[0].strip ();
2015-03-04 11:55:36 -03:00
if (line.length == 0) {
continue;
}
2014-10-22 13:44:02 -03:00
if (line[0] == '[' && line[line.length-1] == ']') {
current_section = line[1:-1];
if (current_section != "options") {
var repo = new Repo (current_section);
2014-10-22 13:44:02 -03:00
repo_order += repo;
}
continue;
}
splitted = line.split ("=", 2);
2015-08-20 10:11:18 -03:00
string key = splitted[0].strip ();
string? val = null;
2015-03-04 11:55:36 -03:00
if (splitted[1] != null) {
2015-08-20 10:11:18 -03:00
val = splitted[1].strip ();
2015-03-04 11:55:36 -03:00
}
2015-08-20 10:11:18 -03:00
if (key == "Include") {
parse_file (val, current_section);
2015-03-04 11:55:36 -03:00
}
2014-10-22 13:44:02 -03:00
if (current_section == "options") {
2015-08-20 10:11:18 -03:00
if (key == "GPGDir") {
gpgdir = val;
} else if (key == "LogFile") {
logfile = val;
} else if (key == "Architecture") {
if (val == "auto") {
2014-10-30 10:44:09 -03:00
arch = Posix.utsname ().machine;
2015-03-04 11:55:36 -03:00
} else {
2015-08-20 10:11:18 -03:00
arch = val;
2015-03-04 11:55:36 -03:00
}
2015-08-20 10:11:18 -03:00
} else if (key == "UseDelta") {
deltaratio = double.parse (val);
} else if (key == "UseSysLog") {
2014-10-30 10:44:09 -03:00
usesyslog = 1;
2015-08-20 10:11:18 -03:00
} else if (key == "CheckSpace") {
2014-10-30 10:44:09 -03:00
checkspace = 1;
2015-08-20 10:11:18 -03:00
} else if (key == "SigLevel") {
defaultsiglevel = define_siglevel (defaultsiglevel, val);
} else if (key == "LocalFileSigLevel") {
localfilesiglevel = define_siglevel (localfilesiglevel, val);
} else if (key == "RemoteFileSigLevel") {
remotefilesiglevel = define_siglevel (remotefilesiglevel, val);
} else if (key == "HoldPkg") {
foreach (string name in val.split (" ")) {
holdpkgs.append (name);
2015-03-04 11:55:36 -03:00
}
2015-08-20 10:11:18 -03:00
} else if (key == "SyncFirst") {
foreach (string name in val.split (" ")) {
syncfirsts.append (name);
2015-03-04 11:55:36 -03:00
}
2015-08-20 10:11:18 -03:00
} else if (key == "CacheDir") {
foreach (string dir in val.split (" ")) {
2015-01-03 15:32:10 -03:00
cachedirs->add_str (dir);
2015-03-04 11:55:36 -03:00
}
2015-08-20 10:11:18 -03:00
} else if (key == "IgnoreGroup") {
foreach (string name in val.split (" ")) {
2015-01-03 15:32:10 -03:00
ignoregroups->add_str (name);
2015-03-04 11:55:36 -03:00
}
2015-08-20 10:11:18 -03:00
} else if (key == "IgnorePkg") {
foreach (string name in val.split (" ")) {
2015-01-03 15:32:10 -03:00
ignorepkgs->add_str (name);
2015-03-04 11:55:36 -03:00
}
2015-08-20 10:11:18 -03:00
} else if (key == "Noextract") {
foreach (string name in val.split (" ")) {
2015-01-03 15:32:10 -03:00
noextracts->add_str (name);
2015-03-04 11:55:36 -03:00
}
2015-08-20 10:11:18 -03:00
} else if (key == "NoUpgrade") {
foreach (string name in val.split (" ")) {
2015-01-03 15:32:10 -03:00
noupgrades->add_str (name);
2015-03-04 11:55:36 -03:00
}
2014-10-22 13:44:02 -03:00
}
} else {
foreach (var repo in repo_order) {
if (repo.name == current_section) {
2015-08-20 10:11:18 -03:00
if (key == "Server") {
repo.urls += val;
} else if (key == "SigLevel") {
2015-03-04 11:55:36 -03:00
if (repo.siglevel == Signature.Level.USE_DEFAULT) {
2015-01-02 17:39:32 -03:00
repo.siglevel = defaultsiglevel;
2015-03-04 11:55:36 -03:00
}
2015-08-20 10:11:18 -03:00
repo.siglevel = define_siglevel (repo.siglevel, val);
} else if (key == "Usage") {
repo.usage = define_usage (val);
2015-03-04 11:55:36 -03:00
}
2014-10-22 13:44:02 -03:00
}
}
}
}
} catch (GLib.Error e) {
GLib.stderr.printf("%s\n", e.message);
}
2015-08-20 10:11:18 -03:00
} else {
GLib.stderr.printf ("File '%s' doesn't exist.\n", path);
}
}
public void write (HashTable<string,Variant> new_conf) {
var file = GLib.File.new_for_path (conf_path);
2015-08-20 10:11:18 -03:00
if (file.query_exists ()) {
try {
// Open file for reading and wrap returned FileInputStream into a
// DataInputStream, so we can read line by line
var dis = new DataInputStream (file.read ());
2015-08-20 10:11:18 -03:00
string? line;
string[] data = {};
// Read lines until end of file (null) is reached
2015-08-20 10:11:18 -03:00
while ((line = dis.read_line ()) != null) {
if (line.length == 0) {
data += "\n";
continue;
}
if (line.contains ("IgnorePkg")) {
if (new_conf.contains ("IgnorePkg")) {
2015-08-20 10:11:18 -03:00
string val = new_conf.get ("IgnorePkg").get_string ();
if (val == "") {
data += "#IgnorePkg =\n";
2015-03-04 11:55:36 -03:00
} else {
2015-08-20 10:11:18 -03:00
data += "IgnorePkg = %s\n".printf (val);
2015-03-04 11:55:36 -03:00
}
2015-08-20 10:11:18 -03:00
new_conf.remove ("IgnorePkg");
2015-03-04 11:55:36 -03:00
} else {
data += line + "\n";
2015-03-04 11:55:36 -03:00
}
} else if (line.contains ("CheckSpace")) {
if (new_conf.contains ("CheckSpace")) {
2015-08-20 10:11:18 -03:00
bool val = new_conf.get ("CheckSpace").get_boolean ();
if (val == true) {
data += "CheckSpace\n";
2015-03-04 11:55:36 -03:00
} else {
data += "#CheckSpace\n";
2015-03-04 11:55:36 -03:00
}
2015-08-20 10:11:18 -03:00
new_conf.remove ("CheckSpace");
2015-03-04 11:55:36 -03:00
} else {
data += line + "\n";
2015-03-04 11:55:36 -03:00
}
} else {
data += line + "\n";
2015-03-04 11:55:36 -03:00
}
}
// delete the file before rewrite it
file.delete ();
// creating a DataOutputStream to the file
var dos = new DataOutputStream (file.create (FileCreateFlags.REPLACE_DESTINATION));
foreach (string new_line in data) {
// writing a short string to the stream
dos.put_string (new_line);
}
} catch (GLib.Error e) {
GLib.stderr.printf("%s\n", e.message);
}
2015-08-20 10:11:18 -03:00
} else {
GLib.stderr.printf ("File '%s' doesn't exist.\n", conf_path);
2014-12-03 12:02:14 -03:00
}
}
public DB.Usage define_usage (string conf_string) {
DB.Usage usage = 0;
foreach (string directive in conf_string.split(" ")) {
if (directive == "Sync") {
usage |= DB.Usage.SYNC;
} else if (directive == "Search") {
usage |= DB.Usage.SEARCH;
} else if (directive == "Install") {
usage |= DB.Usage.INSTALL;
} else if (directive == "Upgrade") {
usage |= DB.Usage.UPGRADE;
} else if (directive == "All") {
usage |= DB.Usage.ALL;
}
2014-10-22 13:44:02 -03:00
}
2014-12-03 12:02:14 -03:00
return usage;
2014-10-22 13:44:02 -03:00
}
2014-12-03 12:02:14 -03:00
public Signature.Level define_siglevel (Signature.Level default_level, string conf_string) {
2014-10-22 13:44:02 -03:00
foreach (string directive in conf_string.split(" ")) {
bool affect_package = false;
bool affect_database = false;
2015-03-04 11:55:36 -03:00
if ("Package" in directive) {
2015-01-02 17:39:32 -03:00
affect_package = true;
2015-03-04 11:55:36 -03:00
} else if ("Database" in directive) {
2015-01-02 17:39:32 -03:00
affect_database = true;
2015-03-04 11:55:36 -03:00
} else {
2014-10-22 13:44:02 -03:00
affect_package = true;
affect_database = true;
}
if ("Never" in directive) {
if (affect_package) {
2014-12-03 12:02:14 -03:00
default_level &= ~Signature.Level.PACKAGE;
default_level |= Signature.Level.PACKAGE_SET;
2014-10-22 13:44:02 -03:00
}
2015-03-04 11:55:36 -03:00
if (affect_database) {
2015-01-02 17:39:32 -03:00
default_level &= ~Signature.Level.DATABASE;
2015-03-04 11:55:36 -03:00
}
2015-01-02 17:39:32 -03:00
} else if ("Optional" in directive) {
2014-10-22 13:44:02 -03:00
if (affect_package) {
2014-12-03 12:02:14 -03:00
default_level |= Signature.Level.PACKAGE;
default_level |= Signature.Level.PACKAGE_OPTIONAL;
default_level |= Signature.Level.PACKAGE_SET;
2014-10-22 13:44:02 -03:00
}
if (affect_database) {
2014-12-03 12:02:14 -03:00
default_level |= Signature.Level.DATABASE;
default_level |= Signature.Level.DATABASE_OPTIONAL;
2014-10-22 13:44:02 -03:00
}
2015-01-02 17:39:32 -03:00
} else if ("Required" in directive) {
2014-10-22 13:44:02 -03:00
if (affect_package) {
2014-12-03 12:02:14 -03:00
default_level |= Signature.Level.PACKAGE;
default_level &= ~Signature.Level.PACKAGE_OPTIONAL;
default_level |= Signature.Level.PACKAGE_SET;
2014-10-22 13:44:02 -03:00
}
if (affect_database) {
2014-12-03 12:02:14 -03:00
default_level |= Signature.Level.DATABASE;
default_level &= ~Signature.Level.DATABASE_OPTIONAL;
2014-10-22 13:44:02 -03:00
}
2015-01-02 17:39:32 -03:00
} else if ("TrustedOnly" in directive) {
2014-10-22 13:44:02 -03:00
if (affect_package) {
2014-12-03 12:02:14 -03:00
default_level &= ~Signature.Level.PACKAGE_MARGINAL_OK;
default_level &= ~Signature.Level.PACKAGE_UNKNOWN_OK;
default_level |= Signature.Level.PACKAGE_TRUST_SET;
2014-10-22 13:44:02 -03:00
}
if (affect_database) {
2014-12-03 12:02:14 -03:00
default_level &= ~Signature.Level.DATABASE_MARGINAL_OK;
default_level &= ~Signature.Level.DATABASE_UNKNOWN_OK;
2014-10-22 13:44:02 -03:00
}
2015-01-02 17:39:32 -03:00
} else if ("TrustAll" in directive) {
2014-10-22 13:44:02 -03:00
if (affect_package) {
2014-12-03 12:02:14 -03:00
default_level |= Signature.Level.PACKAGE_MARGINAL_OK;
default_level |= Signature.Level.PACKAGE_UNKNOWN_OK;
default_level |= Signature.Level.PACKAGE_TRUST_SET;
2014-10-22 13:44:02 -03:00
}
if (affect_database) {
2014-12-03 12:02:14 -03:00
default_level |= Signature.Level.DATABASE_MARGINAL_OK;
default_level |= Signature.Level.DATABASE_UNKNOWN_OK;
2014-10-22 13:44:02 -03:00
}
2015-03-04 11:55:36 -03:00
} else {
2015-01-02 17:39:32 -03:00
GLib.stderr.printf("unrecognized siglevel: %s\n", conf_string);
2015-03-04 11:55:36 -03:00
}
2014-10-22 13:44:02 -03:00
}
2014-12-03 12:02:14 -03:00
default_level &= ~Signature.Level.USE_DEFAULT;
2014-10-22 13:44:02 -03:00
return default_level;
}
2014-12-03 12:02:14 -03:00
public Signature.Level merge_siglevel (Signature.Level base_level, Signature.Level over_level) {
2015-01-02 17:39:32 -03:00
if ((over_level & Signature.Level.USE_DEFAULT) == 0) {
2014-12-03 12:02:14 -03:00
if ((over_level & Signature.Level.PACKAGE_SET) == 0) {
over_level |= base_level & Signature.Level.PACKAGE;
over_level |= base_level & Signature.Level.PACKAGE_OPTIONAL;
2014-10-22 13:44:02 -03:00
}
2014-12-03 12:02:14 -03:00
if ((over_level & Signature.Level.PACKAGE_TRUST_SET) == 0) {
over_level |= base_level & Signature.Level.PACKAGE_MARGINAL_OK;
over_level |= base_level & Signature.Level.PACKAGE_UNKNOWN_OK;
2014-10-22 13:44:02 -03:00
}
}
return over_level;
}
}
}