92 lines
3.2 KiB
Vala
92 lines
3.2 KiB
Vala
/* utils.vala
|
|
*
|
|
* Copyright 2025 Vasiliy Doylov (NekoCWD) <nekocwd@mainlining.org>
|
|
*
|
|
* 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 copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
/*
|
|
* Collection of ugly workarounds and hacks
|
|
*/
|
|
namespace Singularity.Utils {
|
|
/*
|
|
* Vala use `meow-meow-meow` as in json serialization, but we need to use
|
|
* `meow_meow_meow` to make our saves compatible with SingBox configuration.
|
|
*/
|
|
public Json.Node fix_dash (Json.Node node, bool serialize = true) {
|
|
var type = node.get_value_type ();
|
|
if (type == typeof (Json.Object)) {
|
|
var obj = node.get_object ();
|
|
foreach (var name in obj.get_members ()) {
|
|
var new_name = serialize ? name.replace ("-", "_") : name.replace ("_", "-");
|
|
obj.set_member (new_name, obj.get_member (name));
|
|
if (new_name != name)
|
|
obj.remove_member (name);
|
|
}
|
|
}
|
|
return node.copy ();
|
|
}
|
|
|
|
/*
|
|
* In vala we can't use `type` as field name, but we need to use it
|
|
* to make our saves compatible with SingBox configuration.
|
|
*/
|
|
public Json.Node fix_type (Json.Node node) {
|
|
// const string TYPE_NAME_SRC = "type-name";
|
|
// const string TYPE_NAME_DST = "type";
|
|
|
|
// var obj = node.get_object();
|
|
// if (obj.has_member(TYPE_NAME_SRC)) {
|
|
// var type_name = obj.get_member(TYPE_NAME_SRC);
|
|
// obj.set_member(TYPE_NAME_DST, type_name);
|
|
// obj.remove_member(TYPE_NAME_SRC);
|
|
// } else if (obj.has_member(TYPE_NAME_DST)) {
|
|
// var type_name = obj.get_member(TYPE_NAME_DST);
|
|
// obj.set_member(TYPE_NAME_SRC, type_name);
|
|
// obj.remove_member(TYPE_NAME_DST);
|
|
// } else {
|
|
// warning("Object has no type to fix it");
|
|
// }
|
|
return node.copy ();
|
|
}
|
|
|
|
/*
|
|
* Serialize Gee.Map<string, string>
|
|
*/
|
|
public Json.Node serialize_string_map (Gee.Map<string, string> map) {
|
|
var builder = new Json.Builder ();
|
|
builder.begin_object ();
|
|
foreach (var kv in map) {
|
|
builder.set_member_name (kv.key);
|
|
builder.add_string_value (kv.value);
|
|
}
|
|
builder.end_object ();
|
|
return builder.get_root ();
|
|
}
|
|
|
|
/*
|
|
* Serialize List<Object>
|
|
*/
|
|
public Json.Node serialize_object_list<T> (List<T> list) {
|
|
var builder = new Json.Builder ();
|
|
builder.begin_array ();
|
|
foreach (var value in list) {
|
|
builder.add_value (Json.gobject_serialize ((Object) value));
|
|
}
|
|
builder.end_array ();
|
|
return builder.get_root ();
|
|
}
|
|
}
|