mirror of
https://github.com/zoriya/react-native-video.git
synced 2026-05-25 07:45:56 +00:00
81 lines
3.2 KiB
C++
Generated
81 lines
3.2 KiB
C++
Generated
///
|
|
/// IgnoreSilentSwitchMode.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 (IgnoreSilentSwitchMode).
|
|
*/
|
|
enum class IgnoreSilentSwitchMode {
|
|
AUTO SWIFT_NAME(auto) = 0,
|
|
IGNORE SWIFT_NAME(ignore) = 1,
|
|
OBEY SWIFT_NAME(obey) = 2,
|
|
} CLOSED_ENUM;
|
|
|
|
} // namespace margelo::nitro::video
|
|
|
|
namespace margelo::nitro {
|
|
|
|
// C++ IgnoreSilentSwitchMode <> JS IgnoreSilentSwitchMode (union)
|
|
template <>
|
|
struct JSIConverter<margelo::nitro::video::IgnoreSilentSwitchMode> final {
|
|
static inline margelo::nitro::video::IgnoreSilentSwitchMode 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("auto"): return margelo::nitro::video::IgnoreSilentSwitchMode::AUTO;
|
|
case hashString("ignore"): return margelo::nitro::video::IgnoreSilentSwitchMode::IGNORE;
|
|
case hashString("obey"): return margelo::nitro::video::IgnoreSilentSwitchMode::OBEY;
|
|
default: [[unlikely]]
|
|
throw std::invalid_argument("Cannot convert \"" + unionValue + "\" to enum IgnoreSilentSwitchMode - invalid value!");
|
|
}
|
|
}
|
|
static inline jsi::Value toJSI(jsi::Runtime& runtime, margelo::nitro::video::IgnoreSilentSwitchMode arg) {
|
|
switch (arg) {
|
|
case margelo::nitro::video::IgnoreSilentSwitchMode::AUTO: return JSIConverter<std::string>::toJSI(runtime, "auto");
|
|
case margelo::nitro::video::IgnoreSilentSwitchMode::IGNORE: return JSIConverter<std::string>::toJSI(runtime, "ignore");
|
|
case margelo::nitro::video::IgnoreSilentSwitchMode::OBEY: return JSIConverter<std::string>::toJSI(runtime, "obey");
|
|
default: [[unlikely]]
|
|
throw std::invalid_argument("Cannot convert IgnoreSilentSwitchMode 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("auto"):
|
|
case hashString("ignore"):
|
|
case hashString("obey"):
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
};
|
|
|
|
} // namespace margelo::nitro
|