Android NDK pthreads詳細使用

来源:https://www.cnblogs.com/jianpanwuzhe/archive/2018/03/02/8493464.html
-Advertisement-
Play Games

這個pthread.h文件可以在NDK環境里創建子線程,並對線程能夠做出互斥所、等待、銷毀等控制。寫這個博客的原因是我要寫如何使用FFmpeg播放視頻,因為同時需要播放音頻和視頻所以需要開啟線程,並設置生產者和消費者的關係。好了直接上整體 1.開啟和銷毀線程 pthread_create函數能夠創建 ...


這個pthread.h文件可以在NDK環境里創建子線程,並對線程能夠做出互斥所、等待、銷毀等控制。

寫這個博客的原因是我要寫如何使用FFmpeg播放視頻,因為同時需要播放音頻和視頻所以需要開啟線程,並設置生產者和消費者的關係。

好了直接上整體

1.開啟和銷毀線程


pthread_create函數能夠創建線程,第一個參數是線程的引用,第二個是線程的屬性,一般為NULL,第三個為線程運行的函數,第四個是給線程運行函數的參數

pthread_create又是開啟線程,只要運行了這個函數線程就會運行起來,也就是運行第三個參數所代表的函數

    pthread_t pthreads;
    pthread_create(&pthreads, NULL, threadFunc, (void *) "zzw");

等待線程完成和返回參數,這個如果開啟線程只有一個可以不寫,但是如果有多個線程這個就必須要寫,不寫的話只會運行第一個線程

    int retvalue;
    pthread_join(pthreads,(void**)&retvalue);
    if(retvalue!=0){
        __android_log_print(ANDROID_LOG_ERROR,"hello","thread error occurred");
    }

 

我們再來看看線程運行函數,這個他可以獲取參數,並且能能夠提前結束線程

void * threadFunc(void *arg){

    char* str=(char*)arg;

    for(int i=0;i<3;i++){
        __android_log_print(ANDROID_LOG_VERBOSE,"hello","i = %d arg = %s",i,str);
        //線程自殺,需要返回參數
        //pthread_exit((void*)2);
        //線程他殺
        //pthread_cancel()
    }
    return (void *) 0;

}

 

完整例子代碼

#include <jni.h>
#include <string>
#include <android/log.h>
#define LOGE(FORMAT,...) __android_log_print(ANDROID_LOG_ERROR,"LC XXX",FORMAT,##__VA_ARGS__);

extern "C"
JNIEXPORT jstring
JNICALL
Java_com_example_zth_ndkthread_MainActivity_stringFromJNI(
        JNIEnv *env,
        jobject /* this */) {
    std::string hello = "Hello from C++";
    return env->NewStringUTF(hello.c_str());
}


void * threadFunc(void *arg){

    char* str=(char*)arg;

    for(int i=0;i<3;i++){
        __android_log_print(ANDROID_LOG_VERBOSE,"hello","i = %d arg = %s",i,str);
        //線程自殺,需要返回參數
        //pthread_exit((void*)2);
        //線程他殺
        //pthread_cancel()
    }
    return (void *) 0;

}

extern "C"
JNIEXPORT void JNICALL
Java_com_example_zth_ndkthread_MainActivity_startNativeThread(JNIEnv* env, jobject thiz,jint count) {


    pthread_t pthreads;
    pthread_create(&pthreads, NULL, threadFunc, (void *) "zzw");


    int retvalue;
    pthread_join(pthreads,(void**)&retvalue);
    if(retvalue!=0){
        __android_log_print(ANDROID_LOG_ERROR,"hello","thread error occurred");
    }


}

 

2.互斥鎖


互斥鎖指的是它能夠鎖住一段代碼,使得這段代碼在解鎖之前不能再被執行一次,

初始化

    pthread_mutex_t pthread_mutex;
    if(pthread_mutex_init(&pthread_mutex,NULL)!=0)
        return;

 

