///
/// HybridNitroMediaKitSpec_cxx.swift
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © 2025 Marc Rousavy @ Margelo
///

import Foundation
import NitroModules

/**
 * A class implementation that bridges HybridNitroMediaKitSpec over to C++.
 * In C++, we cannot use Swift protocols - so we need to wrap it in a class to make it strongly defined.
 *
 * Also, some Swift types need to be bridged with special handling:
 * - Enums need to be wrapped in Structs, otherwise they cannot be accessed bi-directionally (Swift bug: https://github.com/swiftlang/swift/issues/75330)
 * - Other HybridObjects need to be wrapped/unwrapped from the Swift TCxx wrapper
 * - Throwing methods need to be wrapped with a Result<T, Error> type, as exceptions cannot be propagated to C++
 */
open class HybridNitroMediaKitSpec_cxx {
  /**
   * The Swift <> C++ bridge's namespace (`margelo::nitro::nitromediakit::bridge::swift`)
   * from `NitroMediaKit-Swift-Cxx-Bridge.hpp`.
   * This contains specialized C++ templates, and C++ helper functions that can be accessed from Swift.
   */
  public typealias bridge = margelo.nitro.nitromediakit.bridge.swift

  /**
   * Holds an instance of the `HybridNitroMediaKitSpec` Swift protocol.
   */
  private var __implementation: any HybridNitroMediaKitSpec

  /**
   * Holds a weak pointer to the C++ class that wraps the Swift class.
   */
  private var __cxxPart: bridge.std__weak_ptr_HybridNitroMediaKitSpec_

  /**
   * Create a new `HybridNitroMediaKitSpec_cxx` that wraps the given `HybridNitroMediaKitSpec`.
   * All properties and methods bridge to C++ types.
   */
  public init(_ implementation: any HybridNitroMediaKitSpec) {
    self.__implementation = implementation
    self.__cxxPart = .init()
    /* no base class */
  }

  /**
   * Get the actual `HybridNitroMediaKitSpec` instance this class wraps.
   */
  @inline(__always)
  public func getHybridNitroMediaKitSpec() -> any HybridNitroMediaKitSpec {
    return __implementation
  }

  /**
   * Casts this instance to a retained unsafe raw pointer.
   * This acquires one additional strong reference on the object!
   */
  public func toUnsafe() -> UnsafeMutableRawPointer {
    return Unmanaged.passRetained(self).toOpaque()
  }

  /**
   * Casts an unsafe pointer to a `HybridNitroMediaKitSpec_cxx`.
   * The pointer has to be a retained opaque `Unmanaged<HybridNitroMediaKitSpec_cxx>`.
   * This removes one strong reference from the object!
   */
  public class func fromUnsafe(_ pointer: UnsafeMutableRawPointer) -> HybridNitroMediaKitSpec_cxx {
    return Unmanaged<HybridNitroMediaKitSpec_cxx>.fromOpaque(pointer).takeRetainedValue()
  }

  /**
   * Gets (or creates) the C++ part of this Hybrid Object.
   * The C++ part is a `std::shared_ptr<HybridNitroMediaKitSpec>`.
   */
  public func getCxxPart() -> bridge.std__shared_ptr_HybridNitroMediaKitSpec_ {
    let cachedCxxPart = self.__cxxPart.lock()
    if cachedCxxPart.__convertToBool() {
      return cachedCxxPart
    } else {
      let newCxxPart = bridge.create_std__shared_ptr_HybridNitroMediaKitSpec_(self.toUnsafe())
      __cxxPart = bridge.weakify_std__shared_ptr_HybridNitroMediaKitSpec_(newCxxPart)
      return newCxxPart
    }
  }

  

  /**
   * Get the memory size of the Swift class (plus size of any other allocations)
   * so the JS VM can properly track it and garbage-collect the JS object if needed.
   */
  @inline(__always)
  public var memorySize: Int {
    return MemoryHelper.getSizeOf(self.__implementation) + self.__implementation.memorySize
  }

  /**
   * Call dispose() on the Swift class.
   * This _may_ be called manually from JS.
   */
  @inline(__always)
  public func dispose() {
    self.__implementation.dispose()
  }

  // Properties
  

