首页 > 其他分享 >handler之知识分类

handler之知识分类

时间:2023-02-15 15:46:50浏览次数:37  
标签:分类 MessageQueue handler 知识 Handler 线程 Looper msg 消息

 

 

一. Handler的源码分析----

说到Android的消息机制,
Handler是Android消息机制的上层接口,因此在开发过程中也只需要和Handler交互即可,
很多人认为Handler的作用就是更新UI,这也确实没错,但除了更新UI,Handler其实还有很多其他用途,比如我们需要在子线程进行耗时的I/O操作,可能是读取某些文件或者去访问网络等,当耗时操作完成后我们可能需要在UI上做出相应的改变。
但由于Android系统的限制,我们是不能在子线程更新UI控件的,否则就会报异常, 可以通过Handler切换到主线程中执行UI更新操作。
上面的例子其实就是Handler的基本使用,在主线中创建了一个Handler对象,然后通过在子线程中模拟一个耗时操作完成后通过sendEmptyMessage(int)方法发送一个消息通知主线程的Handler去执行相应的操作。
通过运行结果我们也可以知道Handler确实也是在主线程运行的。
那么问题来了,通过Handler发送的消息是怎么到达主线程的呢?
Message:Handler接收和处理消息的对象。
Looper:每个线程只能有一个Looper。它的loop方法负责读取MessageQueue中的消息,读到消息后把消息发送给Handler进行处理。
MessageQueue:消息队列,它采用先进先出的方式来管理Message。程序创建Looper对象时,会在它的构造方法中创建MessageQueue对象。
Handler:它的作用有两个—发送消息和处理消息,程序使用Handler发送消息,由Handler发送的消息必须被送到指定的MessageQueue;否则消息就没有在MessageQueue进行保存了。
而MessageQueue是由Looper负责管理的,也就是说,如果希望Handler正常工作的话,就必须在当前线程中有一个Looper对象。

