Skip to content

Commit 4274361

Browse files
committed
(MODULES-905) Add bool2str() and camelcase() for string manipulation
Python likes to have its constants Capitalized, and the capitalize function only understands strings... so I shave a yak. bool2str will convert a boolean to its equivalent string value, and camelcase extends on uppercase & downcase to convert an underscore delimited string into a camelcased string.
1 parent 62e8c1d commit 4274361

2 files changed

Lines changed: 63 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#
2+
# bool2str.rb
3+
#
4+
5+
module Puppet::Parser::Functions
6+
newfunction(:bool2str, :type => :rvalue, :doc => <<-EOS
7+
Converts a boolean to a string.
8+
Requires a single boolean or string as an input.
9+
EOS
10+
) do |arguments|
11+
12+
raise(Puppet::ParseError, "bool2str(): Wrong number of arguments " +
13+
"given (#{arguments.size} for 1)") if arguments.size < 1
14+
15+
value = arguments[0]
16+
klass = value.class
17+
18+
# We can have either true or false, or string which resembles boolean ...
19+
unless [FalseClass, TrueClass, String].include?(klass)
20+
raise(Puppet::ParseError, 'bool2str(): Requires either ' +
21+
'boolean or string to work with')
22+
end
23+
24+
result = value.is_a?(String) ? value : value.to_s
25+
26+
return result
27+
end
28+
end
29+
30+
# vim: set ts=2 sw=2 et :
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#
2+
# camelcase.rb
3+
#
4+
5+
module Puppet::Parser::Functions
6+
newfunction(:camelcase, :type => :rvalue, :doc => <<-EOS
7+
Converts the case of a string or all strings in an array to camel case.
8+
EOS
9+
) do |arguments|
10+
11+
raise(Puppet::ParseError, "camelcase(): Wrong number of arguments " +
12+
"given (#{arguments.size} for 1)") if arguments.size < 1
13+
14+
value = arguments[0]
15+
klass = value.class
16+
17+
unless [Array, String].include?(klass)
18+
raise(Puppet::ParseError, 'camelcase(): Requires either ' +
19+
'array or string to work with')
20+
end
21+
22+
if value.is_a?(Array)
23+
# Numbers in Puppet are often string-encoded which is troublesome ...
24+
result = value.collect { |i| i.is_a?(String) ? i.split('_').map{|e| e.capitalize}.join : i }
25+
else
26+
result = value.split('_').map{|e| e.capitalize}.join
27+
end
28+
29+
return result
30+
end
31+
end
32+
33+
# vim: set ts=2 sw=2 et :

0 commit comments

Comments
 (0)