Files
2025-10-24 12:31:06 +02:00

85 lines
3.4 KiB
C++
Generated

///
/// MixAudioMode.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/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::video {
/**
* An enum which can be represented as a JavaScript union (MixAudioMode).
*/
enum class MixAudioMode {
MIXWITHOTHERS SWIFT_NAME(mixwithothers) = 0,
DONOTMIX SWIFT_NAME(donotmix) = 1,
DUCKOTHERS SWIFT_NAME(duckothers) = 2,
AUTO SWIFT_NAME(auto) = 3,
} CLOSED_ENUM;
} // namespace margelo::nitro::video
namespace margelo::nitro {
// C++ MixAudioMode <> JS MixAudioMode (union)
template <>
struct JSIConverter<margelo::nitro::video::MixAudioMode> final {
static inline margelo::nitro::video::MixAudioMode 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("mixWithOthers"): return margelo::nitro::video::MixAudioMode::MIXWITHOTHERS;
case hashString("doNotMix"): return margelo::nitro::video::MixAudioMode::DONOTMIX;
case hashString("duckOthers"): return margelo::nitro::video::MixAudioMode::DUCKOTHERS;
case hashString("auto"): return margelo::nitro::video::MixAudioMode::AUTO;
default: [[unlikely]]
throw std::invalid_argument("Cannot convert \"" + unionValue + "\" to enum MixAudioMode - invalid value!");
}
}
static inline jsi::Value toJSI(jsi::Runtime& runtime, margelo::nitro::video::MixAudioMode arg) {
switch (arg) {
case margelo::nitro::video::MixAudioMode::MIXWITHOTHERS: return JSIConverter<std::string>::toJSI(runtime, "mixWithOthers");
case margelo::nitro::video::MixAudioMode::DONOTMIX: return JSIConverter<std::string>::toJSI(runtime, "doNotMix");
case margelo::nitro::video::MixAudioMode::DUCKOTHERS: return JSIConverter<std::string>::toJSI(runtime, "duckOthers");
case margelo::nitro::video::MixAudioMode::AUTO: return JSIConverter<std::string>::toJSI(runtime, "auto");
default: [[unlikely]]
throw std::invalid_argument("Cannot convert MixAudioMode 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("mixWithOthers"):
case hashString("doNotMix"):
case hashString("duckOthers"):
case hashString("auto"):
return true;
default:
return false;
}
}
};
} // namespace margelo::nitro