Skip to content

Commit fa55445

Browse files
authoredMay 22, 2024··
Merge pull request #3334 from matrix-org/valere/fix_crypto_binding_apple_script
crypto: Apple Crypto Bindings | Fix crypto xcframework script
2 parents d7a8877 + b430d95 commit fa55445

File tree

4 files changed

+123
-43
lines changed

4 files changed

+123
-43
lines changed
 

‎.github/workflows/bindings_ci.yml

+39
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,42 @@ jobs:
116116
with:
117117
use_rust_sdk: "." # use local checkout
118118
use_complement_crypto: "MATCHING_BRANCH"
119+
120+
test-crypto-apple-framework-generation:
121+
name: Generate Crypto FFI Apple XCFramework
122+
runs-on: macos-12
123+
if: github.event_name == 'push' || !github.event.pull_request.draft
124+
125+
steps:
126+
- name: Checkout
127+
uses: actions/checkout@v3
128+
129+
# install protoc in case we end up rebuilding opentelemetry-proto
130+
- name: Install protoc
131+
uses: taiki-e/install-action@v2
132+
with:
133+
tool: protoc@3.20.3
134+
135+
- name: Install Rust
136+
uses: dtolnay/rust-toolchain@stable
137+
138+
- name: Add rust targets
139+
run: |
140+
rustup target add aarch64-apple-ios
141+
142+
# Cargo config can screw with caching and is only used for alias config
143+
# and extra lints, which we don't care about here
144+
- name: Delete cargo config
145+
run: rm .cargo/config.toml
146+
147+
- name: Load cache
148+
uses: Swatinem/rust-cache@v2
149+
with:
150+
save-if: ${{ github.ref == 'refs/heads/main' }}
151+
152+
- name: Run the Build Framework script
153+
run: ./bindings/apple/build_crypto_xcframework.sh -i
154+
155+
- name: Is XCFramework generated?
156+
if: ${{ hashFiles('generated/MatrixSDKCryptoFFI.zip') != '' }}
157+
run: echo "XCFramework exists"

‎bindings/apple/build_crypto_xcframework.sh

+75-42
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
#!/usr/bin/env bash
22
set -eEu
33

4+
helpFunction() {
5+
echo ""
6+
echo "Usage: $0 -only_ios"
7+
echo -e "\t-i Option to build only for iOS. Default will build for all targets."
8+
exit 1
9+
}
10+
11+
only_ios='false'
12+
13+
while getopts ':i' 'opt'; do
14+
case ${opt} in
15+
'i') only_ios='true' ;;
16+
?) helpFunction ;;
17+
esac
18+
done
19+
420
cd "$(dirname "$0")"
521

622
# Path to the repo root
@@ -22,52 +38,63 @@ TARGET_CRATE=matrix-sdk-crypto-ffi
2238
# Required by olm-sys crate
2339
export IOS_SDK_PATH=`xcrun --show-sdk-path --sdk iphoneos`
2440

25-
# iOS
26-
echo -e "Building for iOS [1/5]"
27-
cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target "aarch64-apple-ios"
28-
29-
# MacOS
30-
echo -e "\nBuilding for macOS (Apple Silicon) [2/5]"
31-
cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target "aarch64-apple-darwin"
32-
echo -e "\nBuilding for macOS (Intel) [3/5]"
33-
cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target "x86_64-apple-darwin"
34-
35-
# iOS Simulator
36-
echo -e "\nBuilding for iOS Simulator (Apple Silicon) [4/5]"
37-
cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target "aarch64-apple-ios-sim"
38-
echo -e "\nBuilding for iOS Simulator (Intel) [5/5]"
39-
cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target "x86_64-apple-ios"
41+
if ${only_ios}; then
42+
# iOS
43+
echo -e "Building only for iOS"
44+
cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target "aarch64-apple-ios"
45+
else
46+
# iOS
47+
echo -e "Building for iOS [1/5]"
48+
cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target "aarch64-apple-ios"
49+
50+
# MacOS
51+
echo -e "\nBuilding for macOS (Apple Silicon) [2/5]"
52+
cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target "aarch64-apple-darwin"
53+
echo -e "\nBuilding for macOS (Intel) [3/5]"
54+
cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target "x86_64-apple-darwin"
55+
56+
# iOS Simulator
57+
echo -e "\nBuilding for iOS Simulator (Apple Silicon) [4/5]"
58+
cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target "aarch64-apple-ios-sim"
59+
echo -e "\nBuilding for iOS Simulator (Intel) [5/5]"
60+
cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target "x86_64-apple-ios"
61+
fi
4062

4163
echo -e "\nCreating XCFramework"
4264
# Lipo together the libraries for the same platform
4365

44-
# MacOS
45-
lipo -create \
46-
"${TARGET_DIR}/x86_64-apple-darwin/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
47-
"${TARGET_DIR}/aarch64-apple-darwin/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
48-
-output "${GENERATED_DIR}/macos/libmatrix_sdk_crypto_ffi.a"
49-
50-
# iOS Simulator
51-
lipo -create \
52-
"${TARGET_DIR}/x86_64-apple-ios/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
53-
"${TARGET_DIR}/aarch64-apple-ios-sim/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
54-
-output "${GENERATED_DIR}/simulator/libmatrix_sdk_crypto_ffi.a"
66+
if ! ${only_ios}; then
67+
echo "Lipo together the libraries for the same platform"
68+
# MacOS
69+
lipo -create \
70+
"${TARGET_DIR}/x86_64-apple-darwin/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
71+
"${TARGET_DIR}/aarch64-apple-darwin/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
72+
-output "${GENERATED_DIR}/macos/libmatrix_sdk_crypto_ffi.a"
73+
74+
# iOS Simulator
75+
lipo -create \
76+
"${TARGET_DIR}/x86_64-apple-ios/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
77+
"${TARGET_DIR}/aarch64-apple-ios-sim/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
78+
-output "${GENERATED_DIR}/simulator/libmatrix_sdk_crypto_ffi.a"
79+
fi
5580

5681
# Generate uniffi files
57-
cargo uniffi-bindgen generate \
82+
cd ../matrix-sdk-crypto-ffi && cargo run --bin matrix_sdk_crypto_ffi generate \
5883
--language swift \
59-
--lib-file "${TARGET_DIR}/aarch64-apple-ios-sim/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
60-
--config "${SRC_ROOT}/bindings/${TARGET_CRATE}/uniffi.toml" \
61-
--out-dir ${GENERATED_DIR} \
62-
"${SRC_ROOT}/bindings/${TARGET_CRATE}/src/olm.udl"
84+
--library "${TARGET_DIR}/aarch64-apple-ios/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
85+
--out-dir ${GENERATED_DIR}
6386

6487
# Move headers to the right place
6588
HEADERS_DIR=${GENERATED_DIR}/headers
6689
mkdir -p ${HEADERS_DIR}
6790
mv ${GENERATED_DIR}/*.h ${HEADERS_DIR}
6891

69-
# Rename and move modulemap to the right place
70-
mv ${GENERATED_DIR}/*.modulemap ${HEADERS_DIR}/module.modulemap
92+
# Rename and merge the modulemap files into a single file to the right place
93+
for f in ${GENERATED_DIR}/*.modulemap
94+
do
95+
cat $f; echo;
96+
done > ${HEADERS_DIR}/module.modulemap
97+
rm ${GENERATED_DIR}/*.modulemap
7198

7299
# Move source files to the right place
73100
SWIFT_DIR="${GENERATED_DIR}/Sources"
@@ -77,15 +104,21 @@ mv ${GENERATED_DIR}/*.swift ${SWIFT_DIR}
77104
# Build the xcframework
78105

79106
if [ -d "${GENERATED_DIR}/MatrixSDKCryptoFFI.xcframework" ]; then rm -rf "${GENERATED_DIR}/MatrixSDKCryptoFFI.xcframework"; fi
80-
81-
xcodebuild -create-xcframework \
82-
-library "${TARGET_DIR}/aarch64-apple-ios/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
83-
-headers ${HEADERS_DIR} \
84-
-library "${GENERATED_DIR}/macos/libmatrix_sdk_crypto_ffi.a" \
85-
-headers ${HEADERS_DIR} \
86-
-library "${GENERATED_DIR}/simulator/libmatrix_sdk_crypto_ffi.a" \
87-
-headers ${HEADERS_DIR} \
88-
-output "${GENERATED_DIR}/MatrixSDKCryptoFFI.xcframework"
107+
if ${only_ios}; then
108+
xcodebuild -create-xcframework \
109+
-library "${TARGET_DIR}/aarch64-apple-ios/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
110+
-headers ${HEADERS_DIR} \
111+
-output "${GENERATED_DIR}/MatrixSDKCryptoFFI.xcframework"
112+
else
113+
xcodebuild -create-xcframework \
114+
-library "${TARGET_DIR}/aarch64-apple-ios/${REL_TYPE_DIR}/libmatrix_sdk_crypto_ffi.a" \
115+
-headers ${HEADERS_DIR} \
116+
-library "${GENERATED_DIR}/macos/libmatrix_sdk_crypto_ffi.a" \
117+
-headers ${HEADERS_DIR} \
118+
-library "${GENERATED_DIR}/simulator/libmatrix_sdk_crypto_ffi.a" \
119+
-headers ${HEADERS_DIR} \
120+
-output "${GENERATED_DIR}/MatrixSDKCryptoFFI.xcframework"
121+
fi
89122

90123
# Cleanup
91124
if [ -d "${GENERATED_DIR}/macos" ]; then rm -rf "${GENERATED_DIR}/macos"; fi

‎bindings/matrix-sdk-crypto-ffi/Cargo.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ publish = false
1212
[lib]
1313
crate-type = ["cdylib", "staticlib"]
1414

15+
[[bin]]
16+
name = "matrix_sdk_crypto_ffi"
17+
path = "uniffi-bindgen.rs"
18+
1519
[features]
1620
default = ["bundled-sqlite"]
1721
bundled-sqlite = ["matrix-sdk-sqlite/bundled"]
@@ -31,7 +35,7 @@ sha2 = { workspace = true }
3135
thiserror = { workspace = true }
3236
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
3337
# keep in sync with uniffi dependency in matrix-sdk-ffi, and uniffi_bindgen in ffi CI job
34-
uniffi = { workspace = true }
38+
uniffi = { workspace = true , features = ["cli"]}
3539
vodozemac = { workspace = true }
3640
zeroize = { workspace = true, features = ["zeroize_derive"] }
3741

@@ -54,6 +58,7 @@ features = ["rt-multi-thread"]
5458

5559
[build-dependencies]
5660
vergen = { version = "8.2.5", features = ["build", "git", "gitcl"] }
61+
uniffi = { workspace = true, features = ["build"] }
5762

5863
[dev-dependencies]
5964
tempfile = "3.8.0"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
uniffi::uniffi_bindgen_main()
3+
}

0 commit comments

Comments
 (0)
Please sign in to comment.