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

import NitroModules

/**
 * A class implementation that bridges HybridFramePlaneSpec 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 HybridFramePlaneSpec_cxx {
  /**
   * The Swift <> C++ bridge's namespace (`margelo::nitro::camera::bridge::swift`)
   * from `VisionCamera-Swift-Cxx-Bridge.hpp`.
   * This contains specialized C++ templates, and C++ helper functions that can be accessed from Swift.
   */
  public typealias bridge = margelo.nitro.camera.bridge.swift

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

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

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

  /**
   * Get the actual `HybridFramePlaneSpec` instance this class wraps.
   */
  @inline(__always)
  public func getHybridFramePlaneSpec() -> any HybridFramePlaneSpec {
    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 `HybridFramePlaneSpec_cxx`.
   * The pointer has to be a retained opaque `Unmanaged<HybridFramePlaneSpec_cxx>`.
   * This removes one strong reference from the object!
   */
  public class func fromUnsafe(_ pointer: UnsafeMutableRawPointer) -> HybridFramePlaneSpec_cxx {
    return Unmanaged<HybridFramePlaneSpec_cxx>.fromOpaque(pointer).takeRetainedValue()
  }

  /**
   * Gets (or creates) the C++ part of this Hybrid Object.
   * The C++ part is a `std::shared_ptr<HybridFramePlaneSpec>`.
   */
  public func getCxxPart() -> bridge.std__shared_ptr_HybridFramePlaneSpec_ {
    let cachedCxxPart = self.__cxxPart.lock()
    if Bool(fromCxx: cachedCxxPart) {
      return cachedCxxPart
    } else {
      let newCxxPart = bridge.create_std__shared_ptr_HybridFramePlaneSpec_(self.toUnsafe())
      __cxxPart = bridge.weakify_std__shared_ptr_HybridFramePlaneSpec_(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
  }

  /**
   * Compares this object with the given [other] object for reference equality.
   */
  @inline(__always)
  public func equals(other: HybridFramePlaneSpec_cxx) -> Bool {
    return self.__implementation === other.__implementation
  }

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

  /**
   * Call toString() on the Swift class.
   */
  @inline(__always)
  public func toString() -> String {
    return self.__implementation.toString()
  }

  // Properties
  public final var width: Double {
    @inline(__always)
    get {
      return self.__implementation.width
    }
  }
  
  public final var height: Double {
    @inline(__always)
    get {
      return self.__implementation.height
    }
  }
  
  public final var bytesPerRow: Double {
    @inline(__always)
    get {
      return self.__implementation.bytesPerRow
    }
  }
  
  public final var isValid: Bool {
    @inline(__always)
    get {
      return self.__implementation.isValid
    }
  }

  // Methods
  @inline(__always)
  public final func getPixelBuffer() -> bridge.Result_std__shared_ptr_ArrayBuffer__ {
    do {
      let __result = try self.__implementation.getPixelBuffer()
      let __resultCpp = __result.getArrayBuffer()
      return bridge.create_Result_std__shared_ptr_ArrayBuffer__(__resultCpp)
    } catch (let __error) {
      let __exceptionPtr = __error.toCpp()
      return bridge.create_Result_std__shared_ptr_ArrayBuffer__(__exceptionPtr)
    }
  }
}
