#include "config.h" #include "debug.h" #include #include #include #include #include #include #include #include #include "AL/al.h" #include "alc/context.h" #include "alc/inprogext.h" #include "aloptional.h" #include "alspan.h" #include "opthelpers.h" #include "threads.h" namespace { template constexpr auto make_array(std::integer_sequence) { return std::array{Vals...}; } template constexpr auto make_array() { return make_array(std::make_integer_sequence{}); } constexpr al::optional GetDebugSource(ALenum source) noexcept { switch(source) { case AL_DEBUG_SOURCE_API_SOFT: return DebugSource::API; case AL_DEBUG_SOURCE_AUDIO_SYSTEM_SOFT: return DebugSource::System; case AL_DEBUG_SOURCE_THIRD_PARTY_SOFT: return DebugSource::ThirdParty; case AL_DEBUG_SOURCE_APPLICATION_SOFT: return DebugSource::Application; case AL_DEBUG_SOURCE_OTHER_SOFT: return DebugSource::Other; } return al::nullopt; } constexpr al::optional GetDebugType(ALenum type) noexcept { switch(type) { case AL_DEBUG_TYPE_ERROR_SOFT: return DebugType::Error; case AL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_SOFT: return DebugType::DeprecatedBehavior; case AL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_SOFT: return DebugType::UndefinedBehavior; case AL_DEBUG_TYPE_PORTABILITY_SOFT: return DebugType::Portability; case AL_DEBUG_TYPE_PERFORMANCE_SOFT: return DebugType::Performance; case AL_DEBUG_TYPE_MARKER_SOFT: return DebugType::Marker; case AL_DEBUG_TYPE_OTHER_SOFT: return DebugType::Other; } return al::nullopt; } constexpr al::optional GetDebugSeverity(ALenum severity) noexcept { switch(severity) { case AL_DEBUG_SEVERITY_HIGH_SOFT: return DebugSeverity::High; case AL_DEBUG_SEVERITY_MEDIUM_SOFT: return DebugSeverity::Medium; case AL_DEBUG_SEVERITY_LOW_SOFT: return DebugSeverity::Low; case AL_DEBUG_SEVERITY_NOTIFICATION_SOFT: return DebugSeverity::Notification; } return al::nullopt; } } // namespace ALenum GetDebugSourceEnum(DebugSource source) { switch(source) { case DebugSource::API: return AL_DEBUG_SOURCE_API_SOFT; case DebugSource::System: return AL_DEBUG_SOURCE_AUDIO_SYSTEM_SOFT; case DebugSource::ThirdParty: return AL_DEBUG_SOURCE_THIRD_PARTY_SOFT; case DebugSource::Application: return AL_DEBUG_SOURCE_APPLICATION_SOFT; case DebugSource::Other: return AL_DEBUG_SOURCE_OTHER_SOFT; } throw std::runtime_error{"Unexpected debug source value "+std::to_string(al::to_underlying(source))}; } ALenum GetDebugTypeEnum(DebugType type) { switch(type) { case DebugType::Error: return AL_DEBUG_TYPE_ERROR_SOFT; case DebugType::DeprecatedBehavior: return AL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_SOFT; case DebugType::UndefinedBehavior: return AL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_SOFT; case DebugType::Portability: return AL_DEBUG_TYPE_PORTABILITY_SOFT; case DebugType::Performance: return AL_DEBUG_TYPE_PERFORMANCE_SOFT; case DebugType::Marker: return AL_DEBUG_TYPE_MARKER_SOFT; case DebugType::Other: return AL_DEBUG_TYPE_OTHER_SOFT; } throw std::runtime_error{"Unexpected debug type value "+std::to_string(al::to_underlying(type))}; } ALenum GetDebugSeverityEnum(DebugSeverity severity) { switch(severity) { case DebugSeverity::High: return AL_DEBUG_SEVERITY_HIGH_SOFT; case DebugSeverity::Medium: return AL_DEBUG_SEVERITY_MEDIUM_SOFT; case DebugSeverity::Low: return AL_DEBUG_SEVERITY_LOW_SOFT; case DebugSeverity::Notification: return AL_DEBUG_SEVERITY_NOTIFICATION_SOFT; } throw std::runtime_error{"Unexpected debug severity value "+std::to_string(al::to_underlying(severity))}; } FORCE_ALIGN void AL_APIENTRY alDebugMessageCallbackSOFT(ALDEBUGPROCSOFT callback, void *userParam) noexcept { ContextRef context{GetContextRef()}; if(!context) UNLIKELY return; std::lock_guard _{context->mDebugCbLock}; context->mDebugCb = callback; context->mDebugParam = userParam; } FORCE_ALIGN void AL_APIENTRY alDebugMessageInsertSOFT(ALenum source, ALenum type, ALuint id, ALenum severity, ALsizei length, const ALchar *message) noexcept { ContextRef context{GetContextRef()}; if(!context) UNLIKELY return; if(!message) return context->setError(AL_INVALID_VALUE, "Null message pointer"); /* MaxDebugMessageLength is the size including the null terminator, * does not include the null terminator. */ if(length < 0) { size_t newlen{std::strlen(message)}; if(newlen >= MaxDebugMessageLength) UNLIKELY return context->setError(AL_INVALID_VALUE, "Debug message too long (%zu >= %d)", newlen, MaxDebugMessageLength); length = static_cast(newlen); } else if(length >= MaxDebugMessageLength) UNLIKELY return context->setError(AL_INVALID_VALUE, "Debug message too long (%d > %d)", length, MaxDebugMessageLength); auto dsource = GetDebugSource(source); if(!dsource) return context->setError(AL_INVALID_ENUM, "Invalid debug source 0x%04x", source); if(*dsource != DebugSource::ThirdParty && *dsource != DebugSource::Application) return context->setError(AL_INVALID_ENUM, "Debug source 0x%04x not allowed", source); auto dtype = GetDebugType(type); if(!dtype) return context->setError(AL_INVALID_ENUM, "Invalid debug type 0x%04x", type); auto dseverity = GetDebugSeverity(severity); if(!dseverity) return context->setError(AL_INVALID_ENUM, "Invalid debug severity 0x%04x", severity); context->debugMessage(*dsource, *dtype, id, *dseverity, length, message); } FORCE_ALIGN void AL_APIENTRY alDebugMessageControlSOFT(ALenum source, ALenum type, ALenum severity, ALsizei count, const ALuint *ids, ALboolean enable) noexcept { ContextRef context{GetContextRef()}; if(!context) UNLIKELY return; if(count > 0) { if(!ids) return context->setError(AL_INVALID_VALUE, "IDs is null with non-0 count"); if(source == AL_DONT_CARE_SOFT) return context->setError(AL_INVALID_OPERATION, "Debug source cannot be AL_DONT_CARE_SOFT with IDs"); if(type == AL_DONT_CARE_SOFT) return context->setError(AL_INVALID_OPERATION, "Debug type cannot be AL_DONT_CARE_SOFT with IDs"); if(severity != AL_DONT_CARE_SOFT) return context->setError(AL_INVALID_OPERATION, "Debug severity must be AL_DONT_CARE_SOFT with IDs"); } if(enable != AL_TRUE && enable != AL_FALSE) return context->setError(AL_INVALID_ENUM, "Invalid debug enable %d", enable); static constexpr size_t ElemCount{DebugSourceCount + DebugTypeCount + DebugSeverityCount}; static constexpr auto Values = make_array(); al::span srcIndices{al::as_span(Values).subspan()}; if(source != AL_DONT_CARE_SOFT) { auto dsource = GetDebugSource(source); if(!dsource) return context->setError(AL_INVALID_ENUM, "Invalid debug source 0x%04x", source); srcIndices = srcIndices.subspan(al::to_underlying(*dsource), 1); } al::span typeIndices{al::as_span(Values).subspan()}; if(type != AL_DONT_CARE_SOFT) { auto dtype = GetDebugType(type); if(!dtype) return context->setError(AL_INVALID_ENUM, "Invalid debug type 0x%04x", type); typeIndices = typeIndices.subspan(al::to_underlying(*dtype), 1); } al::span svrIndices{al::as_span(Values).subspan()}; if(severity != AL_DONT_CARE_SOFT) { auto dseverity = GetDebugSeverity(severity); if(!dseverity) return context->setError(AL_INVALID_ENUM, "Invalid debug severity 0x%04x", severity); svrIndices = svrIndices.subspan(al::to_underlying(*dseverity), 1); } std::lock_guard _{context->mDebugCbLock}; DebugGroup &debug = context->mDebugGroups.back(); if(count > 0) { const uint filterbase{(1u<(count))) { const uint64_t filter{filterbase | (uint64_t{id} << 32)}; auto iter = std::lower_bound(debug.mIdFilters.cbegin(), debug.mIdFilters.cend(), filter); if(!enable && (iter == debug.mIdFilters.cend() || *iter != filter)) debug.mIdFilters.insert(iter, filter); else if(enable && iter != debug.mIdFilters.cend() && *iter == filter) debug.mIdFilters.erase(iter); } } else { auto apply_filter = [enable,&debug](const uint filter) { auto iter = std::lower_bound(debug.mFilters.cbegin(), debug.mFilters.cend(), filter); if(!enable && (iter == debug.mFilters.cend() || *iter != filter)) debug.mFilters.insert(iter, filter); else if(enable && iter != debug.mFilters.cend() && *iter == filter) debug.mFilters.erase(iter); }; auto apply_severity = [apply_filter,svrIndices](const uint filter) { std::for_each(svrIndices.cbegin(), svrIndices.cend(), [apply_filter,filter](const uint idx){ apply_filter(filter | (1<setError(AL_INVALID_VALUE, "Negative debug log buffer size"); return 0; } std::lock_guard _{context->mDebugCbLock}; ALsizei logBufWritten{0}; for(ALuint i{0};i < count;++i) { if(context->mDebugLog.empty()) return i; auto &entry = context->mDebugLog.front(); const size_t tocopy{entry.mMessage.size() + 1}; const size_t avail{static_cast(logBufSize - logBufWritten)}; if(avail < tocopy) return i; if(sources) sources[i] = GetDebugSourceEnum(entry.mSource); if(types) types[i] = GetDebugTypeEnum(entry.mType); if(ids) ids[i] = entry.mId; if(severities) severities[i] = GetDebugSeverityEnum(entry.mSeverity); if(lengths) lengths[i] = static_cast(tocopy); if(logBuf) std::copy_n(entry.mMessage.data(), tocopy, logBuf+logBufWritten); logBufWritten += static_cast(tocopy); context->mDebugLog.pop_front(); } return count; }