2014-12-30 11:04:40 -03:00
|
|
|
/*
|
|
|
|
* pamac-vala
|
|
|
|
*
|
2016-02-26 06:37:26 -03:00
|
|
|
* Copyright (C) 2014-2016 Guillaume Benoit <guillaume@manjaro.org>
|
2014-12-30 11:04:40 -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/>.
|
|
|
|
*/
|
|
|
|
|
2016-02-26 06:37:26 -03:00
|
|
|
namespace Pamac {
|
2016-04-14 13:19:20 -03:00
|
|
|
class MirrorsConfig {
|
|
|
|
string conf_path;
|
|
|
|
GLib.List<string> _countrys ;
|
|
|
|
|
|
|
|
|
|
|
|
public string mirrorlists_dir { get; private set; }
|
|
|
|
public string choosen_generation_method { get; private set; }
|
|
|
|
public string choosen_country { get; private set; }
|
|
|
|
public unowned GLib.List<string> countrys {
|
|
|
|
get {
|
|
|
|
try {
|
|
|
|
var directory = GLib.File.new_for_path (mirrorlists_dir);
|
|
|
|
var enumerator = directory.enumerate_children (FileAttribute.STANDARD_NAME, 0);
|
|
|
|
FileInfo file_info;
|
|
|
|
_countrys = new GLib.List<string> ();
|
|
|
|
while ((file_info = enumerator.next_file ()) != null) {
|
|
|
|
_countrys.append(file_info.get_name ());
|
|
|
|
}
|
|
|
|
_countrys.sort (strcmp);
|
|
|
|
} catch (Error e) {
|
|
|
|
stderr.printf ("%s\n", e.message);
|
|
|
|
}
|
|
|
|
return _countrys;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-30 11:04:40 -03:00
|
|
|
|
|
|
|
public MirrorsConfig (string path) {
|
|
|
|
conf_path = path;
|
|
|
|
reload ();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void reload () {
|
|
|
|
// set default options
|
|
|
|
choosen_generation_method = "rank";
|
|
|
|
choosen_country = dgettext (null, "Worldwide");
|
|
|
|
mirrorlists_dir = "/etc/pacman.d/mirrors";
|
|
|
|
parse_file (conf_path);
|
|
|
|
}
|
|
|
|
|
2016-04-14 13:19:20 -03:00
|
|
|
void parse_file (string path) {
|
2014-12-30 11:04:40 -03:00
|
|
|
var file = GLib.File.new_for_path (path);
|
2016-02-02 05:28:07 -03:00
|
|
|
if (file.query_exists ()) {
|
2014-12-30 11:04:40 -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-12-30 11:04:40 -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;
|
|
|
|
}
|
2015-08-20 10:11:18 -03:00
|
|
|
// ignore whole line and end of line comments
|
|
|
|
string[] splitted = line.split ("#", 2);
|
|
|
|
line = splitted[0].strip ();
|
|
|
|
if (line.length == 0) {
|
2015-03-04 11:55:36 -03:00
|
|
|
continue;
|
|
|
|
}
|
2016-02-02 05:28:07 -03:00
|
|
|
splitted = line.split ("=", 2);
|
|
|
|
unowned string key = splitted[0]._strip ();
|
|
|
|
unowned string? val = null;
|
|
|
|
if (splitted.length == 2) {
|
|
|
|
val = splitted[1]._strip ();
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2015-08-20 10:11:18 -03:00
|
|
|
if (key == "Method") {
|
|
|
|
choosen_generation_method = val;
|
|
|
|
} else if (key == "OnlyCountry") {
|
|
|
|
choosen_country = val;
|
|
|
|
} else if (key == "MirrorlistsDir") {
|
|
|
|
mirrorlists_dir = val.replace ("\"", "");
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2014-12-30 11:04:40 -03:00
|
|
|
}
|
|
|
|
} catch (Error e) {
|
|
|
|
GLib.stderr.printf("%s\n", e.message);
|
|
|
|
}
|
2016-02-02 05:28:07 -03:00
|
|
|
} else {
|
|
|
|
GLib.stderr.printf ("File '%s' doesn't exist.\n", path);
|
2014-12-30 11:04:40 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void write (HashTable<string,Variant> new_conf) {
|
|
|
|
var file = GLib.File.new_for_path (conf_path);
|
2016-02-02 05:28:07 -03:00
|
|
|
if (file.query_exists ()) {
|
2014-12-30 11:04:40 -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;
|
2016-02-02 05:28:07 -03:00
|
|
|
var data = new GLib.List<string> ();
|
2014-12-30 11:04:40 -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) {
|
|
|
|
if (line.length == 0) {
|
2016-02-02 05:28:07 -03:00
|
|
|
data.append ("\n");
|
2015-08-20 10:11:18 -03:00
|
|
|
continue;
|
|
|
|
}
|
2016-02-02 05:28:07 -03:00
|
|
|
unowned Variant variant;
|
2014-12-30 11:04:40 -03:00
|
|
|
if (line.contains ("Method")) {
|
2016-02-02 05:28:07 -03:00
|
|
|
if (new_conf.lookup_extended ("Method", null, out variant)) {
|
|
|
|
data.append ("Method=%s\n".printf (variant.get_string ()));
|
2015-03-04 11:55:36 -03:00
|
|
|
} else {
|
2016-02-02 05:28:07 -03:00
|
|
|
data.append (line + "\n");
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2014-12-30 11:04:40 -03:00
|
|
|
} else if (line.contains ("OnlyCountry")) {
|
2016-02-02 05:28:07 -03:00
|
|
|
if (new_conf.lookup_extended ("OnlyCountry", null, out variant)) {
|
|
|
|
if (variant.get_string () == dgettext (null, "Worldwide")) {
|
|
|
|
data.append ("#%s\n".printf (line));
|
2015-03-04 11:55:36 -03:00
|
|
|
} else {
|
2016-02-02 05:28:07 -03:00
|
|
|
data.append ("OnlyCountry=%s\n".printf (variant.get_string ()));
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
} else {
|
2016-02-02 05:28:07 -03:00
|
|
|
data.append (line + "\n");
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
} else {
|
2016-02-02 05:28:07 -03:00
|
|
|
data.append (line + "\n");
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2014-12-30 11:04:40 -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));
|
2016-02-02 05:28:07 -03:00
|
|
|
foreach (unowned string new_line in data) {
|
2014-12-30 11:04:40 -03:00
|
|
|
// writing a short string to the stream
|
|
|
|
dos.put_string (new_line);
|
|
|
|
}
|
|
|
|
} catch (GLib.Error e) {
|
|
|
|
GLib.stderr.printf("%s\n", e.message);
|
|
|
|
}
|
2016-02-02 05:28:07 -03:00
|
|
|
} else {
|
|
|
|
GLib.stderr.printf ("File '%s' doesn't exist.\n", file.get_path ());
|
2014-12-30 11:04:40 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|