Class: ArelConverter::Translator::Options
- Defined in:
- lib/arel_converter/translators/options.rb
Constant Summary collapse
- LINE_LENGTH =
1_000
Instance Method Summary collapse
- #hash_to_arel(lhs, rhs) ⇒ Object
- #logger ⇒ Object
- #process_call(exp) ⇒ Object
-
#process_hash(exp) ⇒ Object
:nodoc:.
-
#process_if(exp) ⇒ Object
:nodoc:.
-
#process_iter(exp) ⇒ Object
Have to override super class to get the overridden LINE_LENGTH constant to work.
Methods inherited from Base
#format_for_hash, parse, #post_processing, translate
Instance Method Details
#hash_to_arel(lhs, rhs) ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/arel_converter/translators/options.rb', line 41 def hash_to_arel(lhs, rhs) key = lhs.sub(':','') case key when 'conditions' key = 'where' when 'include' key = 'includes' when 'none', 'reverse_order' return key end rhs = rhs.gsub(/\A\[(.*)\]\z/, '\1').gsub(/\A\{(.*)\}\z/, '\1') "#{key}(#{rhs})" end |
#logger ⇒ Object
7 8 9 |
# File 'lib/arel_converter/translators/options.rb', line 7 def logger @logger ||= setup_logger end |
#process_call(exp) ⇒ Object
33 34 35 36 37 38 39 |
# File 'lib/arel_converter/translators/options.rb', line 33 def process_call(exp) if valid_arel_method?(exp[1]) @depth ||= 0 @depth += 1 if @depth == 0 end super end |
#process_hash(exp) ⇒ Object
:nodoc:
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/arel_converter/translators/options.rb', line 11 def process_hash(exp) # :nodoc: @depth ||= 0 @depth += 1 result = [] until exp.empty? lhs = process(exp.shift) rhs = process(exp.shift) result << (@depth > 1 ? format_for_hash(lhs,rhs) : hash_to_arel(lhs,rhs)) end @depth -= 1 case @depth when 0 result.empty? ? "" : result.join('.') else result.empty? ? "{}" : "{ #{result.join(', ')} }" end end |
#process_if(exp) ⇒ Object
:nodoc:
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 |
# File 'lib/arel_converter/translators/options.rb', line 105 def process_if(exp) # :nodoc: = Ruby2Ruby::ASSIGN_NODES.include? exp.first.first c = process exp.shift t = process exp.shift f = process exp.shift c = "(#{c.chomp})" if c =~ /\n/ if t then unless then if f then r = "#{c} ? (#{t}) : (#{f})" r = nil if r =~ /return/ # HACK - need contextual awareness or something else r = "#{t} if #{c}" end return r if r and (@indent+r).size < LINE_LENGTH and r !~ /\n/ end r = "if #{c} then\n#{indent(t)}\n" r << "else\n#{indent(f)}\n" if f r << "end" r elsif f unless then r = "#{f} unless #{c}" return r if (@indent+r).size < LINE_LENGTH and r !~ /\n/ end "unless #{c} then\n#{indent(f)}\nend" else # empty if statement, just do it in case of side effects from condition "if #{c} then\n#{indent '# do nothing'}\nend" end end |
#process_iter(exp) ⇒ Object
Have to override super class to get the overridden LINE_LENGTH constant to work
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 |
# File 'lib/arel_converter/translators/options.rb', line 57 def process_iter(exp) # :nodoc: iter = process exp.shift args = exp.shift body = exp.empty? ? nil : process(exp.shift) args = case args when 0 then iter = '->' # no args? let's use a stubby '' else a = process(args)[1..-2] a = " |#{a}|" unless a.empty? a end b, e = if iter == "END" then [ "{", "}" ] else [ "do", "end" ] end iter.sub!(/\(\)$/, '') # REFACTOR: ugh result = [] result << "#{iter} {" result << args if body then result << " #{body.strip} " else result << ' ' end result << "}" result = result.join return result if result !~ /\n/ and result.size < LINE_LENGTH result = [] result << "#{iter} #{b}" result << args result << "\n" if body then result << indent(body.strip) result << "\n" end result << e result.join end |