[vlc-devel] [PATCH] UPnP discovery: Evaluate "TotalMatches" and "NumberReturned"
Thomas Guillem
thomas at gllm.fr
Sun May 3 19:57:03 CEST 2020
LGTM
On Fri, May 1, 2020, at 12:21, Felix Paul Kühne wrote:
> From: Andreas Krug <akrug at arcor.de>
>
> Browse again with increased "StartingIndex" and adapted "RequestCount".
> Solves
> #21381 Panasonic Viera returns maximal 20 items on uPnP
> #22496 DLNA/UPnP - Panasonic recorder 12 records limit
>
> Fixes #15876
>
> Signed-off-by: Felix Paul Kühne <felix at feepk.net>
> ---
> modules/services_discovery/upnp.cpp | 94 +++++++++++++++++------------
> modules/services_discovery/upnp.hpp | 2 +-
> 2 files changed, 58 insertions(+), 38 deletions(-)
>
> diff --git a/modules/services_discovery/upnp.cpp
> b/modules/services_discovery/upnp.cpp
> index 357d03be6d..054a5d1910 100644
> --- a/modules/services_discovery/upnp.cpp
> +++ b/modules/services_discovery/upnp.cpp
> @@ -1174,6 +1174,7 @@ int MediaServer::sendActionCb( Upnp_EventType
> eventType,
> IXML_Document* MediaServer::_browseAction( const char* psz_object_id_,
> const char*
> psz_browser_flag_,
> const char* psz_filter_,
> + const char*
> psz_starting_index,
> const char*
> psz_requested_count_,
> const char*
> psz_sort_criteria_ )
> {
> @@ -1218,7 +1219,7 @@ IXML_Document* MediaServer::_browseAction( const
> char* psz_object_id_,
> }
>
> i_res = UpnpAddToAction( &p_action, "Browse",
> - CONTENT_DIRECTORY_SERVICE_TYPE, "StartingIndex", "0" );
> + CONTENT_DIRECTORY_SERVICE_TYPE, "StartingIndex",
> psz_starting_index );
> if ( i_res != UPNP_E_SUCCESS )
> {
> msg_Dbg( m_access, "AddToAction 'StartingIndex' failed: %s",
> @@ -1274,52 +1275,71 @@ browseActionCleanup:
> */
> bool MediaServer::fetchContents()
> {
> - IXML_Document* p_response = _browseAction( m_psz_objectId,
> - "BrowseDirectChildren",
> - "*",
> - // Some servers don't understand
> "0" as "no-limit"
> - "5000", /* RequestedCount */
> - "" /* SortCriteria */
> - );
> - if ( !p_response )
> + std::string StartingIndex = "0";
> + std::string RequestedCount = "5000";
> + const char* psz_TotalMatches = "0";
> + const char* psz_NumberReturned = "0";
> + long l_reqCount = 0;
> +
> + do
> {
> - msg_Err( m_access, "No response from browse() action" );
> - return false;
> - }
> + IXML_Document* p_response = _browseAction( m_psz_objectId,
> +
> "BrowseDirectChildren",
> + "*",
> +
> StartingIndex.c_str(),
> + // Some servers
> don't understand "0" as "no-limit"
> +
> RequestedCount.c_str(), /* RequestedCount */
> + "" /* SortCriteria */
> + );
> + if ( !p_response )
> + {
> + msg_Err( m_access, "No response from browse() action" );
> + return false;
> + }
>
> - IXML_Document* p_result = parseBrowseResult( p_response );
> + psz_TotalMatches = xml_getChildElementValue(
> (IXML_Element*)p_response, "TotalMatches" );
> + psz_NumberReturned = xml_getChildElementValue(
> (IXML_Element*)p_response, "NumberReturned" );
>
> - ixmlDocument_free( p_response );
> + StartingIndex = std::to_string( std::stol(psz_NumberReturned)
> + std::stol(StartingIndex) );
> + l_reqCount = std::stol(psz_TotalMatches) -
> std::stol(StartingIndex) ;
> + RequestedCount = std::to_string(l_reqCount);
>
> - if ( !p_result )
> - {
> - msg_Err( m_access, "browse() response parsing failed" );
> - return false;
> - }
> + IXML_Document* p_result = parseBrowseResult( p_response );
> +
> + ixmlDocument_free( p_response );
> +
> + if ( !p_result )
> + {
> + msg_Err( m_access, "browse() response parsing failed" );
> + return false;
> + }
>
> - if( var_InheritInteger(m_access, "verbose") >= 4 )
> +#ifndef NDEBUG
> msg_Dbg( m_access, "Got DIDL document: %s", ixmlPrintDocument(
> p_result ) );
> +#endif
>
> - IXML_NodeList* containerNodeList =
> - ixmlDocument_getElementsByTagName( p_result, "container" );
> + IXML_NodeList* containerNodeList =
> + ixmlDocument_getElementsByTagName( p_result, "container" );
>
> - if ( containerNodeList )
> - {
> - for ( unsigned int i = 0; i < ixmlNodeList_length(
> containerNodeList ); i++ )
> - addContainer( (IXML_Element*)ixmlNodeList_item(
> containerNodeList, i ) );
> - ixmlNodeList_free( containerNodeList );
> - }
> + if ( containerNodeList )
> + {
> + for ( unsigned int i = 0; i < ixmlNodeList_length(
> containerNodeList ); i++)
> + addContainer( (IXML_Element*)ixmlNodeList_item(
> containerNodeList, i ) );
> + ixmlNodeList_free( containerNodeList );
> + }
>
> - IXML_NodeList* itemNodeList = ixmlDocument_getElementsByTagName(
> p_result,
> -
> "item" );
> - if ( itemNodeList )
> - {
> - for ( unsigned int i = 0; i < ixmlNodeList_length(
> itemNodeList ); i++ )
> - addItem( (IXML_Element*)ixmlNodeList_item( itemNodeList, i
> ) );
> - ixmlNodeList_free( itemNodeList );
> - }
> + IXML_NodeList* itemNodeList =
> ixmlDocument_getElementsByTagName( p_result,
> +
> "item" );
> + if ( itemNodeList )
> + {
> + for ( unsigned int i = 0; i < ixmlNodeList_length(
> itemNodeList ); i++)
> + addItem( (IXML_Element*)ixmlNodeList_item(
> itemNodeList, i ) );
> + ixmlNodeList_free( itemNodeList );
> + }
>
> - ixmlDocument_free( p_result );
> + ixmlDocument_free( p_result );
> + }
> + while( l_reqCount );
> return true;
> }
>
> diff --git a/modules/services_discovery/upnp.hpp
> b/modules/services_discovery/upnp.hpp
> index cf291395cb..ae5894bca5 100644
> --- a/modules/services_discovery/upnp.hpp
> +++ b/modules/services_discovery/upnp.hpp
> @@ -112,7 +112,7 @@ private:
> bool addContainer( IXML_Element* containerElement );
> bool addItem( IXML_Element* itemElement );
>
> - IXML_Document* _browseAction(const char*, const char*,
> + IXML_Document* _browseAction(const char*, const char*, const char*,
> const char*, const char*, const char* );
> static int sendActionCb( Upnp_EventType, UpnpEventPtr, void *);
>
> --
> 2.21.1 (Apple Git-122.3)
>
> _______________________________________________
> vlc-devel mailing list
> To unsubscribe or modify your subscription options:
> https://mailman.videolan.org/listinfo/vlc-devel
More information about the vlc-devel
mailing list