PETAce-Network defines abstract network communication interfaces. It is one of the many components in the framework PETAce.
Currently, PETAce-Network instantiate the network communication interface using the socket protocol and client-side network agent based on gRPC.
System | Toolchain |
---|---|
Linux | Clang++ (>= 5.0) or GNU G++ (>= 5.5), CMake (>= 3.15) |
Optional dependency | Tested version | Use |
---|---|---|
GoogleTest | 1.12.1 | For running tests |
gRPC | 1.62.1 | For agent-assisted network |
We assume that all commands presented below are executed in the root directory of PETAce-Network.
To build PETAce-Network library (optionally with test and example):
cmake -S . -B build -DNETWORK_BUILD_TEST=ON -DNETWORK_BUILD_EXAMPLE=ON
cmake --build build
PETAce-Network supports network agents based on gRPC.
Here we provide the following scripts to help users install gRPC.
Assume that gRPC is cloned into the directory ${gRPC}
and will be installed to the directory ${gRPC_INSTALL_DIR}
.
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=${gRPC_INSTALL_DIR} -DgRPC_INSTALL=ON -DgRPC_BUILD_TESTS=OFF -DgRPC_SSL_PROVIDER=package
cmake --build ${gRPC}/build -j
cmake --build ${gRPC}/build --target install
Then, build PETAce-Network library with extra configuration(optionally with test and example):
cmake -B build -S . -DCMAKE_PREFIX_PATH=${gRPC_INSTALL_DIR} -DNETWORK_BUILD_AGENT=ON -DNETWORK_BUILD_TEST=ON -DNETWORK_BUILD_EXAMPLE=ON
cmake --build build
Output binaries can be found in build/lib/
and build/bin/
directories.
Compile Options | Values | Default | Description |
---|---|---|---|
CMAKE_BUILD_TYPE |
Release/Debug | Release | Debug mode decreases run-time performance. |
NETWORK_BUILD_SHARED_LIBS |
ON/OFF | OFF | Build a shared library if set to ON. |
NETWORK_BUILD_EXAMPLE |
ON/OFF | ON | Build C++ example if set to ON. |
NETWORK_BUILD_TEST |
ON/OFF | ON | Build C++ test if set to ON. |
NETWORK_BUILD_DEPS |
ON/OFF | ON | Download and build unmet dependencies if set to ON. |
NETWORK_BUILD_AGENT |
ON/OFF | OFF | Build agent-assisted network if set to ON. |
Here we give a simple example to run our socket protocol.
To run as Party A:
./build/bin/network_example 127.0.0.1 8899 127.0.0.1 8890
To run as Party B:
./build/bin/network_example 127.0.0.1 8890 127.0.0.1 8899
Please check Contributing for more details.
Please check Code of Conduct for more details.
This project is licensed under the Apache-2.0 License.
To cite PETAce in academic papers, please use the following BibTeX entries.
@misc{petace,
title = {PETAce (release 0.3.0)},
howpublished = {\url{https://github.com/tiktok-privacy-innovation/PETAce}},
month = Jun,
year = 2024,
note = {TikTok Pte. Ltd.},
key = {PETAce}
}