  // Methods
  @inline(__always)
  public final func getMediaInfo(inputUri: std.string) -> bridge.Result_std__shared_ptr_Promise_MediaInfoResult___ {
    do {
      let __result = try self.__implementation.getMediaInfo(inputUri: String(inputUri))
      let __resultCpp = { () -> bridge.std__shared_ptr_Promise_MediaInfoResult__ in
        let __promise = bridge.create_std__shared_ptr_Promise_MediaInfoResult__()
        let __promiseHolder = bridge.wrap_std__shared_ptr_Promise_MediaInfoResult__(__promise)
        __result
          .then({ __result in __promiseHolder.resolve(__result) })
          .catch({ __error in __promiseHolder.reject(__error.toCpp()) })
        return __promise
      }()
      return bridge.create_Result_std__shared_ptr_Promise_MediaInfoResult___(__resultCpp)
    } catch (let __error) {
      let __exceptionPtr = __error.toCpp()
      return bridge.create_Result_std__shared_ptr_Promise_MediaInfoResult___(__exceptionPtr)
    }
  }
  
  @inline(__always)
  public final func convertImageToVideo(image: std.string, duration: Double) -> bridge.Result_std__shared_ptr_Promise_MediaInfoResult___ {
    do {
      let __result = try self.__implementation.convertImageToVideo(image: String(image), duration: duration)
      let __resultCpp = { () -> bridge.std__shared_ptr_Promise_MediaInfoResult__ in
        let __promise = bridge.create_std__shared_ptr_Promise_MediaInfoResult__()
        let __promiseHolder = bridge.wrap_std__shared_ptr_Promise_MediaInfoResult__(__promise)
        __result
          .then({ __result in __promiseHolder.resolve(__result) })
          .catch({ __error in __promiseHolder.reject(__error.toCpp()) })
        return __promise
      }()
      return bridge.create_Result_std__shared_ptr_Promise_MediaInfoResult___(__resultCpp)
    } catch (let __error) {
      let __exceptionPtr = __error.toCpp()
      return bridge.create_Result_std__shared_ptr_Promise_MediaInfoResult___(__exceptionPtr)
    }
  }
  
  @inline(__always)
  public final func mergeVideos(videos: bridge.std__vector_std__string_) -> bridge.Result_std__shared_ptr_Promise_MediaInfoResult___ {
    do {
      let __result = try self.__implementation.mergeVideos(videos: videos.map({ __item in String(__item) }))
      let __resultCpp = { () -> bridge.std__shared_ptr_Promise_MediaInfoResult__ in
        let __promise = bridge.create_std__shared_ptr_Promise_MediaInfoResult__()
        let __promiseHolder = bridge.wrap_std__shared_ptr_Promise_MediaInfoResult__(__promise)
        __result
          .then({ __result in __promiseHolder.resolve(__result) })
          .catch({ __error in __promiseHolder.reject(__error.toCpp()) })
        return __promise
      }()
      return bridge.create_Result_std__shared_ptr_Promise_MediaInfoResult___(__resultCpp)
    } catch (let __error) {
      let __exceptionPtr = __error.toCpp()
      return bridge.create_Result_std__shared_ptr_Promise_MediaInfoResult___(__exceptionPtr)
    }
  }
  
  @inline(__always)
  public final func watermarkVideo(video: std.string, watermark: std.string, position: std.string) -> bridge.Result_std__shared_ptr_Promise_MediaInfoResult___ {
    do {
      let __result = try self.__implementation.watermarkVideo(video: String(video), watermark: String(watermark), position: String(position))
      let __resultCpp = { () -> bridge.std__shared_ptr_Promise_MediaInfoResult__ in
        let __promise = bridge.create_std__shared_ptr_Promise_MediaInfoResult__()
        let __promiseHolder = bridge.wrap_std__shared_ptr_Promise_MediaInfoResult__(__promise)
        __result
          .then({ __result in __promiseHolder.resolve(__result) })
          .catch({ __error in __promiseHolder.reject(__error.toCpp()) })
        return __promise
      }()
      return bridge.create_Result_std__shared_ptr_Promise_MediaInfoResult___(__resultCpp)
    } catch (let __error) {
      let __exceptionPtr = __error.toCpp()
      return bridge.create_Result_std__shared_ptr_Promise_MediaInfoResult___(__exceptionPtr)
    }
  }
}
