* Bump the RustSDK to v25.03.11 * Replace oidc login prompt with nil following the changes from https://github.com/matrix-org/matrix-rust-sdk/pull/4761 ``` /// * `prompt` - The desired user experience in the web UI. No value means /// that the user wishes to login into an existing account, and a value of /// `Create` means that the user wishes to register a new account. ``` * Fix trailing closure warnings * Update the client proxy after making `getNotificationSettings()` and `cachedAvatarUrl()` async (they used to be blocking on the rust side). * Move `Room.isEncrypted` to the info publisher and manually update the encryption state when creating the room. * Bump the SDK again to v25.03.12 - This introduces a new way to configure the tokio runtime that we can use to have extensions use less memory - introduce a new Target struct that takes care of setting up rust services (tracing and tokio) for our various targets - cleanup MXLog and friends * Address PR comments * Bump the SDK again, switch back to using `.consent` as the OIDC login prompt (which was reintroduced in matrix-org/matrix-rust-sdk/pull/4791)
43 lines
1.6 KiB
Swift
43 lines
1.6 KiB
Swift
//
|
|
// Copyright 2022-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import MatrixRustSDK
|
|
|
|
enum Target: String {
|
|
case mainApp = "elementx"
|
|
case nse
|
|
case shareExtension = "shareextension"
|
|
case tests
|
|
|
|
private static var isConfigured = false
|
|
|
|
func configure(logLevel: LogLevel) {
|
|
guard !Self.isConfigured else {
|
|
return
|
|
}
|
|
|
|
switch self {
|
|
case .mainApp:
|
|
let tracingConfiguration = Tracing.buildConfiguration(logLevel: logLevel, currentTarget: rawValue, filePrefix: nil)
|
|
initPlatform(config: tracingConfiguration, useLightweightTokioRuntime: false)
|
|
case .nse:
|
|
let tracingConfiguration = Tracing.buildConfiguration(logLevel: logLevel, currentTarget: rawValue, filePrefix: rawValue)
|
|
initPlatform(config: tracingConfiguration, useLightweightTokioRuntime: true)
|
|
case .shareExtension:
|
|
let tracingConfiguration = Tracing.buildConfiguration(logLevel: logLevel, currentTarget: rawValue, filePrefix: rawValue)
|
|
initPlatform(config: tracingConfiguration, useLightweightTokioRuntime: true)
|
|
case .tests:
|
|
let tracingConfiguration = Tracing.buildConfiguration(logLevel: logLevel, currentTarget: rawValue, filePrefix: rawValue)
|
|
initPlatform(config: tracingConfiguration, useLightweightTokioRuntime: false)
|
|
}
|
|
|
|
MXLog.configure(currentTarget: rawValue)
|
|
|
|
Self.isConfigured = true
|
|
}
|
|
}
|