diff foosdk/sdk/foobar2000/SDK/console.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/foobar2000/SDK/console.h	Mon Jan 05 02:15:46 2026 -0500
@@ -0,0 +1,70 @@
+#pragma once
+
+
+//! Namespace with functions for sending text to console. All functions are fully multi-thread safe, though they must not be called during dll initialization or deinitialization (e.g. static object constructors or destructors) when service system is not available.
+namespace console
+{
+	void info(const char * p_message);
+	void error(const char * p_message);
+	void warning(const char * p_message);
+	void info_location(const playable_location & src);
+	void info_location(const metadb_handle_ptr & src);
+	void print_location(const playable_location & src);
+	void print_location(const metadb_handle_ptr & src);
+
+	void print(const char*);
+    void printf(const char*,...);
+	void printfv(const char*,va_list p_arglist);
+
+	//! New console print method, based on pfc::print(). \n
+	//! Example: console::print("foo", "bar", 2000) \ n
+	//! See also: FB2K_console_print(...)
+	template<typename ... args_t> void print(args_t && ... args) {print(pfc::format(std::forward<args_t>(args) ... ).c_str()); }
+
+	class lineWriter {
+	public:
+		const lineWriter & operator<<( const char * msg ) const {print(msg);return *this;}
+	};
+
+	//! Usage: console::formatter() << "blah " << somenumber << " asdf" << somestring;
+	class formatter : public pfc::string_formatter {
+	public:
+		~formatter() {if (!is_empty()) console::print(get_ptr());}
+	};
+#define FB2K_console_formatter() ::console::formatter()._formatter()
+#define FB2K_console_formatter1() ::console::lineWriter()
+
+//! New console print macro, based on pfc::print(). \n
+//! Example: FB2K_console_print("foo", "bar", 2000) \n
+//! Note that this macro is convenient for conditionally enabling logging in specific modules - \n
+//! instead of putting console formatter lines on #ifdef, #define MY_CONSOLE_LOG(...) FB2K_console_print(__VA_ARGS__) if enabled, or #define to blank if not.
+#define FB2K_console_print(...) ::console::print(__VA_ARGS__)
+    
+	void complain(const char * what, const char * msg);
+	void complain(const char * what, std::exception const & e);
+
+	class timer_scope {
+	public:
+		timer_scope(const char * name) : m_name(name) {m_timer.start();}
+		~timer_scope() {
+			try {
+				FB2K_console_formatter() << m_name << ": " << pfc::format_time_ex(m_timer.query(), 6);
+			} catch(...) {}
+		}
+	private:
+		pfc::hires_timer m_timer;
+		const char * const m_name;
+	};
+};
+
+//! Interface receiving console output. Do not call directly; use console namespace functions instead.
+class NOVTABLE console_receiver : public service_base {
+public:
+	virtual void print(const char * p_message,t_size p_message_length) = 0;
+
+	FB2K_MAKE_SERVICE_INTERFACE_ENTRYPOINT(console_receiver);
+};
+
+
+
+