mirror of
https://mirror.suhoan.cn/https://github.com/EasyTier/EasyTier.git
synced 2025-12-12 12:47:25 +08:00
feat(ohos) build har package (#1440)
Co-authored-by: niuhuan <20847533+niuhuan@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
21
.github/workflows/ohos.yml
vendored
21
.github/workflows/ohos.yml
vendored
@@ -5,6 +5,7 @@ on:
|
|||||||
branches: ["develop", "main", "releases/**"]
|
branches: ["develop", "main", "releases/**"]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["develop", "main"]
|
branches: ["develop", "main"]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
@@ -15,6 +16,16 @@ defaults:
|
|||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
cargo_fmt_check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: fmt check
|
||||||
|
working-directory: ./easytier-contrib/easytier-ohrs
|
||||||
|
run: |
|
||||||
|
bash ../../.github/workflows/install_rust.sh
|
||||||
|
rustup component add rustfmt
|
||||||
|
cargo fmt --all -- --check
|
||||||
pre_job:
|
pre_job:
|
||||||
# continue-on-error: true # Uncomment once integration is finished
|
# continue-on-error: true # Uncomment once integration is finished
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -27,9 +38,9 @@ jobs:
|
|||||||
uses: fkirc/skip-duplicate-actions@v5
|
uses: fkirc/skip-duplicate-actions@v5
|
||||||
with:
|
with:
|
||||||
# All of these options are optional, so you can remove them if you are happy with the defaults
|
# All of these options are optional, so you can remove them if you are happy with the defaults
|
||||||
concurrent_skipping: 'same_content_newer'
|
concurrent_skipping: "same_content_newer"
|
||||||
skip_after_successful_duplicate: 'true'
|
skip_after_successful_duplicate: "true"
|
||||||
cancel_others: 'true'
|
cancel_others: "true"
|
||||||
paths: '["Cargo.toml", "Cargo.lock", "easytier/**", "easytier-contrib/easytier-ohrs/**", ".github/workflows/ohos.yml", ".github/workflows/install_rust.sh"]'
|
paths: '["Cargo.toml", "Cargo.lock", "easytier/**", "easytier-contrib/easytier-ohrs/**", ".github/workflows/ohos.yml", ".github/workflows/install_rust.sh"]'
|
||||||
build-ohos:
|
build-ohos:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -104,11 +115,13 @@ jobs:
|
|||||||
cargo update easytier
|
cargo update easytier
|
||||||
ohrs doctor
|
ohrs doctor
|
||||||
ohrs build --release --arch aarch
|
ohrs build --release --arch aarch
|
||||||
|
ohrs artifact
|
||||||
|
mv package.har easytier-ohrs.har
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: easytier-ohos
|
name: easytier-ohos
|
||||||
path: ./easytier-contrib/easytier-ohrs/dist/arm64-v8a/libeasytier_ohrs.so
|
path: ./easytier-contrib/easytier-ohrs/easytier-ohrs.har
|
||||||
retention-days: 5
|
retention-days: 5
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|||||||
9
easytier-contrib/easytier-ohrs/.gitignore
vendored
Normal file
9
easytier-contrib/easytier-ohrs/.gitignore
vendored
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
dist/
|
||||||
|
target/
|
||||||
|
.DS_Store
|
||||||
|
.idea/
|
||||||
|
package/libs
|
||||||
|
|
||||||
|
*.har
|
||||||
|
|
||||||
|
Cargo.lock
|
||||||
1083
easytier-contrib/easytier-ohrs/Cargo.lock
generated
1083
easytier-contrib/easytier-ohrs/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -9,8 +9,8 @@ crate-type=["cdylib"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
ohos-hilog-binding = {version = "*", features = ["redirect"]}
|
ohos-hilog-binding = {version = "*", features = ["redirect"]}
|
||||||
easytier = { git = "https://github.com/EasyTier/EasyTier.git" }
|
easytier = { git = "https://github.com/EasyTier/EasyTier.git" }
|
||||||
napi-derive-ohos = "1.1.1"
|
napi-derive-ohos = "1.1"
|
||||||
napi-ohos = { version = "1.1.1", default-features = false, features = [
|
napi-ohos = { version = "1.1", default-features = false, features = [
|
||||||
"serde-json",
|
"serde-json",
|
||||||
"latin1",
|
"latin1",
|
||||||
"chrono_date",
|
"chrono_date",
|
||||||
@@ -33,7 +33,7 @@ tracing = "0.1.41"
|
|||||||
uuid = { version = "1.17.0", features = ["v4"] }
|
uuid = { version = "1.17.0", features = ["v4"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
napi-build-ohos = "1.1.1"
|
napi-build-ohos = "1.1"
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
panic = "unwind"
|
panic = "unwind"
|
||||||
debug = true
|
debug = true
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
fn main () {
|
fn main() {
|
||||||
napi_build_ohos::setup();
|
napi_build_ohos::setup();
|
||||||
}
|
}
|
||||||
2
easytier-contrib/easytier-ohrs/package/CHANGELOG.md
Executable file
2
easytier-contrib/easytier-ohrs/package/CHANGELOG.md
Executable file
@@ -0,0 +1,2 @@
|
|||||||
|
# 0.0.1
|
||||||
|
- init package
|
||||||
165
easytier-contrib/easytier-ohrs/package/LICENSE
Executable file
165
easytier-contrib/easytier-ohrs/package/LICENSE
Executable file
@@ -0,0 +1,165 @@
|
|||||||
|
GNU LESSER GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
|
||||||
|
This version of the GNU Lesser General Public License incorporates
|
||||||
|
the terms and conditions of version 3 of the GNU General Public
|
||||||
|
License, supplemented by the additional permissions listed below.
|
||||||
|
|
||||||
|
0. Additional Definitions.
|
||||||
|
|
||||||
|
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||||
|
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||||
|
General Public License.
|
||||||
|
|
||||||
|
"The Library" refers to a covered work governed by this License,
|
||||||
|
other than an Application or a Combined Work as defined below.
|
||||||
|
|
||||||
|
An "Application" is any work that makes use of an interface provided
|
||||||
|
by the Library, but which is not otherwise based on the Library.
|
||||||
|
Defining a subclass of a class defined by the Library is deemed a mode
|
||||||
|
of using an interface provided by the Library.
|
||||||
|
|
||||||
|
A "Combined Work" is a work produced by combining or linking an
|
||||||
|
Application with the Library. The particular version of the Library
|
||||||
|
with which the Combined Work was made is also called the "Linked
|
||||||
|
Version".
|
||||||
|
|
||||||
|
The "Minimal Corresponding Source" for a Combined Work means the
|
||||||
|
Corresponding Source for the Combined Work, excluding any source code
|
||||||
|
for portions of the Combined Work that, considered in isolation, are
|
||||||
|
based on the Application, and not on the Linked Version.
|
||||||
|
|
||||||
|
The "Corresponding Application Code" for a Combined Work means the
|
||||||
|
object code and/or source code for the Application, including any data
|
||||||
|
and utility programs needed for reproducing the Combined Work from the
|
||||||
|
Application, but excluding the System Libraries of the Combined Work.
|
||||||
|
|
||||||
|
1. Exception to Section 3 of the GNU GPL.
|
||||||
|
|
||||||
|
You may convey a covered work under sections 3 and 4 of this License
|
||||||
|
without being bound by section 3 of the GNU GPL.
|
||||||
|
|
||||||
|
2. Conveying Modified Versions.
|
||||||
|
|
||||||
|
If you modify a copy of the Library, and, in your modifications, a
|
||||||
|
facility refers to a function or data to be supplied by an Application
|
||||||
|
that uses the facility (other than as an argument passed when the
|
||||||
|
facility is invoked), then you may convey a copy of the modified
|
||||||
|
version:
|
||||||
|
|
||||||
|
a) under this License, provided that you make a good faith effort to
|
||||||
|
ensure that, in the event an Application does not supply the
|
||||||
|
function or data, the facility still operates, and performs
|
||||||
|
whatever part of its purpose remains meaningful, or
|
||||||
|
|
||||||
|
b) under the GNU GPL, with none of the additional permissions of
|
||||||
|
this License applicable to that copy.
|
||||||
|
|
||||||
|
3. Object Code Incorporating Material from Library Header Files.
|
||||||
|
|
||||||
|
The object code form of an Application may incorporate material from
|
||||||
|
a header file that is part of the Library. You may convey such object
|
||||||
|
code under terms of your choice, provided that, if the incorporated
|
||||||
|
material is not limited to numerical parameters, data structure
|
||||||
|
layouts and accessors, or small macros, inline functions and templates
|
||||||
|
(ten or fewer lines in length), you do both of the following:
|
||||||
|
|
||||||
|
a) Give prominent notice with each copy of the object code that the
|
||||||
|
Library is used in it and that the Library and its use are
|
||||||
|
covered by this License.
|
||||||
|
|
||||||
|
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||||
|
document.
|
||||||
|
|
||||||
|
4. Combined Works.
|
||||||
|
|
||||||
|
You may convey a Combined Work under terms of your choice that,
|
||||||
|
taken together, effectively do not restrict modification of the
|
||||||
|
portions of the Library contained in the Combined Work and reverse
|
||||||
|
engineering for debugging such modifications, if you also do each of
|
||||||
|
the following:
|
||||||
|
|
||||||
|
a) Give prominent notice with each copy of the Combined Work that
|
||||||
|
the Library is used in it and that the Library and its use are
|
||||||
|
covered by this License.
|
||||||
|
|
||||||
|
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||||
|
document.
|
||||||
|
|
||||||
|
c) For a Combined Work that displays copyright notices during
|
||||||
|
execution, include the copyright notice for the Library among
|
||||||
|
these notices, as well as a reference directing the user to the
|
||||||
|
copies of the GNU GPL and this license document.
|
||||||
|
|
||||||
|
d) Do one of the following:
|
||||||
|
|
||||||
|
0) Convey the Minimal Corresponding Source under the terms of this
|
||||||
|
License, and the Corresponding Application Code in a form
|
||||||
|
suitable for, and under terms that permit, the user to
|
||||||
|
recombine or relink the Application with a modified version of
|
||||||
|
the Linked Version to produce a modified Combined Work, in the
|
||||||
|
manner specified by section 6 of the GNU GPL for conveying
|
||||||
|
Corresponding Source.
|
||||||
|
|
||||||
|
1) Use a suitable shared library mechanism for linking with the
|
||||||
|
Library. A suitable mechanism is one that (a) uses at run time
|
||||||
|
a copy of the Library already present on the user's computer
|
||||||
|
system, and (b) will operate properly with a modified version
|
||||||
|
of the Library that is interface-compatible with the Linked
|
||||||
|
Version.
|
||||||
|
|
||||||
|
e) Provide Installation Information, but only if you would otherwise
|
||||||
|
be required to provide such information under section 6 of the
|
||||||
|
GNU GPL, and only to the extent that such information is
|
||||||
|
necessary to install and execute a modified version of the
|
||||||
|
Combined Work produced by recombining or relinking the
|
||||||
|
Application with a modified version of the Linked Version. (If
|
||||||
|
you use option 4d0, the Installation Information must accompany
|
||||||
|
the Minimal Corresponding Source and Corresponding Application
|
||||||
|
Code. If you use option 4d1, you must provide the Installation
|
||||||
|
Information in the manner specified by section 6 of the GNU GPL
|
||||||
|
for conveying Corresponding Source.)
|
||||||
|
|
||||||
|
5. Combined Libraries.
|
||||||
|
|
||||||
|
You may place library facilities that are a work based on the
|
||||||
|
Library side by side in a single library together with other library
|
||||||
|
facilities that are not Applications and are not covered by this
|
||||||
|
License, and convey such a combined library under terms of your
|
||||||
|
choice, if you do both of the following:
|
||||||
|
|
||||||
|
a) Accompany the combined library with a copy of the same work based
|
||||||
|
on the Library, uncombined with any other library facilities,
|
||||||
|
conveyed under the terms of this License.
|
||||||
|
|
||||||
|
b) Give prominent notice with the combined library that part of it
|
||||||
|
is a work based on the Library, and explaining where to find the
|
||||||
|
accompanying uncombined form of the same work.
|
||||||
|
|
||||||
|
6. Revised Versions of the GNU Lesser General Public License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the GNU Lesser General Public License from time to time. Such new
|
||||||
|
versions will be similar in spirit to the present version, but may
|
||||||
|
differ in detail to address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Library as you received it specifies that a certain numbered version
|
||||||
|
of the GNU Lesser General Public License "or any later version"
|
||||||
|
applies to it, you have the option of following the terms and
|
||||||
|
conditions either of that published version or of any later version
|
||||||
|
published by the Free Software Foundation. If the Library as you
|
||||||
|
received it does not specify a version number of the GNU Lesser
|
||||||
|
General Public License, you may choose any version of the GNU Lesser
|
||||||
|
General Public License ever published by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Library as you received it specifies that a proxy can decide
|
||||||
|
whether future versions of the GNU Lesser General Public License shall
|
||||||
|
apply, that proxy's public statement of acceptance of any version is
|
||||||
|
permanent authorization for you to choose that version for the
|
||||||
|
Library.
|
||||||
21
easytier-contrib/easytier-ohrs/package/README.md
Executable file
21
easytier-contrib/easytier-ohrs/package/README.md
Executable file
@@ -0,0 +1,21 @@
|
|||||||
|
# `easytier-ohrs`
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
use `ohpm` to install package.
|
||||||
|
|
||||||
|
```shell
|
||||||
|
ohpm install easytier-ohrs
|
||||||
|
```
|
||||||
|
|
||||||
|
## API
|
||||||
|
|
||||||
|
```ts
|
||||||
|
// todo
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
```ts
|
||||||
|
// todo
|
||||||
|
```
|
||||||
4
easytier-contrib/easytier-ohrs/package/index.ets
Executable file
4
easytier-contrib/easytier-ohrs/package/index.ets
Executable file
@@ -0,0 +1,4 @@
|
|||||||
|
import * as api from "libeasytier_ohrs.so";
|
||||||
|
|
||||||
|
export * from 'libeasytier_ohrs.so';
|
||||||
|
export default api;
|
||||||
10
easytier-contrib/easytier-ohrs/package/oh-package.json5
Executable file
10
easytier-contrib/easytier-ohrs/package/oh-package.json5
Executable file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"license": "LGPL-3.0",
|
||||||
|
"author": "easytier",
|
||||||
|
"name": "easytier-ohrs",
|
||||||
|
"description": "",
|
||||||
|
"main": "index.ets",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"types": "libs/index.d.ts",
|
||||||
|
"dependencies": {}
|
||||||
|
}
|
||||||
7
easytier-contrib/easytier-ohrs/package/src/main/module.json5
Executable file
7
easytier-contrib/easytier-ohrs/package/src/main/module.json5
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"module": {
|
||||||
|
"name": "easytier-ohrs",
|
||||||
|
"type": "har",
|
||||||
|
"deviceTypes": ["default", "tablet", "2in1"]
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -18,23 +18,18 @@ pub struct KeyValuePair {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[napi]
|
#[napi]
|
||||||
pub fn set_tun_fd(
|
pub fn set_tun_fd(inst_id: String, fd: i32) -> bool {
|
||||||
inst_id: String,
|
|
||||||
fd: i32,
|
|
||||||
) -> bool {
|
|
||||||
match Uuid::try_parse(&inst_id) {
|
match Uuid::try_parse(&inst_id) {
|
||||||
Ok(uuid) => {
|
Ok(uuid) => match INSTANCE_MANAGER.set_tun_fd(&uuid, fd) {
|
||||||
match INSTANCE_MANAGER.set_tun_fd(&uuid, fd) {
|
Ok(_) => {
|
||||||
Ok(_) => {
|
hilog_debug!("[Rust] set tun fd {} to {}.", fd, inst_id);
|
||||||
hilog_debug!("[Rust] set tun fd {} to {}.", fd, inst_id);
|
true
|
||||||
true
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
hilog_error!("[Rust] cant set tun fd {} to {}. {}", fd, inst_id, e);
|
|
||||||
false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
Err(e) => {
|
||||||
|
hilog_error!("[Rust] cant set tun fd {} to {}. {}", fd, inst_id, e);
|
||||||
|
false
|
||||||
|
}
|
||||||
|
},
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
hilog_error!("[Rust] cant covert {} to uuid. {}", inst_id, e);
|
hilog_error!("[Rust] cant covert {} to uuid. {}", inst_id, e);
|
||||||
false
|
false
|
||||||
@@ -45,9 +40,7 @@ pub fn set_tun_fd(
|
|||||||
#[napi]
|
#[napi]
|
||||||
pub fn parse_config(cfg_str: String) -> bool {
|
pub fn parse_config(cfg_str: String) -> bool {
|
||||||
match TomlConfigLoader::new_from_str(&cfg_str) {
|
match TomlConfigLoader::new_from_str(&cfg_str) {
|
||||||
Ok(_) => {
|
Ok(_) => true,
|
||||||
true
|
|
||||||
}
|
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
hilog_error!("[Rust] parse config failed {}", e);
|
hilog_error!("[Rust] parse config failed {}", e);
|
||||||
false
|
false
|
||||||
@@ -134,15 +127,10 @@ pub fn collect_running_network() -> Vec<String> {
|
|||||||
#[napi]
|
#[napi]
|
||||||
pub fn is_running_network(inst_id: String) -> bool {
|
pub fn is_running_network(inst_id: String) -> bool {
|
||||||
match Uuid::try_parse(&inst_id) {
|
match Uuid::try_parse(&inst_id) {
|
||||||
Ok(uuid) => {
|
Ok(uuid) => INSTANCE_MANAGER.list_network_instance_ids().contains(&uuid),
|
||||||
INSTANCE_MANAGER
|
|
||||||
.list_network_instance_ids()
|
|
||||||
.contains(&uuid)
|
|
||||||
}
|
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
hilog_error!("[Rust] cant covert {} to uuid. {}", inst_id, e);
|
hilog_error!("[Rust] cant covert {} to uuid. {}", inst_id, e);
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
|
use napi_derive_ohos::napi;
|
||||||
|
use ohos_hilog_binding::{
|
||||||
|
LogOptions, hilog_debug, hilog_error, hilog_info, hilog_warn, set_global_options,
|
||||||
|
};
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::panic;
|
use std::panic;
|
||||||
use napi_derive_ohos::napi;
|
|
||||||
use ohos_hilog_binding::{hilog_debug, hilog_error, hilog_info, hilog_warn, set_global_options, LogOptions};
|
|
||||||
use tracing::{Event, Subscriber};
|
use tracing::{Event, Subscriber};
|
||||||
use tracing_core::Level;
|
use tracing_core::Level;
|
||||||
use tracing_subscriber::layer::{Context, Layer};
|
use tracing_subscriber::layer::{Context, Layer};
|
||||||
@@ -20,12 +22,9 @@ pub fn init_panic_hook() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[napi]
|
#[napi]
|
||||||
pub fn hilog_global_options(
|
pub fn hilog_global_options(domain: u32, tag: String) {
|
||||||
domain: u32,
|
|
||||||
tag: String,
|
|
||||||
) {
|
|
||||||
ohos_hilog_binding::forward_stdio_to_hilog();
|
ohos_hilog_binding::forward_stdio_to_hilog();
|
||||||
set_global_options(LogOptions{
|
set_global_options(LogOptions {
|
||||||
domain,
|
domain,
|
||||||
tag: Box::leak(tag.clone().into_boxed_str()),
|
tag: Box::leak(tag.clone().into_boxed_str()),
|
||||||
})
|
})
|
||||||
@@ -34,11 +33,9 @@ pub fn hilog_global_options(
|
|||||||
#[napi]
|
#[napi]
|
||||||
pub fn init_tracing_subscriber() {
|
pub fn init_tracing_subscriber() {
|
||||||
tracing_subscriber::registry()
|
tracing_subscriber::registry()
|
||||||
.with(
|
.with(CallbackLayer {
|
||||||
CallbackLayer {
|
callback: Box::new(tracing_callback),
|
||||||
callback: Box::new(tracing_callback),
|
})
|
||||||
}
|
|
||||||
)
|
|
||||||
.init();
|
.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -93,6 +90,7 @@ impl<'a> tracing::field::Visit for FieldCollector<'a> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn record_debug(&mut self, field: &tracing::field::Field, value: &dyn std::fmt::Debug) {
|
fn record_debug(&mut self, field: &tracing::field::Field, value: &dyn std::fmt::Debug) {
|
||||||
self.0.insert(field.name().to_string(), format!("{:?}", value));
|
self.0
|
||||||
|
.insert(field.name().to_string(), format!("{:?}", value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user