Android输入事件从读取到分发四:InputDispatcherThread发送事件到View结构树的过程

来源:互联网 发布:没有网络的游戏 编辑:程序博客网 时间:2024/06/06 14:28

通过上一节的分析,我们发现InputDispatcherThread使用InputChannel的sendMessage方法发送了一条消息,但是我们不知道谁在接收这条消息。因此,这一节我们的目标很明确,弄懂”是谁在接收消息,然后这条消息是怎么分发到View的结构树中的”。(注:分析使用的Android源码版本为6.0)
上一节我们说InputChannel的本质是linux本地套接字,因为它内部使用socketpair()函数创建了一对套接字描述符,我们说持有这一对描述符的进程就可以使用各自的套接字描述符来与另一方通信。InputManager中显然是已经有一个InputChannel的实例了,我们sendMessage就是使用的它,那么另外一方在哪里呢?
我们在Android源码下搜索openInputChannelPair方法看看都有谁在使用它:
通过搜索我们发现在WindowManagerService的addWindow方法中有创建InputChannel的相关逻辑:

    public int addWindow(Session session, IWindow client, int seq,            WindowManager.LayoutParams attrs, int viewVisibility, int displayId,            Rect outContentInsets, Rect outStableInsets, Rect outOutsets,            InputChannel outInputChannel) {            ...            if (outInputChannel != null && (attrs.inputFeatures                    & WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL) == 0) {                String name = win.makeInputChannelName();                InputChannel[] inputChannels = InputChannel.openInputChannelPair(name);                win.setInputChannel(inputChannels[0]);                inputChannels[1].transferTo(outInputChannel);                mInputManager.registerInputChannel(win.mInputChannel, win.mInputWindowHandle);            }            ...        return res;    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

这里确实使用openInputChannelPair创建了一对InputChannel实例,这个方法我们上一篇文章中已经分析过,这里就不分析了。可是,这里能不能知道是谁在套接字的另一端接收事件呢?下面,我们一步步分析它。
在我的博客:一步步追踪Dialog的创建流程(一)一文中,我们得出了三条结论:
1.DecorView是根View.
2.ViewRootImpl中的setView方法使得DecorView和ViewRootImpl紧密相关。
3.WindowManagerService中的addWindow最终实现了Window的添加。
为了方便查看addWindow方法的调用过程,我已经绘制了如下简单的时序图:
这里写图片描述
下面,我们从源码着手分析下这个过程:
想必Activity也是类似的,addWindow最终向系统添加我们自己创建的window。回顾下Dialog的创建流程,我们知道非常核心的一句代码就是通过调用WindowManagerImpl的addView把view添加到window中去,下面是addView的源码:

    @Override    public void addView(@NonNull View view, @NonNull ViewGroup.LayoutParams params) {        applyDefaultToken(params);        **mGlobal.addView(view, params, mDisplay, mParentWindow);**    }
  • 1
  • 2
  • 3
  • 4
  • 5

进一步调用WindowManagerGlobal.java类中的addView方法:

    public void addView(View view, ViewGroup.LayoutParams params,            Display display, Window parentWindow) {            ...            root = new ViewRootImpl(view.getContext(), display);            view.setLayoutParams(wparams);            mViews.add(view);            mRoots.add(root);            mParams.add(wparams);        }    // do this last because it fires off messages to start doing things        try {            **root.setView(view, wparams, panelParentView);**        } catch (RuntimeException e) {            // BadTokenException or InvalidDisplayException, clean up.            synchronized (mLock) {                final int index = findViewLocked(view, false);                if (index >= 0) {                    removeViewLocked(index, true);                }            }            throw e;        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

进一步调用ViewRootImpl的setView方法:

    public void setView(View view, WindowManager.LayoutParams attrs, View panelParentView) {    ...  try {                    mOrigWindowType = mWindowAttributes.type;                    mAttachInfo.mRecomputeGlobalAttributes = true;                    collectViewAttributes();                    **res = mWindowSession.addToDisplay(mWindow, mSeq, mWindowAttributes,                            getHostVisibility(), mDisplay.getDisplayId(),                            mAttachInfo.mContentInsets, mAttachInfo.mStableInsets,                            mAttachInfo.mOutsets, mInputChannel);**                } catch (RemoteException e) {                    mAdded = false;                    mView = null;                    mAttachInfo.mRootView = null;                    mInputChannel = null;                    mFallbackEventHandler.setView(null);                    unscheduleTraversals();                    setAccessibilityFocus(null, null);                    throw new RuntimeException("Adding window failed", e);                } finally {                    if (restore) {                        attrs.restore();                    }                }                ...                   **if (mInputChannel != null) {                    if (mInputQueueCallback != null) {                        mInputQueue = new InputQueue();                        mInputQueueCallback.onInputQueueCreated(mInputQueue);                    }                    mInputEventReceiver = new WindowInputEventReceiver(mInputChannel,                            Looper.myLooper());**                }                ...
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34

进一步调用Session.java中的addToDisplay:

    @Override    public int addToDisplay(IWindow window, int seq, WindowManager.LayoutParams attrs,            int viewVisibility, int displayId, Rect outContentInsets, Rect outStableInsets,            Rect outOutsets, InputChannel outInputChannel) {        return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId,                outContentInsets, outStableInsets, outOutsets, outInputChannel);    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

然后调用到WindowManagerService.java下的addWindow方法:

    public int addWindow(Session session, IWindow client, int seq,            WindowManager.LayoutParams attrs, int viewVisibility, int displayId,            Rect outContentInsets, Rect outStableInsets, Rect outOutsets,            InputChannel outInputChannel) {            ...            if (outInputChannel != null && (attrs.inputFeatures                    & WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL) == 0) {                **String name = win.makeInputChannelName();                InputChannel[] inputChannels = InputChannel.openInputChannelPair(name);                win.setInputChannel(inputChannels[0]);                inputChannels[1].transferTo(outInputChannel);                mInputManager.registerInputChannel(win.mInputChannel, win.mInputWindowHandle);**            }            ...}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

从上面调用上面的addWindow的调用关系分析中,我们会发现mInputChannel是在ViewRootImpl中创建并传递给WindowManagerService的addWindow方法的,也就是说套接字的另一端其实是ViewRootImpl持有的。ViewRootImpl的setView中有下面代码非常关键:

                if (mInputChannel != null) {                    if (mInputQueueCallback != null) {                        mInputQueue = new InputQueue();                        mInputQueueCallback.onInputQueueCreated(mInputQueue);                    }                    mInputEventReceiver = new WindowInputEventReceiver(mInputChannel,                            Looper.myLooper());                }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

这个在前面的setView代码中已经贴过了,但是没有分析,现在把它拿出来分析。
这里做了两件事情:
1.创建了一个InputQueue,它表示一个输入事件队列并设置事件回调。
2.创建一个WindowInputEventReceiver的实例负责读取事件。
因此,目前的关键就是WindowInputEventReceiver到底是怎么读取事件的。
下面我们就从WindowInputEventReceiver开始着手,分析事件到底怎么一步步递交给View结构树的,为了方便跟踪源码,我们可以参考如下时序图:
这里写图片描述
接下来,还是从源码着手分析,分析的切入点自然回事WindowInputEventReceiver的构造方法了:
WindowInputEventReceiver构造函数如下:

  final class WindowInputEventReceiver extends InputEventReceiver {        public WindowInputEventReceiver(InputChannel inputChannel, Looper looper) {            super(inputChannel, looper);        }
  • 1
  • 2
  • 3
  • 4

可以看到它并没有做什么,但是它继承了InputEventReceiver类,我们看下InputEventReceiver类的构造方法:

    public InputEventReceiver(InputChannel inputChannel, Looper looper) {        if (inputChannel == null) {            throw new IllegalArgumentException("inputChannel must not be null");        }        if (looper == null) {            throw new IllegalArgumentException("looper must not be null");        }        mInputChannel = inputChannel;        mMessageQueue = looper.getQueue();        mReceiverPtr = nativeInit(new WeakReference<InputEventReceiver>(this),                inputChannel, mMessageQueue);        mCloseGuard.open("dispose");    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

关键是调用了nativeInit方法,这个方法是一个native方法,实现在frameworks\base\core\jni\android_view_InputEventReceiver.cpp文件中。
其nativeInit方法如下:

static jlong nativeInit(JNIEnv* env, jclass clazz, jobject receiverWeak,        jobject inputChannelObj, jobject messageQueueObj) {    sp<InputChannel> inputChannel = android_view_InputChannel_getInputChannel(env,            inputChannelObj);    if (inputChannel == NULL) {        jniThrowRuntimeException(env, "InputChannel is not initialized.");        return 0;    }    sp<MessageQueue> messageQueue = android_os_MessageQueue_getMessageQueue(env, messageQueueObj);    if (messageQueue == NULL) {        jniThrowRuntimeException(env, "MessageQueue is not initialized.");        return 0;    }    **sp<NativeInputEventReceiver> receiver = new NativeInputEventReceiver(env,            receiverWeak, inputChannel, messageQueue);    status_t status = receiver->initialize();**    if (status) {        String8 message;        message.appendFormat("Failed to initialize input event receiver.  status=%d", status);        jniThrowRuntimeException(env, message.string());        return 0;    }    receiver->incStrong(gInputEventReceiverClassInfo.clazz); // retain a reference for the object    return reinterpret_cast<jlong>(receiver.get());}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

这个方法中构造了NativeInputEventReceiver类的实例,并调用其initialize方法:

NativeInputEventReceiver::NativeInputEventReceiver(JNIEnv* env,        jobject receiverWeak, const sp<InputChannel>& inputChannel,        const sp<MessageQueue>& messageQueue) :        mReceiverWeakGlobal(env->NewGlobalRef(receiverWeak)),        mInputConsumer(inputChannel), mMessageQueue(messageQueue),        mBatchedInputEventPending(false), mFdEvents(0) {    if (kDebugDispatchCycle) {        ALOGD("channel '%s' ~ Initializing input event receiver.", getInputChannelName());    }}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
status_t NativeInputEventReceiver::initialize() {    setFdEvents(ALOOPER_EVENT_INPUT);    return OK;}
  • 1
  • 2
  • 3
  • 4

setFdEvents方法如下:

void NativeInputEventReceiver::setFdEvents(int events) {    if (mFdEvents != events) {        mFdEvents = events;        int fd = mInputConsumer.getChannel()->getFd();        if (events) {            mMessageQueue->getLooper()->addFd(fd, 0, events, this, NULL);        } else {            mMessageQueue->getLooper()->removeFd(fd);        }    }}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

我们传入的Looper是我们主线程的Looper,这里调用了我们主线程Looper的getFd方法,看看这个方法:

int Looper::addFd(int fd, int ident, int events, const sp<LooperCallback>& callback, void* data) {#if DEBUG_CALLBACKS    ALOGD("%p ~ addFd - fd=%d, ident=%d, events=0x%x, callback=%p, data=%p", this, fd, ident,            events, callback.get(), data);#endif    if (!callback.get()) {        if (! mAllowNonCallbacks) {            ALOGE("Invalid attempt to set NULL callback but not allowed for this looper.");            return -1;        }        if (ident < 0) {            ALOGE("Invalid attempt to set NULL callback with ident < 0.");            return -1;        }    } else {        ident = POLL_CALLBACK;    }    { // acquire lock        AutoMutex _l(mLock);        Request request;        request.fd = fd;        request.ident = ident;        request.events = events;        request.seq = mNextRequestSeq++;        request.callback = callback;        request.data = data;        if (mNextRequestSeq == -1) mNextRequestSeq = 0; // reserve sequence number -1        struct epoll_event eventItem;        request.initEventItem(&eventItem);        ssize_t requestIndex = mRequests.indexOfKey(fd);        if (requestIndex < 0) {            int epollResult = epoll_ctl(mEpollFd, EPOLL_CTL_ADD, fd, & eventItem);            if (epollResult < 0) {                ALOGE("Error adding epoll events for fd %d, errno=%d", fd, errno);                return -1;            }            mRequests.add(fd, request);        } else {            int epollResult = epoll_ctl(mEpollFd, EPOLL_CTL_MOD, fd, & eventItem);            if (epollResult < 0) {                if (errno == ENOENT) {                    // Tolerate ENOENT because it means that an older file descriptor was                    // closed before its callback was unregistered and meanwhile a new                    // file descriptor with the same number has been created and is now                    // being registered for the first time.  This error may occur naturally                    // when a callback has the side-effect of closing the file descriptor                    // before returning and unregistering itself.  Callback sequence number                    // checks further ensure that the race is benign.                    //                    // Unfortunately due to kernel limitations we need to rebuild the epoll                    // set from scratch because it may contain an old file handle that we are                    // now unable to remove since its file descriptor is no longer valid.                    // No such problem would have occurred if we were using the poll system                    // call instead, but that approach carries others disadvantages.#if DEBUG_CALLBACKS                    ALOGD("%p ~ addFd - EPOLL_CTL_MOD failed due to file descriptor "                            "being recycled, falling back on EPOLL_CTL_ADD, errno=%d",                            this, errno);#endif                    epollResult = epoll_ctl(mEpollFd, EPOLL_CTL_ADD, fd, & eventItem);                    if (epollResult < 0) {                        ALOGE("Error modifying or adding epoll events for fd %d, errno=%d",                                fd, errno);                        return -1;                    }                    scheduleEpollRebuildLocked();                } else {                    ALOGE("Error modifying epoll events for fd %d, errno=%d", fd, errno);                    return -1;                }            }            mRequests.replaceValueAt(requestIndex, request);        }    } // release lock    return 1;}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83

这个方法太关键了:
他做了如下重要的事情:
1.设置事件回调
request.callback = callback;这个callback就是我们在NativeInputEventReceiver::setFdEvents方法传入的this,也就是说他是一个NativeInputEventReceiver的实例,这点很重要,因为我们辛辛苦苦获取的事件要使用回调来通知上层应用程序呀,不然不就白做了这么多吗?
2.添加要监听的文件描述符:
epollResult = epoll_ctl(mEpollFd, EPOLL_CTL_ADD, fd, & eventItem);
设置完这个以后,Looper就会监听我们的文件描述符,当没有事件到来的时候,Looper就睡眠在epoll_wait函数中,当有事件到来后,Looper醒来,并继续执行。
我们俺看Looper睡觉的地方,它是Looper中的pollInner方法:

int Looper::pollInner(int timeoutMillis) {#if DEBUG_POLL_AND_WAKE    ALOGD("%p ~ pollOnce - waiting: timeoutMillis=%d", this, timeoutMillis);#endif    // Adjust the timeout based on when the next message is due.    if (timeoutMillis != 0 && mNextMessageUptime != LLONG_MAX) {        nsecs_t now = systemTime(SYSTEM_TIME_MONOTONIC);        int messageTimeoutMillis = toMillisecondTimeoutDelay(now, mNextMessageUptime);        if (messageTimeoutMillis >= 0                && (timeoutMillis < 0 || messageTimeoutMillis < timeoutMillis)) {            timeoutMillis = messageTimeoutMillis;        }#if DEBUG_POLL_AND_WAKE        ALOGD("%p ~ pollOnce - next message in %" PRId64 "ns, adjusted timeout: timeoutMillis=%d",                this, mNextMessageUptime - now, timeoutMillis);#endif    }    // Poll.    int result = POLL_WAKE;    mResponses.clear();    mResponseIndex = 0;    // We are about to idle.    mPolling = true;    struct epoll_event eventItems[EPOLL_MAX_EVENTS];    int eventCount = epoll_wait(mEpollFd, eventItems, EPOLL_MAX_EVENTS, timeoutMillis);    // No longer idling.    mPolling = false;    // Acquire lock.    mLock.lock();    // Rebuild epoll set if needed.    if (mEpollRebuildRequired) {        mEpollRebuildRequired = false;        rebuildEpollLocked();        goto Done;    }    // Check for poll error.    if (eventCount < 0) {        if (errno == EINTR) {            goto Done;        }        ALOGW("Poll failed with an unexpected error, errno=%d", errno);        result = POLL_ERROR;        goto Done;    }    // Check for poll timeout.    if (eventCount == 0) {#if DEBUG_POLL_AND_WAKE        ALOGD("%p ~ pollOnce - timeout", this);#endif        result = POLL_TIMEOUT;        goto Done;    }    // Handle all events.#if DEBUG_POLL_AND_WAKE    ALOGD("%p ~ pollOnce - handling events from %d fds", this, eventCount);#endif    for (int i = 0; i < eventCount; i++) {        int fd = eventItems[i].data.fd;        uint32_t epollEvents = eventItems[i].events;        if (fd == mWakeEventFd) {            if (epollEvents & EPOLLIN) {                awoken();            } else {                ALOGW("Ignoring unexpected epoll events 0x%x on wake event fd.", epollEvents);            }        } else {            ssize_t requestIndex = mRequests.indexOfKey(fd);            if (requestIndex >= 0) {                int events = 0;                if (epollEvents & EPOLLIN) events |= EVENT_INPUT;                if (epollEvents & EPOLLOUT) events |= EVENT_OUTPUT;                if (epollEvents & EPOLLERR) events |= EVENT_ERROR;                if (epollEvents & EPOLLHUP) events |= EVENT_HANGUP;                pushResponse(events, mRequests.valueAt(requestIndex));            } else {                ALOGW("Ignoring unexpected epoll events 0x%x on fd %d that is "                        "no longer registered.", epollEvents, fd);            }        }    }Done: ;    // Invoke pending message callbacks.    mNextMessageUptime = LLONG_MAX;    while (mMessageEnvelopes.size() != 0) {        nsecs_t now = systemTime(SYSTEM_TIME_MONOTONIC);        const MessageEnvelope& messageEnvelope = mMessageEnvelopes.itemAt(0);        if (messageEnvelope.uptime <= now) {            // Remove the envelope from the list.            // We keep a strong reference to the handler until the call to handleMessage            // finishes.  Then we drop it so that the handler can be deleted *before*            // we reacquire our lock.            { // obtain handler                sp<MessageHandler> handler = messageEnvelope.handler;                Message message = messageEnvelope.message;                mMessageEnvelopes.removeAt(0);                mSendingMessage = true;                mLock.unlock();#if DEBUG_POLL_AND_WAKE || DEBUG_CALLBACKS                ALOGD("%p ~ pollOnce - sending message: handler=%p, what=%d",                        this, handler.get(), message.what);#endif                handler->handleMessage(message);            } // release handler            mLock.lock();            mSendingMessage = false;            result = POLL_CALLBACK;        } else {            // The last message left at the head of the queue determines the next wakeup time.            mNextMessageUptime = messageEnvelope.uptime;            break;        }    }    // Release lock.    mLock.unlock();    **// Invoke all response callbacks.**    **for (size_t i = 0; i < mResponses.size(); i++) {        Response& response = mResponses.editItemAt(i);        if (response.request.ident == POLL_CALLBACK) {            int fd = response.request.fd;            int events = response.events;            void* data = response.request.data;#if DEBUG_POLL_AND_WAKE || DEBUG_CALLBACKS            ALOGD("%p ~ pollOnce - invoking fd event callback %p: fd=%d, events=0x%x, data=%p",                    this, response.request.callback.get(), fd, events, data);#endif            // Invoke the callback.  Note that the file descriptor may be closed by            // the callback (and potentially even reused) before the function returns so            // we need to be a little careful when removing the file descriptor afterwards.            int callbackResult = response.request.callback->handleEvent(fd, events, data);            if (callbackResult == 0) {                removeFd(fd, response.request.seq);            }            // Clear the callback reference in the response structure promptly because we            // will not clear the response vector itself until the next poll.            response.request.callback.clear();            result = POLL_CALLBACK;        }    }**    return result;}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158

当有事件到来后,线程从epoll_wait开始继续往下执行,注意加粗的部分,那里会回调NativeInputEventReceiver中的handleEvent方法,关键代码为:

int callbackResult = response.request.callback->handleEvent(fd, 
  • 1

这个方法如下:

int NativeInputEventReceiver::handleEvent(int receiveFd, int events, void* data) {    if (events & (ALOOPER_EVENT_ERROR | ALOOPER_EVENT_HANGUP)) {        // This error typically occurs when the publisher has closed the input channel        // as part of removing a window or finishing an IME session, in which case        // the consumer will soon be disposed as well.        if (kDebugDispatchCycle) {            ALOGD("channel '%s' ~ Publisher closed input channel or an error occurred.  "                    "events=0x%x", getInputChannelName(), events);        }        return 0; // remove the callback    }    if (events & ALOOPER_EVENT_INPUT) {        JNIEnv* env = AndroidRuntime::getJNIEnv();        status_t status = consumeEvents(env, false /*consumeBatches*/, -1, NULL);        mMessageQueue->raiseAndClearException(env, "handleReceiveCallback");        return status == OK || status == NO_MEMORY ? 1 : 0;    }    if (events & ALOOPER_EVENT_OUTPUT) {        for (size_t i = 0; i < mFinishQueue.size(); i++) {            const Finish& finish = mFinishQueue.itemAt(i);            status_t status = mInputConsumer.sendFinishedSignal(finish.seq, finish.handled);            if (status) {                mFinishQueue.removeItemsAt(0, i);                if (status == WOULD_BLOCK) {                    if (kDebugDispatchCycle) {                        ALOGD("channel '%s' ~ Sent %zu queued finish events; %zu left.",                                getInputChannelName(), i, mFinishQueue.size());                    }                    return 1; // keep the callback, try again later                }                ALOGW("Failed to send finished signal on channel '%s'.  status=%d",                        getInputChannelName(), status);                if (status != DEAD_OBJECT) {                    JNIEnv* env = AndroidRuntime::getJNIEnv();                    String8 message;                    message.appendFormat("Failed to finish input event.  status=%d", status);                    jniThrowRuntimeException(env, message.string());                    mMessageQueue->raiseAndClearException(env, "finishInputEvent");                }                return 0; // remove the callback            }        }        if (kDebugDispatchCycle) {            ALOGD("channel '%s' ~ Sent %zu queued finish events; none left.",                    getInputChannelName(), mFinishQueue.size());        }        mFinishQueue.clear();        setFdEvents(ALOOPER_EVENT_INPUT);        return 1;    }    ALOGW("channel '%s' ~ Received spurious callback for unhandled poll event.  "            "events=0x%x", getInputChannelName(), events);    return 1;}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59

从这个方法开始,通信已经结束了,事件已经到达ViewRootImpl类中,也就是到达我们自己Dialog或者Activity中了,我们需要把他们一级级往下分发。
我们的事件类型位ALOOPER_EVENT_INPUT,所以接下来调用consumeEvents方法:

status_t NativeInputEventReceiver::consumeEvents(JNIEnv* env,        bool consumeBatches, nsecs_t frameTime, bool* outConsumedBatch) {    if (kDebugDispatchCycle) {        ALOGD("channel '%s' ~ Consuming input events, consumeBatches=%s, frameTime=%lld.",                getInputChannelName(), consumeBatches ? "true" : "false", (long long)frameTime);    }    if (consumeBatches) {        mBatchedInputEventPending = false;    }    if (outConsumedBatch) {        *outConsumedBatch = false;    }    ScopedLocalRef<jobject> receiverObj(env, NULL);    bool skipCallbacks = false;    for (;;) {        uint32_t seq;        InputEvent* inputEvent;        status_t status = mInputConsumer.consume(&mInputEventFactory,                consumeBatches, frameTime, &seq, &inputEvent);        if (status) {            if (status == WOULD_BLOCK) {                if (!skipCallbacks && !mBatchedInputEventPending                        && mInputConsumer.hasPendingBatch()) {                    // There is a pending batch.  Come back later.                    if (!receiverObj.get()) {                        receiverObj.reset(jniGetReferent(env, mReceiverWeakGlobal));                        if (!receiverObj.get()) {                            ALOGW("channel '%s' ~ Receiver object was finalized "                                    "without being disposed.", getInputChannelName());                            return DEAD_OBJECT;                        }                    }                    mBatchedInputEventPending = true;                    if (kDebugDispatchCycle) {                        ALOGD("channel '%s' ~ Dispatching batched input event pending notification.",                                getInputChannelName());                    }                    env->CallVoidMethod(receiverObj.get(),                            gInputEventReceiverClassInfo.dispatchBatchedInputEventPending);                    if (env->ExceptionCheck()) {                        ALOGE("Exception dispatching batched input events.");                        mBatchedInputEventPending = false; // try again later                    }                }                return OK;            }            ALOGE("channel '%s' ~ Failed to consume input event.  status=%d",                    getInputChannelName(), status);            return status;        }        assert(inputEvent);        if (!skipCallbacks) {            if (!receiverObj.get()) {                receiverObj.reset(jniGetReferent(env, mReceiverWeakGlobal));                if (!receiverObj.get()) {                    ALOGW("channel '%s' ~ Receiver object was finalized "                            "without being disposed.", getInputChannelName());                    return DEAD_OBJECT;                }            }            jobject inputEventObj;            switch (inputEvent->getType()) {            case AINPUT_EVENT_TYPE_KEY:                if (kDebugDispatchCycle) {                    ALOGD("channel '%s' ~ Received key event.", getInputChannelName());                }                inputEventObj = android_view_KeyEvent_fromNative(env,                        static_cast<KeyEvent*>(inputEvent));                break;            case AINPUT_EVENT_TYPE_MOTION: {                if (kDebugDispatchCycle) {                    ALOGD("channel '%s' ~ Received motion event.", getInputChannelName());                }                MotionEvent* motionEvent = static_cast<MotionEvent*>(inputEvent);                if ((motionEvent->getAction() & AMOTION_EVENT_ACTION_MOVE) && outConsumedBatch) {                    *outConsumedBatch = true;                }                inputEventObj = android_view_MotionEvent_obtainAsCopy(env, motionEvent);                break;            }            default:                assert(false); // InputConsumer should prevent this from ever happening                inputEventObj = NULL;            }            if (inputEventObj) {                if (kDebugDispatchCycle) {                    ALOGD("channel '%s' ~ Dispatching input event.", getInputChannelName());                }                env->CallVoidMethod(receiverObj.get(),                        gInputEventReceiverClassInfo.dispatchInputEvent, seq, inputEventObj);                if (env->ExceptionCheck()) {                    ALOGE("Exception dispatching input event.");                    skipCallbacks = true;                }                env->DeleteLocalRef(inputEventObj);            } else {                ALOGW("channel '%s' ~ Failed to obtain event object.", getInputChannelName());                skipCallbacks = true;            }        }        if (skipCallbacks) {            mInputConsumer.sendFinishedSignal(seq, false);        }    }}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117

gInputEventReceiverClassInfo.dispatchInputEvent, seq, inputEventObj)对应的是InputEventReceiver下的dispatchInputEvent方法,这里涉及到jni编程中c/c++调用java方法的一些规则。可以参考下我的《Android jni/ndk编程》系列文章。
注意,这里使用CallVoidMethod方法调用java层的方法,调用的是实例的方法,receiverObj.get()就是这个实例,下面简单分析下这个实例的类型。
在consumeEvents方法中创建了receiverObj这个实例,并使用下面语句初始化它:

            if (!receiverObj.get()) {                receiverObj.reset(jniGetReferent(env, mReceiverWeakGlobal));
  • 1
  • 2

也就是说receiverObj.get获取的类型是mReceiverWeakGlobal决定的。
mReceiverWeakGlobal就是我们从java层一步步传下来的,它对应的类型真是WindowInputEventReceiver类型。这里梳理一下:我们在ViewRootImpl中的setView方法中创建了WindowInputEventReceiver的实例,它的父类InputEventReceiver的构造方法中调用nativeInit方法,并把this指针传入下来,this当然是WindowInputEventReceiver的实例了,最终传下来的这个this会保存在mReceiverWeakGlobal变量中。
理解了这点后,我们看下InputEventReceiver的dispatchInputEvent方法:

    // Called from native code.    @SuppressWarnings("unused")    private void dispatchInputEvent(int seq, InputEvent event) {        mSeqMap.put(event.getSequenceNumber(), seq);        onInputEvent(event);    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

这个方法调用了onInputEvent方法继续处理,注意,我们的WindowInputEventReceiver覆写了这个方法,因此,调用的实际上是WindowInputEventReceiver的onInputEvent方法。WindowInputEventReceiver的onInputEvent方法如下:

        @Override        public void onInputEvent(InputEvent event) {            enqueueInputEvent(event, this, 0, true);        }
  • 1
  • 2
  • 3
  • 4

调用onInputEvent方法继续处理,再来看看这个方法。这个方法是ViewRootImpl类中的方法:

   void enqueueInputEvent(InputEvent event,            InputEventReceiver receiver, int flags, boolean processImmediately) {        adjustInputEventForCompatibility(event);        QueuedInputEvent q = obtainQueuedInputEvent(event, receiver, flags);        // Always enqueue the input event in order, regardless of its time stamp.        // We do this because the application or the IME may inject key events        // in response to touch events and we want to ensure that the injected keys        // are processed in the order they were received and we cannot trust that        // the time stamp of injected events are monotonic.        QueuedInputEvent last = mPendingInputEventTail;        if (last == null) {            mPendingInputEventHead = q;            mPendingInputEventTail = q;        } else {            last.mNext = q;            mPendingInputEventTail = q;        }        mPendingInputEventCount += 1;        Trace.traceCounter(Trace.TRACE_TAG_INPUT, mPendingInputEventQueueLengthCounterName,                mPendingInputEventCount);        if (processImmediately) {            doProcessInputEvents();        } else {            scheduleProcessInputEvents();        }    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

这个方法做了如下三件事:
1.对获取到的事件做一点调整,调整的目的是为了更好的兼容性。
2.把输入事件添加到输入事件队列的尾部。
3.如果立刻处理则调用doProcessInputEvents,否则调用scheduleProcessInputEvents来处理。
我们传下来的是processImmediately的值true,也就是立刻执行,因此,接下来分析下doProcessInputEvents方法,该方法还是在ViewRootImpl类中:

    void doProcessInputEvents() {        // Deliver all pending input events in the queue.        while (mPendingInputEventHead != null) {            QueuedInputEvent q = mPendingInputEventHead;            mPendingInputEventHead = q.mNext;            if (mPendingInputEventHead == null) {                mPendingInputEventTail = null;            }            q.mNext = null;            mPendingInputEventCount -= 1;            Trace.traceCounter(Trace.TRACE_TAG_INPUT, mPendingInputEventQueueLengthCounterName,                    mPendingInputEventCount);            long eventTime = q.mEvent.getEventTimeNano();            long oldestEventTime = eventTime;            if (q.mEvent instanceof MotionEvent) {                MotionEvent me = (MotionEvent)q.mEvent;                if (me.getHistorySize() > 0) {                    oldestEventTime = me.getHistoricalEventTimeNano(0);                }            }            mChoreographer.mFrameInfo.updateInputEventTime(eventTime, oldestEventTime);            deliverInputEvent(q);        }        // We are done processing all input events that we can process right now        // so we can clear the pending flag immediately.        if (mProcessInputEventsScheduled) {            mProcessInputEventsScheduled = false;            mHandler.removeMessages(MSG_PROCESS_INPUT_EVENTS);        }    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35

一个QueuedInputEvent 代表一个队列中的需要处理的输入事件。这个方法获取输入事件队列头mPendingInputEventHead,然后遍历这个队列,处理每一项事件,也就是每一个队列中的QueuedInputEvent 的实例,处理的逻辑放在deliverInputEvent中:

    private void deliverInputEvent(QueuedInputEvent q) {        Trace.asyncTraceBegin(Trace.TRACE_TAG_VIEW, "deliverInputEvent",                q.mEvent.getSequenceNumber());        if (mInputEventConsistencyVerifier != null) {            mInputEventConsistencyVerifier.onInputEvent(q.mEvent, 0);        }        InputStage stage;        if (q.shouldSendToSynthesizer()) {            stage = mSyntheticInputStage;        } else {            stage = q.shouldSkipIme() ? mFirstPostImeInputStage : mFirstInputStage;        }        if (stage != null) {            stage.deliver(q);        } else {            finishInputEvent(q);        }    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

事件的分发分为多个阶段,事件是一个阶段一个阶段的往下分发,如果前一个阶段分发结束发现时间已经被处理,那么事件不需要分发就不要进入其他阶段了,那么分发就到此结束。事件分发阶段的建立是在ViewRootImpl的setView方法中实现的,代码如下:

               // Set up the input pipeline.                CharSequence counterSuffix = attrs.getTitle();                mSyntheticInputStage = new SyntheticInputStage();                InputStage viewPostImeStage = new ViewPostImeInputStage(mSyntheticInputStage);                InputStage nativePostImeStage = new NativePostImeInputStage(viewPostImeStage,                        "aq:native-post-ime:" + counterSuffix);                InputStage earlyPostImeStage = new EarlyPostImeInputStage(nativePostImeStage);                InputStage imeStage = new ImeInputStage(earlyPostImeStage,                        "aq:ime:" + counterSuffix);                InputStage viewPreImeStage = new ViewPreImeInputStage(imeStage);                InputStage nativePreImeStage = new NativePreImeInputStage(viewPreImeStage,                        "aq:native-pre-ime:" + counterSuffix);                mFirstInputStage = nativePreImeStage;                mFirstPostImeInputStage = earlyPostImeStage;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

处理阶段的顺序用图展示一目了然:
这里写图片描述
具体每一个阶段是怎么处理的,展开的话又很复杂,我们一开始的目标是搞清楚window这段接收到事件后怎么把它分发给View结构树的,所以,我们看下事件分发的这些阶段中,有一个阶段和View相关的,那就是viewPreImeStage和viewPostImeStage,以viewPreImeStage阶段为例:

    /**     * Delivers pre-ime input events to the view hierarchy.     * Does not support pointer events.     */    final class ViewPreImeInputStage extends InputStage {        public ViewPreImeInputStage(InputStage next) {            super(next);        }        @Override        protected int onProcess(QueuedInputEvent q) {            if (q.mEvent instanceof KeyEvent) {                return processKeyEvent(q);            }            return FORWARD;        }        private int processKeyEvent(QueuedInputEvent q) {            final KeyEvent event = (KeyEvent)q.mEvent;            if (mView.dispatchKeyEventPreIme(event)) {                return FINISH_HANDLED;            }            return FORWARD;        }    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

对于每一个阶段,如果判断到确实需要处理该事件,就会调用它的onProcess方法。ViewPreImeInputStage 的onProcess方法调用其内部方法processKeyEvent继续处理,在这个类中先获取事件,然后调用mView的dispatchKeyEventPreIme方法,mView就是调用setView方法时传入的View实例,也就是我们Dialog或者Activity中的根View,调用它的dispatchKeyEventPreIme方法就意味着事件进入到View树的处理流程中了。viewPostImeStage阶段也类似,分发到View的相关代码如下:

      private int processKeyEvent(QueuedInputEvent q) {            final KeyEvent event = (KeyEvent)q.mEvent;            if (event.getAction() != KeyEvent.ACTION_UP) {                // If delivering a new key event, make sure the window is                // now allowed to start updating.                handleDispatchWindowAnimationStopped();            }            // Deliver the key to the view hierarchy.            if (**mView.dispatchKeyEvent(event)**) {                return FINISH_HANDLED;            }            ...
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

这里就调用的是View的dispatchKeyEvent方法分发事件了。
至此,对于文章开始提出的疑问,通过以上分析,最终给出了自己的答案。对于本人代码的分析哪里不对,哪里有问题,希望能听到读者的反馈,哪怕拍砖也好!

阅读全文
0 0
原创粉丝点击