diff foosdk/sdk/pfc/debug.h @ 1:20d02a178406 default tip

*: check in everything else yay
author Paper <paper@tflc.us>
date Mon, 05 Jan 2026 02:15:46 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/foosdk/sdk/pfc/debug.h	Mon Jan 05 02:15:46 2026 -0500
@@ -0,0 +1,57 @@
+#pragma once
+#include "string-lite.h"
+#include <functional>
+
+#ifdef __ANDROID__
+#define PFC_SET_THREAD_DESCRIPTION_EXTERNAL
+#endif
+
+namespace pfc {
+    void debugBreak();
+    [[noreturn]] void crash();
+    [[noreturn]] void crashWithMessageOnStack( const char * msg );
+    void outputDebugLine(const char * msg);
+    
+#ifdef __APPLE__
+    [[noreturn]] void appleThrowException( const char * name, const char * reason );
+#endif
+
+    // Debug logger service.
+	// It is up to the caller to ensure thread safety. You want to create debugLineReceiver instances on app startup and never destroy them.
+	class debugLineReceiver {
+	public:
+		debugLineReceiver();
+		virtual void onLine( const char *) {}
+
+
+		static void dispatch( const char * msg );
+	private:
+		debugLineReceiver * m_chain;
+
+		void operator=( const debugLineReceiver & ) = delete;
+		debugLineReceiver( const debugLineReceiver & ) = delete;
+	};
+
+    class debugLog : public string_formatter {
+    public:
+        ~debugLog() { outputDebugLine(this->get_ptr()); }
+    };
+#define PFC_DEBUGLOG ::pfc::debugLog()._formatter()
+
+    void setCurrentThreadDescription( const char * );
+
+#ifdef PFC_SET_THREAD_DESCRIPTION_EXTERNAL
+	void initSetCurrentThreadDescription( std::function<void (const char*)> );
+#endif	
+}
+
+#define PFC_SET_THREAD_DESCRIPTION(X) { ::pfc::setCurrentThreadDescription(X); }
+#define PFC_SET_THREAD_DESCRIPTION_SUPPORTED
+
+#define PFC_DEBUG_PRINT_FORCED(...) ::pfc::outputDebugLine(pfc::format(__VA_ARGS__))
+
+#if PFC_DEBUG
+#define PFC_DEBUG_PRINT(...) PFC_DEBUG_PRINT_FORCED(pfc::format(__VA_ARGS__))
+#else
+#define PFC_DEBUG_PRINT(...)
+#endif