Class: Yast::ProductFeaturesClass
- Inherits:
-
Module
- Object
- Module
- Yast::ProductFeaturesClass
- Defined in:
- ../../src/modules/ProductFeatures.rb
Instance Method Summary (collapse)
-
- (Hash <String, Hash{String => Object>}) Export
Exports the current set of ProductFeatures.
-
- (Boolean) GetBooleanFeature(section, feature)
Get value of a feature If the feature is missing false is returned.
-
- (Object) GetFeature(section, feature)
Get value of a feature.
-
- (Fixnum) GetIntegerFeature(section, feature)
Get value of a feature.
-
- (Object) GetSection(section_name)
Get a complete section for evaluation.
-
- (String) GetStringFeature(section, feature)
Get value of a feature.
-
- (Object) Import(import_settings)
Imports product features.
-
- (Object) InitFeatures(force)
Initialize default values of features.
-
- (Object) InitIfNeeded
Initialize the features structure if needed Either read from /etc/YaST2/ProductFeatures or set default values.
- - (Object) main
-
- (Object) Restore
Restore product features in running system.
-
- (Object) Save
Save product features.
-
- (Object) SetBooleanFeature(section, feature, value)
Set value of a feature.
-
- (Object) SetFeature(section, feature, value)
Set value of a feature.
-
- (Object) SetIntegerFeature(section, feature, value)
Set value of a feature.
-
- (Object) SetSection(section_name, section_map)
Set a feature section Default values will be used where value not defined.
-
- (Object) SetStringFeature(section, feature, value)
Set value of a feature.
Instance Method Details
- (Hash <String, Hash{String => Object>}) Export
Exports the current set of ProductFeatures
307 308 309 |
# File '../../src/modules/ProductFeatures.rb', line 307 def Export deep_copy(@features) end |
- (Boolean) GetBooleanFeature(section, feature)
This is a stable API function
Get value of a feature If the feature is missing false is returned. So it is not possible to distingush between a missing value and a false value.
229 230 231 232 233 234 235 236 237 238 239 |
# File '../../src/modules/ProductFeatures.rb', line 229 def GetBooleanFeature(section, feature) value = GetFeature(section, feature) if Ops.is_boolean?(value) return value elsif Ops.is_string?(value) && Builtins.tolower(Convert.to_string(value)) == "yes" return true else return false end end |
- (Object) GetFeature(section, feature)
This is a stable API function
Get value of a feature
199 200 201 202 203 204 |
# File '../../src/modules/ProductFeatures.rb', line 199 def GetFeature(section, feature) InitIfNeeded() ret = Ops.get(@features, [section, feature]) ret = "" if ret.nil? deep_copy(ret) end |
- (Fixnum) GetIntegerFeature(section, feature)
This is a stable API function
Get value of a feature
246 247 248 249 250 251 252 253 254 255 |
# File '../../src/modules/ProductFeatures.rb', line 246 def GetIntegerFeature(section, feature) value = GetFeature(section, feature) if Ops.is_integer?(value) return value elsif Ops.is_string?(value) return Builtins.tointeger(Convert.to_string(value)) else return nil end end |
- (Object) GetSection(section_name)
This is a stable API function
Get a complete section for evaluation
125 126 127 128 |
# File '../../src/modules/ProductFeatures.rb', line 125 def GetSection(section_name) InitFeatures(false) Ops.get(@features, section_name, {}) end |
- (String) GetStringFeature(section, feature)
This is a stable API function
Get value of a feature
211 212 213 214 215 216 217 218 219 220 |
# File '../../src/modules/ProductFeatures.rb', line 211 def GetStringFeature(section, feature) value = GetFeature(section, feature) if Ops.is_string?(value) return value elsif Ops.is_boolean?(value) return Convert.to_boolean(value) ? "yes" : "no" else return Builtins.sformat("%1", value) end end |
- (Object) Import(import_settings)
Imports product features
314 315 316 317 318 319 |
# File '../../src/modules/ProductFeatures.rb', line 314 def Import(import_settings) import_settings = deep_copy(import_settings) @features = deep_copy(import_settings) nil end |
- (Object) InitFeatures(force)
Initialize default values of features
95 96 97 98 99 100 |
# File '../../src/modules/ProductFeatures.rb', line 95 def InitFeatures(force) return if !(force || @features.nil?) @features = deep_copy(@defaults) nil end |
- (Object) InitIfNeeded
This is a stable API function
Initialize the features structure if needed Either read from /etc/YaST2/ProductFeatures or set default values
183 184 185 186 187 188 189 190 191 192 |
# File '../../src/modules/ProductFeatures.rb', line 183 def InitIfNeeded return if !@features.nil? if Stage.normal || Stage.firstboot Restore() else InitFeatures(false) end nil end |
- (Object) main
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File '../../src/modules/ProductFeatures.rb', line 35 def main textdomain "base" Yast.import "Misc" Yast.import "Mode" Yast.import "Stage" # Map of all features # See defaults map below for sample contents @features = nil # Default values for features # two-level map, section_name -> [ feature -> value ] @defaults = { "globals" => { "incomplete_translation_treshold" => "95", "ui_mode" => "expert", "enable_autologin" => true, "language" => "", "skip_language_dialog" => false, "keyboard" => "", "default_target" => "", "timezone" => "", "fam_local_only" => "never", "enable_firewall" => true, "firewall_enable_ssh" => false, "enable_sshd" => false, "additional_kernel_parameters" => "", "flags" => [], "run_you" => true, "relnotesurl" => "", "vendor_url" => "", "enable_clone" => false, "disable_os_prober" => false, # FATE #304865 "base_product_license_directory" => "/etc/YaST2/licenses/base/" }, "partitioning" => { "use_flexible_partitioning" => false, "flexible_partitioning" => {}, "vm_keep_unpartitioned_region" => false }, "software" => { "software_proposal" => "selection", "selection_type" => :auto, "delete_old_packages" => true, "only_update_installed" => false, "packages_transmogrify" => "", "base_selection" => "", "packages" => [], "kernel_packages" => [], "addon_selections" => [], "inform_about_suboptimal_distribution" => false }, "network" => { "force_static_ip" => false } } end |
- (Object) Restore
This is a stable API function
Restore product features in running system
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File '../../src/modules/ProductFeatures.rb', line 160 def Restore InitFeatures(true) groups = SCR.Dir(path(".product.features.section")) Builtins.foreach(groups) do |group| Ops.set(@features, group, Ops.get(@features, group, {})) values = SCR.Dir(Ops.add(path(".product.features.value"), group)) Builtins.foreach(values) do |v| Ops.set( @features, [group, v], SCR.Read( Ops.add(Ops.add(path(".product.features.value"), group), v) ) ) end end nil end |
- (Object) Save
This is a stable API function
Save product features
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File '../../src/modules/ProductFeatures.rb', line 132 def Save InitFeatures(false) if Mode.update # in case of update old file has different format SCR.Execute( path(".target.bash"), "test -f /etc/YaST2/ProductFeatures && /bin/rm /etc/YaST2/ProductFeatures" ) end Builtins.foreach(@features) do |group, | Builtins.foreach() do |key, value| if Ops.is_map?(value) || Ops.is_list?(value) || Ops.is_symbol?(value) Builtins.y2debug("Skipping option %1", key) else strval = GetStringFeature(group, key) SCR.Write( Ops.add(Ops.add(path(".product.features.value"), group), key), strval ) end end end SCR.Write(path(".product.features"), nil) # flush nil end |
- (Object) SetBooleanFeature(section, feature, value)
This is a stable API function
Set value of a feature
287 288 289 290 291 |
# File '../../src/modules/ProductFeatures.rb', line 287 def SetBooleanFeature(section, feature, value) SetFeature(section, feature, value) nil end |
- (Object) SetFeature(section, feature, value)
This is a stable API function
Set value of a feature
262 263 264 265 266 267 268 269 |
# File '../../src/modules/ProductFeatures.rb', line 262 def SetFeature(section, feature, value) value = deep_copy(value) InitIfNeeded() Ops.set(@features, section, {}) if !Builtins.haskey(@features, section) Ops.set(@features, [section, feature], value) nil end |
- (Object) SetIntegerFeature(section, feature, value)
This is a stable API function
Set value of a feature
298 299 300 301 302 |
# File '../../src/modules/ProductFeatures.rb', line 298 def SetIntegerFeature(section, feature, value) SetFeature(section, feature, value) nil end |
- (Object) SetSection(section_name, section_map)
This is a stable API function
Set a feature section Default values will be used where value not defined
107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File '../../src/modules/ProductFeatures.rb', line 107 def SetSection(section_name, section_map) section_map = deep_copy(section_map) InitFeatures(false) Builtins.y2debug("Setting section: %1", section_name) section_map = Convert.convert( Builtins.union(Ops.get(@defaults, section_name, {}), section_map), from: "map", to: "map <string, any>" ) Ops.set(@features, section_name, section_map) nil end |
- (Object) SetStringFeature(section, feature, value)
This is a stable API function
Set value of a feature
276 277 278 279 280 |
# File '../../src/modules/ProductFeatures.rb', line 276 def SetStringFeature(section, feature, value) SetFeature(section, feature, value) nil end |