1、程序簡介
該程序是基于OpenHarmony的C++公共基礎類庫的線程安全隊列:SafeQueue。
線程安全隊列,是在dequeue的基礎上封裝std::lock_guard,以此實現線程的相關操作。根據繼承SafeQueueInner抽象類,并對dequeue的pop方法的重寫,可以實現SafeStack和SafeQueue的相關方法。
本案例主要完成如下工作:
創建2個子線程,1個線程負責入隊操作,1個線程負責出隊操作
子線程入隊操作,每1秒做1次入隊操作,循環5次
子線程入隊操作,每0.5秒做1次出隊操作,循環5次
該案例已在凌蒙派-RK3568開發板驗證過,如需要完整源代碼,請參考:
https://gitee.com/Lockzhiner-Electronics/lockzhiner-rk3568-openharmony/tree/master/samples/a27_utils_safequeue
2、基礎知識
C++公共基礎類庫為標準系統提供了一些常用的C++開發工具類,包括:
文件、路徑、字符串相關操作的能力增強接口
安全數據容器、數據序列化等接口
各子系統的錯誤碼相關定義
2.1、添加C++公共基礎類庫依賴
修改需調用模塊的BUILD.gn,在external_deps或deps中添加如下:
ohos_shared_library("xxxxx") { ... external_deps = [ ... # 動態庫依賴(可選) "c_utils:utils", # 靜態庫依賴(可選) "c_utils:utilsbase", # Rust動態庫依賴(可選) "c_utils:utils_rust", ] ...}
一般而言,我們只需要填寫"c_utils:utils"即可。
2.2、SafeQueue頭文件
C++公共基礎類庫的SafeQueue頭文件在://commonlibrary/c_utils/base/include/safe_queue.h
可在源代碼中添加如下:
#include
2.3、OHOS::SafeQueueInner接口說明
2.3.1、SafeQueueInner
構造函數。
SafeQueueInner();
2.3.2、~SafeQueueInner()
析構函數。
~SafeQueueInner();
2.3.3、Erase
移除某個元素。
void Erase(T& object);
參數說明:
參數名稱 | 類型 | 參數說明 |
---|---|---|
object | T | 需要移除的元素 |
2.3.4、Empty
隊列判空。
bool Empty();
返回值說明:
類型 | 返回值說明 |
---|---|
bool | true表示成功,false表示失敗 |
2.3.5、Clear
清空隊列元素。
void Clear();
2.3.6、Size
獲取隊列的容量。
int Size();
返回值說明:
類型 | 返回值說明 |
---|---|
int | 返回隊列的容量 |
2.3.7、Push
入隊操作。
void Push(const T& pt);
參數說明:
參數名稱 | 類型 | 參數說明 |
---|---|---|
pt | T | 需要入隊的元素 |
2.3.8、DoPush
Push底層調用DoPush,需要重寫。
virtual void DoPush(const T& pt) = 0;
參數說明:
參數名稱 | 類型 | 參數說明 |
---|---|---|
pt | T | 需要入隊的元素 |
2.3.9、Pop
出隊操作。
bool Pop(T& pt);
參數說明:
參數名稱 | 類型 | 參數說明 |
---|---|---|
pt | T | 需要出隊的元素 |
返回值說明:
類型 | 返回值說明 |
---|---|
bool | true表示空,false表示非空 |
2.3.10、DoPop
出隊操作。
virtual bool DoPop(T& pt) = 0;
參數說明:
參數名稱 | 類型 | 參數說明 |
---|---|---|
pt | T | 需要出隊的元素 |
返回值說明:
類型 | 返回值說明 |
---|---|
bool | true表示空,false表示非空 |
2.4、OHOS::SafeQueue接口說明
SafeQueue繼承SafeQueueInner,實現DoPush()和DoPop()。
class SafeQueue : public SafeQueueInner
2.4.1、DoPush
入隊操作。
void DoPush(const T& pt);
參數說明:
參數名稱 | 類型 | 參數說明 |
---|---|---|
pt | T | 需要入隊的元素 |
2.4.2、DoPop
出隊操作。
bool DoPop(T& pt);
參數說明:
參數名稱 | 類型 | 參數說明 |
---|---|---|
pt | T | 需要出隊的元素 |
返回值說明:
類型 | 返回值說明 |
---|---|
bool | true表示空,false表示非空 |
3、程序解析
3.1、創建編譯引導
在上一級目錄BUILD.gn文件添加一行編譯引導語句。
import("http://build/ohos.gni")
group("samples") { deps = [ "a27_utils_safequeue:utils_safequeue", # 添加該行 ]}
"a27_utils_safequeue:utils_safequeue",該行語句表示引入 參與編譯。
3.2、創建編譯項目
創建a27_utils_safequeue目錄,并添加如下文件:
a27_utils_safequeue├── utils_safequeue_sample.cppp # .cpp源代碼├──BUILD.gn#GN文件
3.3、創建BUILD.gn
編輯BUILD.gn文件。
import("http://build/ohos.gni")ohos_executable("utils_safequeue") { sources = [ "utils_safequeue_sample.cpp" ] include_dirs = [ "http://commonlibrary/c_utils/base/include", "http://commonlibrary/c_utils/base:utils", "http://third_party/googletest:gtest_main", "http://third_party/googletest/googletest/include" ] external_deps = [ "c_utils:utils" ] part_name = "product_rk3568" install_enable = true}
注意:
(1)BUILD.gn中所有的TAB鍵必須轉化為空格,否則會報錯。如果自己不知道如何規范化,可以:
# 安裝gn工具sudo apt-get install ninja-buildsudo apt install generate-ninja# 規范化BUILD.gngn format BUILD.gn
3.4、創建源代碼
3.4.1、創建SafeMap
#include // SafeQueue的頭文件
// 定義隊列變量static OHOS::SafeQueue
3.4.2、創建線程池并設置
int main(int argc, char **argv){ OHOS::ThreadPool threads("threads"); string str_name; ...... threads.SetMaxTaskNum(128); threads.Start(2); ......}
3.4.3、啟動2個子線程,并等待結束
調用AddTask()添加子線程,并調用Stop()等待所有子進程結束。
// 開啟子線程,使用Pushstr_name = "Thread_SafeQueue_Push";auto task_push = std::bind(funcSafeQueuePush, str_name);threads.AddTask(task_push);
// 開啟子線程,使用Popstr_name = "Thread_SafeQueue_Pop";auto task_pop = std::bind(funcSafeQueuePop, str_name);threads.AddTask(task_pop);
// 設置結束,并等待結束threads.Stop();cout << "Threads Stop" << endl;
3.4.4、子線程入隊操作
static void funcSafeQueuePush(const string &name){ for (int i = 0; i < 5; i++) { // 入隊操作 cout << name << ", Push Start and i = " << i << endl; m_safeQueue.Push(i); cout << name << ", Push Successful and i = " << i << " and value = " << i << endl; // 睡眠1秒 cout << name << ", Sleep 1 sec" << endl; std::sleep_for(std::milliseconds(1000)); }}
3.4.5、子線程出隊操作
static void funcSafeQueuePop(const string &name){ bool ret; int value; for (int i = 0; i < 5; i++) { // 出隊操作 cout << name << ", Pop Start and i = " << i << endl; ret = m_safeQueue.Pop(value); cout << name << ", Pop Successful and i = " << i << " and ret = " << ret << " and value = " << value << endl; // 睡眠0.5秒 cout << name << ", Sleep 0.5 sec" << endl; std::sleep_for(std::milliseconds(500)); }
}
4、編譯步驟
進入OpenHarmony編譯環境,運行命令:
hb build -f
5、運行結果
# utils_safequeueThread_SafeQueue_Push, Push Start and i = 0Thread_SafeQueue_Push, Push Successful and i = 0 and value = 0Thread_SafeQueue_Push, Sleep 1 secThread_SafeQueue_Pop, Pop Start and i = 0Thread_SafeQueue_Pop, Pop Successful and i = 0 and ret = 1 and value = 0Thread_SafeQueue_Pop, Sleep 0.5 secThread_SafeQueue_Pop, Pop Start and i = 1Thread_SafeQueue_Pop, Pop Successful and i = 1 and ret = 0 and value = 0Thread_SafeQueue_Pop, Sleep 0.5 secThread_SafeQueue_Push, Push Start and i = 1Thread_SafeQueue_Push, Push Successful and i = 1 and value = 1Thread_SafeQueue_Push, Sleep 1 secThread_SafeQueue_Pop, Pop Start and i = 2Thread_SafeQueue_Pop, Pop Successful and i = 2 and ret = 1 and value = 1Thread_SafeQueue_Pop, Sleep 0.5 secThread_SafeQueue_Pop, Pop Start and i = 3Thread_SafeQueue_Pop, Pop Successful and i = 3 and ret = 0 and value = 1Thread_SafeQueue_Pop, Sleep 0.5 secThread_SafeQueue_Push, Push Start and i = 2Thread_SafeQueue_Push, Push Successful and i = 2 and value = 2Thread_SafeQueue_Push, Sleep 1 secThread_SafeQueue_Pop, Pop Start and i = 4Thread_SafeQueue_Pop, Pop Successful and i = 4 and ret = 1 and value = 2Thread_SafeQueue_Pop, Sleep 0.5 secThread_SafeQueue_Push, Push Start and i = 3Thread_SafeQueue_Push, Push Successful and i = 3 and value = 3Thread_SafeQueue_Push, Sleep 1 secThread_SafeQueue_Push, Push Start and i = 4Thread_SafeQueue_Push, Push Successful and i = 4 and value = 4Thread_SafeQueue_Push, Sleep 1 secThreads Stop#
-
Queue
+關注
關注
0文章
16瀏覽量
7261 -
Safe
+關注
關注
0文章
6瀏覽量
7244 -
OpenHarmony
+關注
關注
25文章
3722瀏覽量
16313
發布評論請先 登錄
相關推薦
評論