最后小总结:
Android中的Looper类主要作用是来封装消息循环和消息队列的,用于在android线程中进行消息处理。handler是用来向消息队列中插入消息的并最好对消息进行处理。
(1) Looper类主要是为每个线程开启的单独的消息循环。 默认情况下android中新诞生的线程是没有开启消息循环的。(主线程除外,主线程系统会自动为其创建Looper对象,开启消息循环) Looper对象负责管理MessageQueue,而MessageQueue主要是用来存放handler发送的消息,而且一个线程只能有一个Looper,对应一个MessageQueue。
(2)通过Handler对象来与Looper进行交互的。Handler可看做是Looper的一个接口,用来向指定的Looper中的MessageQueue发送消息并且Handler还必须定义自己的处理方法。 默认情况下Handler会与其被定义时所在线程的Looper绑定,如Handler在主线程中定义,它是与主线程的Looper绑定。
mainHandler = new Handler() 等价于 new Handler(Looper.myLooper())
Looper.myLooper():获取当前进程的looper对象,
Looper.getMainLooper() 用于获取主线程的Looper对象。
(3) 在非主线程中直接new Handler() 会报如下的错误: Can't create handler inside thread that has not called Looper.prepare()
原因是非主线程中默认没有创建Looper对象,需要先调用Looper.prepare()启用Looper,然后再调用Looper.loop()。
(4) Looper.loop():启动looper中的循环线程,Handler就会从消息队列里取消息并进行对应处理。 最后要注意的是写在Looper.loop()之后的代码不会被执行,这个函数内部应该是一个循环,当调用mHandler.getLooper().quit()后,loop()才会中止,其后的代码才能得以运行。
先来看看Handler的构造方法源码:
public class Handler {
//未实现的空方法handleMessage()
public void handleMessage(Message msg) {}
// 通常用于创建Handler的构造方法之一
public Handler() {
this(null, false);
}
// 构造方法的内调用的this(null, false)的具体实现
public Handler(Callback callback, boolean async) {
//检查Handler是否是static的,如果不是的,那么有可能导致内存泄露
if (FIND_POTENTIAL_LEAKS) {
final Class<? extends Handler> klass = getClass();
if ((klass.isAnonymousClass() || klass.isMemberClass() || klass.isLocalClass())&&(klass.getModifiers() & Modifier.STATIC) == 0) {
Log.w(TAG, "The following Handler class should be static or leaks might occur: " +
klass.getCanonicalName());
}
}
//重要组件出现啦!Looper先理解成一个消息队列的管理者,用来从消息队列中取消息的,后续详细分析
mLooper = Looper.myLooper();
if (mLooper == null) {
//这个异常很熟悉吧,Handler是必须在有Looper的线程上执行,这个也就是为什么我在HandlerThread中初始化Handler
//而没有在Thread里面初始化,如果在Thread里面初始化需要先调用Looper.prepare方法
throw new RuntimeException(
"Can't create handler inside thread that has not called Looper.prepare()");
}
//将mLooper里面的消息队列复制到自身的mQueue,这也就意味着Handler和Looper是公用一个消息队列
mQueue = mLooper.mQueue;
//回调函数默认是Null
mCallback = null;
}
分析:Handler的构造方法源码不是很多,也比较简单,但从源码可知,
在创建Handler时,Handler内部会去创建一个Looper对象,这个Looper对象是通过Looper.myLooper()创建(后续会分析这个方法),同时还会创建一个MessageQueue,而这个MessageQueue是从Looper中获取的,这意味Handler和Looper共用一个消息队列,当然此时Handler,Looper以及MessageQueue已经捆绑到一起了。
上面还有一个情况要说明的,那就是:
if (mLooper == null) {
//这个异常很熟悉吧,Handler是必须在有Looper的线程上执行,这个也就是为什么我在HandlerThread中初始化Handler
//而没有在Thread里面初始化,如果在Thread里面初始化需要先调用Looper.prepare方法
throw new RuntimeException(
"Can't create handler inside thread that has not called Looper.prepare()"); }
这里先回去判断Looper是否为空,如果为null,那么就会报错,这个错误对我们来说应该比较熟悉吧,那为什么会报这个错误呢?
在前面说过Handler的作用有两个—发送消息和处理消息,我们在使用Handler发送消息,由Handler发送的消息必须被送到指定的MessageQueue;否则就无法进行消息循环。而MessageQueue是由Looper负责管理的,
也就是说,如果希望Handler正常工作的话,就必须在当前线程中有一个Looper对象。那么又该如何保障当前线程中一定有Looper对象呢?
这里其实分两种情况:
(1)在主UI线程中,系统已经初始化好了一个Looper对象,因此我们可以直接创建Handler并使用即可。
(2)在子线程中,就必须自己手动去创建一个Looper对象,并且去启动它,才可以使用Handler进行消息发送与处理。
class childThread extends Thread{
public Handler mHandler;
@Override
public void run() {
//子线程中必须先创建Looper
Looper.prepare();
mHandler =new Handler(){
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
}
};
//启动looper循环
Looper.loop();
}
}

2) 分析完Handler的构造方法,我们接着看看通过Handler发送的消息到底是发送到哪里了?先来看看Handler的几个主要方法源码:
// 发送一个空消息的方法,实际上添加到MessagerQueue队列中
public final boolean sendEmptyMessage(int what) {
return sendEmptyMessageDelayed(what, 0);
}
// 给上一个方法调用
public final boolean sendEmptyMessageDelayed(int what, long delayMillis) {
Message msg = Message.obtain();
msg.what = what;
return sendMessageDelayed(msg, delayMillis);
}
// 给上一个方法调用
public final boolean sendMessageDelayed(Message msg, long delayMillis) {
if (delayMillis < 0) {
delayMillis = 0;
}
return sendMessageAtTime(msg, SystemClock.uptimeMillis() + delayMillis);
}
// 给上一个方法调用
public boolean sendMessageAtTime(Message msg, long uptimeMillis) {
MessageQueue queue = mQueue;
if (queue == null) {
RuntimeException e = new RuntimeException(this
+ " sendMessageAtTime() called with no mQueue");
Log.w("Looper", e.getMessage(), e);
return false;
}
return enqueueMessage(queue, msg, uptimeMillis);
}
// 最后调用此方法添加到消息队列中
private boolean enqueueMessage(MessageQueue queue, Message msg,long uptimeMillis) {
msg.target = this;// 设置发送目标对象是Handler本身
if (mAsynchronous) {
msg.setAsynchronous(true);
}
return queue.enqueueMessage(msg, uptimeMillis);// 添加到消息队列中
}
// 在looper类中的loop()方法内部调用的方法
public void dispatchMessage(Message msg) {
if (msg.callback != null) {
handleCallback(msg);
} else {
if (mCallback != null) {
if (mCallback.handleMessage(msg)) {
return;
}
}
handleMessage(msg);
}
}
分析:通过源码可知,当我们调用sendEmptyMessage(int)发送消息后。最终Handler内部会去调用enqueueMessage(MessageQueue queue,Message msg)方法把发送的消息添加到消息队列MessageQueue中,
同时还有设置msg.target=this此时就把当前handler对象绑定到msg.target中了,这样就完成了Handler向消息队列存放消息的过程。
这个还有一个要注意的方法 dispatchMessage(Message),这个方法最终会在looper中被调用(这里先知道这点就行,后续还会分析)。

