在PureMVC中,通知(Notification)貫穿整個框架,把觀察者模式發揮得淋漓盡致。MVC的三層通信都是通過Notification來通信。Notification由兩部分組成:Name和Body。如果把Notification當作是郵件,那麼Name就是收件人,不過在PureMVC中可以有多個觀察者(Observer)接收相同的郵件,Body自然就是Notification的內容了。Notification和Observer的關系是1:N,這點可以從View層的代碼中看出來。
observerMap = new Dictionary<String, IList<IObserver>>();
Observer有兩個屬性:
private String notify;
private Object context;
notify是方法名,context是方法的載體。當Observer接收到Notification時,將調用下面的方法
public void notifyObserver(INotification notification)
{
Type t = this.getNotifyContext().GetType();
BindingFlags f = BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase;
MethodInfo mi = t.GetMethod(this.getNotifyMethod(), f);
mi.Invoke(this.getNotifyContext(), new Object[] { notification });
}
來執行notify這個方法。
PureMVC中,注冊Observer和通知Observer都是在View層進行的。
public interface IView
{
void registerObserver (String notificationName, IObserver observer);
void removeObserver(String notificationName, Object notifyContext);
void notifyObservers(INotification note);
我覺得這點設計得不太好,使得View層和Observer產生了耦合,這些事情本不應該由View層來做的。而且,Observer接收的Notification不僅僅來自於View,還會來自於Controller和Model,那麼,根據AOP的原則,應該把這部分的操作應該從MVC層的縱向分離出來,改為橫向模式。可以創建一個觀察者公司Obsertor(暫且這樣叫它吧)來統一管理觀察者,這樣就可以減輕View層的工作了。結構圖如下:
在PureMVC中有一個類叫Notifyer,根據字面的意思,它應該是Notification的傳遞都,也就是郵差才對。然而這個類卻不做自己的本職工作---給Observer發送通知,而是把所有通知都推給了Facade,再由Facade通過View來把Notification發送給Observer。發個通知也一波三折,我覺得這樣設計不夠合理。前面我已經創建了觀察都的公司Obsertor了,那麼Notifyer只要直接把Notification發送到Obsertor就可以了,Obsertor會把Notification發給具體的Observer。現實中的公司都是這樣子的吧,經常都是前台告訴我,我的包裹到了。因此,應該讓Notifyer做回它的本職工作。
PureMVC的C#版本在Mediator的注冊上存在著點BUG,注冊Mediator的部分代碼:
Code
public void registerMediator(IMediator mediator)
{
if (mediatorMap.ContainsKey(mediator.getMediatorName())) return;
它的本意是避免Mediator的重復注冊,然後當頁面重新加載時,mediatorMap裡的Mediator的視圖已經過時了,這樣就導致了無法更新頁面。我的解決方法是
Code
public void registerMediator(IMediator mediator)
{
if (mediatorMap.ContainsKey(mediator.getMediatorName()))
{
mediatorMap[mediator.getMediatorName()].setViewComponent(mediator.getViewComponent());
return;
}
局部更新一下ViewComponent,這樣就運行正常了。
本來是想分析一下PureMVC的實現機制的,但發現自己的表達能力實在有限,心有余而力足,但哪天有思路了,再為大家獻上。同時,我再根據自己的方案改良一下PureMVC,讓它更適用於C#,到時再將源碼一起發布。由於工作比較忙,可能要讓大家等上一陣子。