class EL_GET_GNOME_SETTING_COMMAND
Client examples: OS_COMMAND_AUTOTEST_APP ; RBOX_MANAGEMENT_TASK
Get gnome setting command
note
description: "Get gnome setting command"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2024-07-09 9:14:42 GMT (Tuesday 9th July 2024)"
revision: "13"
class
EL_GET_GNOME_SETTING_COMMAND
inherit
EL_PARSED_CAPTURED_OS_COMMAND [TUPLE [schema, key: STRING]]
rename
make as make_parsed
redefine
default_template
end
EL_GNOME_SETTING_COMMAND
EL_CHARACTER_32_CONSTANTS
create
make
feature {NONE} -- Initialization
make (a_schema_name: STRING)
--
do
make_parsed
schema_name := a_schema_name
set_template_name (a_schema_name)
put_string (Var.schema, a_schema_name)
end
feature -- Setting values
dir_path (key_name: STRING): DIR_PATH
local
uri_path: EL_DIR_URI_PATH
do
create uri_path.make (string_value (key_name))
Result := uri_path.to_dir_path
end
dir_uri_path (key_name: STRING): EL_DIR_URI_PATH
do
create Result.make (string_value (key_name))
end
file_path (key_name: STRING): FILE_PATH
local
uri_path: EL_FILE_URI_PATH
do
create uri_path.make (string_value (key_name))
Result := uri_path.to_file_path
end
file_uri_path (key_name: STRING): EL_FILE_URI_PATH
do
create Result.make (string_value (key_name))
end
string_value (key_name: STRING): ZSTRING
do
put_string (Var.key, key_name)
execute
if lines.count > 0 then
if lines.first.occurrences ('%'') = 2 and then attached char ('%'').to_string as single_quote then
Result := lines.first.substring_between (single_quote, single_quote, 1)
else
Result := lines.first
end
else
create Result.make_empty
end
end
feature {NONE} -- Constants
Default_template: STRING
once
Result := Gsettings + " get $schema $key"
end
end