Android学习之Flux架构入门
flux 架构介绍
flux 架构 被facebook使用来构建他们的客户端web应用。跟clean architecture一样,它不是为移动应用设计的,但是它的特性和简单可以让我们很好的在安卓项目中采用。
flux模式最大的特点是单向的数据流,它的ui状态更新模式继承了mvc模式的设计思想。flux并不是具体的框架,而是一套处理ui问题的模式,android flux同样不是具体的框架,你不需要导入或者集成任何新的代码就可以使用,而你需要做的事情是了解这套思想、遵循这种开发模式,查看我们提供的android代码示例,写自己的代码。
要理解flux,有两个关键的特点
1、数据流总是单向的
一个单向的数据流 是 flux 架构的核心,也是它简单易学的原因。就如下面讨论的,在进行应用测试的时候,它提供了非常大的帮助。
2、应用被分成三个主要部分:
. view: 应用的界面。这里创建响应用户操作的action
。
. dispatcher: 中心枢纽,传递所有的action
,负责把它们运达每个store
。
. store: 维护一个特定application domain
的状态。它们根据当前状态响应action
,执行业务逻辑,同时在完成的时候发出一个change
事件。这个事件用于view
更新其界面。
这三个部分都是通过action
来通信的:一个简单的基本对象,以类型来区分,包含了和操作相关的数据。
flux android 架构
在安卓开发中使用flux设计规范的目的是建立一个在简单性与易扩展易测试之间都比较平衡的架构。
第一步是找到flux元素和安卓app组件之间的映射。
其中两个元素非常容易找到与实现。
view: activity o
或者fragment
dispatcher:
一个事件总线( event bus),在我的例子中将使用otto,但是其它任何实现都应该是ok的。
actions
actions
也不复杂。它们的实现和pojo
一样简单,有两个主要属性:
1、type: 一个string,定义了事件的类型。
2、data: 一个map,装载了本次操作。
store是flux理论中最难的部分。
stores
响应dispatcher
发出的action
,执行业务逻辑并发送change
事件。stores
的唯一输出是这单一的事件:change
。其它对store
内部状态感兴趣的组件必须监听这个事件,同时使用它获取需要的数据。最后,stores
必须对外公开一个获取application
状态的接口。这样,view
元素可以查询stores
然后相应的更新ui。
这里通过一个简单的小demo来讲述整个流程。我们的界面上有一个button
和一个textview
,点击button
后让textview
显示出文字。常规的实现,直接在activity
中完成逻辑,mvp
模式,在presenter
层来进行,对于flux架构,我们要怎么实现呢。通过上图我们可以看到,view
会产生action
,然后被dispatcher
进行调度,经过store
相应处理,将数据显示出来。
如何产生action
首先要知道action
是什么样
public class action { private final string type; private final hashmap<string, object> data; public action(string type, hashmap<string, object> data) { this.type = type; this.data = data; } public static builder type(string type) { return new builder().with(type); } public string gettype() { return type; } public hashmap getdata() { return data; } public static class builder { private string type; private hashmap<string, object> data; builder with(string type) { if(type == null) { throw new illegalargumentexception("type may not be null."); } this.type = type; this.data = new hashmap<>(); return this; } public builder bundle(string key, object value) { if (key == null) { throw new illegalargumentexception("key may not be null."); } if(value == null) { throw new illegalargumentexception("value may not be null."); } data.put(key, value); return this; } public action build() { if (textutils.isempty(type)) { throw new illegalargumentexception("at least one key is required."); } return new action(type, data); } } }
每一个action
有两个属性,一个来标记type
,另一个字段来存储传送的数据,通过map
来存放。
对于action type
,我们可以通过一个接口或者类来进行记录,将所有的类型保存在其中。方便我们的调用。
public interface showactions { string todo_show = "todo-show"; string get_text = "get-text"; }
如何创建action
,定义一个类,专门用来根据我们可能会出现的各种view
的事件,定义出来各种action
。
public class actionscreator { private static actionscreator instance; final dispatcher mdispatcher; actionscreator(dispatcher dispatcher){ mdispatcher = dispatcher; } public static actionscreator get(dispatcher dispatcher) { if (instance == null) { instance = new actionscreator(dispatcher); } return instance; } public void create(string text) { mdispatcher.dispatch(showactions.todo_show, showactions.get_text, text); }
在我们准备用actionscreator
来创建action
的时候,我们并没有直接new action
这种方式来做,而是将其通过调度器,对其进行了分发。这里的事件分发,我们使用的是otto
的bus
来进行事件的分发。
public class dispatcher { private final bus bus; private static dispatcher instance; dispatcher(bus bus){ this.bus = bus; } public static dispatcher get(bus bus) { if (instance == null) { instance = new dispatcher(bus); } return instance; } public void register(final object cls) { bus.register(cls); } public void unregister(final object cls) { bus.unregister(cls); } public void emitchange(store.storechangeevent o) {post(o);} public void dispatch(string type, object... data) { if(textutils.isempty(type)) { throw new illegalargumentexception("type must not be empty"); } if (data.length % 2 != 0) { throw new illegalargumentexception("data must be a valid list of key"); } action.builder actionbuilder = action.type(type); for (int i = 0; i < data.length; i++) { string key = (string) data[i++]; object value = data[i++]; actionbuilder.bundle(key, value); } post(actionbuilder.build()); } private boolean isempty(string type) { return textutils.isempty(type); } private void post(final object event) { bus.post(event); } }
在调度的过程中,我们将传递进来的数据进行一个解析,然后根据数据创建出相应的action
,然后对action
进行分发,这个时候关注了相应的action
的store
就会开始根据相应的action
开始执行相应的操作。在store
中,声明了一个抽象方法onaction
来负责进行对于action
的判断和分发,然后定义了storechangeevent
接口作为事件变化,当有变化的时候,通过这个进行传递,我们可以自己实现这个接口,然后在里面添加一些方法和字段用来携带数据。
public abstract class store { final dispatcher mdispatcher; protected store(dispatcher dispatcher) { this.mdispatcher = dispatcher; } void emitstorechange() { mdispatcher.emitchange(changeevent()); } abstract storechangeevent changeevent(); public abstract void onaction(action action); public interface storechangeevent {} }
我们自定义的store类
public class showstore extends store { private static showstore instance; private string showtext; public showstore(dispatcher dispatcher){ super(dispatcher); } public static showstore get(dispatcher dispatcher) { if (instance == null) { instance = new showstore(dispatcher); } return instance; } @subscribe public void onaction(action action) { switch (action.gettype()) { case showactions.todo_show : showtext = ((string)action.getdata().get(showactions.get_text)); log.i("showtext", showtext); emitstorechange(); break; default: break; } } public string getshowtext(){ return showtext; } @override storechangeevent changeevent() { return new showchangeevent(); } public class showchangeevent implements storechangeevent { } }
然后我们在view
也就是activity
中订阅了变化时间的方法,这个时候就可以实现对于view
中的数据的一个动态更新。
@subscribe public void showtext (showstore.showchangeevent event){ mtextview.settext(mshowstore.getshowtext()); }
总结
通过flux架构,使用的流程是,我们的view的事件会携带数据,通过一个actionscreate创建一个type的action,实际完成过程是在dispatcher的dispatch中,然后再将这个action丢给订阅了该action的store方法中,在这里完成各种逻辑,处理,甚至是可以发起网络请求获取数据,处理完成,可以将结果封装成一个事件,然后这个事件会再次通过调度器中的emitchangeevent将事件传递给订阅了该事件的函数,而这个接收响应事件的函数被我们定义在我们view中,从而实现对于我们view的更新。以上就是本文的全部内容了,希望本文的内容对大家学习flux架构有所帮助。