概述
简介
线程安全阻塞队列SafeBlockQueue类,提供阻塞和非阻塞版的入队入队和出队接口,并提供可最追踪任务完成状态的的SafeBlockQueueTracking类。
#include <safe_block_queue.h>
涉及功能
接口说明
OHOS::SafeBlockQueue
OHOS::SafeBlockQueueTracking
class SafeBlockQueueTracking : public SafeBlockQueue
使用示例
- 示例代码(伪代码)
- SafeBlockQueue的示例代码
#include <thread>
#include <functional>
#include <iostream>
#include "../include/safe_block_queue.h"
using namespace OHOS;
using namespace std;
constexpr int SIZE = 10;
class ProductsLine
{
public:
ProductsLine(int maxSize) : que(maxSize) {}
void Produce()
{
for (int i = 0; i < SIZE + 1; i++) {
que.Push(i);
cout << "Add " << i << " to the line" << endl;
}
}
void Consume()
{
for (int i = 0; i < SIZE + 1; i++) {
int out = que.Pop();
cout << "Get " << out << " from the line" << endl;
}
}
int remains()
{
return que.Size();
}
private:
SafeBlockQueue<int> que;
};
int main()
{
ProductsLine line(SIZE);
thread producer(bind(&ProductsLine::Produce, ref(line)));
this_thread::sleep_for(chrono::milliseconds(1));
thread consumer(bind(&ProductsLine::Consume, ref(line)));
this_thread::sleep_for(chrono::milliseconds(1));
producer.join();
consumer.join();
if (line.remains()==0) {
cout << line.remains() << " elements remains in the queue. Synchronizing success." <<endl;
}
}
- SafeBlockQueueTracking的示例代码
#include <thread>
#include <functional>
#include <iostream>
#include "../include/safe_block_queue.h"
using namespace OHOS;
using namespace std;
constexpr int SIZE = 10;
class ProductsLine
{
public:
ProductsLine(int maxSize) : que(maxSize) {}
void Produce()
{
for (int i = 0; i < SIZE + 1; i++) {
que.Push(i);
cout << "Add " << i << " to the line" << endl;
}
}
void Consume()
{
for (int i = 0; i < SIZE + 1; i++) {
int out = que.Pop();
cout << "Get " << out << " from the line" << endl;
que.OneTaskDone();
}
}
void Join()
{
que.Join();
}
int UnfinishTaskNum()
{
return que.GetUnfinishTaskNum();
}
private:
SafeBlockQueueTracking<int> que;
};
int main()
{
ProductsLine line(SIZE);
thread producer(bind(&ProductsLine::Produce, ref(line)));
this_thread::sleep_for(chrono::milliseconds(1));
thread consumer(bind(&ProductsLine::Consume, ref(line)));
this_thread::sleep_for(chrono::milliseconds(1));
line.Join();
producer.join();
consumer.join();
if (line.UnfinishTaskNum()==0) {
cout << line.UnfinishTaskNum() << " elements remains in the queue. Synchronizing success." <<endl;
}
}
- 测试用例编译运行方法
-
测试用例代码参见base/test/unittest/common/utils_safe_block_queue_test.cpp 和 base/test/unittest/common/utils_safe_block_queue_tracking.cpp
-
使用开发者自测试框架,使用方法参见:开发自测试执行框架-测试用例执行
-
使用以下具体命令以运行
safe_block_queue.h
对应测试用例
run -t UT -tp utils -ts UtilsSafeBlockQueueTest
# or
run -t UT -tp utils -ts UtilsSafeBlockQueueTrackingTest
为了能让大家更好的学习鸿蒙(HarmonyOS NEXT)开发技术,这边特意整理了《鸿蒙开发学习手册》(共计890页),希望对大家有所帮助:https://qr21.cn/FV7h05
《鸿蒙开发学习手册》:
如何快速入门:https://qr21.cn/FV7h05
- 基本概念
- 构建第一个ArkTS应用
- ……
开发基础知识:https://qr21.cn/FV7h05
- 应用基础知识
- 配置文件
- 应用数据管理
- 应用安全管理
- 应用隐私保护
- 三方应用调用管控机制
- 资源分类与访问
- 学习ArkTS语言
- ……
基于ArkTS 开发:https://qr21.cn/FV7h05
- Ability开发
- UI开发
- 公共事件与通知
- 窗口管理
- 媒体
- 安全
- 网络与链接
- 电话服务
- 数据管理
- 后台任务(Background Task)管理
- 设备管理
- 设备使用信息统计
- DFX
- 国际化开发
- 折叠屏系列
- ……
鸿蒙开发面试真题(含参考答案):https://qr18.cn/F781PH
鸿蒙开发面试大盘集篇(共计319页):https://qr18.cn/F781PH
1.项目开发必备面试题
2.性能优化方向
3.架构方向
4.鸿蒙开发系统底层方向
5.鸿蒙音视频开发方向
6.鸿蒙车载开发方向
7.鸿蒙南向开发方向