All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.realm.internal.interop.Callback.kt Maven / Gradle / Ivy

/*
 * Copyright 2020 Realm Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.realm.internal.interop

import io.realm.mongodb.SyncException
import kotlinx.coroutines.channels.Channel

// TODO Could be replace by lambda. See realm_app_config_new networkTransportFactory for example.
interface Callback {
    fun onChange(change: NativePointer)
}

// Callback from asynchronous sync methods. Use AppCallback for void callbacks and
// AppCallback for callbacks with native pointers to core objects.
interface AppCallback {
    fun onSuccess(result: T)
    fun onError(throwable: Throwable)
}

fun  channelResultCallback(
    channel: Channel>,
    success: (T) -> R
): AppCallback {
    return object : AppCallback {
        override fun onSuccess(result: T) {
            channel.trySend(Result.success(success.invoke(result)))
        }

        override fun onError(throwable: Throwable) {
            channel.trySend(Result.failure(throwable))
        }
    }
}

interface SyncErrorCallback {
    fun onSyncError(pointer: NativePointer, throwable: SyncException)
}

interface SyncLogCallback {
    // Passes core log levels as shorts to avoid unnecessary jumping between the SDK and JNI
    fun log(logLevel: Short, message: String?)
}

fun interface CompactOnLaunchCallback {
    fun invoke(totalBytes: Long, usedBytes: Long): Boolean
}

fun interface MigrationCallback {
    fun migrate(oldRealm: NativePointer, newRealm: NativePointer, schema: NativePointer): Boolean
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy