Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/kumogata/ext/string_ext.rb

Constant Summary collapse

@@colorize =
false

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.colorizeObject



9
10
11
# File 'lib/kumogata/ext/string_ext.rb', line 9

def colorize
  @@colorize
end

.colorize=(value) ⇒ Object



5
6
7
# File 'lib/kumogata/ext/string_ext.rb', line 5

def colorize=(value)
  @@colorize = value
end

Instance Method Details

#colorize_as(lang) ⇒ Object



26
27
28
29
30
31
32
# File 'lib/kumogata/ext/string_ext.rb', line 26

def colorize_as(lang)
  if @@colorize
    CodeRay.scan(self, lang).terminal
  else
    self
  end
end

#encode64Object



34
35
36
# File 'lib/kumogata/ext/string_ext.rb', line 34

def encode64
  Base64.encode64(self).delete("\n")
end

#fn_join(options = {}) ⇒ Object



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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/kumogata/ext/string_ext.rb', line 48

def fn_join(options = {})
  options = {
    :undent    => true,
    :trim_mode => nil,
  }.merge(options)

  data = self.dup
  data = data.undent if options[:undent]
  trim_mode = options[:trim_mode]
  null = "\0"

  data = Object.new.instance_eval(<<-EOS)
    @__functions__ = []

    @__value_conv__ = proc do |v|
      case v
      when Array, Hash
        v
      else
        v.to_s
      end
    end

    def Fn__Base64(value)
      value = {'Fn::Base64' => @__value_conv__[value]}

      case @__functions__
      when Array
        @__functions__ << value
      when Hash
        @__functions__.update(value)
      end

      #{null.inspect}
    end

    def Fn__FindInMap(map_name, top_level_key, second_level_key)
      value = {'Fn::FindInMap' => [
        map_name, top_level_key, second_level_key].map(&@__value_conv__)}

      case @__functions__
      when Array
        @__functions__ << value
      when Hash
        @__functions__.update(value)
      end

      #{null.inspect}
    end

    def Fn__GetAtt(logical_name, attr_name)
      value = {'Fn::GetAtt' => [
        logical_name, attr_name].map(&@__value_conv__)}

      case @__functions__
      when Array
        @__functions__ << value
      when Hash
        @__functions__.update(value)
      end

      #{null.inspect}
    end

    def Fn__GetAZs(region)
      value = {'Fn::GetAZs' => @__value_conv__[region]}

      case @__functions__
      when Array
        @__functions__ << value
      when Hash
        @__functions__.update(value)
      end

      #{null.inspect}
    end

    def Fn__If(value)
      value = {'Fn::If' => @__value_conv__[value]}

      case @__functions__
      when Array
        @__functions__ << value
      when Hash
        @__functions__.update(value)
      end

      #{null.inspect}
    end

    def Fn__Select(value)
      value = {'Fn::Select' => @__value_conv__[value]}

      case @__functions__
      when Array
        @__functions__ << value
      when Hash
        @__functions__.update(value)
      end

      #{null.inspect}
    end

    def Ref(value)
      value = {'Ref' => value}

      case @__functions__
      when Array
        @__functions__ << value
      when Hash
        @__functions__.update(value)
      end

      #{null.inspect}
    end

    def _(&block)
      __functions__orig = @__functions__
      @__functions__ = {}
      block.call if block
      value = @__functions__
      @__functions__ = __functions__orig
      return value
    end

    ERB.new(#{data.inspect}, nil, #{trim_mode.inspect}).result(binding).split(#{null.inspect}).zip(@__functions__)
  EOS

  data = data.flatten.select {|i| not i.nil? }.map {|i|
    if i.kind_of?(String)
      i.lines.to_a
    else
      i
    end
  }.flatten

  return {
    'Fn::Join' => ['', data]
  }
end

#undentObject



38
39
40
41
42
43
44
45
46
# File 'lib/kumogata/ext/string_ext.rb', line 38

def undent
  min_space_num = self.split("\n").delete_if {|s| s =~ /^\s*$/ }.map {|s| (s[/^\s+/] || '').length }.min

  if min_space_num and min_space_num > 0
    gsub(/^[ \t]{,#{min_space_num}}/, '')
  else
    self
  end
end