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

#pragma once

#if __has_include(<NitroModules/JSIConverter.hpp>)
#include <NitroModules/JSIConverter.hpp>
#else
#error NitroModules cannot be found! Are you sure you installed NitroModules properly?
#endif
#if __has_include(<NitroModules/NitroDefines.hpp>)
#include <NitroModules/NitroDefines.hpp>
#else
#error NitroModules cannot be found! Are you sure you installed NitroModules properly?
#endif
#if __has_include(<NitroModules/JSIHelpers.hpp>)
#include <NitroModules/JSIHelpers.hpp>
#else
#error NitroModules cannot be found! Are you sure you installed NitroModules properly?
#endif

// Forward declaration of `ArrayBuffer` to properly resolve imports.
namespace NitroModules { class ArrayBuffer; }

#include <NitroModules/ArrayBuffer.hpp>

namespace margelo::nitro::nitrokryptom {

  /**
   * A struct which can be represented as a JavaScript object (HybridKeypair).
   */
  struct HybridKeypair {
  public:
    std::shared_ptr<ArrayBuffer> privateKey     SWIFT_PRIVATE;
    std::shared_ptr<ArrayBuffer> publicKey     SWIFT_PRIVATE;

  public:
    HybridKeypair() = default;
    explicit HybridKeypair(std::shared_ptr<ArrayBuffer> privateKey, std::shared_ptr<ArrayBuffer> publicKey): privateKey(privateKey), publicKey(publicKey) {}
  };

} // namespace margelo::nitro::nitrokryptom

namespace margelo::nitro {

  // C++ HybridKeypair <> JS HybridKeypair (object)
  template <>
  struct JSIConverter<margelo::nitro::nitrokryptom::HybridKeypair> final {
    static inline margelo::nitro::nitrokryptom::HybridKeypair fromJSI(jsi::Runtime& runtime, const jsi::Value& arg) {
      jsi::Object obj = arg.asObject(runtime);
      return margelo::nitro::nitrokryptom::HybridKeypair(
        JSIConverter<std::shared_ptr<ArrayBuffer>>::fromJSI(runtime, obj.getProperty(runtime, "privateKey")),
        JSIConverter<std::shared_ptr<ArrayBuffer>>::fromJSI(runtime, obj.getProperty(runtime, "publicKey"))
      );
    }
    static inline jsi::Value toJSI(jsi::Runtime& runtime, const margelo::nitro::nitrokryptom::HybridKeypair& arg) {
      jsi::Object obj(runtime);
      obj.setProperty(runtime, "privateKey", JSIConverter<std::shared_ptr<ArrayBuffer>>::toJSI(runtime, arg.privateKey));
      obj.setProperty(runtime, "publicKey", JSIConverter<std::shared_ptr<ArrayBuffer>>::toJSI(runtime, arg.publicKey));
      return obj;
    }
    static inline bool canConvert(jsi::Runtime& runtime, const jsi::Value& value) {
      if (!value.isObject()) {
        return false;
      }
      jsi::Object obj = value.getObject(runtime);
      if (!nitro::isPlainObject(runtime, obj)) {
        return false;
      }
      if (!JSIConverter<std::shared_ptr<ArrayBuffer>>::canConvert(runtime, obj.getProperty(runtime, "privateKey"))) return false;
      if (!JSIConverter<std::shared_ptr<ArrayBuffer>>::canConvert(runtime, obj.getProperty(runtime, "publicKey"))) return false;
      return true;
    }
  };

} // namespace margelo::nitro