開啟線程時把互斥鎖傳給線程運行函數

    for(int i=0;i<count;i++){
        pthread_create(&pthreads[i],NULL,threadFunc,&pthread_mutex);
    }

 

我們再來看看線程運行函數
取出互斥鎖並上鎖

    pthread_mutex_t* pthread_mutex=(pthread_mutex_t*)arg;
    pthread_mutex_lock(pthread_mutex);

 

然後一段代碼

    for(int i=0;i<3;i++){
        __android_log_print(ANDROID_LOG_VERBOSE,"hello","i = %d",i);
    }
    __android_log_print(ANDROID_LOG_VERBOSE,"hello","————————————");

 

解鎖

pthread_mutex_unlock(pthread_mutex);

 

最後銷毀互斥鎖

    pthread_mutex_destroy(&pthread_mutex);

 

運行效果如下

03-02 14:25:58.346 10022-10077/com.example.zth.ndkthread V/hello: i = 0
03-02 14:25:58.346 10022-10077/com.example.zth.ndkthread V/hello: i = 1
03-02 14:25:58.346 10022-10077/com.example.zth.ndkthread V/hello: i = 2
03-02 14:25:58.346 10022-10077/com.example.zth.ndkthread V/hello: ------------------------
03-02 14:25:58.346 10022-10078/com.example.zth.ndkthread V/hello: i = 0
03-02 14:25:58.346 10022-10078/com.example.zth.ndkthread V/hello: i = 1
03-02 14:25:58.346 10022-10078/com.example.zth.ndkthread V/hello: i = 2
03-02 14:25:58.346 10022-10078/com.example.zth.ndkthread V/hello: ------------------------
03-02 14:25:58.347 10022-10079/com.example.zth.ndkthread V/hello: i = 0
03-02 14:25:58.347 10022-10079/com.example.zth.ndkthread V/hello: i = 1
03-02 14:25:58.347 10022-10079/com.example.zth.ndkthread V/hello: i = 2
03-02 14:25:58.347 10022-10079/com.example.zth.ndkthread V/hello: ————————————

如果我們沒有加鎖呢

    pthread_mutex_t* pthread_mutex=(pthread_mutex_t*)arg;
   // pthread_mutex_lock(pthread_mutex);
    for(int i=0;i<3;i++){
        __android_log_print(ANDROID_LOG_VERBOSE,"hello","i = %d",i);
    }
    __android_log_print(ANDROID_LOG_VERBOSE,"hello","------------------------");
   // pthread_mutex_unlock(pthread_mutex);

 

結果如下

03-02 14:36:50.035 13815-13993/com.example.zth.ndkthread V/hello: i = 0
03-02 14:36:50.035 13815-13993/com.example.zth.ndkthread V/hello: i = 1
03-02 14:36:50.035 13815-13993/com.example.zth.ndkthread V/hello: i = 2
03-02 14:36:50.035 13815-13993/com.example.zth.ndkthread V/hello: ------------------------
03-02 14:36:50.035 13815-13994/com.example.zth.ndkthread V/hello: i = 0
03-02 14:36:50.035 13815-13994/com.example.zth.ndkthread V/hello: i = 1
03-02 14:36:50.035 13815-13994/com.example.zth.ndkthread V/hello: i = 2
03-02 14:36:50.035 13815-13995/com.example.zth.ndkthread V/hello: i = 0
03-02 14:36:50.035 13815-13994/com.example.zth.ndkthread V/hello: ------------------------
03-02 14:36:50.035 13815-13995/com.example.zth.ndkthread V/hello: i = 1
03-02 14:36:50.035 13815-13995/com.example.zth.ndkthread V/hello: i = 2
03-02 14:36:50.035 13815-13995/com.example.zth.ndkthread V/hello: ------------------------

所以互斥鎖是先讓一個線程做完,然後另外一個線程做。

例子代碼:

#include <jni.h>
#include <string>
#include <android/log.h>
#include "pthread.h"
#define LOGE(FORMAT,...) __android_log_print(ANDROID_LOG_ERROR,"LC XXX",FORMAT,##__VA_ARGS__);



