Module: PuppetRepl::Support::InputResponders

Included in:
PuppetRepl::Support
Defined in:
lib/puppet-repl/support/input_responders.rb

Instance Method Summary collapse

Instance Method Details

#classes(args = []) ⇒ Object



123
124
125
# File 'lib/puppet-repl/support/input_responders.rb', line 123

def classes(args=[])
  scope.compiler.catalog.classes.ai
end

#classification(args = []) ⇒ Object



107
108
109
# File 'lib/puppet-repl/support/input_responders.rb', line 107

def classification(args=[])
  node.classes.ai
end

#environment(args = []) ⇒ Object



72
73
74
# File 'lib/puppet-repl/support/input_responders.rb', line 72

def environment(args=[])
  "Puppet Environment: #{puppet_env_name}"
end

#facterdb_filter(args = []) ⇒ Object



23
24
25
# File 'lib/puppet-repl/support/input_responders.rb', line 23

def facterdb_filter(args=[])
  dynamic_facterdb_filter.ai
end

#facts(args = []) ⇒ Object



54
55
56
57
# File 'lib/puppet-repl/support/input_responders.rb', line 54

def facts(args=[])
  variables = node.facts.values
  variables.ai({:sort_keys => true, :indent => -1})
end

#functions(args = []) ⇒ Object



59
60
61
62
# File 'lib/puppet-repl/support/input_responders.rb', line 59

def functions(args=[])
  filter = args.first || ''
  function_map.keys.sort.grep(/^#{Regexp.escape(filter)}/)
end

#handle_set(input) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/puppet-repl/support/input_responders.rb', line 31

def handle_set(input)
  output = ''
  args = input.split(' ')
  args.shift # throw away the set
  case args.shift
  when /node/
    if name = args.shift
      output = "Resetting to use node #{name}"
      reset
      set_remote_node_name(name)
    else
      out_buffer.puts "Must supply a valid node name"
    end
  when /loglevel/
    if level = args.shift
      @log_level = level
      set_log_level(level)
      output = "loglevel #{Puppet::Util::Log.level} is set"
    end
  end
  output
end

#help(args = []) ⇒ Object



27
28
29
# File 'lib/puppet-repl/support/input_responders.rb', line 27

def help(args=[])
  PuppetRepl::Cli.print_repl_desc
end

#krt(args = []) ⇒ Object



96
97
98
# File 'lib/puppet-repl/support/input_responders.rb', line 96

def krt(args=[])
  known_resource_types.ai({:sort_keys => true, :indent => -1})
end

#play(args = []) ⇒ Object



100
101
102
103
104
105
# File 'lib/puppet-repl/support/input_responders.rb', line 100

def play(args=[])
  config = {}
  config[:play] = args.first
  play_back(config)
  return nil  # we don't want to return anything
end

#reset(args = []) ⇒ Object



76
77
78
79
80
81
82
83
# File 'lib/puppet-repl/support/input_responders.rb', line 76

def reset(args=[])
  set_scope(nil)
  set_remote_node_name(nil)
  set_node(nil)
  set_facts(nil)
  set_environment(nil)
  set_log_level(log_level)
end

#resources(args = []) ⇒ Object



111
112
113
114
115
116
117
118
119
120
121
# File 'lib/puppet-repl/support/input_responders.rb', line 111

def resources(args=[])
  res = scope.compiler.catalog.resources.map do |res|
    res.to_s.gsub(/\[/, "['").gsub(/\]/, "']") # ensure the title has quotes
  end
  if !args.first.nil?
    res[args.first.to_i].ai
  else
    output = "Resources not shown in any specific order\n".warning
    output += res.ai
  end
end

#set_log_level(level) ⇒ Object



85
86
87
88
89
90
91
92
93
94
# File 'lib/puppet-repl/support/input_responders.rb', line 85

def set_log_level(level)
  Puppet::Util::Log.level = level.to_sym
  buffer_log = Puppet::Util::Log.newdestination(:buffer)
  if buffer_log
    # if this is already set the buffer_log is nil
    buffer_log.out_buffer = out_buffer
    buffer_log.err_buffer = out_buffer
  end
  nil
end

#static_responder_listObject



5
6
7
8
9
# File 'lib/puppet-repl/support/input_responders.rb', line 5

def static_responder_list
  ["exit", "functions", "classification","vars", 'facterdb_filter', "krt", "facts",
   "resources", "classes", "whereami", "play","reset", "help"
  ]
end

#vars(args = []) ⇒ Object



64
65
66
67
68
69
70
# File 'lib/puppet-repl/support/input_responders.rb', line 64

def vars(args=[])
  # remove duplicate variables that are also in the facts hash
  variables = scope.to_hash.delete_if {| key, value | node.facts.values.key?(key) }
  variables['facts'] = 'removed by the puppet-repl' if variables.key?('facts')
  output = "Facts were removed for easier viewing".ai + "\n"
  output += variables.ai({:sort_keys => true, :indent => -1})
end

#whereami(command = nil, args = nil) ⇒ String

method to show the surrounding code

Returns:

  • (String)
    • string output of the code surrounded by the breakpoint or nil if file or line_num do not exist



14
15
16
17
18
19
20
21
# File 'lib/puppet-repl/support/input_responders.rb', line 14

def whereami(command=nil, args=nil)
  file=@source_file
  line_num=@source_line_num
  if file and line_num
    code = ReplCode.from_file(file, :puppet)
    return code.with_marker(line_num).around(line_num, 5).with_line_numbers.with_indentation(5).to_s
  end
end