Android 中 MessageQueue 的 nativePollOnce

来源:https://www.cnblogs.com/jiy-for-you/archive/2019/10/20/11707356.html
-Advertisement-
Play Games

Android SDK 中的事件迴圈已經是一個老生常談的問題了, 像 `Looper MessageQueue` 這幾個類也是被大家研究透徹了. 但是再回頭看以前自己的分析, 總感覺差點什麼, 不夠透徹. 心裡隱隱感覺自己沒有把事情完全吃透, 於是今日又回顧 Android 中的事件迴圈機制, 註意 ...


Android SDK 中的事件迴圈已經是一個老生常談的問題了, 像 Handler Looper MessageQueue 這幾個類也是被大家研究透徹了.
但是再回頭看以前自己的分析, 總感覺差點什麼, 不夠透徹. 心裡隱隱感覺自己沒有把事情完全吃透, 於是今日又回顧 Android 中的事件迴圈機制, 註意到
MessageQueue 中獲取下一條消息時會執行一個 native 調用 nativePollOnce, 翻看 Android 系統源碼發現有內容.

來自高手的解釋

首先, 先梭哈一把 stackoverflow 上高手對這個問題(android - what is message queue native poll once in android?)的回答原文:

Short answer:

The nativePollOnce method is used to "wait" till the next Message becomes available. If the time spent during this call is long, your main (UI) thread has no real work to do and waits for next events to process. There's no need to worry about that.

Explanation:

Because the "main" thread is responsible for drawing UI and handling various events, it's Runnable has a loop which processes all these events. The loop is managed by a Looper and its job is quite straightforward: it processes all Messages in the MessageQueue.

A Message is added to the queue for example in response to input events, as frame rendering callback or even your own Handler.post calls. Sometimes the main thread has no work to do (that is, no messages in the queue), which may happen e.g. just after finishing rendering single frame (the thread has just drawn one frame and is ready for the next one, just waits for a proper time). Two Java methods in the MessageQueue class are interesting to us: Message next() and boolean enqueueMessage(Message, long). Message next(), as its name suggest, takes and returns the next Message from the queue. If the queue is empty (and there's nothing to return), the method calls native void nativePollOnce(long, int) which blocks until a new message is added. At this point you might ask how does nativePollOnce know when to wake up. That's a very good question. When a Message is added to the queue, the framework calls the enqueueMessage method, which not only inserts the message into the queue, but also calls native static void nativeWake(long), if there's need to wake up the queue. The core magic of nativePollOnce and nativeWake happens in the native (actually, C++) code. Native MessageQueue utilizes a Linux system call named epoll, which allows to monitor a file descriptor for IO events. nativePollOnce calls epoll_wait on a certain file descriptor, whereas nativeWake writes to the descriptor, which is one of the IO operations, epoll_wait waits for. The kernel then takes out the epoll-waiting thread from the waiting state and the thread proceeds with handling the new message. If you're familiar with Java's Object.wait() and Object.notify() methods, you can imagine that nativePollOnce is a rough equivalent for Object.wait() and nativeWake for Object.notify(), except they're implemented completely differently: nativePollOnce uses epoll and Object.wait() uses futex Linux call. It's worth noticing that neither nativePollOnce nor Object.wait() waste CPU cycles, as when a thread enters either method, it becomes disabled for thread scheduling purposes (quoting the javadoc for the Object class). However, some profilers may mistakenly recognize epoll-waiting (or even Object-waiting) threads as running and consuming CPU time, which is incorrect. If those methods actually wasted CPU cycles, all idle apps would use 100% of the CPU, heating and slowing down the device.

Conclusion:

You shouldn't worry about nativePollOnce. It just indicates that processing of all Messages has been finished and the thread waits for the next one. Well, that simply means you don't give too much work to your main thread ;)


translate.google 一下

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 安裝&配置 在apache的官方網站提供了好多鏡像下載地址,然後找到對應的版本 下載地址: http://mirrors.cnnic.cn/apache/zookeeper/zookeeper-3.4.14/zookeeper-3.4.14.tar.gz Windows下安裝 把下載的zookeep ...
  • rm-rf /* 不能用 完全刪除 資料庫不能直接存儲數據 table 表 DB 資料庫 DBMS 資料庫操作系統 SQL 結構化查詢語言 語句不區分大小寫,但字元串常量區區分大小寫。建議命令大寫。 SELECT 查找 SQL語言是由DDL,DML,DQL和DCL組成 ...
  • 創建資料庫: 輸入:CREATE DATABASE itcase;電腦輸出: Query OK, 1 row affected 查看資料庫:輸入:SHOW DATABASES;電腦輸出: + +| Database |+ +| information_schema || itcast || my ...
  • 緣起 最近做一個項目,類似某度雲盤,另外附加定製功能,本人負責雲盤相關功能實現,這個項目跟雲盤不同的是,以項目為分配許可權的單位,同一個項目及子目錄所有有許可權的用戶可以同時操作所有文件,這樣就很容易出現併發操作,而且表結構設計的時候,定下來文件和文件夾都有個path欄位,存儲的是所在父級文件夾路徑,這 ...
  • key 操作 刪除 key:del key 查看所有的 key(一次性遍歷整個資料庫,生產上慎重使用):keys [pattern] 利用 cursor 分頁查詢記錄(漸進的遍歷整個資料庫,生產上推薦):scan cursor [MATCH pattern] [COUNT count] 序列化給定 ...
  • 1.報錯信息: 2.出現錯誤操作: 3.解決方法 在MySQL中取消外鍵約束: 執行 之後在設置外鍵約束:`set foreign_key_checks=1;` ...
  • 在MySQL資料庫中,沒有類似於SQL Server資料庫或Oracle資料庫中索引重建的語法(ALTER INDEX ... REBUILD),那麼在MySQL資料庫中,是否有什麼方式重建索引呢? 在官方文檔中"2.11.10 Rebuilding or Repairing Tables or I... ...
  • Custom Diagrams https://github.com/dbeaver/dbeaver/wiki/Custom-Diagrams Custom Diagrams https://github.com/dbeaver/dbeaver/wiki/Custom-Diagrams You ca ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...