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

#pragma once

#if __has_include(<NitroModules/NitroHash.hpp>)
#include <NitroModules/NitroHash.hpp>
#else
#error NitroModules cannot be found! Are you sure you installed NitroModules properly?
#endif
#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

namespace margelo::nitro::tflite {

  /**
   * An enum which can be represented as a JavaScript union (TensorflowModelDelegate).
   */
  enum class TensorflowModelDelegate {
    METAL      SWIFT_NAME(metal) = 0,
    CORE_ML      SWIFT_NAME(coreMl) = 1,
    NNAPI      SWIFT_NAME(nnapi) = 2,
    ANDROID_GPU      SWIFT_NAME(androidGpu) = 3,
  } CLOSED_ENUM;

} // namespace margelo::nitro::tflite

namespace margelo::nitro {

  // C++ TensorflowModelDelegate <> JS TensorflowModelDelegate (union)
  template <>
  struct JSIConverter<margelo::nitro::tflite::TensorflowModelDelegate> final {
    static inline margelo::nitro::tflite::TensorflowModelDelegate fromJSI(jsi::Runtime& runtime, const jsi::Value& arg) {
      std::string unionValue = JSIConverter<std::string>::fromJSI(runtime, arg);
      switch (hashString(unionValue.c_str(), unionValue.size())) {
        case hashString("metal"): return margelo::nitro::tflite::TensorflowModelDelegate::METAL;
        case hashString("core-ml"): return margelo::nitro::tflite::TensorflowModelDelegate::CORE_ML;
        case hashString("nnapi"): return margelo::nitro::tflite::TensorflowModelDelegate::NNAPI;
        case hashString("android-gpu"): return margelo::nitro::tflite::TensorflowModelDelegate::ANDROID_GPU;
        default: [[unlikely]]
          throw std::invalid_argument("Cannot convert \"" + unionValue + "\" to enum TensorflowModelDelegate - invalid value!");
      }
    }
    static inline jsi::Value toJSI(jsi::Runtime& runtime, margelo::nitro::tflite::TensorflowModelDelegate arg) {
      switch (arg) {
        case margelo::nitro::tflite::TensorflowModelDelegate::METAL: return JSIConverter<std::string>::toJSI(runtime, "metal");
        case margelo::nitro::tflite::TensorflowModelDelegate::CORE_ML: return JSIConverter<std::string>::toJSI(runtime, "core-ml");
        case margelo::nitro::tflite::TensorflowModelDelegate::NNAPI: return JSIConverter<std::string>::toJSI(runtime, "nnapi");
        case margelo::nitro::tflite::TensorflowModelDelegate::ANDROID_GPU: return JSIConverter<std::string>::toJSI(runtime, "android-gpu");
        default: [[unlikely]]
          throw std::invalid_argument("Cannot convert TensorflowModelDelegate to JS - invalid value: "
                                    + std::to_string(static_cast<int>(arg)) + "!");
      }
    }
    static inline bool canConvert(jsi::Runtime& runtime, const jsi::Value& value) {
      if (!value.isString()) {
        return false;
      }
      std::string unionValue = JSIConverter<std::string>::fromJSI(runtime, value);
      switch (hashString(unionValue.c_str(), unionValue.size())) {
        case hashString("metal"):
        case hashString("core-ml"):
        case hashString("nnapi"):
        case hashString("android-gpu"):
          return true;
        default:
          return false;
      }
    }
  };

} // namespace margelo::nitro
