Class: Tr8n::LanguageContext

Inherits:
Base
  • Object
show all
Defined in:
lib/tr8n/language_context.rb

Overview

– Copyright © 2014 Michael Berkovich, TranslationExchange.com

_______                  _       _   _             ______          _

|__ __| | | | | (_) | __| | |

| |_ __ __ _ _ __  ___| | __ _| |_ _  ___  _ __ | |__  __  _____| |__   __ _ _ __   __ _  ___
| | '__/ _` | '_ \/ __| |/ _` | __| |/ _ \| '_ \|  __| \ \/ / __| '_ \ / _` | '_ \ / _` |/ _ \
| | | | (_| | | | \__ \ | (_| | |_| | (_) | | | | |____ >  < (__| | | | (_| | | | | (_| |  __/
|_|_|  \__,_|_| |_|___/_|\__,_|\__|_|\___/|_| |_|______/_/\_\___|_| |_|\__,_|_| |_|\__, |\___|
                                                                                    __/ |
                                                                                   |___/

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ++

Instance Attribute Summary

Attributes inherited from Base

#attributes

Instance Method Summary collapse

Methods inherited from Base

attributes, belongs_to, has_many, hash_value, #hash_value, #method_missing, #to_hash, #update_attributes

Constructor Details

#initialize(attrs = {}) ⇒ LanguageContext

Returns a new instance of LanguageContext.



38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/tr8n/language_context.rb', line 38

def initialize(attrs = {})
  super

  self.attributes[:rules] = {}
  if hash_value(attrs, :rules)
    hash_value(attrs, :rules).each do |key, rule|
      self.attributes[:rules][key] = Tr8n::LanguageContextRule.new(rule.merge(
       :keyword => key,
       :language_context => self
      ))
    end
  end
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Tr8n::Base

Instance Method Details

#applies_to_token?(token) ⇒ Boolean

Returns:

  • (Boolean)


65
66
67
# File 'lib/tr8n/language_context.rb', line 65

def applies_to_token?(token)
  token_expression.match(token) != nil
end

#configObject



52
53
54
55
# File 'lib/tr8n/language_context.rb', line 52

def config
  context_rules = Tr8n.config.context_rules
  hash_value(context_rules, self.keyword.to_sym) || {}
end

#fallback_ruleObject



69
70
71
# File 'lib/tr8n/language_context.rb', line 69

def fallback_rule
  @fallback_rule ||= rules.values.detect{|rule| rule.fallback?}
end

#find_matching_rule(obj) ⇒ Object



108
109
110
111
112
113
114
115
# File 'lib/tr8n/language_context.rb', line 108

def find_matching_rule(obj)
  token_vars = vars(obj)
  rules.values.each do |rule|
    next if rule.fallback?
    return rule if rule.evaluate(token_vars)
  end
  fallback_rule
end

#token_expressionObject



57
58
59
60
61
62
63
# File 'lib/tr8n/language_context.rb', line 57

def token_expression
  @token_expression ||= begin
    exp = self.attributes[:token_expression]
    exp = Regexp.new(exp[1..-2])
    exp
  end
end

#vars(obj) ⇒ Object

prepare variables for evaluation



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
# File 'lib/tr8n/language_context.rb', line 74

def vars(obj)
  vars = {}

  variables.each do |key|
    method = hash_value(config, "variables.#{key}")
    unless method
      vars[key] = obj
      next
    end

    if method.is_a?(String)
      if obj.is_a?(Hash)
        object = hash_value(obj, 'object') || obj
        if object.is_a?(Hash)
          vars[key] = hash_value(object, method, :whole => true)
        else
          vars[key] = object.send(method)
        end
      elsif obj.is_a?(String)
        vars[key] = obj
      else
        vars[key] = obj.send(method)
      end
    elsif method.is_a?(Proc)
      vars[key] = method.call(obj)
    else
      vars[key] = obj
    end

    vars[key] = vars[key].to_s if vars[key].is_a?(Symbol)
  end
  vars
end