LiveData常用方法源码分析

2023-12-26 04:08

本文主要是介绍LiveData常用方法源码分析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、postValue
protected void postValue(T value) {boolean postTask;// 同步锁synchronized (mDataLock) {// 判断mPendingData是否为NOT_SETpostTask = mPendingData == NOT_SET;// 对mPendingData赋值mPendingData = value;}// 防止数据重复设置if (!postTask) {return;}// 将数据发送到主线程处理ArchTaskExecutor.getInstance().postToMainThread(mPostValueRunnable);}

步骤分解:

  • 1、LiveData通过postValue方法在子线程同步方法中设置数据
  • 2、数据NOT_SET校验
  • 3、将数据发送到主线程进行处理
2、setValue
 @MainThreadprotected void setValue(T value) {assertMainThread("setValue"); // 1mVersion++; // 2mData = value; // 3dispatchingValue(null); // 4}

步骤分解:

  • 1、主线程校验
  • 2、计数器自加
  • 3、为mData赋值
  • 4、分发数据(详见dispatchingValue)
3、assertMainThread 主线程校验
 static void assertMainThread(String methodName) {if (!ArchTaskExecutor.getInstance().isMainThread()) {throw new IllegalStateException("Cannot invoke " + methodName + " on a background"+ " thread");}}
4、dispatchingValue
   void dispatchingValue(@Nullable ObserverWrapper initiator) {// 1if (mDispatchingValue) {mDispatchInvalidated = true;return;}// 2mDispatchingValue = true;do {mDispatchInvalidated = false;// 3if (initiator != null) {considerNotify(initiator);initiator = null;} else {// 4for (Iterator<Map.Entry<Observer<? super T>, ObserverWrapper>> iterator =mObservers.iteratorWithAdditions(); iterator.hasNext(); ) {considerNotify(iterator.next().getValue());if (mDispatchInvalidated) {break;}}}} while (mDispatchInvalidated);mDispatchingValue = false;}

步骤分解:

  • 1、分发状态标记,防止重复分发
  • 2、修改分发状态
  • 3、分发通过参数传递进来的迭代器中数据
  • 4、将数据分发给所有观察者
5、considerNotify
 private void considerNotify(ObserverWrapper observer) {// 1if (!observer.mActive) {return;}// Check latest state b4 dispatch. Maybe it changed state but we didn't get the event yet.//// we still first check observer.active to keep it as the entrance for events. So even if// the observer moved to an active state, if we've not received that event, we better not// notify for a more predictable notification order.// 2if (!observer.shouldBeActive()) {observer.activeStateChanged(false);return;}// 3if (observer.mLastVersion >= mVersion) {return;}// 4observer.mLastVersion = mVersion;// 5observer.mObserver.onChanged((T) mData);}

步骤分解

  • 1、观察者非active状态,拦截
  • 2、通过shouldBeActive修改观察者active状态
  • 3、version计数器比对
  • 4、调用onChange方法,分发数据
6、observe
  @MainThreadpublic void observe(@NonNull LifecycleOwner owner, @NonNull Observer<? super T> observer) {assertMainThread("observe");// 1if (owner.getLifecycle().getCurrentState() == DESTROYED) {// ignorereturn;}// 2LifecycleBoundObserver wrapper = new LifecycleBoundObserver(owner, observer);// 3ObserverWrapper existing = mObservers.putIfAbsent(observer, wrapper);// 4if (existing != null && !existing.isAttachedTo(owner)) {throw new IllegalArgumentException("Cannot add the same observer"+ " with different lifecycles");}if (existing != null) {return;}// 5owner.getLifecycle().addObserver(wrapper);}

步骤分解

  • 1、如果owner为DESTROYED状态,直接return
  • 2、构造LifecycleBoundObserver
  • 3、构造ObserverWrapper(详见putIfAbsent)
  • 4、对已经存在观察者抛出异常,防止重复添加监听
  • 5、添加合法观察者
7、putIfAbsent
  public V putIfAbsent(@NonNull K key, @NonNull V v) {Entry<K, V> entry = get(key);if (entry != null) {return entry.mValue;}put(key, v);return null;}
  • Entry形式存储K、V值,K不允许重复
8、map
 public static <X, Y> LiveData<Y> map(@NonNull LiveData<X> source,@NonNull final Function<X, Y> mapFunction) {// 1final MediatorLiveData<Y> result = new MediatorLiveData<>();// 2result.addSource(source, new Observer<X>() {@Overridepublic void onChanged(@Nullable X x) {// 3result.setValue(mapFunction.apply(x));}});// 4return result;}

步骤分解

  • 1、创建MediatorLiveData
  • 2、通过addSource将源数据添加到result中
  • 3、为result添加源数据监听,并在接收到监听后setValue
  • 4、返回MediatorLiveData类型数据作为result
9、switchMap
 @MainThread@NonNullpublic static <X, Y> LiveData<Y> switchMap(@NonNull LiveData<X> source,@NonNull final Function<X, LiveData<Y>> switchMapFunction) {// 1final MediatorLiveData<Y> result = new MediatorLiveData<>();// 2result.addSource(source, new Observer<X>() {LiveData<Y> mSource;@Overridepublic void onChanged(@Nullable X x) {// 3LiveData<Y> newLiveData = switchMapFunction.apply(x);// 4if (mSource == newLiveData) {return;}// 5if (mSource != null) {result.removeSource(mSource);}// 6mSource = newLiveData;// 7if (mSource != null) {result.addSource(mSource, new Observer<Y>() {@Overridepublic void onChanged(@Nullable Y y) {// 8result.setValue(y);}});}}});// 9return result;}

步骤分解

  • 1、创建MediatorLiveData类型result
  • 2、将源数据添加到result中
  • 3、通过switchMapFunction的apply函数创建LiveData类型数据newLiveData
  • 4、与前一次的数据相同,直接返回
  • 5、数据不为空,通过removeSource方法将数据从result中移除
  • 6、缓存newLiveData至mSource
  • 7、mSource不为空,将mSource作为源数据添加到result中
  • 8、为result添加源数据mSource监听,并在接收到监听后setValue
  • 9、返回MediatorLiveData类型数据result
10、addSource
 @MainThreadpublic <S> void addSource(@NonNull LiveData<S> source, @NonNull Observer<? super S> onChanged) {// 1Source<S> e = new Source<>(source, onChanged);// 2Source<?> existing = mSources.putIfAbsent(source, e);// 3if (existing != null && existing.mObserver != onChanged) {throw new IllegalArgumentException("This source was already added with the different observer");}// 4if (existing != null) {return;}// 5if (hasActiveObservers()) {e.plug(); // 6}}

步骤分解

  • 1、以source和onChanged构造Source类型数据e
  • 2、以源数据source和e构造新的Source类型数据existing
  • 3、如果existing数据存在,也就是说之前已经为source添加过观察者情况,抛异常
  • 4、重复判断existing,进行返回
  • 5、如果有active的Observers,添加监听
  • 6、plug方法(详见plug)
11、plug() MediatorLiveData中
 void plug() {mLiveData.observeForever(this);}
  • observeForever
  /*** Adds the given observer to the observers list. This call is similar to* {@link LiveData#observe(LifecycleOwner, Observer)} with a LifecycleOwner, which* is always active. This means that the given observer will receive all events and will never* be automatically removed. You should manually call {@link #removeObserver(Observer)} to stop* observing this LiveData.* While LiveData has one of such observers, it will be considered* as active.* <p>* If the observer was already added with an owner to this LiveData, LiveData throws an* {@link IllegalArgumentException}.** @param observer The observer that will receive the events*/@MainThreadpublic void observeForever(@NonNull Observer<? super T> observer) {assertMainThread("observeForever");// 1AlwaysActiveObserver wrapper = new AlwaysActiveObserver(observer);// 2ObserverWrapper existing = mObservers.putIfAbsent(observer, wrapper);// 3if (existing instanceof LiveData.LifecycleBoundObserver) {throw new IllegalArgumentException("Cannot add the same observer"+ " with different lifecycles");}if (existing != null) {return;}// 4wrapper.activeStateChanged(true);}
  • 1、 通过observer构造AlwaysActiveObserver
  • 2、 通过observer和wrapper构造ObserverWrapper类型数据existing
  • 3、 如果existing数据已经存在,也就是说LiveData已经添加过该observer了,抛出异常
  • 4、修改wrapper的active状态为true

这篇关于LiveData常用方法源码分析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/538038

相关文章

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

Go标准库常见错误分析和解决办法

《Go标准库常见错误分析和解决办法》Go语言的标准库为开发者提供了丰富且高效的工具,涵盖了从网络编程到文件操作等各个方面,然而,标准库虽好,使用不当却可能适得其反,正所谓工欲善其事,必先利其器,本文将... 目录1. 使用了错误的time.Duration2. time.After导致的内存泄漏3. jsO

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

macOS无效Launchpad图标轻松删除的4 种实用方法

《macOS无效Launchpad图标轻松删除的4种实用方法》mac中不在appstore上下载的应用经常在删除后它的图标还残留在launchpad中,并且长按图标也不会出现删除符号,下面解决这个问... 在 MACOS 上,Launchpad(也就是「启动台」)是一个便捷的 App 启动工具。但有时候,应

SpringBoot日志配置SLF4J和Logback的方法实现

《SpringBoot日志配置SLF4J和Logback的方法实现》日志记录是不可或缺的一部分,本文主要介绍了SpringBoot日志配置SLF4J和Logback的方法实现,文中通过示例代码介绍的非... 目录一、前言二、案例一:初识日志三、案例二:使用Lombok输出日志四、案例三:配置Logback一

Python实现无痛修改第三方库源码的方法详解

《Python实现无痛修改第三方库源码的方法详解》很多时候,我们下载的第三方库是不会有需求不满足的情况,但也有极少的情况,第三方库没有兼顾到需求,本文将介绍几个修改源码的操作,大家可以根据需求进行选择... 目录需求不符合模拟示例 1. 修改源文件2. 继承修改3. 猴子补丁4. 追踪局部变量需求不符合很

Spring事务中@Transactional注解不生效的原因分析与解决

《Spring事务中@Transactional注解不生效的原因分析与解决》在Spring框架中,@Transactional注解是管理数据库事务的核心方式,本文将深入分析事务自调用的底层原理,解释为... 目录1. 引言2. 事务自调用问题重现2.1 示例代码2.2 问题现象3. 为什么事务自调用会失效3

mysql出现ERROR 2003 (HY000): Can‘t connect to MySQL server on ‘localhost‘ (10061)的解决方法

《mysql出现ERROR2003(HY000):Can‘tconnecttoMySQLserveron‘localhost‘(10061)的解决方法》本文主要介绍了mysql出现... 目录前言:第一步:第二步:第三步:总结:前言:当你想通过命令窗口想打开mysql时候发现提http://www.cpp