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 Pamac {
|
|
|
|
public class Config: Object {
|
2014-12-03 12:02:14 -03:00
|
|
|
string conf_path;
|
2014-10-22 13:44:02 -03:00
|
|
|
public bool recurse;
|
2015-08-24 11:13:18 -03:00
|
|
|
public int refresh_period;
|
2015-08-20 10:11:18 -03:00
|
|
|
public bool no_update_hide_icon;
|
2015-08-24 11:13:18 -03:00
|
|
|
public bool enable_aur;
|
|
|
|
public bool search_aur;
|
2015-08-20 10:11:18 -03:00
|
|
|
public bool check_aur_updates;
|
|
|
|
public bool no_confirm_build;
|
2014-10-22 13:44:02 -03:00
|
|
|
|
|
|
|
public Config (string path) {
|
2014-12-03 12:02:14 -03:00
|
|
|
conf_path = path;
|
2014-12-30 11:04:40 -03:00
|
|
|
// set default option
|
2015-08-20 10:11:18 -03:00
|
|
|
refresh_period = 6;
|
2014-12-30 11:04:40 -03:00
|
|
|
reload ();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void reload () {
|
|
|
|
// set default options
|
2014-12-03 12:02:14 -03:00
|
|
|
recurse = false;
|
2015-08-20 10:11:18 -03:00
|
|
|
no_update_hide_icon = false;
|
2015-08-24 11:13:18 -03:00
|
|
|
enable_aur = false;
|
|
|
|
search_aur = false;
|
2015-08-20 10:11:18 -03:00
|
|
|
check_aur_updates = false;
|
|
|
|
no_confirm_build = false;
|
2014-12-30 11:04:40 -03:00
|
|
|
parse_file (conf_path);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
|
2014-12-30 11:04:40 -03:00
|
|
|
public void parse_file (string path) {
|
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;
|
|
|
|
}
|
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;
|
|
|
|
}
|
2015-08-20 10:11:18 -03:00
|
|
|
splitted = line.split ("=");
|
|
|
|
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 == "RemoveUnrequiredDeps") {
|
2014-12-03 12:02:14 -03:00
|
|
|
recurse = true;
|
2015-08-20 10:11:18 -03:00
|
|
|
} else if (key == "RefreshPeriod") {
|
|
|
|
refresh_period = int.parse (val);
|
|
|
|
} else if (key == "NoUpdateHideIcon") {
|
|
|
|
no_update_hide_icon = true;
|
|
|
|
} else if (key == "EnableAUR") {
|
|
|
|
enable_aur = true;
|
2015-08-24 11:13:18 -03:00
|
|
|
} else if (key == "SearchInAURByDefault") {
|
|
|
|
search_aur = true;
|
2015-08-20 10:11:18 -03:00
|
|
|
} else if (key == "CheckAURUpdates") {
|
|
|
|
check_aur_updates = true;
|
|
|
|
} else if (key == "NoConfirmBuild") {
|
|
|
|
no_confirm_build = true;
|
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);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-30 11:04:40 -03:00
|
|
|
public void write (HashTable<string,Variant> new_conf) {
|
2014-12-03 12:02:14 -03:00
|
|
|
var file = GLib.File.new_for_path (conf_path);
|
2015-08-20 10:11:18 -03:00
|
|
|
string[] data = {};
|
|
|
|
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) {
|
2015-08-20 10:11:18 -03:00
|
|
|
data += "\n";
|
2015-03-04 11:55:36 -03:00
|
|
|
continue;
|
|
|
|
}
|
2015-08-20 10:11:18 -03:00
|
|
|
if (line.contains ("RemoveUnrequiredDeps")) {
|
|
|
|
if (new_conf.contains ("RemoveUnrequiredDeps")) {
|
|
|
|
bool val = new_conf.get ("RemoveUnrequiredDeps").get_boolean ();
|
|
|
|
if (val == true) {
|
|
|
|
data += "RemoveUnrequiredDeps\n";
|
|
|
|
} else {
|
|
|
|
data += "#RemoveUnrequiredDeps\n";
|
|
|
|
}
|
|
|
|
new_conf.remove ("RemoveUnrequiredDeps");
|
|
|
|
} else {
|
|
|
|
data += line + "\n";
|
|
|
|
}
|
|
|
|
} else if (line.contains ("RefreshPeriod")) {
|
2014-10-22 13:44:02 -03:00
|
|
|
if (new_conf.contains ("RefreshPeriod")) {
|
2015-08-20 10:11:18 -03:00
|
|
|
int val = new_conf.get ("RefreshPeriod").get_int32 ();
|
|
|
|
data += "RefreshPeriod = %u\n".printf (val);
|
|
|
|
new_conf.remove ("RefreshPeriod");
|
|
|
|
} else {
|
|
|
|
data += line + "\n";
|
|
|
|
}
|
|
|
|
} else if (line.contains ("NoUpdateHideIcon")) {
|
|
|
|
if (new_conf.contains ("NoUpdateHideIcon")) {
|
|
|
|
bool val = new_conf.get ("NoUpdateHideIcon").get_boolean ();
|
|
|
|
if (val == true) {
|
|
|
|
data += "NoUpdateHideIcon\n";
|
|
|
|
} else {
|
|
|
|
data += "#NoUpdateHideIcon\n";
|
|
|
|
}
|
|
|
|
new_conf.remove ("NoUpdateHideIcon");
|
2015-03-04 11:55:36 -03:00
|
|
|
} else {
|
2014-10-22 13:44:02 -03:00
|
|
|
data += line + "\n";
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
} else if (line.contains ("EnableAUR")) {
|
|
|
|
if (new_conf.contains ("EnableAUR")) {
|
2015-08-20 10:11:18 -03:00
|
|
|
bool val = new_conf.get ("EnableAUR").get_boolean ();
|
|
|
|
if (val == true) {
|
2014-10-22 13:44:02 -03:00
|
|
|
data += "EnableAUR\n";
|
2015-03-04 11:55:36 -03:00
|
|
|
} else {
|
2014-10-22 13:44:02 -03:00
|
|
|
data += "#EnableAUR\n";
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2015-08-20 10:11:18 -03:00
|
|
|
new_conf.remove ("EnableAUR");
|
2015-03-04 11:55:36 -03:00
|
|
|
} else {
|
2014-10-22 13:44:02 -03:00
|
|
|
data += line + "\n";
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2015-08-24 11:13:18 -03:00
|
|
|
} else if (line.contains ("SearchInAURByDefault")) {
|
|
|
|
if (new_conf.contains ("SearchInAURByDefault")) {
|
|
|
|
bool val = new_conf.get ("SearchInAURByDefault").get_boolean ();
|
|
|
|
if (val == true) {
|
|
|
|
data += "SearchInAURByDefault\n";
|
|
|
|
} else {
|
|
|
|
data += "#SearchInAURByDefault\n";
|
|
|
|
}
|
|
|
|
new_conf.remove ("SearchInAURByDefault");
|
|
|
|
} else {
|
|
|
|
data += line + "\n";
|
|
|
|
}
|
2015-08-20 10:11:18 -03:00
|
|
|
} else if (line.contains ("CheckAURUpdates")) {
|
|
|
|
if (new_conf.contains ("CheckAURUpdates")) {
|
|
|
|
bool val = new_conf.get ("CheckAURUpdates").get_boolean ();
|
|
|
|
if (val == true) {
|
|
|
|
data += "CheckAURUpdates\n";
|
2015-03-04 11:55:36 -03:00
|
|
|
} else {
|
2015-08-20 10:11:18 -03:00
|
|
|
data += "#CheckAURUpdates\n";
|
|
|
|
}
|
|
|
|
new_conf.remove ("CheckAURUpdates");
|
|
|
|
} else {
|
|
|
|
data += line + "\n";
|
|
|
|
}
|
|
|
|
} else if (line.contains ("NoConfirmBuild")) {
|
|
|
|
if (new_conf.contains ("NoConfirmBuild")) {
|
|
|
|
bool val = new_conf.get ("NoConfirmBuild").get_boolean ();
|
|
|
|
if (val == true) {
|
|
|
|
data += "NoConfirmBuild\n";
|
|
|
|
} else {
|
|
|
|
data += "#NoConfirmBuild\n";
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2015-08-20 10:11:18 -03:00
|
|
|
new_conf.remove ("NoConfirmBuild");
|
2015-03-04 11:55:36 -03:00
|
|
|
} else {
|
2014-10-22 13:44:02 -03:00
|
|
|
data += line + "\n";
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
|
|
|
} else {
|
2014-10-22 13:44:02 -03:00
|
|
|
data += line + "\n";
|
2015-03-04 11:55:36 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
// delete the file before rewrite it
|
|
|
|
file.delete ();
|
|
|
|
} 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);
|
|
|
|
}
|
|
|
|
// create lines for unexisted options
|
|
|
|
if (new_conf.size () != 0) {
|
|
|
|
data += "\n";
|
|
|
|
new_conf.foreach ((key, val) => {
|
|
|
|
if (key == "RemoveUnrequiredDeps") {
|
|
|
|
if (val.get_boolean () == true) {
|
|
|
|
data += "RemoveUnrequiredDeps\n";
|
|
|
|
} else {
|
|
|
|
data += "#RemoveUnrequiredDeps\n";
|
|
|
|
}
|
|
|
|
} else if (key == "RefreshPeriod") {
|
|
|
|
data += "RefreshPeriod = %u\n".printf (val.get_int32 ());
|
|
|
|
} else if (key =="NoUpdateHideIcon") {
|
|
|
|
if (val.get_boolean () == true) {
|
|
|
|
data += "NoUpdateHideIcon\n";
|
|
|
|
} else {
|
|
|
|
data += "#NoUpdateHideIcon\n";
|
|
|
|
}
|
|
|
|
} else if (key == "EnableAUR") {
|
|
|
|
if (val.get_boolean () == true) {
|
|
|
|
data += "EnableAUR\n";
|
|
|
|
} else {
|
|
|
|
data += "#EnableAUR\n";
|
|
|
|
}
|
2015-08-24 11:13:18 -03:00
|
|
|
} else if (key == "SearchInAURByDefault") {
|
|
|
|
if (val.get_boolean () == true) {
|
|
|
|
data += "SearchInAURByDefault\n";
|
|
|
|
} else {
|
|
|
|
data += "#SearchInAURByDefault\n";
|
|
|
|
}
|
2015-08-20 10:11:18 -03:00
|
|
|
} else if (key == "CheckAURUpdates") {
|
|
|
|
if (val.get_boolean () == true) {
|
|
|
|
data += "CheckAURUpdates\n";
|
|
|
|
} else {
|
|
|
|
data += "#CheckAURUpdates\n";
|
|
|
|
}
|
|
|
|
} else if (key == "NoConfirmBuild") {
|
|
|
|
if (val.get_boolean () == true) {
|
|
|
|
data += "NoConfirmBuild\n";
|
|
|
|
} else {
|
|
|
|
data += "#NoConfirmBuild\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// write the file
|
|
|
|
try {
|
|
|
|
// 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);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|