次のスニペットがあります。
FEED_TYPES = [
('fan_mail', 'Fan Mail'),
('review', 'Review'),
('tip', 'Tip'),
('fan_user', 'Fan User'),
('fan_song', 'Fan Song'),
('fan_album', 'Fan Album'),
('played_song', 'Played Song'),
('played_album', 'Played Album'),
('played_radio', 'Played Radio'),
('new_event', 'New Event'),
]
class Feed:
@classmethod
def do_create(cls, **kwargs):
print kwargs
@classmethod
def create(cls, type, **kwargs):
kwargs['feed_type'] = type
cls.do_create(**kwargs)
for type_tuple in FEED_TYPES:
type, name = type_tuple
def notify(self, **kwargs):
print "notifying %s" % type
self.create(type, **kwargs)
notify.__name__ = "notify_%s" % type
setattr(Feed, notify.__name__, classmethod(notify))
Feed.create("FanMail", to_profile="Gerson", from_profile="Felipe")
Feed.notify_fan_mail(to_profile="Gerson2", from_profile="Felipe2")
アイデアは、フィードの種類ごとに 1 つのクラス メソッド ( notify_fan_mailなど) を動的に作成することです。ほとんど問題なく動作しますが、唯一の問題は、呼び出すメソッドに関係なく、printステートメントが常に「notifying new_event」を出力することです ( notify_new_mail、notify_reviewなどでも同じです)。
タイプに割り当てられた最後の値を使用しているためだと思います。私の質問は、typeの正しい値を使用するメソッドを動的に作成するにはどうすればよいですか?
また、Python ファイルにこの正確なコードがある場合、Feed クラスにメソッドを追加する正しい方法ですか、それとももっと洗練された方法がありますか?