diff --git a/thirdparty/pugixml/HPKBUILD b/thirdparty/pugixml/HPKBUILD new file mode 100755 index 0000000000000000000000000000000000000000..11292556650ac6d55a240a40e18610be913cf8d6 --- /dev/null +++ b/thirdparty/pugixml/HPKBUILD @@ -0,0 +1,46 @@ +# Contributor: huangminzhong +# Maintainer: huangminzhong +pkgname=pugixml +pkgver=v1.13 +pkgrel=0 +pkgdesc="" +url="" +archs=("armeabi-v7a" "arm64-v8a") +license=("MIT") +depends=() +makedepends=() +install= +source="https://github.com/zeux/$pkgname/archive/refs/tags/$pkgver.tar.gz" + +downloadpackage=true +autounpack=true + +builddir=$pkgname-${pkgver:1} +packagename=$builddir.tar.gz + +prepare() { + mkdir -p $builddir/$ARCH-build +} + +build() { + cd $builddir + ${OHOS_SDK}/native/build-tools/cmake/bin/cmake "$@" -DOHOS_ARCH=$ARCH -B$ARCH-build -S./ -L > `pwd`/$ARCH-build/build.log 2>&1 + make -j4 -C $ARCH-build >> `pwd`/$ARCH-build/build.log 2>&1 + ret=$? + cd $OLDPWD + return $ret +} + +package() { + cd "$builddir" + make -C $ARCH-build install >> `pwd`/$ARCH-build/build.log 2>&1 + cd $OLDPWD +} + +check() { + echo "The test must be on an OpenHarmony device!" +} + +cleanbuild(){ + rm -rf ${PWD}/$builddir #${PWD}/$packagename +} diff --git a/thirdparty/pugixml/README.OpenSource b/thirdparty/pugixml/README.OpenSource new file mode 100755 index 0000000000000000000000000000000000000000..5b1d5ebcd243955e756c8fbb9b87bb4f041d8ccb --- /dev/null +++ b/thirdparty/pugixml/README.OpenSource @@ -0,0 +1,11 @@ +[ + { + "Name": "pugixml", + "License": "MIT License", + "License File": "LICENSE.md", + "Version Number": "v1.13", + "Owner": "huangminzhong2@huawei.com", + "Upstream URL": "https://github.com/zeux/pugixml", + "Description": "pugixml is a C++ XML processing library" + } +] diff --git a/thirdparty/pugixml/README_zh.md b/thirdparty/pugixml/README_zh.md new file mode 100755 index 0000000000000000000000000000000000000000..8edca4005eb068f65c126a18a3fc4a674a262f5e --- /dev/null +++ b/thirdparty/pugixml/README_zh.md @@ -0,0 +1,17 @@ +# pugixml三方库说明 + +## 功能简介 + +pugixml是一个C++XML处理库。 + +## 使用约束 + +- IDE版本:DevEco Studio 3.1 Beta2 +- SDK版本:ohos_sdk_public 3.2.11.9 (API Version 9 Release) +- 三方库版本:v1.13 +- 当前适配的功能:支持xml文件解析 +- [MIT License](https://github.com/zeux/pugixml/blob/master/LICENSE.md) + +## 集成方式 + +- [应用hap包集成](docs/hap_integrate.md) diff --git a/thirdparty/pugixml/SHA512SUM b/thirdparty/pugixml/SHA512SUM new file mode 100755 index 0000000000000000000000000000000000000000..fb3389ac9ed4e5cfff0f3be6cd5be32c92cfe9e1 --- /dev/null +++ b/thirdparty/pugixml/SHA512SUM @@ -0,0 +1 @@ +5ff95a1ce06df01a72e736be4684c097dc656b2fc330b7fe6bf62601aca5c72edd0f40e51a643ce92f4fe5ba632b0b9fb57fbb1524aebcdd70441adeedec4a86 pugixml-1.13.tar.gz \ No newline at end of file diff --git a/thirdparty/pugixml/docs/hap_integrate.md b/thirdparty/pugixml/docs/hap_integrate.md new file mode 100755 index 0000000000000000000000000000000000000000..33037deed55ff33e3f59e51eebb4c3b56f0780ff --- /dev/null +++ b/thirdparty/pugixml/docs/hap_integrate.md @@ -0,0 +1,91 @@ +# pugixml集成到应用hap + +本库是在RK3568开发板上基于OpenHarmony3.2 Release版本的镜像验证的,如果是从未使用过RK3568,可以先查看[润和RK3568开发板标准系统快速上手](https://gitee.com/openharmony-sig/knowledge_demo_temp/tree/master/docs/rk3568_helloworld)。 + +## 开发环境 + +- ubuntu20.04 +- [OpenHarmony3.2Release镜像](https://gitee.com/link?target=https%3A%2F%2Frepo.huaweicloud.com%2Fopenharmony%2Fos%2F3.2-Release%2Fdayu200_standard_arm32.tar.gz) +- [ohos_sdk_public 3.2.11.9 (API Version 9 Release)](https://gitee.com/link?target=https%3A%2F%2Frepo.huaweicloud.com%2Fopenharmony%2Fos%2F3.2-Release%2Fohos-sdk-windows_linux-public.tar.gz) +- [DevEco Studio 3.1 Beta2](https://gitee.com/link?target=https%3A%2F%2Fcontentcenter-vali-drcn.dbankcdn.cn%2Fpvt_2%2FDeveloperAlliance_package_901_9%2Ff3%2Fv3%2FuJyuq3syQ2ak4hE1QZmAug%2Fdevecostudio-windows-3.1.0.400.zip%3FHW-CC-KV%3DV1%26HW-CC-Date%3D20230408T013335Z%26HW-CC-Expire%3D315360000%26HW-CC-Sign%3D96262721EDC9B34E6F62E66884AB7AE2A94C2A7B8C28D6F7FC891F46EB211A70) +- [准备三方库构建环境](../../../tools/README.md#编译环境准备) +- [准备三方库测试环境](../../../tools/README.md#ci环境准备) + +## 编译三方库 + +- 下载本仓库 + + ```shell + git clone https://gitee.com/openharmony-sig/tpc_c_cplusplus.git --depth=1 + ``` + +- 三方库目录结构 + + ```shell + tpc_c_cplusplus/thirdparty/pugixml #三方库pugixml的目录结构如下 + ├── docs #三方库相关文档的文件夹 + ├── HPKBUILD #构建脚本 + ├── SHA512SUM #三方库校验文件 + ├── README.OpenSource #说明三方库源码的下载地址,版本,license等信息 + ├── README_zh.md + ``` + +- 将pugixml拷贝至tools/main目录下 + + ```shell + cd tpc_c_cplusplus + cp thirdparty/pugixml tools/main -rf + ``` + +- 在tools目录下编译三方库 + + 编译环境的搭建参考[准备三方库构建环境](../../../tools/README.md#编译环境准备) + + ```shell + cd tools + ./build.sh pugixml + ``` + +- 三方库头文件及生成的库 + + 在tools目录下会生成usr目录,该目录下存在已编译完成的32位和64位三方库 + + ```shell + pugixml/arm64-v8a pugixml/armeabi-v7a + ``` + +- [测试三方库](#测试三方库) + +## 应用中使用三方库 + +- 在IDE的cpp目录下新增thirdparty目录,将编译生成的库拷贝到该目录下,如下图所示 + +  ![thirdparty_install_dir](../../thirdparty_template/docs/pic/xxx_install_dir.png) + + 其中`xxx`代表三方库名,即为`pugixml` + +- 在最外层(cpp目录下)CMakeLists.txt中添加如下语句 + + ```shell + #将三方库加入工程中 + target_link_libraries(entry PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/pugixml/${OHOS_ARCH}/lib/libpugixml.a) + #将三方库的头文件加入工程中 + target_include_directories(entry PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/pugixml/${OHOS_ARCH}/include) + ``` + + ![pugixml_usage](../../thirdparty_template/docs/pic/xxx_usage.png) + +## 测试三方库 + +三方库的测试使用原库自带的测试用例来做测试,[准备三方库测试环境](../../../tools/README.md#ci环境准备) + +进入到构建目录执行ctest运行测试用例(arm64-v8a-build为构建64位的目录,armeabi-v7a-build为构建32位的目录) + + ![pugixml_test](pic/pugixml_test.png) + +## 参考资料 + +- [润和RK3568开发板标准系统快速上手](https://gitee.com/openharmony-sig/knowledge_demo_temp/tree/master/docs/rk3568_helloworld) +- [OpenHarmony三方库地址](https://gitee.com/openharmony-tpc) +- [OpenHarmony知识体系](https://gitee.com/openharmony-sig/knowledge) +- [通过DevEco Studio开发一个NAPI工程](https://gitee.com/openharmony-sig/knowledge_demo_temp/blob/master/docs/napi_study/docs/hello_napi.md) diff --git a/thirdparty/pugixml/docs/pic/pugixml_test.png b/thirdparty/pugixml/docs/pic/pugixml_test.png new file mode 100755 index 0000000000000000000000000000000000000000..c1bfa0f8610f489e9035600c03f8984de1fe7b8a Binary files /dev/null and b/thirdparty/pugixml/docs/pic/pugixml_test.png differ