Class: Chef::Provider::Env
- Inherits:
-
Chef::Provider
- Object
- Chef::Provider
- Chef::Provider::Env
- Defined in:
- lib/chef/provider/env.rb,
lib/chef/provider/env/windows.rb
Direct Known Subclasses
Defined Under Namespace
Classes: Windows
Instance Attribute Summary collapse
-
#key_exists ⇒ Object
Returns the value of attribute key_exists.
Attributes inherited from Chef::Provider
#action, #cookbook_name, #current_resource, #new_resource, #recipe_name, #run_context
Instance Method Summary collapse
- #action_create ⇒ Object
- #action_delete ⇒ Object
- #action_modify ⇒ Object
- #create_env ⇒ Object
-
#current_values ⇒ Object
Returns the current values to split by delimiter.
-
#delete_element ⇒ Object
e.g.
- #delete_env ⇒ Object
- #env_key_exists(key_name) ⇒ Object
- #env_value(key_name) ⇒ Object
-
#initialize(new_resource, run_context) ⇒ Env
constructor
A new instance of Env.
- #load_current_resource ⇒ Object
- #modify_env ⇒ Object
-
#new_values ⇒ Object
Returns the new values to split by delimiter.
-
#requires_modify_or_create? ⇒ Boolean
(also: #compare_value)
Check to see if value needs any changes.
- #whyrun_supported? ⇒ Boolean
Methods inherited from Chef::Provider
action, #action_nothing, #check_resource_semantics!, #cleanup_after_converge, #compile_and_converge_action, #converge_by, #converge_if_changed, #define_resource_requirements, #events, include_resource_dsl?, include_resource_dsl_module, #node, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, use_inline_resources, #whyrun_mode?
Methods included from Mixin::Provides
#provided_as, #provides, #provides?
Methods included from Mixin::DescendantsTracker
#descendants, descendants, direct_descendants, #direct_descendants, find_descendants_by_name, #find_descendants_by_name, #inherited, store_inherited
Methods included from Mixin::LazyModuleInclude
#descendants, #include, #included
Methods included from Mixin::NotifyingBlock
#notifying_block, #subcontext_block
Methods included from DSL::DeclareResource
#build_resource, #declare_resource, #delete_resource, #delete_resource!, #edit_resource, #edit_resource!, #find_resource, #find_resource!, #with_run_context
Methods included from Mixin::ShellOut
#a_to_s, #clean_array, #shell_out, #shell_out!, #shell_out_compact, #shell_out_compact!, #shell_out_compact_timeout, #shell_out_compact_timeout!, #shell_out_with_systems_locale, #shell_out_with_systems_locale!
Methods included from Mixin::PathSanity
#enforce_path_sanity, #sanitized_path
Methods included from Mixin::PowershellOut
#powershell_out, #powershell_out!
Methods included from Mixin::WindowsArchitectureHelper
#assert_valid_windows_architecture!, #disable_wow64_file_redirection, #forced_32bit_override_required?, #is_i386_process_on_x86_64_windows?, #node_supports_windows_architecture?, #node_windows_architecture, #restore_wow64_file_redirection, #valid_windows_architecture?, #with_os_architecture, #wow64_architecture_override_required?, #wow64_directory
Methods included from DSL::PlatformIntrospection
#docker?, #platform?, #platform_family?, #value_for_platform, #value_for_platform_family
Constructor Details
#initialize(new_resource, run_context) ⇒ Env
Returns a new instance of Env.
33 34 35 36 |
# File 'lib/chef/provider/env.rb', line 33 def initialize(new_resource, run_context) super @key_exists = true end |
Instance Attribute Details
#key_exists ⇒ Object
Returns the value of attribute key_exists.
25 26 27 |
# File 'lib/chef/provider/env.rb', line 25 def key_exists @key_exists end |
Instance Method Details
#action_create ⇒ Object
81 82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/chef/provider/env.rb', line 81 def action_create if @key_exists if requires_modify_or_create? modify_env Chef::Log.info("#{new_resource} altered") new_resource.updated_by_last_action(true) end else create_env Chef::Log.info("#{new_resource} created") new_resource.updated_by_last_action(true) end end |
#action_delete ⇒ Object
125 126 127 128 129 130 131 |
# File 'lib/chef/provider/env.rb', line 125 def action_delete if @key_exists && !delete_element delete_env Chef::Log.info("#{new_resource} deleted") new_resource.updated_by_last_action(true) end end |
#action_modify ⇒ Object
133 134 135 136 137 138 139 140 141 142 143 |
# File 'lib/chef/provider/env.rb', line 133 def action_modify if @key_exists if requires_modify_or_create? modify_env Chef::Log.info("#{new_resource} modified") new_resource.updated_by_last_action(true) end else raise Chef::Exceptions::Env, "Cannot modify #{new_resource} - key does not exist!" end end |
#create_env ⇒ Object
145 146 147 |
# File 'lib/chef/provider/env.rb', line 145 def create_env raise Chef::Exceptions::UnsupportedAction, "#{self} does not support :#{new_resource.action}" end |
#current_values ⇒ Object
Returns the current values to split by delimiter
161 162 163 |
# File 'lib/chef/provider/env.rb', line 161 def current_values @current_values ||= current_resource.value.split(new_resource.delim) end |
#delete_element ⇒ Object
e.g. delete a PATH element
Returns
- <true>
-
If we handled the element case and caller should not delete the key
- <false>
-
Caller should delete the key, either no :delim was specific or value was empty after we removed the element.
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/chef/provider/env.rb', line 101 def delete_element return false unless new_resource.delim #no delim: delete the key needs_delete = new_values.any? { |v| current_values.include?(v) } if !needs_delete Chef::Log.debug("#{new_resource} element '#{new_resource.value}' does not exist") return true #do not delete the key else new_value = current_values.select do |item| not new_values.include?(item) end.join(new_resource.delim) if new_value.empty? return false #nothing left here, delete the key else old_value = new_resource.value(new_value) create_env Chef::Log.debug("#{new_resource} deleted #{old_value} element") new_resource.updated_by_last_action(true) return true #we removed the element and updated; do not delete the key end end end |
#delete_env ⇒ Object
149 150 151 |
# File 'lib/chef/provider/env.rb', line 149 def delete_env raise Chef::Exceptions::UnsupportedAction, "#{self} does not support :delete" end |
#env_key_exists(key_name) ⇒ Object
56 57 58 |
# File 'lib/chef/provider/env.rb', line 56 def env_key_exists(key_name) env_value(key_name) ? true : false end |
#env_value(key_name) ⇒ Object
52 53 54 |
# File 'lib/chef/provider/env.rb', line 52 def env_value(key_name) raise Chef::Exceptions::Env, "#{self} provider does not implement env_value!" end |
#load_current_resource ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/chef/provider/env.rb', line 38 def load_current_resource @current_resource = Chef::Resource::Env.new(new_resource.name) current_resource.key_name(new_resource.key_name) if env_key_exists(new_resource.key_name) current_resource.value(env_value(new_resource.key_name)) else @key_exists = false Chef::Log.debug("#{new_resource} key does not exist") end current_resource end |
#modify_env ⇒ Object
153 154 155 156 157 158 |
# File 'lib/chef/provider/env.rb', line 153 def modify_env if new_resource.delim new_resource.value((new_values + current_values).uniq.join(new_resource.delim)) end create_env end |
#new_values ⇒ Object
Returns the new values to split by delimiter
166 167 168 |
# File 'lib/chef/provider/env.rb', line 166 def new_values @new_values ||= new_resource.value.split(new_resource.delim) end |
#requires_modify_or_create? ⇒ Boolean Also known as: compare_value
Check to see if value needs any changes
Returns
- <true>
-
If a change is required
- <false>
-
If a change is not required
65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/chef/provider/env.rb', line 65 def requires_modify_or_create? if new_resource.delim #e.g. check for existing value within PATH new_values.inject(0) do |index, val| next_index = current_values.find_index val return true if next_index.nil? || next_index < index next_index end false else new_resource.value != current_resource.value end end |
#whyrun_supported? ⇒ Boolean
29 30 31 |
# File 'lib/chef/provider/env.rb', line 29 def whyrun_supported? false end |