Mercurial > foo_out_sdl
view foosdk/sdk/foobar2000/SDK/library_manager.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 source
#pragma once #include "callback_merit.h" class library_callback_dynamic; class library_callback_v2_dynamic; /*! This service implements methods allowing you to interact with the Media Library.\n All methods are valid from main thread only, unless noted otherwise.\n Usage: Use library_manager::get() to instantiate. */ class NOVTABLE library_manager : public service_base { FB2K_MAKE_SERVICE_COREAPI(library_manager); public: //! Interface for use with library_manager::enum_items(). class NOVTABLE enum_callback { public: //! Return true to continue enumeration, false to abort. virtual bool on_item(const metadb_handle_ptr & p_item) = 0; }; //! Returns whether the specified item is in the Media Library or not. //! MAIN THREAD ONLY until foobar2000 v2.0; valid to call from anywhere since v2.0 virtual bool is_item_in_library(const metadb_handle_ptr & p_item) = 0; //! Returns whether current user settings allow the specified item to be added to the Media Library or not. //! MAIN THREAD ONLY until foobar2000 v2.0; valid to call from anywhere since v2.0 virtual bool is_item_addable(const metadb_handle_ptr & p_item) = 0; //! Returns whether current user settings allow the specified item path to be added to the Media Library or not. //! MAIN THREAD ONLY until foobar2000 v2.0; valid to call from anywhere since v2.0 virtual bool is_path_addable(const char * p_path) = 0; //! Retrieves path of the specified item relative to the Media Library folder it is in. Returns true on success, false when the item is not in the Media Library. //! SPECIAL WARNING: to allow multi-CPU optimizations to parse relative track paths, this API works in threads other than the main app thread. Main thread MUST be blocked while working in such scenarios, it's NOT safe to call from worker threads while the Media Library content/configuration might be getting altered. //! foobar2000 v2.0 and newer: legal to call from any thread with no restrictions. virtual bool get_relative_path(const metadb_handle_ptr & p_item,pfc::string_base & p_out) = 0; //! Calls callback method for every item in the Media Library. Note that order of items in Media Library is undefined. virtual void enum_items(enum_callback & p_callback) = 0; protected: //! OBSOLETE, do not call, does nothing. FB2K_DEPRECATED virtual void add_items(const pfc::list_base_const_t<metadb_handle_ptr> & p_data) = 0; //! OBSOLETE, do not call, does nothing. FB2K_DEPRECATED virtual void remove_items(const pfc::list_base_const_t<metadb_handle_ptr> & p_data) = 0; //! OBSOLETE, do not call, does nothing. FB2K_DEPRECATED virtual void add_items_async(const pfc::list_base_const_t<metadb_handle_ptr> & p_data) = 0; //! OBSOLETE, do not call, does nothing. FB2K_DEPRECATED virtual void on_files_deleted_sorted(const pfc::list_base_const_t<const char *> & p_data) = 0; public: //! Retrieves the entire Media Library content. virtual void get_all_items(pfc::list_base_t<metadb_handle_ptr> & p_out) = 0; //! Returns whether Media Library functionality is enabled or not (to be exact: whether there's at least one Media Library folder present in settings), for e.g. notifying the user to change settings when trying to use a Media Library viewer without having configured the Media Library first. virtual bool is_library_enabled() = 0; //! Pops up the Media Library preferences page. virtual void show_preferences() = 0; //! OBSOLETE, do not call. virtual void rescan() = 0; protected: //! OBSOLETE, do not call, does nothing. FB2K_DEPRECATED virtual void check_dead_entries(const pfc::list_base_t<metadb_handle_ptr> & p_list) = 0; public: }; //! \since 0.9.3 class NOVTABLE library_manager_v2 : public library_manager { FB2K_MAKE_SERVICE_COREAPI_EXTENSION(library_manager_v2,library_manager); protected: //! OBSOLETE, do not call, does nothing. FB2K_DEPRECATED virtual bool is_rescan_running() = 0; //! OBSOLETE, do not call, does nothing. FB2K_DEPRECATED virtual void rescan_async(fb2k::hwnd_t p_parent,completion_notify_ptr p_notify) = 0; //! OBSOLETE, do not call, does nothing. FB2K_DEPRECATED virtual void check_dead_entries_async(const pfc::list_base_const_t<metadb_handle_ptr> & p_list,fb2k::hwnd_t p_parent,completion_notify_ptr p_notify) = 0; }; //! \since 0.9.5 class NOVTABLE library_manager_v3 : public library_manager_v2 { public: //! Retrieves directory path and subdirectory/filename formatting scheme for newly encoded/copied/moved tracks. //! @returns True on success, false when the feature has not been configured. virtual bool get_new_file_pattern_tracks(pfc::string_base & p_directory,pfc::string_base & p_format) = 0; //! Retrieves directory path and subdirectory/filename formatting scheme for newly encoded/copied/moved full album images. //! @returns True on success, false when the feature has not been configured. virtual bool get_new_file_pattern_images(pfc::string_base & p_directory,pfc::string_base & p_format) = 0; virtual void register_callback(library_callback_dynamic * p_callback) = 0; virtual void unregister_callback(library_callback_dynamic * p_callback) = 0; FB2K_MAKE_SERVICE_COREAPI_EXTENSION(library_manager_v3,library_manager_v2); }; //! \since 2.0 class NOVTABLE library_manager_v4 : public library_manager_v3 { public: virtual void register_callback_v2(library_callback_v2_dynamic*) = 0; virtual void unregister_callback_v2(library_callback_v2_dynamic*) = 0; virtual bool is_initialized() = 0; FB2K_MAKE_SERVICE_COREAPI_EXTENSION(library_manager_v4, library_manager_v3); }; //! \since 2.0 class NOVTABLE library_manager_v5 : public library_manager_v4 { FB2K_MAKE_SERVICE_COREAPI_EXTENSION(library_manager_v5, library_manager_v4); public: //! foobar2000 v2.0 late addition: let callbacks know if the current notification comes from actual changed tags or a display hook operation. Returns 1 or 0 for true or false. static const GUID status_current_callback_from_hook; //! Extensible status query method. Returns 0 for unrecognized commands. virtual size_t library_status(const GUID& arg, size_t arg1, void* arg2, size_t arg2bytes) = 0; bool is_current_callback_from_hook() { return library_status(status_current_callback_from_hook, 0, nullptr, 0) != 0; } }; //! \since 2.0 class NOVTABLE library_manager_v6 : public library_manager_v5 { FB2K_MAKE_SERVICE_COREAPI_EXTENSION(library_manager_v6, library_manager_v5); public: virtual void set_callback_merit(library_callback_v2_dynamic*, fb2k::callback_merit_t) = 0; }; //! Implement this service to appear on "library viewers" list in Media Library preferences page.\n //! Use library_viewer_factory_t to register. class NOVTABLE library_viewer : public service_base { public: //! Retrieves GUID of your preferences page (pfc::guid_null if you don't have one). virtual GUID get_preferences_page() = 0; //! Queries whether "activate" action is supported (relevant button will be disabled if it's not). virtual bool have_activate() = 0; //! Activates your Media Library viewer component (e.g. shows its window). virtual void activate() = 0; //! Retrieves GUID of your library_viewer implementation, for internal identification. Note that this not the same as preferences page GUID. virtual GUID get_guid() = 0; //! Retrieves name of your Media Library viewer, a null-terminated UTF-8 encoded string. virtual const char * get_name() = 0; FB2K_MAKE_SERVICE_INTERFACE_ENTRYPOINT(library_viewer); }; template<typename T> class library_viewer_factory_t : public service_factory_single_t<T> {}; //! \since 0.9.5.4 //! Allows you to spawn a popup Media Library Search window with any query string that you specify. \n //! Usage: library_search_ui::get()->show("querygoeshere"); class NOVTABLE library_search_ui : public service_base { public: virtual void show(const char * query) = 0; FB2K_MAKE_SERVICE_COREAPI(library_search_ui) }; //! \since 0.9.6 class NOVTABLE library_file_move_scope : public service_base { FB2K_MAKE_SERVICE_INTERFACE(library_file_move_scope, service_base) public: }; //! \since 0.9.6 class NOVTABLE library_file_move_manager : public service_base { FB2K_MAKE_SERVICE_COREAPI(library_file_move_manager) public: virtual library_file_move_scope::ptr acquire_scope() = 0; virtual bool is_move_in_progress() = 0; }; //! \since 0.9.6 class NOVTABLE library_file_move_notify_ { public: virtual void on_state_change(bool isMoving) = 0; }; //! \since 0.9.6 class NOVTABLE library_file_move_notify : public service_base, public library_file_move_notify_ { FB2K_MAKE_SERVICE_INTERFACE_ENTRYPOINT(library_file_move_notify) public: }; #ifdef _WIN32 //! \since 0.9.6.1 class NOVTABLE library_meta_autocomplete : public service_base { FB2K_MAKE_SERVICE_COREAPI(library_meta_autocomplete) public: virtual bool get_value_list(const char * metaName, pfc::com_ptr_t<IUnknown> & out) = 0; }; //! \since 1.6.1 //! Caching & asynchronous version. \n //! Keep a reference to your library_meta_autocomplete_v2 object in your dialog class to cache the looked up values & speed up the operation. class NOVTABLE library_meta_autocomplete_v2 : public service_base { FB2K_MAKE_SERVICE_COREAPI(library_meta_autocomplete_v2) public: virtual bool get_value_list_async(const char* metaName, pfc::com_ptr_t<IUnknown>& out) = 0; }; #endif // _WIN32
