diff foosdk/sdk/foobar2000/SDK/threaded_process.cpp @ 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/threaded_process.cpp	Mon Jan 05 02:15:46 2026 -0500
@@ -0,0 +1,124 @@
+#include "foobar2000-sdk-pch.h"
+#include "threaded_process.h"
+#include "advconfig.h"
+
+void threaded_process_status::set_progress(t_size p_state,t_size p_max)
+{
+	set_progress( progress_min + MulDiv_Size(p_state,progress_max-progress_min,p_max) );
+}
+
+void threaded_process_status::set_progress_secondary(t_size p_state,t_size p_max)
+{
+	set_progress_secondary( progress_min + MulDiv_Size(p_state,progress_max-progress_min,p_max) );
+}
+
+void threaded_process_status::set_progress_float(double p_state)
+{
+	if (p_state < 0.0) set_progress(progress_min);
+	else if (p_state < 1.0) set_progress( progress_min + (t_size)(p_state * (progress_max - progress_min)));
+	else set_progress(progress_max);
+}
+
+void threaded_process_status::set_progress_secondary_float(double p_state)
+{
+	if (p_state < 0.0) set_progress_secondary(progress_min);
+	else if (p_state < 1.0) set_progress_secondary( progress_min + (t_size)(p_state * (progress_max - progress_min)));
+	else set_progress_secondary(progress_max);
+}
+
+
+bool threaded_process::g_run_modal(service_ptr_t<threaded_process_callback> p_callback,unsigned p_flags,fb2k::hwnd_t p_parent,const char * p_title,t_size p_title_len)
+{
+	PFC_ASSERT( core_api::is_main_thread() );
+	return threaded_process::get()->run_modal(p_callback,p_flags,p_parent,p_title,p_title_len);
+}
+
+bool threaded_process::g_run_modeless(service_ptr_t<threaded_process_callback> p_callback,unsigned p_flags,fb2k::hwnd_t p_parent,const char * p_title,t_size p_title_len)
+{
+	PFC_ASSERT( core_api::is_main_thread() );
+	return threaded_process::get()->run_modeless(p_callback,p_flags,p_parent,p_title,p_title_len);
+}
+
+bool threaded_process::g_query_preventStandby() {
+	static const GUID guid_preventStandby = { 0x7aafeffb, 0x5f11, 0x483f, { 0xac, 0x65, 0x61, 0xec, 0x9c, 0x70, 0x37, 0x4e } };
+	advconfig_entry_checkbox::ptr obj;
+	if (advconfig_entry::g_find_t(obj, guid_preventStandby)) {
+		return obj->get_state();
+	} else {
+		return false;
+	}
+}
+
+enum {
+	set_items_max_characters = 80
+};
+
+void threaded_process_status::set_items(pfc::list_base_const_t<const char*> const & items) {
+	const size_t count = items.get_count();
+	if (count == 0) return;
+	if (count == 1) { set_item_path(items[0]); }
+	pfc::string8 acc;
+
+    filesystem::ptr fs;
+	for (size_t w = 0; w < count; ++w) {
+		pfc::string8 name = fb2k::filename_ext(items[w], fs);
+		if (w > 0 && acc.length() + name.length() > set_items_max_characters) {
+			acc << " and " << (count - w) << " more";
+			break;
+		}
+		if (w > 0) acc << ", ";
+		acc << name;
+	}
+
+	set_item(acc);
+}
+
+void threaded_process_status::set_items(metadb_handle_list_cref items) {
+	const size_t count = items.get_count();
+	if ( count == 0 ) return;
+	if ( count == 1 ) { set_item_path(items[0]->get_path()); }
+	pfc::string8 acc;
+	
+    filesystem::ptr fs;
+	for( size_t w = 0; w < count; ++w ) {
+		pfc::string8 name = fb2k::filename_ext(items[w]->get_path(), fs);
+		if ( w > 0 && acc.length() + name.length() > set_items_max_characters) {
+			acc << " and " << (count-w) << " more";
+			break;
+		}
+		if (w > 0) acc << ", ";
+		acc << name;
+	}
+
+	set_item(acc);
+}
+
+
+void threaded_process_callback_lambda::on_init(ctx_t p_ctx) {
+	if (m_on_init) m_on_init(p_ctx);
+}
+
+void threaded_process_callback_lambda::run(threaded_process_status & p_status, abort_callback & p_abort) {
+	m_run(p_status, p_abort);
+}
+
+void threaded_process_callback_lambda::on_done(ctx_t p_ctx, bool p_was_aborted) {
+	if (m_on_done) m_on_done(p_ctx, p_was_aborted);
+}
+
+service_ptr_t<threaded_process_callback_lambda> threaded_process_callback_lambda::create() {
+	return new service_impl_t<threaded_process_callback_lambda>();
+}
+
+service_ptr_t<threaded_process_callback_lambda> threaded_process_callback_lambda::create(run_t f) {
+	auto obj = create();
+	obj->m_run = f;
+	return obj;
+}
+service_ptr_t<threaded_process_callback_lambda> threaded_process_callback_lambda::create(on_init_t f1, run_t f2, on_done_t f3) {
+	auto obj = create();
+	obj->m_on_init = f1;
+	obj->m_run = f2;
+	obj->m_on_done = f3;
+	return obj;
+}