extern "C"
JNIEXPORT jstring
JNICALL
Java_com_example_zth_ndkthread_MainActivity_stringFromJNI(
        JNIEnv *env,
        jobject /* this */) {
    std::string hello = "Hello from C++";
    return env->NewStringUTF(hello.c_str());
}


void * threadFunc(void *arg){

    pthread_mutex_t* pthread_mutex=(pthread_mutex_t*)arg;
    pthread_mutex_lock(pthread_mutex);
    for(int i=0;i<3;i++){
        __android_log_print(ANDROID_LOG_VERBOSE,"hello","i = %d",i);
    }
    __android_log_print(ANDROID_LOG_VERBOSE,"hello","------------------------");
    pthread_mutex_unlock(pthread_mutex);
    return (void *) 0;
}

extern "C"
JNIEXPORT void JNICALL
Java_com_example_zth_ndkthread_MainActivity_startNativeThread(JNIEnv* env, jobject thiz,jint count) {

    pthread_mutex_t pthread_mutex;
    if(pthread_mutex_init(&pthread_mutex,NULL)!=0)
        return;

    pthread_t pthreads[count];
    for(int i=0;i<count;i++){
        pthread_create(&pthreads[i],NULL,threadFunc,&pthread_mutex);
    }

    for(int i=0;i<count;i++){
        int retvalue=0;
        pthread_join(pthreads[i],(void**)&retvalue);
        if(retvalue!=0){
            __android_log_print(ANDROID_LOG_ERROR,"hello","thread error occurred");
        }
    }

    pthread_mutex_destroy(&pthread_mutex);

}

 

3.條件變數


視頻解碼的繪製使用的就是生產者—消費者的模式。比如說我們生產者生成的產品,放到一個隊列裡面,當生產者生產出產品的時候就會發送信號通知消費者去消費

這個條件變數能夠喚醒線程運行

初始化

pthread_cond_init(&c,NULL);

 

開啟生成者線程和消費者線程

    pthread_create(&thread_producer, NULL, produce, (void *) "producer");
    pthread_create(&thread_comsumer, NULL, comsume, (void *) "comsumer");

 

迴圈生產產品,然後提醒消費者

    for(;;){
        pthread_mutex_lock(&m);
        productNum++;
        __android_log_print(ANDROID_LOG_VERBOSE,"hello","i = %d",productNum);
        pthread_cond_signal(&c);
        pthread_mutex_unlock(&m);

    }

 

消費者線程如果發現沒有產品就等待條件變數提醒,,如果有產品就消費掉

        pthread_mutex_lock(&m);
        while(productNum == 0){
            pthread_cond_wait(&c,&m);

        }
        productNum--;
        __android_log_print(ANDROID_LOG_VERBOSE,"hello","i = %d",productNum);
        pthread_mutex_unlock(&m);

 

註意生成者與消費者線程運行的全過程都在互斥鎖下,都是按順序一一執行的,這樣對於全局變數productNum的計算就不會錯誤,並且通過一個線程執行pthread_cond_signal來觸發另一個線程執行

例子代碼

#include <jni.h>
#include <string>
#include <android/log.h>
#include "pthread.h"
#define LOGE(FORMAT,...) __android_log_print(ANDROID_LOG_ERROR,"LC XXX",FORMAT,##__VA_ARGS__);



extern "C"
JNIEXPORT jstring
JNICALL
Java_com_example_zth_ndkthread_MainActivity_stringFromJNI(
        JNIEnv *env,
        jobject /* this */) {
    std::string hello = "Hello from C++";
    return env->NewStringUTF(hello.c_str());
}

int productNum = 0;
pthread_mutex_t m;
pthread_cond_t c;

void *produce(void* arg){
    char* no = (char*)arg;
    for(;;){
        pthread_mutex_lock(&m);
        productNum++;
        __android_log_print(ANDROID_LOG_VERBOSE,"hello","i = %d",productNum);
        pthread_cond_signal(&c);
        pthread_mutex_unlock(&m);

    }
}