3.MessageQueue消息队列?
其实在Android中的消息队列指的也是MessageQueue,MessageQueue主要包含了两种操作,插入和读取,而读取操作本身也会伴随着删除操作,插入和读取对应的分别是enqueueMessage和next,
其中enqueueMessage是向消息队列中插入一条消息,而next的作用则是从消息队列中取出一条消息并将其从队列中删除。虽然我们一直称其为消息队列但是它的内部实现并不是队列,而是通过一个单链表的数据结构来维护消息列表的,因为我们知道单链表在插入和删除上比较有优势。至内MessageQueue的内部实现,
到这里知道Handler发送的消息最终会添加到MessageQueue中,但到达MessageQueue后消息又是如何处理的呢?
4. 还记得我们前面说过MessageQueue是由Looper负责管理的吧,现在我们就来看看Looper到底是如何管理MessageQueue的?
public final class Looper {
// sThreadLocal.get() will return null unless you've called prepare().
//存放线程的容器类,为确保获取的线程和原来的一样
static final ThreadLocal<Looper> sThreadLocal = new ThreadLocal<Looper>();
private static Looper sMainLooper; // guarded by Looper.class
final MessageQueue mQueue;
final Thread mThread;
//perpare()方法,用来初始化一个Looper对象
public static void prepare() {
prepare(true);
}
private static void prepare(boolean quitAllowed) {
if (sThreadLocal.get() != null) {
throw new RuntimeException("Only one Looper may be created per thread");
}
sThreadLocal.set(new Looper(quitAllowed));
}
//handler调用的获取Looper对象的方法。实际是在ThreadLocal中获取。
public static Looper myLooper() {
return sThreadLocal.get();
}
//Looper类的构造方法,可以发现创建Looper的同时也创建了消息队列MessageQueue对象
private Looper(boolean quitAllowed) {
mQueue = new MessageQueue(quitAllowed);
mRun = true;
mThread = Thread.currentThread();
}

//这个方法是给系统调用的,UI线程通过调用这个线程,从而保证UI线程里有一个Looper
//需要注意:如果一个线程是UI线程,那么myLooper和getMainLooper是同一个Looper
public static final void prepareMainLooper() {
prepare();
setMainLooper(myLooper());
if (Process.supportsProcesses()) {
myLooper().mQueue.mQuitAllowed = false;
}
}

//获得UI线程的Looper,通常我们想Hanlder的handleMessage在UI线程执行时通常会new Handler(getMainLooper());
public synchronized static final Looper getMainLooper() {
return mMainLooper;
}

//looper中最重要的方法loop(),该方法是个死循环,会不断去消息队列MessageQueue中获取消息,然后调dispatchMessage(msg)方法去执行
public static void loop() {
final Looper me = myLooper();
if (me == null) {
throw new RuntimeException("No Looper; Looper.prepare() wasn't called on this thread.");
}
final MessageQueue queue = me.mQueue;
//死循环
for (;;) {
Message msg = queue.next(); // might block
if (msg == null) {
// No message indicates that the message queue is quitting.
return;
}
//这里其实就是调用handler中的方法,而在Handler的源码中也可以知道dispatchMessage(msg)内部调用的就是handlerMessage()方法
msg.target.dispatchMessage(msg);
msg.recycle();
}
}
分析:代码不算多,我们拆分开慢慢说.
在Looper源码中得知其内部是通过一个ThreadLocal的容器来存放Looper的对象本身的,这样就可以确保每个线程获取到的looper都是唯一的。那么Looper对象是如何被创建的呢?通过源码知道perpare()方法就可以创建Looper对象:
//perpare()方法,用来初始化一个Looper对象
public static void prepare() {
prepare(true);
}
private static void prepare(boolean quitAllowed) {
if (sThreadLocal.get() != null) {
throw new RuntimeException("Only one Looper may be created per thread");
}
sThreadLocal.set(new Looper(quitAllowed));
}
在创建Looper对象前先会去判断ThreadLocal中是否已经存在Looper对象,如果不存在就新创建一个Looper对象并且存放ThreadLocal中。这里还有一个注意是在Looper创建的同时MessageQueue消息队列也被创建完成,这样的话Looper中就持有了MessageQueue对象。
//Looper类的构造方法,可以发现创建Looper的同时也创建了消息队列MessageQueue对象
private Looper(boolean quitAllowed) {
mQueue = new MessageQueue(quitAllowed);
mRun = true;
mThread = Thread.currentThread();
}
那么我们如何获取已经创建好的Looper对象呢?通过源码知道myLooper()方法就可以获取到Looper对象:
//handler调用的获取Looper对象的方法。实际是在ThreadLocal中获取。
public static Looper myLooper() {
return sThreadLocal.get();
}
Looper对象的创建和获取,还有MessageQueue对象的创建,现在我们都很清楚了,但是Looper到底是怎么管理MessageQueue对象的呢?这就要看looper()方法了:
//looper中最重要的方法loop(),该方法是个死循环,会不断去消息队列MessageQueue中获取消息,然后调dispatchMessage(msg)方法去执行
public static void loop() {
final Looper me = myLooper();
if (me == null) {
throw new RuntimeException("No Looper; Looper.prepare() wasn't called on this thread.");
}
final MessageQueue queue = me.mQueue;
//死循环
for (;;) {
Message msg = queue.next(); // might block
if (msg == null) {
// No message indicates that the message queue is quitting.
return;
}
//这里其实就是调用handler中的方法,而在Handler的源码中也可以知道dispatchMessage(msg)内部调用的就是handlerMessage()方法
msg.target.dispatchMessage(msg);
msg.recycle();
}
通过looper()方法内部源码知道,首先会通过myLoooper()去获取一个Looper对象,
如果Looper对象为null,就会报出一个我们非常熟悉的错误提示,“No Looper;Looper.prepare() wasn't called on this thread”,要求我们先通过Looper.prepare()方法去创建Looper对象;
如果Looper不为null,那么就会去获取消息队列MessageQueue对象,接着就进入一个for的死循环,不断从消息队列MessageQueue对象中获取消息,如果消息不为空,那么久会调用msg.target的dispatchMessage(Message)方法,那么这个target又是什么,没错target就是我们创建的Handler对象,还记得我们前面分析Handler源码时说过的那个方法嘛?
// 在looper类中的loop()方法内部调用的方法
public void dispatchMessage(Message msg) {
if (msg.callback != null) {
handleCallback(msg);
} else {
if (mCallback != null) {
if (mCallback.handleMessage(msg)) {
return;
}
}
handleMessage(msg);
}
现在明白了吧?
首先,检测Message的callback是否为null,不为null就通过handleCallback方法来处理消息,那么Message的callback是什么?其实就是一个Runnable对象,实际上就是Handler的post方法所传递的Runnable参数,顺便看看post方法源码:
public final boolean post(Runnable r) {
return sendMessageDelayed(getPostMessage(r), 0);
}
getPostMessage(Runnable r)方法源码:
private static Message getPostMessage(Runnable r) {
Message m = Message.obtain();
m.callback = r;
return m;
}
现在明白Message的callback是什么了吧?而对应handleCallback方法逻辑也比较简单:
private static void handleCallback(Message message) {
message.callback.run();
}
嗯,是的,因此最终执行的还是通过post方法传递进来的Runnable参数的run方法。好了,继续dispatchMessage()分析,接着会去检查mCallback是否为null,不为null,则调用mCallback的handleMessage方法来处理消息。至于Callback则就是一个接口定义如下:
public interface Callback {
public boolean handleMessage(Message msg);
}
这个接口有什么用呢?其实通过Callback接口我们就可以采取如下方法来创建Handler对象:
Handler handler =new Handler(callback)
那么这样做到底有什么意义,其实这样做可以用callback来创建一个Handler的实例而无需派生Handler的子类。在我们的开发过程中,我们经常使用的方法就是派生一个Hanlder子类并重写其handleMessage方法来处理具体的消息,而Callback给我们提供了另外一种方式,那就是当我们不想派生子类的时候,可以通过Callback来实现。
继续dispatchMessage()方法的分析,最后如果以上条件都不成立的话,就会去调用Handler的handleMessage方法来处理消息。而 Handler是在主线程创建的,也就是说Looper也是主线程的Looper,因此handleMessage内部处理最终都会在主线程上执行,就这样整个流程都执行完了。

标签:分类,MessageQueue,handler,知识,Handler,线程,Looper,msg,消息
From: https://www.cnblogs.com/awkflf11/p/17123258.html

相关文章

  • Typora基本知识
    Typora基本知识一、标题格式一级标题:输入“#”+“内容”回车二级标题则两个“#”以此类推,最多六级二、文字格式加粗:“内容”左右加2个“*”例如斜体:“内容......
  • 【java】java面试高频知识点2
    1.重写重载重写:继承时对父类的方法重写该方法内容,方法类型是不变的,即返回类型,方法名字,参数都不变。值得注意的是可以改变权限,只能提高不能降低重载:是一个类中有多个名字......
  • 02. C语言基础知识
    一、注释  注释就是对代码进行解释说明的文字,注释的内容不会参与编译和运行,仅仅是对代码的解释说明。在C语言中注释主要分为以下两类:单行注释://,注释内容从//始到......
  • 【数字图像处理复习】一些知识总结
    人眼中的图像马赫带效应:感知亮度并不是简单的灰度函数上冲,下冲:感觉黑的更黑,灰的更白同时对比效应:一个区域的感知亮度并不止取决于它的灰度,还取决于它周围物体的灰度......
  • python实现一边看图片,一边快速选择分类的脚本
    根据需要,找到了python库——pywinauto根据文档,需要连接或启动相关的app。我选择了连接,第一步错误。app=Application(backend='uia').connect(process='1223')我将数字......
  • 继承、多态 中那些你该知道的知识
    面向对象编程一、继承:二、多态:一、继承:有的时候客观事物之间就存在一些关联关系,那么在表示成类和对象的时候也会存在一定的关联。例如猫它是动物,就具有动物的基本属性......
  • 操作系统的功能和目标以及接口分类
    1.功能和目的操作系统:处理器管理,存储器管理,文件管理,设备管理;目的:安全,高效;2.接口命令接口:允许用户直接使用的接口,比如代开cmd输入命令shutdown等;用户说一句,系......
  • 前置已了解知识梳理
    由于在写这篇博客之前,已经接触一些Hadoop的基础知识,我先把之前所学的一些基本概念和理解分享到这里,导图如下。   遵从着学习新知识的三大入手点(WhyWhatHow)出发。......
  • 个人站点分类-标签-归档
    效果图:  前端代码:前端每个用户页面样式.CSS文件(标签文字颜色)及数据库外键注意点后端代码:  前后端代码对应:......
  • 常见音频格式的基础知识
    PCM脉冲编码调制(PulseCodeModulation),是未经压缩的音频数据裸流,它由模拟信号经过采样、量化、编码转换成的数字音频数据。PCM的文件/流中只有数据,需要参数来描述。描述P......