全面解析Java8观察者模式
观察者(observer)模式又名发布-订阅(publish/subscribe)模式,是四人组(gof,即 erich gamma、richard helm、ralph johnson 和 john vlissides)在1994合著的《设计模式:可复用面向对象软件的基础》中提出的(详见书中293-313页)。尽管这种模式已经有相当长的历史,它仍然广泛适用于各种场景,甚至成为了标准java库的一个组成部分。目前虽然已经有大量关于观察者模式的文章,但它们都专注于在 java 中的实现,却忽视了开发者在java中使用观察者模式时遇到的各种问题。
本文的写作初衷就是为了填补这一空白:本文主要介绍通过使用 java8 架构实现观察者模式,并在此基础上进一步探讨关于经典模式的复杂问题,包括匿名内部类、lambda 表达式、线程安全以及非平凡耗时长的观察者实现。本文内容虽然并不全面,很多这种模式所涉及的复杂问题,远不是一篇文章就能说清的。但是读完本文,读者能了解什么是观察者模式,它在java中的通用性以及如何处理在 java 中实现观察者模式时的一些常见问题。
观察者模式
根据 gof 提出的经典定义,观察者模式的主旨是:
定义对象间的一种一对多的依赖关系,当一个对象的状态发生改变时,所有依赖于它的对象都得到通知并被自动更新。
什么意思呢?很多软件应用中,对象之间的状态都是互相依赖的。例如,如果一个应用专注于数值数据加工,这个数据也许会通过图形用户界面(gui)的表格或图表来展现或者两者同时使用,也就是说,当底层数据更新时,相应的 gui 组件也要更新。问题的关键在于如何做到底层数据更新时 gui 组件也随之更新,同时尽量减小 gui 组件和底层数据的耦合度。
一种简单且不可扩展的解决方案是给管理这些底层数据的对象该表格和图像 gui 组件的引用,使得对象可以在底层数据变化时能够通知 gui 组件。显然,对于处理有更多 gui 组件的复杂应用,这个简单的解决方案很快显示出其不足。例如,有20个 gui 组件都依赖于底层数据,那么管理底层数据的对象就需要维护指向这20个组件的引用。随着依赖于相关数据的对象数量的增加,数据管理和对象之间的耦合度也变得难以控制。
另一个更好的解决方案是允许对象注册获取感兴趣数据更新的权限,当数据变化时,数据管理器就会通知这些对象。通俗地说就是,让感兴趣的数据对象告诉管理器:“当数据变化时请通知我”。此外,这些对象不仅可以注册获取更新通知,也可以取消注册,保证数据管理器在数据变化时不再通知该对象。在 gof 的原始定义中,注册获取更新的对象叫作“观察者”(observer),对应的数据管理器叫作“目标”(subject),观察者感兴趣的数据叫作“目标状态”,注册过程叫“添加”(attach),撤销观察的过程叫“移除”(detach)。前文已经提到观察者模式又叫发布-订阅模式,可以理解为客户订阅关于目标的观察者,当目标状态更新时,目标把这些更新发布给订阅者(这种设计模式扩展为通用架构,称为发布——订阅架构)。这些概念可以用下面的类图表示:
具体观察者(concereteobserver)用来接收更新的状态变化,同时将指向具体主题(conceretesubject)的引用传递给它的构造函数。这为具体观察者提供了指向具体主题的引用,在状态变化时可由此获得更新。简单来说,具体观察者会被告知主题更新,同时用其构造函数中的引用来获取具体主题的状态,最后将这些检索状态对象存储在具体观察者的观察状态(observerstate)属性下。这一过程如下面的序列图所示:
经典模式的专业化
尽管观察者模式是通用的,但也有很多专业化的模式,最常见是以下两种:
1、为state对象提供一个参数,传给观察者调用的update方法。在经典模式下,当观察者被通知subject状态发生变化后,会直接从subject获得其更新后状态。这要求观察者保存指向获取状态的对象引用。这样就形成了一个循环引用,concretesubject的引用指向其观察者列表,concreteobserver的引用指向能获得主题状态的concretesubject。除了获得更新的状态,观察者和其注册监听的subject间并没有联系,观察者关心的是state对象,而非subject本身。也就是说,很多情况下都将concreteobserver和concretesubject强行联系一起,相反,当concretesubject调用update函数时,将state对象传递给concreteobserver,二者就无需关联。concreteobserver和state对象之间关联减小了观察者和state之间的依赖程度(关联和依赖的更多区别请参见martin fowler's的文章)。
2、将subject抽象类和concretesubject合并到一个 singlesubject类中。多数情况下,subject使用抽象类并不会提升程序的灵活性和可扩展性,因此,将这一抽象类和具体类合并简化了设计。
这两个专业化的模式组合后,其简化类图如下:
在这些专业化的模式中,静态类结构大大简化,类之间的相互作用也得以简化。此时的序列图如下:
专业化模式另一特点是删除了 concreteobserver 的成员变量 observerstate。有时候具体观察者并不需要保存subject的最新状态,而只需要监测状态更新时 subject 的状态。例如,如果观察者将成员变量的值更新到标准输出上,就可以删除 observerstate,这样一来就删除了concreteobserver和state类之间的关联。
更常见的命名规则
经典模式甚至是前文提到的专业化模式都用的是attach,detach和observer等术语,而java实现中很多都是用的不同的词典,包括register,unregister,listener等。值得一提的是state是listener需要监测变化的所有对象的统称,状态对象的具体名称需要看观察者模式用到的场景。例如,在listener监听事件发生场景下的观察者模式,已注册的listener将会在事件发生时收到通知,此时的状态对象就是event,也就是事件是否发生。
平时实际应用中目标的命名很少包含subject。例如,创建一个关于动物园的应用,注册多个监听器用于观察zoo类,并在新动物进入动物园时收到通知。该案例中的目标是zoo类,为了和所给问题域保持术语一致,将不会用到subject这样的词汇,也就是说zoo类不会命名为zoosubject。
监听器的命名一般都会跟着listener后缀,例如前文提到的监测新动物加入的监听器会命名为animaladdedlistener。类似的,register,、unregister和notify等函数命名常会以其对应的监听器名作后缀,例如animaladdedlistener的register、unregister、notify函数会被命名为registeranimaladdedlistener、 unregisteranimaladdedlistener和notifyanimaladdedlisteners,需要注意的是notify函数名的s,因为notify函数处理的是多个而非单一监听器。
这种命名方式会显得冗长,而且通常一个subject会注册多个类型的监听器,如前面提到的动物园的例子,zoo内除了注册监听动物新增的监听器,还需注册监听动物减少监听器,此时就会有两种register函数:(registeranimaladdedlistener和 registeranimalremovedlistener,这种方式处理,监听器的类型作为一个限定符,表示其应观察者的类型。另一解决方案是创建一个registerlistener函数然后重载,但是方案一能更方便的知道哪个监听器正在监听,重载是比较小众的做法。
另一惯用语法是用on前缀而不是update,例如update函数命名为onanimaladded而不是updateanimaladded。这种情况在监听器获得一个序列的通知时更常见,如向list中新增一个动物,但很少用于更新一个单独的数据,比如动物的名字。
接下来本文将使用java的符号规则,虽然符号规则不会改变系统的真实设计和实现,但是使用其他开发者都熟悉的术语是很重要的开发准则,因此要熟悉上文描述的java中的观察者模式符号规则。下文将在java8环境下用一个简单例子来阐述上述概念。
一个简单的实例
还是前面提到的动物园的例子,使用java8的api接口实现一个简单的系统,说明观察者模式的基本原理。问题描述为:
创建一个系统zoo,允许用户监听和撤销监听添加新对象animal的状态,另外再创建一个具体监听器,负责输出新增动物的name。
根据前面对观察者模式的学习知道实现这样的应用需要创建4个类,具体是:
- zoo类:即模式中的主题,负责存储动物园中的所有动物,并在新动物加入时通知所有已注册的监听器。
- animal类:代表动物对象。
- animaladdedlistener类:即观察者接口。
- printnameanimaladdedlistener:具体的观察者类,负责输出新增动物的name。
首先我们创建一个animal类,它是一个包含name成员变量、构造函数、getter和setter方法的简单java对象,代码如下:
public class animal { private string name; public animal (string name) { this.name = name; } public string getname () { return this.name; } public void setname (string name) { this.name = name; } }
用这个类代表动物对象,接下来就可以创建animaladdedlistener接口了:
public interface animaladdedlistener { public void onanimaladded (animal animal); }
前面两个类很简单,就不再详细介绍,接下来创建zoo类:
public class zoo { private list<animal> animals = new arraylist<>(); private list<animaladdedlistener> listeners = new arraylist<>(); public void addanimal (animal animal) { // add the animal to the list of animals this.animals.add(animal); // notify the list of registered listeners this.notifyanimaladdedlisteners(animal); } public void registeranimaladdedlistener (animaladdedlistener listener) { // add the listener to the list of registered listeners this.listeners.add(listener); } public void unregisteranimaladdedlistener (animaladdedlistener listener) { // remove the listener from the list of the registered listeners this.listeners.remove(listener); } protected void notifyanimaladdedlisteners (animal animal) { // notify each of the listeners in the list of registered listeners this.listeners.foreach(listener -> listener.updateanimaladded(animal)); } }
这个类比前面两个都复杂,其包含两个list,一个用来存储动物园中所有动物,另一个用来存储所有的监听器,鉴于animals和listener集合存储的对象都很简单,本文选择了arraylist来存储。存储监听器的具体数据结构要视问题而定,比如对于这里的动物园问题,如果监听器有优先级,那就应该选择其他的数据结构,或者重写监听器的register算法。
注册和移除的实现都是简单的委托方式:各个监听器作为参数从监听者的监听列表增加或者移除。notify函数的实现与观察者模式的标准格式稍微偏离,它包括输入参数:新增加的animal,这样一来notify函数就可以把新增加的animal引用传递给监听器了。用streams api的foreach函数遍历监听器,对每个监听器执行theonanimaladded函数。
在addanimal函数中,新增的animal对象和监听器各自添加到对应list。如果不考虑通知过程的复杂性,这一逻辑应包含在方便调用的方法中,只需要传入指向新增animal对象的引用即可,这就是通知监听器的逻辑实现封装在notifyanimaladdedlisteners函数中的原因,这一点在addanimal的实现中也提到过。
除了notify函数的逻辑问题,需要强调一下对notify函数可见性的争议问题。在经典的观察者模型中,如gof在设计模式一书中第301页所说,notify函数是public型的,然而尽管在经典模式中用到,这并不意味着必须是public的。选择可见性应该基于应用,例如本文的动物园的例子,notify函数是protected类型,并不要求每个对象都可以发起一个注册观察者的通知,只需保证对象能从父类继承该功能即可。当然,也并非完全如此,需要弄清楚哪些类可以激活notify函数,然后再由此确定函数的可见性。
接下来需要实现printnameanimaladdedlistener类,这个类用system.out.println方法将新增动物的name输出,具体代码如下:
public class printnameanimaladdedlistener implements animaladdedlistener { @override public void updateanimaladded (animal animal) { // print the name of the newly added animal system.out.println("added a new animal with name '" + animal.getname() + "'"); } }
最后要实现驱动应用的主函数:
public class main { public static void main (string[] args) { // create the zoo to store animals zoo zoo = new zoo(); // register a listener to be notified when an animal is added zoo.registeranimaladdedlistener(new printnameanimaladdedlistener()); // add an animal notify the registered listeners zoo.addanimal(new animal("tiger")); } }
主函数只是简单的创建了一个zoo对象,注册了一个输出动物name的监听器,并新建了一个animal对象以触发已注册的监听器,最后的输出为:
added a new animal with name 'tiger'
新增监听器
当监听器重新建立并将其添加到subject时,观察者模式的优势就充分显示出来。例如,想添加一个计算动物园中动物总数的监听器,只需要新建一个具体的监听器类并注册到zoo类即可,而无需对zoo类做任何修改。添加计数监听器countinganimaladdedlistener代码如下:
public class countinganimaladdedlistener implements animaladdedlistener { private static int animalsaddedcount = 0; @override public void updateanimaladded (animal animal) { // increment the number of animals animalsaddedcount++; // print the number of animals system.out.println("total animals added: " + animalsaddedcount); } }
修改后的main函数如下:
public class main { public static void main (string[] args) { // create the zoo to store animals zoo zoo = new zoo(); // register listeners to be notified when an animal is added zoo.registeranimaladdedlistener(new printnameanimaladdedlistener()); zoo.registeranimaladdedlistener(new countinganimaladdedlistener()); // add an animal notify the registered listeners zoo.addanimal(new animal("tiger")); zoo.addanimal(new animal("lion")); zoo.addanimal(new animal("bear")); } }
输出结果为:
added a new animal with name 'tiger' total animals added: 1 added a new animal with name 'lion' total animals added: 2 added a new animal with name 'bear' total animals added: 3
使用者可在仅修改监听器注册代码的情况下,创建任意监听器。具有此可扩展性主要是因为subject和观察者接口关联,而不是直接和concreteobserver关联。只要接口不被修改,调用接口的subject就无需修改。
匿名内部类,lambda函数和监听器注册
java8的一大改进是增加了功能特性,如增加了lambda函数。在引进lambda函数之前,java通过匿名内部类提供了类似的功能,这些类在很多已有的应用中仍在使用。在观察者模式下,随时可以创建新的监听器而无需创建具体观察者类,例如,printnameanimaladdedlistener类可以在main函数中用匿名内部类实现,具体实现代码如下:
public class main { public static void main (string[] args) { // create the zoo to store animals zoo zoo = new zoo(); // register listeners to be notified when an animal is added zoo.registeranimaladdedlistener(new animaladdedlistener() { @override public void updateanimaladded (animal animal) { // print the name of the newly added animal system.out.println("added a new animal with name '" + animal.getname() + "'"); } }); // add an animal notify the registered listeners zoo.addanimal(new animal("tiger")); } }
类似的,lambda函数也可以用以完成此类任务:
public class main { public static void main (string[] args) { // create the zoo to store animals zoo zoo = new zoo(); // register listeners to be notified when an animal is added zoo.registeranimaladdedlistener( (animal) -> system.out.println("added a new animal with name '" + animal.getname() + "'") ); // add an animal notify the registered listeners zoo.addanimal(new animal("tiger")); } }
需要注意的是lambda函数仅适用于监听器接口只有一个函数的情况,这个要求虽然看起来严格,但实际上很多监听器都是单一函数的,如示例中的animaladdedlistener。如果接口有多个函数,可以选择使用匿名内部类。
隐式注册创建的监听器存在此类问题:由于对象是在注册调用的范围内创建的,所以不可能将引用存储一个到具体监听器。这意味着,通过lambda函数或者匿名内部类注册的监听器不可以撤销注册,因为撤销函数需要传入已经注册监听器的引用。解决这个问题的一个简单方法是在registeranimaladdedlistener函数中返回注册监听器的引用。如此一来,就可以撤销注册用lambda函数或匿名内部类创建的监听器,改进后的方法代码如下:
public animaladdedlistener registeranimaladdedlistener (animaladdedlistener listener) { // add the listener to the list of registered listeners this.listeners.add(listener); return listener; }
重新设计的函数交互的客户端代码如下:
public class main { public static void main (string[] args) { // create the zoo to store animals zoo zoo = new zoo(); // register listeners to be notified when an animal is added animaladdedlistener listener = zoo.registeranimaladdedlistener( (animal) -> system.out.println("added a new animal with name '" + animal.getname() + "'") ); // add an animal notify the registered listeners zoo.addanimal(new animal("tiger")); // unregister the listener zoo.unregisteranimaladdedlistener(listener); // add another animal, which will not print the name, since the listener // has been previously unregistered zoo.addanimal(new animal("lion")); } }
此时的结果输出只有added a new animal with name ‘tiger',因为在第二个animal加入之前监听器已经撤销了:
added a new animal with name 'tiger'
如果采用更复杂的解决方案,register函数也可以返回receipt类,以便unregister监听器调用,例如:
public class animaladdedlistenerreceipt { private final animaladdedlistener listener; public animaladdedlistenerreceipt (animaladdedlistener listener) { this.listener = listener; } public final animaladdedlistener getlistener () { return this.listener; } }
receipt会作为注册函数的返回值,以及撤销注册函数输入参数,此时的zoo实现如下所示:
public class zoousingreceipt { // ...existing attributes and constructor... public animaladdedlistenerreceipt registeranimaladdedlistener (animaladdedlistener listener) { // add the listener to the list of registered listeners this.listeners.add(listener); return new animaladdedlistenerreceipt(listener); } public void unregisteranimaladdedlistener (animaladdedlistenerreceipt receipt) { // remove the listener from the list of the registered listeners this.listeners.remove(receipt.getlistener()); } // ...existing notification method... }
上面描述的接收实现机制允许保存信息供监听器撤销时调用的,也就是说如果撤销注册算法依赖于subject注册监听器时的状态,则此状态将被保存,如果撤销注册只需要指向之前注册监听器的引用,这样的话接收技术则显得麻烦,不推荐使用。
除了特别复杂的具体监听器,最常见的注册监听器的方法是通过lambda函数或通过匿名内部类注册。当然,也有例外,那就是包含subject实现观察者接口的类和注册一个包含调用该引用目标的监听器。如下面代码所示的案例:
public class zoocontainer implements animaladdedlistener { private zoo zoo = new zoo(); public zoocontainer () { // register this object as a listener this.zoo.registeranimaladdedlistener(this); } public zoo getzoo () { return this.zoo; } @override public void updateanimaladded (animal animal) { system.out.println("added animal with name '" + animal.getname() + "'"); } public static void main (string[] args) { // create the zoo container zoocontainer zoocontainer = new zoocontainer(); // add an animal notify the innerally notified listener zoocontainer.getzoo().addanimal(new animal("tiger")); } }
这种方法只适用于简单情况而且代码看起来不够专业,尽管如此,它还是深受现代java开发人员的喜爱,因此了解这个例子的工作原理很有必要。因为zoocontainer实现了animaladdedlistener接口,那么zoocontainer的实例(或者说对象)就可以注册为animaladdedlistener。zoocontainer类中,该引用代表当前对象即zoocontainer的一个实例,所以可以被用作animaladdedlistener。
通常,不是要求所有的container类都实现此类功能,而且实现监听器接口的container类只能调用subject的注册函数,只是简单把该引用作为监听器的对象传给register函数。在接下来的章节中,将介绍多线程环境的常见问题和解决方案。
线程安全的实现
前面章节介绍了在现代java环境下的实现观察者模式,虽然简单但很完整,但这一实现忽略了一个关键性问题:线程安全。大多数开放的java应用都是多线程的,而且观察者模式也多用于多线程或异步系统。例如,如果外部服务更新其数据库,那么应用也会异步地收到消息,然后用观察者模式通知内部组件更新,而不是内部组件直接注册监听外部服务。
观察者模式的线程安全主要集中在模式的主体上,因为修改注册监听器集合时很可能发生线程冲突,比如,一个线程试图添加一个新的监听器,而另一线程又试图添加一个新的animal对象,这将触发对所有注册监听器的通知。鉴于先后顺序,在已注册的监听器收到新增动物的通知前,第一个线程可能已经完成也可能尚未完成新监听器的注册。这是一个经典的线程资源竞争案例,正是这一现象告诉开发者们需要一个机制来保证线程安全。
这一问题的最简单的解决方案是:所有访问或修改注册监听器list的操作都须遵循java的同步机制,比如:
public synchronized animaladdedlistener registeranimaladdedlistener (animaladdedlistener listener) { /*...*/ } public synchronized void unregisteranimaladdedlistener (animaladdedlistener listener) { /*...*/ } public synchronized void notifyanimaladdedlisteners (animal animal) { /*...*/ }
这样一来,同一时刻只有一个线程可以修改或访问已注册的监听器列表,可以成功地避免资源竞争问题,但是新问题又出现了,这样的约束太过严格(synchronized关键字和java并发模型的更多信息,请参阅官方网页)。通过方法同步,可以时刻观测对监听器list的并发访问,注册和撤销监听器对监听器list而言是写操作,而通知监听器访问监听器list是只读操作。由于通过通知访问是读操作,因此是可以多个通知操作同时进行的。
因此,只要没有监听器注册或撤销注册,任意多的并发通知都可以同时执行,而不会引发对注册的监听器列表的资源争夺。当然,其他情况下的资源争夺现象存在已久,为了解决这一问题,设计了readwritelock用以分开管理读写操作的资源锁定。zoo类的线程安全threadsafezoo实现代码如下:
public class threadsafezoo { private final readwritelock readwritelock = new reentrantreadwritelock(); protected final lock readlock = readwritelock.readlock(); protected final lock writelock = readwritelock.writelock(); private list<animal> animals = new arraylist<>(); private list<animaladdedlistener> listeners = new arraylist<>(); public void addanimal (animal animal) { // add the animal to the list of animals this.animals.add(animal); // notify the list of registered listeners this.notifyanimaladdedlisteners(animal); } public animaladdedlistener registeranimaladdedlistener (animaladdedlistener listener) { // lock the list of listeners for writing this.writelock.lock(); try { // add the listener to the list of registered listeners this.listeners.add(listener); } finally { // unlock the writer lock this.writelock.unlock(); } return listener; } public void unregisteranimaladdedlistener (animaladdedlistener listener) { // lock the list of listeners for writing this.writelock.lock(); try { // remove the listener from the list of the registered listeners this.listeners.remove(listener); } finally { // unlock the writer lock this.writelock.unlock(); } } public void notifyanimaladdedlisteners (animal animal) { // lock the list of listeners for reading this.readlock.lock(); try { // notify each of the listeners in the list of registered listeners this.listeners.foreach(listener -> listener.updateanimaladded(animal)); } finally { // unlock the reader lock this.readlock.unlock(); } } }
通过这样部署,subject的实现能确保线程安全并且多个线程可以同时发布通知。但尽管如此,依旧存在两个不容忽略的资源竞争问题:
对每个监听器的并发访问。多个线程可以同时通知监听器要新增动物了,这意味着一个监听器可能会同时被多个线程同时调用。
对animal list的并发访问。多个线程可能会同时向animal list添加对象,如果通知的先后顺序存在影响,那就可能导致资源竞争,这就需要一个并发操作处理机制来避免这一问题。如果注册的监听器列表在收到通知添加animal2后,又收到通知添加animal1,此时就会产生资源竞争。但是如果animal1和animal2的添加由不同的线程执行,也是有可能在animal2前完成对animal1添加操作,具体来说就是线程1在通知监听器前添加animal1并锁定模块,线程2添加animal2并通知监听器,然后线程1通知监听器animal1已经添加。虽然在不考虑先后顺序时,可以忽略资源竞争,但问题是真实存在的。
对监听器的并发访问
并发访问监听器可以通过保证监听器的线程安全来实现。秉承着类的“责任自负”精神,监听器有“义务”确保自身的线程安全。例如,对于前面计数的监听器,多线程的递增或递减动物数量可能导致线程安全问题,要避免这一问题,动物数的计算必须是原子操作(原子变量或方法同步),具体解决代码如下:
public class threadsafecountinganimaladdedlistener implements animaladdedlistener { private static atomiclong animalsaddedcount = new atomiclong(0); @override public void updateanimaladded (animal animal) { // increment the number of animals animalsaddedcount.incrementandget(); // print the number of animals system.out.println("total animals added: " + animalsaddedcount); } }
方法同步解决方案代码如下:
public class countinganimaladdedlistener implements animaladdedlistener { private static int animalsaddedcount = 0; @override public synchronized void updateanimaladded (animal animal) { // increment the number of animals animalsaddedcount++; // print the number of animals system.out.println("total animals added: " + animalsaddedcount); } }
要强调的是监听器应该保证自身的线程安全,subject需要理解监听器的内部逻辑,而不是简单确保对监听器的访问和修改的线程安全。否则,如果多个subject共用同一个监听器,那每个subject类都要重写一遍线程安全的代码,显然这样的代码不够简洁,因此需要在监听器类内实现线程安全。
监听器的有序通知
当要求监听器有序执行时,读写锁就不能满足需求了,而需要引入一个新的机制,可以保证notify函数的调用顺序和animal添加到zoo的顺序一致。有人尝试过用方法同步来实现,然而根据oracle文档中的方法同步介绍,可知方法同步并不提供操作执行的顺序管理。它只是保证原子操作,也就是说操作不会被打断,并不能保证先来先执行(fifo)的线程顺序。reentrantreadwritelock可以实现这样的执行顺序,代码如下:
public class orderedthreadsafezoo { private final readwritelock readwritelock = new reentrantreadwritelock(true); protected final lock readlock = readwritelock.readlock(); protected final lock writelock = readwritelock.writelock(); private list<animal> animals = new arraylist<>(); private list<animaladdedlistener> listeners = new arraylist<>(); public void addanimal (animal animal) { // add the animal to the list of animals this.animals.add(animal); // notify the list of registered listeners this.notifyanimaladdedlisteners(animal); } public animaladdedlistener registeranimaladdedlistener (animaladdedlistener listener) { // lock the list of listeners for writing this.writelock.lock(); try { // add the listener to the list of registered listeners this.listeners.add(listener); } finally { // unlock the writer lock this.writelock.unlock(); } return listener; } public void unregisteranimaladdedlistener (animaladdedlistener listener) { // lock the list of listeners for writing this.writelock.lock(); try { // remove the listener from the list of the registered listeners this.listeners.remove(listener); } finally { // unlock the writer lock this.writelock.unlock(); } } public void notifyanimaladdedlisteners (animal animal) { // lock the list of listeners for reading this.readlock.lock(); try { // notify each of the listeners in the list of registered listeners this.listeners.foreach(listener -> listener.updateanimaladded(animal)); } finally { // unlock the reader lock this.readlock.unlock(); } } }
这样的实现方式,register, unregister和notify函数将按照先进先出(fifo)的顺序获得读写锁权限。例如,线程1注册一个监听器,线程2在开始执行注册操作后试图通知已注册的监听器,线程3在线程2等待只读锁的时候也试图通知已注册的监听器,采用fair-ordering方式,线程1先完成注册操作,然后线程2可以通知监听器,最后线程3通知监听器。这样保证了action的执行顺序和开始顺序一致。
如果采用方法同步,虽然线程2先排队等待占用资源,线程3仍可能比线程2先获得资源锁,而且不能保证线程2比线程3先通知监听器。问题的关键所在:fair-ordering方式可以保证线程按照申请资源的顺序执行。读写锁的顺序机制很复杂,应参照reentrantreadwritelock的官方文档以确保锁的逻辑足够解决问题。
截止目前实现了线程安全,在接下来的章节中将介绍提取主题的逻辑并将其mixin类封装为可重复代码单元的方式优缺点。
主题逻辑封装到mixin类
把上述的观察者模式设计实现封装到目标的mixin类中很具吸引力。通常来说,观察者模式中的观察者包含已注册的监听器的集合;负责注册新的监听器的register函数;负责撤销注册的unregister函数和负责通知监听器的notify函数。对于上述的动物园的例子,zoo类除动物列表是问题所需外,其他所有操作都是为了实现主题的逻辑。
mixin类的案例如下所示,需要说明的是为使代码更为简洁,此处去掉关于线程安全的代码:
public abstract class observablesubjectmixin<listenertype> { private list<listenertype> listeners = new arraylist<>(); public listenertype registerlistener (listenertype listener) { // add the listener to the list of registered listeners this.listeners.add(listener); return listener; } public void unregisteranimaladdedlistener (listenertype listener) { // remove the listener from the list of the registered listeners this.listeners.remove(listener); } public void notifylisteners (consumer<? super listenertype> algorithm) { // execute some function on each of the listeners this.listeners.foreach(algorithm); } }
正因为没有提供正在注册的监听器类型的接口信息,不能直接通知某个特定的监听器,所以正需要保证通知功能的通用性,允许客户端添加一些功能,如接受泛型参数类型的参数匹配,以适用于每个监听器,具体实现代码如下:
public class zoousingmixin extends observablesubjectmixin<animaladdedlistener> { private list<animal> animals = new arraylist<>(); public void addanimal (animal animal) { // add the animal to the list of animals this.animals.add(animal); // notify the list of registered listeners this.notifylisteners((listener) -> listener.updateanimaladded(animal)); } }
mixin类技术的最大优势是把观察者模式的subject封装到一个可重复调用的类中,而不是在每个subject类中都重复写这些逻辑。此外,这一方法使得zoo类的实现更为简洁,只需要存储动物信息,而不用再考虑如何存储和通知监听器。
然而,使用mixin类并非只有优点。比如,如果要存储多个类型的监听器怎么办?例如,还需要存储监听器类型animalremovedlistener。mixin类是抽象类,java中不能同时继承多个抽象类,而且mixin类不能改用接口实现,这是因为接口不包含state,而观察者模式中state需要用来保存已经注册的监听器列表。
其中的一个解决方案是创建一个动物增加和减少时都会通知的监听器类型zoolistener,代码如下所示:
public interface zoolistener { public void onanimaladded (animal animal); public void onanimalremoved (animal animal); }
这样就可以使用该接口实现利用一个监听器类型对zoo状态各种变化的监听了:
public class zoousingmixin extends observablesubjectmixin<zoolistener> { private list<animal> animals = new arraylist<>(); public void addanimal (animal animal) { // add the animal to the list of animals this.animals.add(animal); // notify the list of registered listeners this.notifylisteners((listener) -> listener.onanimaladded(animal)); } public void removeanimal (animal animal) { // remove the animal from the list of animals this.animals.remove(animal); // notify the list of registered listeners this.notifylisteners((listener) -> listener.onanimalremoved(animal)); } }
将多个监听器类型合并到一个监听器接口中确实解决了上面提到的问题,但仍旧存在不足之处,接下来的章节会详细讨论。
multi-method监听器和适配器
在上述方法,监听器的接口中实现的包含太多函数,接口就过于冗长,例如,swing mouselistener就包含5个必要的函数。尽管可能只会用到其中一个,但是只要用到鼠标点击事件就必须要添加这5个函数,更多可能是用空函数体来实现剩下的函数,这无疑会给代码带来不必要的混乱。
其中一种解决方案是创建适配器(概念来自gof提出的适配器模式),适配器中以抽象函数的形式实现监听器接口的操作,供具体监听器类继承。这样一来,具体监听器类就可以选择其需要的函数,对adapter不需要的函数采用默认操作即可。例如上面例子中的zoolistener类,创建zooadapter(adapter的命名规则与监听器一致,只需要把类名中的listener改为adapter即可),代码如下:
public class zooadapter implements zoolistener { @override public void onanimaladded (animal animal) {} @override public void onanimalremoved (animal animal) {} }
乍一看,这个适配器类微不足道,然而它所带来的便利却是不可小觑的。比如对于下面的具体类,只需选择对其实现有用的函数即可:
public class nameprinterzooadapter extends zooadapter { @override public void onanimaladded (animal animal) { // print the name of the animal that was added system.out.println("added animal named " + animal.getname()); } }
有两种替代方案同样可以实现适配器类的功能:一是使用默认函数;二是把监听器接口和适配器类合并到一个具体类中。默认函数是java8新提出的,在接口中允许开发者提供默认(防御)的实现方法。
java库的这一更新主要是方便开发者在不改变老版本代码的情况下,实现程序扩展,因此应该慎用这个方法。部分开发者多次使用后,会感觉这样写的代码不够专业,而又有开发者认为这是java8的特色,不管怎样,需要明白这个技术提出的初衷是什么,再结合具体问题决定是否要用。使用默认函数实现的zoolistener接口代码如下示:
public interface zoolistener { default public void onanimaladded (animal animal) {} default public void onanimalremoved (animal animal) {} }
通过使用默认函数,实现该接口的具体类,无需在接口中实现全部函数,而是选择性实现所需函数。虽然这是接口膨胀问题一个较为简洁的解决方案,开发者在使用时还应多加注意。
第二种方案是简化观察者模式,省略了监听器接口,而是用具体类实现监听器的功能。比如zoolistener接口就变成了下面这样:
public class zoolistener { public void onanimaladded (animal animal) {} public void onanimalremoved (animal animal) {} }
这一方案简化了观察者模式的层次结构,但它并非适用于所有情况,因为如果把监听器接口合并到具体类中,具体监听器就不可以实现多个监听接口了。例如,如果animaladdedlistener和animalremovedlistener接口写在同一个具体类中,那么单独一个具体监听器就不可以同时实现这两个接口了。此外,监听器接口的意图比具体类更显而易见,很显然前者就是为其他类提供接口,但后者就并非那么明显了。
如果没有合适的文档说明,开发者并不会知道已经有一个类扮演着接口的角色,实现了其对应的所有函数。此外,类名不包含adapter,因为类并不适配于某一个接口,因此类名并没有特别暗示此意图。综上所述,特定问题需要选择特定的方法,并没有哪个方法是万能的。
在开始下一章前,需要特别提一下,适配器在观察模式中很常见,尤其是在老版本的java代码中。swing api正是以适配器为基础实现的,正如很多老应用在java5和java6中的观察者模式中所使用的那样。zoo案例中的监听器或许并不需要适配器,但需要了解适配器提出的目的以及其应用,因为我们可以在现有的代码中对其进行使用。下面的章节,将会介绍时间复杂的监听器,该类监听器可能会执行耗时的运算或进行异步调用,不能立即给出返回值。
complex & blocking监听器
关于观察者模式的一个假设是:执行一个函数时,一系列监听器会被调用,但假定这一过程对调用者而言是完全透明的。例如,客户端代码在zoo中添加animal时,在返回添加成功之前,并不知道会调用一系列监听器。如果监听器的执行需要时间较长(其时间受监听器的数量、每个监听器执行时间影响),那么客户端代码将会感知这一简单增加动物操作的时间副作用。
本文不能面面俱到的讨论这个话题,下面几条是开发者调用复杂的监听器时应该注意的事项:
监听器启动新线程。新线程启动后,在新线程中执行监听器逻辑的同时,返回监听器函数的处理结果,并运行其他监听器执行。
subject启动新线程。与传统的线性迭代已注册的监听器列表不同,subject的notify函数重启一个新的线程,然后在新线程中迭代监听器列表。这样使得notify函数在执行其他监听器操作的同时可以输出其返回值。需要注意的是需要一个线程安全机制来确保监听器列表不会进行并发修改。
队列化监听器调用并采用一组线程执行监听功能。将监听器操作封装在一些函数中并队列化这些函数,而非简单的迭代调用监听器列表。这些监听器存储到队列中后,线程就可以从队列中弹出单个元素并执行其监听逻辑。这类似于生产者-消费者问题,notify过程产生可执行函数队列,然后线程依次从队列中取出并执行这些函数,函数需要存储被创建的时间而非执行的时间供监听器函数调用。例如,监听器被调用时创建的函数,那么该函数就需要存储该时间点,这一功能类似于java中的如下操作:
public class
如何使用java8 实现观察者模式?相信通过这篇文章大家都有了大概的了解了吧!