void *comsume(void* arg){
    char* no = (char*)arg;
    for(;;){
        pthread_mutex_lock(&m);
        while(productNum == 0){
            pthread_cond_wait(&c,&m);

        }
        productNum--;
        __android_log_print(ANDROID_LOG_VERBOSE,"hello","i = %d",productNum);
        pthread_mutex_unlock(&m);



    }
}


extern "C"
JNIEXPORT void JNICALL
Java_com_example_zth_ndkthread_MainActivity_startNativeThread(JNIEnv* env, jobject thiz,jint count) {

    pthread_mutex_init(&m,NULL);
    pthread_cond_init(&c,NULL);

    pthread_t thread_producer;
    pthread_t thread_comsumer;

    pthread_create(&thread_producer, NULL, produce, (void *) "producer");
    pthread_create(&thread_comsumer, NULL, comsume, (void *) "comsumer");

    pthread_join(thread_producer,NULL);
    pthread_join(thread_comsumer,NULL);

    pthread_mutex_destroy(&m);
    pthread_cond_destroy(&c);


}

 

參考文章

https://www.jianshu.com/p/453d12c16885

http://blog.csdn.net/lxmhuendan/article/details/11967593


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

-Advertisement-
Play Games
更多相關文章
  • 1. 安裝 1.1. 下載spark安裝包 下載地址spark官網:http://spark.apache.org/downloads.html 這裡我們使用 spark-1.6.2-bin-hadoop2.6版本. 1.2. 規劃安裝目錄 /opt/bigdata 1.3. 解壓安裝包 tar - ...
  • 1. 配置系統環境 主機名,ssh互信,環境變數等 本文略去jdk安裝,請將datanode的jdk安裝路徑與/etc/hadoop/hadoop-evn.sh中的java_home保持一致,版本hadoop2.7.5 修改/etc/sysconfig/network 然後執行命令hostname ...
  • Redis簡介Redis 是完全開源免費的,遵守BSD協議,是一個高性能的key-value資料庫。Redis 與其他 key - value 緩存產品有以下三個特點:Redis支持數據的持久化,可以將記憶體中的數據保存在磁碟中,重啟的時候可以再次載入進行使用。Redis不僅僅支持簡單的key-val ...
  • 1. 儲存引擎的概念 儲存引擎(儲存引擎也可以成為表類型)其實就是如何儲存數據,如何為儲存的數據建立索引和如何更新,查詢數據等技術的實現方法。mysql中的數據用各種不同的技術儲存在文件(或記憶體)中。這些技術中的每一種技術都使用不同的儲存機制,索引技巧,鎖定水平並且最終提供廣泛的,不同的功能和能力, ...
  • 例如查詢昨日新註冊用戶,寫法有如下兩種: register_time欄位是datetime類型,轉換為日期再匹配,需要查詢出所有行進行過濾。而第二種寫法,可以利用在register_time欄位上建立索引,查詢極快! 附上日期轉換函數 ...
  • mysql 中 innoDB 與 MyISAM 的特點 --ENGINE = innodb 1.提供事務處理,支持行鎖; 2.不加鎖讀取,增加併發讀的用戶數量和空間; 3. insert/update 優秀,不支持全文索引; 4.支持事務。 --ENGINE = myisam 1.mysql預設值 ...
  • 首先,在小程式中,是沒有DOM這個概念的,所以在數據綁定這方面,小程式和Vue是一個思想的,即數據優先。 綁定的方法其實非常之簡單,在Vue中,我們用{{ }}來做數據的單向綁定,等同於v-html,即腳本js指向html。在小程式中同樣如此,用{{ }}表示單向數據綁定,表示從js指向wxml。在 ...
  • 項目地址https://github.com/979451341/AudioVideoStudyCodeTwo/tree/master/FFmpegv%E6%92%AD%E6%94%BE%E8%A7%86%E9%A2%91%E6%9C%89%E5%A3%B0%E9%9F%B3%EF%BC%8C%E6 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...