#include "foobar2000.h" service_ptr input_entry::open(const GUID & whatFor, file::ptr hint, const char * path, abort_callback & aborter) { if (whatFor == input_decoder::class_guid) { input_decoder::ptr obj; open(obj, hint, path, aborter); return obj; } if (whatFor == input_info_reader::class_guid) { input_info_reader::ptr obj; open(obj, hint, path, aborter); return obj; } if (whatFor == input_info_writer::class_guid) { input_info_writer::ptr obj; open(obj, hint, path, aborter); return obj; } #ifdef FOOBAR2000_DESKTOP if ( whatFor == input_stream_info_reader::class_guid ) { input_entry_v2::ptr v2; if ( v2 &= this ) { GUID g = v2->get_guid(); service_enum_t e; service_ptr_t p; while (e.next(p)) { if (p->get_guid() == g) { return p->open( path, hint, aborter ); } } } throw exception_io_unsupported_format(); } #endif uBugCheck(); } bool input_entry::g_find_service_by_path(service_ptr_t & p_out,const char * p_path) { auto ext = pfc::string_extension(p_path); return g_find_service_by_path(p_out, p_path, ext ); } bool input_entry::g_find_service_by_path(service_ptr_t & p_out,const char * p_path, const char * p_ext) { service_ptr_t ptr; service_enum_t e; while(e.next(ptr)) { if (ptr->is_our_path(p_path,p_ext)) { p_out = ptr; return true; } } return false; } bool input_entry::g_find_service_by_content_type(service_ptr_t & p_out,const char * p_content_type) { service_ptr_t ptr; service_enum_t e; while(e.next(ptr)) { if (ptr->is_our_content_type(p_content_type)) { p_out = ptr; return true; } } return false; } #if 0 static void prepare_for_open(service_ptr_t & p_service,service_ptr_t & p_file,const char * p_path,filesystem::t_open_mode p_open_mode,abort_callback & p_abort,bool p_from_redirect) { if (p_file.is_empty()) { service_ptr_t fs; if (filesystem::g_get_interface(fs,p_path)) { if (fs->supports_content_types()) { fs->open(p_file,p_path,p_open_mode,p_abort); } } } if (p_file.is_valid()) { pfc::string8 content_type; if (p_file->get_content_type(content_type)) { if (input_entry::g_find_service_by_content_type(p_service,content_type)) return; } } if (input_entry::g_find_service_by_path(p_service,p_path)) { if (p_from_redirect && p_service->is_redirect()) throw exception_io_unsupported_format(); return; } throw exception_io_unsupported_format(); } #endif bool input_entry::g_find_inputs_by_content_type(pfc::list_base_t > & p_out, const char * p_content_type, bool p_from_redirect) { service_enum_t e; service_ptr_t ptr; bool ret = false; while (e.next(ptr)) { if (!(p_from_redirect && ptr->is_redirect())) { if (ptr->is_our_content_type(p_content_type)) { p_out.add_item(ptr); ret = true; } } } return ret; } bool input_entry::g_find_inputs_by_path(pfc::list_base_t > & p_out, const char * p_path, bool p_from_redirect) { service_enum_t e; service_ptr_t ptr; auto extension = pfc::string_extension(p_path); bool ret = false; while (e.next(ptr)) { if (!(p_from_redirect && ptr->is_redirect())) { if (ptr->is_our_path(p_path, extension)) { p_out.add_item(ptr); ret = true; } } } return ret; } static GUID input_get_guid( input_entry::ptr e ) { #ifdef FOOBAR2000_DESKTOP input_entry_v2::ptr p; if ( p &= e ) return p->get_guid(); #endif return pfc::guid_null; } service_ptr input_entry::g_open_from_list(input_entry_list_t const & p_list, const GUID & whatFor, service_ptr_t p_filehint, const char * p_path, abort_callback & p_abort, GUID * outGUID) { const t_size count = p_list.get_count(); if ( count == 0 ) { // sanity throw exception_io_unsupported_format(); } else if (count == 1) { auto ret = p_list[0]->open(whatFor, p_filehint, p_path, p_abort); if ( outGUID != nullptr ) * outGUID = input_get_guid( p_list[0] ); return ret; } else { unsigned bad_data_count = 0; pfc::string8 bad_data_message; for (t_size n = 0; n < count; n++) { try { auto ret = p_list[n]->open(whatFor, p_filehint, p_path, p_abort); if (outGUID != nullptr) * outGUID = input_get_guid(p_list[n]); return ret; } catch (exception_io_no_handler_for_path) { //do nothing, skip over } catch (exception_io_unsupported_format) { //do nothing, skip over } catch (exception_io_data const & e) { if (bad_data_count++ == 0) bad_data_message = e.what(); } } if (bad_data_count > 1) throw exception_io_data(); else if (bad_data_count == 0) pfc::throw_exception_with_message(bad_data_message); else throw exception_io_unsupported_format(); } } service_ptr input_entry::g_open(const GUID & whatFor, file::ptr p_filehint, const char * p_path, abort_callback & p_abort, bool p_from_redirect) { #ifdef FOOBAR2000_DESKTOP #if FOOBAR2000_TARGET_VERSION >= 79 return input_manager::get()->open(whatFor, p_filehint, p_path, p_from_redirect, p_abort); #endif { input_manager::ptr m; service_enum_t e; if (e.next(m)) { return m->open(whatFor, p_filehint, p_path, p_from_redirect, p_abort); } } #endif const bool needWriteAcecss = !!(whatFor == input_info_writer::class_guid); service_ptr_t l_file = p_filehint; if (l_file.is_empty()) { service_ptr_t fs; if (filesystem::g_get_interface(fs, p_path)) { if (fs->supports_content_types()) { fs->open(l_file, p_path, needWriteAcecss ? filesystem::open_mode_write_existing : filesystem::open_mode_read, p_abort); } } } if (l_file.is_valid()) { pfc::string8 content_type; if (l_file->get_content_type(content_type)) { pfc::list_t< input_entry::ptr > list; #if PFC_DEBUG FB2K_DebugLog() << "attempting input open by content type: " << content_type; #endif if (g_find_inputs_by_content_type(list, content_type, p_from_redirect)) { try { return g_open_from_list(list, whatFor, l_file, p_path, p_abort); } catch (exception_io_unsupported_format) { #if PFC_DEBUG FB2K_DebugLog() << "Failed to open by content type, using fallback"; #endif } } } } #if PFC_DEBUG FB2K_DebugLog() << "attempting input open by path: " << p_path; #endif { pfc::list_t< input_entry::ptr > list; if (g_find_inputs_by_path(list, p_path, p_from_redirect)) { return g_open_from_list(list, whatFor, l_file, p_path, p_abort); } } throw exception_io_unsupported_format(); } void input_entry::g_open_for_decoding(service_ptr_t & p_instance,service_ptr_t p_filehint,const char * p_path,abort_callback & p_abort,bool p_from_redirect) { TRACK_CALL_TEXT("input_entry::g_open_for_decoding"); p_instance ^= g_open(input_decoder::class_guid, p_filehint, p_path, p_abort, p_from_redirect); } void input_entry::g_open_for_info_read(service_ptr_t & p_instance,service_ptr_t p_filehint,const char * p_path,abort_callback & p_abort,bool p_from_redirect) { TRACK_CALL_TEXT("input_entry::g_open_for_info_read"); p_instance ^= g_open(input_info_reader::class_guid, p_filehint, p_path, p_abort, p_from_redirect); } void input_entry::g_open_for_info_write(service_ptr_t & p_instance,service_ptr_t p_filehint,const char * p_path,abort_callback & p_abort,bool p_from_redirect) { TRACK_CALL_TEXT("input_entry::g_open_for_info_write"); p_instance ^= g_open(input_info_writer::class_guid, p_filehint, p_path, p_abort, p_from_redirect); } void input_entry::g_open_for_info_write_timeout(service_ptr_t & p_instance,service_ptr_t p_filehint,const char * p_path,abort_callback & p_abort,double p_timeout,bool p_from_redirect) { pfc::lores_timer timer; timer.start(); for(;;) { try { g_open_for_info_write(p_instance,p_filehint,p_path,p_abort,p_from_redirect); break; } catch(exception_io_sharing_violation) { if (timer.query() > p_timeout) throw; p_abort.sleep(0.01); } } } bool input_entry::g_is_supported_path(const char * p_path) { service_ptr_t ptr; service_enum_t e; auto ext = pfc::string_extension (p_path); while(e.next(ptr)) { if (ptr->is_our_path(p_path,ext)) return true; } return false; } void input_open_file_helper(service_ptr_t & p_file,const char * p_path,t_input_open_reason p_reason,abort_callback & p_abort) { if (p_file.is_empty()) { switch(p_reason) { default: uBugCheck(); case input_open_info_read: case input_open_decode: filesystem::g_open(p_file,p_path,filesystem::open_mode_read,p_abort); break; case input_open_info_write: filesystem::g_open(p_file,p_path,filesystem::open_mode_write_existing,p_abort); break; } } else { p_file->reopen(p_abort); } } bool input_entry::g_are_parallel_reads_slow(const char * path) { auto ext = pfc::string_extension(path); input_entry::ptr svc; service_enum_t e; while (e.next(svc)) { if (svc->is_our_path(path, ext) && svc->are_parallel_reads_slow()) return true; } return false; }