主頁 > 知識(shí)庫 > ruby元編程之創(chuàng)建自己的動(dòng)態(tài)方法

ruby元編程之創(chuàng)建自己的動(dòng)態(tài)方法

熱門標(biāo)簽:常德電銷平臺(tái)外呼系統(tǒng)軟件價(jià)格 高德地圖標(biāo)注客服 白銀外呼paas系統(tǒng) 電銷機(jī)器人廠商代理 百度地圖標(biāo)注自定義圖片 滴滴外呼系統(tǒng) 地圖標(biāo)注賺錢項(xiàng)目注冊(cè) 徐州網(wǎng)絡(luò)外呼系統(tǒng)哪個(gè)好 湖州u友防封電銷卡

method_missing是Ruby元編程(metaprogramming)常用的手法?;舅枷胧峭ㄟ^實(shí)現(xiàn)調(diào)用不存在的方法,以便進(jìn)行回調(diào)。典型的例子是:ActiveRecord的動(dòng)態(tài)查找(dynamic finder)。例如:我們有email屬性那么就可以調(diào)用User.find_by_email('joe@example.com'),雖然, ActiveRecord::Base并沒有一個(gè)叫做find_by_email的方法。

respond_to? 并不如method_missing出名,常用在當(dāng)需要確認(rèn)一個(gè)回饋對(duì)象需要確認(rèn),以便不會(huì)因?yàn)闆]有反饋對(duì)象,而導(dǎo)致后面的調(diào)用出現(xiàn)錯(cuò)誤。

下面是一個(gè)應(yīng)用這兩者的例子:

示例

我們有類Legislator class,現(xiàn)在,想要給它加一個(gè)find_by_first_name('John')的動(dòng)態(tài)調(diào)用。實(shí)現(xiàn)find(:first_name => 'John')的功能。

復(fù)制代碼 代碼如下:

class Legislator
  #假設(shè)這是一個(gè)真實(shí)的實(shí)現(xiàn)
  def find(conditions = {})
  end
 
  #在本身定義畢竟這是他的方法
  def self.method_missing(method_sym, *arguments, block)
    # the first argument is a Symbol, so you need to_s it if you want to pattern match
    if method_sym.to_s =~ /^find_by_(.*)$/
      find($1.to_sym => arguments.first)
    else
      super
    end
  end
end

那么這個(gè)時(shí)候調(diào)用

復(fù)制代碼 代碼如下:

Legislator.respond_to?(:find_by_first_name) 

將會(huì)提示錯(cuò)誤,那么繼續(xù)

復(fù)制代碼 代碼如下:

class Legislator
  # 省略
 
  # It's important to know Object defines respond_to to take two parameters: the method to check, and whether to include private methods
  # http://www.ruby-doc.org/core/classes/Object.html#M000333
  def self.respond_to?(method_sym, include_private = false)
    if method_sym.to_s =~ /^find_by_(.*)$/
      true
    else
      super
    end
  end
end

正如代碼注釋所述respond_to?需要兩個(gè)參數(shù),如果,你沒有提供將會(huì)產(chǎn)生ArgumentError。

相關(guān)反射 DRY

如果我們注意到了這里有重復(fù)的代碼。我們可以參考ActiveRecord的實(shí)現(xiàn)封裝在ActiveRecord::DynamicFinderMatch,以便避免在method_missing和respond_to?中重復(fù)。

復(fù)制代碼 代碼如下:

class LegislatorDynamicFinderMatch
  attr_accessor :attribute
  def initialize(method_sym)
    if method_sym.to_s =~ /^find_by_(.*)$/
      @attribute = $1.to_sym
    end
  end
 
  def match?
    @attribute != nil
  end
end

class Legislator
  def self.method_missing(method_sym, *arguments, block)
    match = LegislatorDynamicFinderMatch.new(method_sym)
    if match.match?
      find(match.attribute => arguments.first)
    else
      super
    end
  end

  def self.respond_to?(method_sym, include_private = false)
    if LegislatorDynamicFinderMatch.new(method_sym).match?
      true
    else
      super
    end
  end
end

緩存 method_missing

重復(fù)多次的method_missing可以考慮緩存。

另外一個(gè)我們可以向ActiveRecord 學(xué)習(xí)的是,當(dāng)定義method_missing的時(shí)候,發(fā)送 now-defined方法。如下:

復(fù)制代碼 代碼如下:

class Legislator   
  def self.method_missing(method_sym, *arguments, block)
    match = LegislatorDynamicFinderMatch.new(method_sym)
    if match.match?
      define_dynamic_finder(method_sym, match.attribute)
      send(method_sym, arguments.first)
    else
      super
    end
  end
 
  protected
 
  def self.define_dynamic_finder(finder, attribute)
    class_eval -RUBY
      def self.#{finder}(#{attribute})        # def self.find_by_first_name(first_name)
        find(:#{attribute} => #{attribute})   #   find(:first_name => first_name)
      end                                     # end
    RUBY
  end
end

測試

測試部分如下:

復(fù)制代碼 代碼如下:

describe LegislatorDynamicFinderMatch do
  describe 'find_by_first_name' do
    before do
      @match = LegislatorDynamicFinderMatch.new(:find_by_first_name)
    end
     
    it 'should have attribute :first_name' do
      @match.attribute.should == :first_name
    end
   
    it 'should be a match' do
      @match.should be_a_match
    end
  end
 
  describe 'zomg' do
    before do
      @match = LegislatorDynamicFinderMatch(:zomg)
    end
   
    it 'should have nil attribute' do
      @match.attribute.should be_nil
    end
   
    it 'should not be a match' do
      @match.should_not be_a_match
    end
  end
end

下面是 RSpec 例子:

復(fù)制代碼 代碼如下:

describe Legislator, 'dynamic find_by_first_name' do 
  it 'should call find(:first_name => first_name)' do 
    Legislator.should_receive(:find).with(:first_name => 'John') 
     
    Legislator.find_by_first_name('John') 
  end 
end

您可能感興趣的文章:
  • Ruby元編程的一些值得注意的地方
  • ruby元編程之method_missing的一個(gè)使用細(xì)節(jié)
  • Ruby元編程之夢中情人method_missing方法詳解
  • Ruby元編程技術(shù)詳解(Ruby Metaprogramming techniques)
  • Ruby元編程小結(jié)
  • Ruby和元編程之萬物皆為對(duì)象
  • ruby元編程實(shí)際使用實(shí)例
  • Ruby元編程基礎(chǔ)學(xué)習(xí)筆記整理

標(biāo)簽:公主嶺 荊門 普洱 永州 三沙 張家界 梧州 遼寧

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ruby元編程之創(chuàng)建自己的動(dòng)態(tài)方法》,本文關(guān)鍵詞  ruby,元,編程,之,創(chuàng)建,自己的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ruby元編程之創(chuàng)建自己的動(dòng)態(tài)方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于ruby元編程之創(chuàng)建自己的動(dòng)態(tài)方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章