Compare commits
1 Commits
visualisat
...
networkrem
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
784c86aa80 |
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
@@ -62,7 +62,6 @@ jobs:
|
||||
libchromaprint-devel
|
||||
fftw3-devel
|
||||
libebur128-devel
|
||||
projectM-devel
|
||||
desktop-file-utils
|
||||
update-desktop-files
|
||||
appstream-glib
|
||||
@@ -79,7 +78,6 @@ jobs:
|
||||
qt6-base-common-devel
|
||||
qt6-sql-sqlite
|
||||
qt6-linguist-devel
|
||||
qt6-openglwidgets-devel
|
||||
gtest
|
||||
gmock
|
||||
sparsehash-devel
|
||||
@@ -202,7 +200,6 @@ jobs:
|
||||
libchromaprint-devel
|
||||
libebur128-devel
|
||||
fftw-devel
|
||||
libprojectM-devel
|
||||
desktop-file-utils
|
||||
libappstream-glib
|
||||
hicolor-icon-theme
|
||||
@@ -293,7 +290,6 @@ jobs:
|
||||
lib64Qt6DBus-devel
|
||||
lib64Qt6Gui-devel
|
||||
lib64Qt6Widgets-devel
|
||||
lib64Qt6OpenGLWidgets-devel
|
||||
lib64Qt6Test-devel
|
||||
lib64kdsingleapplication-devel
|
||||
lib64xkbcommon-devel
|
||||
@@ -388,7 +384,6 @@ jobs:
|
||||
lib64fftw-devel
|
||||
lib64dbus-devel
|
||||
lib64appstream-devel
|
||||
lib64projectm-devel
|
||||
lib64qt6core-devel
|
||||
lib64qt6gui-devel
|
||||
lib64qt6widgets-devel
|
||||
@@ -398,7 +393,6 @@ jobs:
|
||||
lib64qt6dbus-devel
|
||||
lib64qt6help-devel
|
||||
lib64qt6test-devel
|
||||
lib64qt6openglwidgets-devel
|
||||
lib64sparsehash-devel
|
||||
lib64kdsingleapplication-devel
|
||||
desktop-file-utils
|
||||
@@ -505,7 +499,6 @@ jobs:
|
||||
qt6-tools-dev-tools
|
||||
qt6-l10n-tools
|
||||
rapidjson-dev
|
||||
libprojectm-dev
|
||||
- name: Install KDSingleApplication
|
||||
if: matrix.debian_version != 'bookworm'
|
||||
run: apt install -y libkdsingleapplication-qt6-dev
|
||||
@@ -602,7 +595,6 @@ jobs:
|
||||
qt6-tools-dev-tools
|
||||
qt6-l10n-tools
|
||||
rapidjson-dev
|
||||
libprojectm-dev
|
||||
- name: Install KDSingleApplication
|
||||
if: matrix.ubuntu_version != 'noble' && matrix.ubuntu_version != 'plucky'
|
||||
run: apt install -y libkdsingleapplication-qt6-dev
|
||||
@@ -701,7 +693,6 @@ jobs:
|
||||
gstreamer1.0-pulseaudio
|
||||
libkdsingleapplication-qt6-dev
|
||||
rapidjson-dev
|
||||
libprojectm-dev
|
||||
- name: Install keyboxd
|
||||
if: matrix.ubuntu_version == 'noble'
|
||||
env:
|
||||
|
||||
114
CMakeLists.txt
114
CMakeLists.txt
@@ -208,15 +208,6 @@ else()
|
||||
pkg_check_modules(TAGLIB REQUIRED IMPORTED_TARGET taglib>=1.12)
|
||||
endif()
|
||||
|
||||
find_package(projectM4 COMPONENTS Playlist)
|
||||
if(projectM4_FOUND)
|
||||
set(LIBPROJECTM_FOUND ON)
|
||||
set(HAVE_PROJECTM4 ON)
|
||||
set(LIBPROJECTM_LIBRARIES libprojectM::projectM libprojectM::playlist)
|
||||
else()
|
||||
pkg_check_modules(LIBPROJECTM libprojectM)
|
||||
endif()
|
||||
|
||||
find_package(GTest)
|
||||
|
||||
pkg_check_modules(LIBSPARSEHASH IMPORTED_TARGET libsparsehash)
|
||||
@@ -227,7 +218,7 @@ set(QT_VERSION_MAJOR 6)
|
||||
set(QT_MIN_VERSION 6.4.0)
|
||||
set(QT_DEFAULT_MAJOR_VERSION ${QT_VERSION_MAJOR})
|
||||
set(QT_COMPONENTS Core Concurrent Gui Widgets Network Sql)
|
||||
set(QT_OPTIONAL_COMPONENTS GuiPrivate OpenGLWidgets LinguistTools Test)
|
||||
set(QT_OPTIONAL_COMPONENTS GuiPrivate LinguistTools Test Protobuf)
|
||||
if(UNIX AND NOT APPLE)
|
||||
list(APPEND QT_OPTIONAL_COMPONENTS DBus)
|
||||
endif()
|
||||
@@ -287,6 +278,7 @@ if(APPLE OR WIN32)
|
||||
if(TARGET "qtsparkle-qt${QT_VERSION_MAJOR}::qtsparkle")
|
||||
set(QTSPARKLE_FOUND ON)
|
||||
endif()
|
||||
pkg_check_modules(TINYSVCMDNS IMPORTED_TARGET tinysvcmdns)
|
||||
endif()
|
||||
|
||||
if(UNIX AND NOT APPLE)
|
||||
@@ -390,6 +382,18 @@ optional_component(DISCORD_RPC ON "Discord Rich Presence"
|
||||
DEPENDS "RapidJSON" RapidJSON_FOUND
|
||||
)
|
||||
|
||||
if(WIN32)
|
||||
optional_component(NETWORKREMOTE ON "Network remote"
|
||||
DEPENDS "Qt Protobuf" Qt${QT_VERSION_MAJOR}Protobuf_FOUND
|
||||
DEPENDS "tinysvcmdns" TINYSVCMDNS_FOUND
|
||||
)
|
||||
else()
|
||||
optional_component(NETWORKREMOTE ON "Network remote"
|
||||
DEPENDS "Qt Protobuf" Qt${QT_VERSION_MAJOR}Protobuf_FOUND
|
||||
)
|
||||
endif()
|
||||
|
||||
|
||||
if(HAVE_SONGFINGERPRINTING OR HAVE_MUSICBRAINZ)
|
||||
set(HAVE_CHROMAPRINT ON)
|
||||
endif()
|
||||
@@ -398,11 +402,6 @@ if(HAVE_X11_GLOBALSHORTCUTS OR HAVE_KGLOBALACCEL_GLOBALSHORTCUTS OR APPLE OR WIN
|
||||
set(HAVE_GLOBALSHORTCUTS ON)
|
||||
endif()
|
||||
|
||||
optional_component(VISUALIZATIONS ON "Visualizations"
|
||||
DEPENDS "libprojectm" LIBPROJECTM_FOUND
|
||||
DEPENDS "QtOpenGLWidgets" Qt${QT_VERSION_MAJOR}OpenGLWidgets_FOUND
|
||||
)
|
||||
|
||||
if(NOT CMAKE_CROSSCOMPILING)
|
||||
# Check that we have Qt with sqlite driver
|
||||
set(CMAKE_REQUIRED_FLAGS "-std=c++17")
|
||||
@@ -773,6 +772,7 @@ set(SOURCES
|
||||
src/widgets/loginstatewidget.cpp
|
||||
src/widgets/ratingwidget.cpp
|
||||
src/widgets/resizabletextedit.cpp
|
||||
src/widgets/filechooserwidget.cpp
|
||||
|
||||
src/osd/osdbase.cpp
|
||||
src/osd/osdpretty.cpp
|
||||
@@ -1071,6 +1071,7 @@ set(HEADERS
|
||||
src/widgets/ratingwidget.h
|
||||
src/widgets/forcescrollperpixel.h
|
||||
src/widgets/resizabletextedit.h
|
||||
src/widgets/filechooserwidget.h
|
||||
|
||||
src/osd/osdbase.h
|
||||
src/osd/osdpretty.h
|
||||
@@ -1494,25 +1495,56 @@ optional_source(HAVE_QOBUZ
|
||||
src/settings/qobuzsettingspage.ui
|
||||
)
|
||||
|
||||
optional_source(HAVE_VISUALIZATIONS
|
||||
SOURCES
|
||||
src/visualizations/projectmpresetmodel.cpp
|
||||
src/visualizations/projectmvisualization.cpp
|
||||
src/visualizations/visualizationcontainer.cpp
|
||||
src/visualizations/visualizationoverlay.cpp
|
||||
src/visualizations/visualizationselector.cpp
|
||||
src/visualizations/visualizationopenglwidget.cpp
|
||||
HEADERS
|
||||
src/visualizations/projectmpresetmodel.h
|
||||
src/visualizations/projectmvisualization.h
|
||||
src/visualizations/visualizationcontainer.h
|
||||
src/visualizations/visualizationoverlay.h
|
||||
src/visualizations/visualizationselector.h
|
||||
src/visualizations/visualizationopenglwidget.h
|
||||
UI
|
||||
src/visualizations/visualizationoverlay.ui
|
||||
src/visualizations/visualizationselector.ui
|
||||
)
|
||||
if(HAVE_NETWORKREMOTE)
|
||||
optional_source(HAVE_NETWORKREMOTE
|
||||
SOURCES
|
||||
src/core/zeroconf.cpp
|
||||
src/networkremote/incomingdataparser.cpp
|
||||
src/networkremote/networkremote.cpp
|
||||
src/networkremote/outgoingdatacreator.cpp
|
||||
src/networkremote/networkremoteclient.cpp
|
||||
src/networkremote/songsender.cpp
|
||||
src/settings/networkremotesettingspage.cpp
|
||||
HEADERS
|
||||
src/networkremote/networkremote.h
|
||||
src/networkremote/incomingdataparser.h
|
||||
src/networkremote/outgoingdatacreator.h
|
||||
src/networkremote/networkremoteclient.h
|
||||
src/networkremote/songsender.h
|
||||
src/settings/networkremotesettingspage.h
|
||||
UI
|
||||
src/settings/networkremotesettingspage.ui
|
||||
)
|
||||
if(UNIX AND NOT APPLE)
|
||||
get_target_property(QT_DBUSXML2CPP_EXECUTABLE Qt${QT_VERSION_MAJOR}::qdbusxml2cpp LOCATION)
|
||||
add_custom_command(
|
||||
OUTPUT
|
||||
${CMAKE_CURRENT_BINARY_DIR}/avahi/avahiserver.cpp
|
||||
${CMAKE_CURRENT_BINARY_DIR}/avahi/avahiserver.h
|
||||
COMMAND ${QT_DBUSXML2CPP_EXECUTABLE}
|
||||
${CMAKE_SOURCE_DIR}/src/avahi/org.freedesktop.Avahi.Server.xml
|
||||
-p ${CMAKE_CURRENT_BINARY_DIR}/avahi/avahiserver
|
||||
-i includes/dbus_metatypes.h
|
||||
DEPENDS src/avahi/org.freedesktop.Avahi.Server.xml
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
||||
add_custom_command(
|
||||
OUTPUT
|
||||
${CMAKE_CURRENT_BINARY_DIR}/avahi/avahientrygroup.cpp
|
||||
${CMAKE_CURRENT_BINARY_DIR}/avahi/avahientrygroup.h
|
||||
COMMAND ${QT_DBUSXML2CPP_EXECUTABLE}
|
||||
${CMAKE_SOURCE_DIR}/src/avahi/org.freedesktop.Avahi.EntryGroup.xml
|
||||
-p ${CMAKE_CURRENT_BINARY_DIR}/avahi/avahientrygroup
|
||||
-i includes/dbus_metatypes.h
|
||||
DEPENDS src/avahi/org.freedesktop.Avahi.EntryGroup.xml
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
||||
list(APPEND SOURCES src/avahi/avahi.cpp ${CMAKE_CURRENT_BINARY_DIR}/avahi/avahientrygroup.cpp ${CMAKE_CURRENT_BINARY_DIR}/avahi/avahiserver.cpp)
|
||||
list(APPEND HEADERS src/avahi/avahi.h ${CMAKE_CURRENT_BINARY_DIR}/avahi/avahientrygroup.h ${CMAKE_CURRENT_BINARY_DIR}/avahi/avahiserver.h)
|
||||
endif()
|
||||
optional_source(APPLE SOURCES src/core/bonjour.mm HEADERS src/core/bonjour.h)
|
||||
optional_source(WIN32 SOURCES src/core/tinysvcmdns.cpp HEADERS src/core/tinysvcmdns.h)
|
||||
endif()
|
||||
|
||||
qt_wrap_cpp(SOURCES ${HEADERS})
|
||||
qt_wrap_ui(SOURCES ${UI})
|
||||
@@ -1552,6 +1584,12 @@ if(HAVE_TRANSLATIONS)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(HAVE_NETWORKREMOTE)
|
||||
qt_add_protobuf(NetworkRemoteMessages
|
||||
PROTO_FILES src/networkremote/networkremotemessages.proto
|
||||
)
|
||||
endif()
|
||||
|
||||
target_include_directories(strawberry_lib PUBLIC
|
||||
${CMAKE_SOURCE_DIR}
|
||||
${CMAKE_BINARY_DIR}
|
||||
@@ -1584,7 +1622,7 @@ target_link_libraries(strawberry_lib PUBLIC
|
||||
Qt${QT_VERSION_MAJOR}::Sql
|
||||
$<$<BOOL:${HAVE_DBUS}>:Qt${QT_VERSION_MAJOR}::DBus>
|
||||
$<$<BOOL:${HAVE_QPA_QPLATFORMNATIVEINTERFACE}>:Qt${QT_VERSION_MAJOR}::GuiPrivate>
|
||||
$<$<BOOL:${HAVE_VISUALIZATIONS}>:Qt${QT_VERSION_MAJOR}::OpenGLWidgets>
|
||||
$<$<BOOL:${HAVE_NETWORKREMOTE}>:Qt${QT_VERSION_MAJOR}::Protobuf>
|
||||
ICU::uc
|
||||
ICU::i18n
|
||||
$<$<BOOL:${HAVE_STREAMTAGREADER}>:PkgConfig::LIBSPARSEHASH>
|
||||
@@ -1600,11 +1638,11 @@ target_link_libraries(strawberry_lib PUBLIC
|
||||
$<$<BOOL:${HAVE_MTP}>:PkgConfig::LIBMTP>
|
||||
$<$<BOOL:${HAVE_GPOD}>:PkgConfig::LIBGPOD PkgConfig::GDK_PIXBUF>
|
||||
$<$<BOOL:${HAVE_QTSPARKLE}>:qtsparkle-qt${QT_VERSION_MAJOR}::qtsparkle>
|
||||
$<$<BOOL:${HAVE_VISUALIZATIONS}>:${LIBPROJECTM_LIBRARIES}>
|
||||
$<$<BOOL:${WIN32}>:dsound dwmapi ${GETOPT_LIBRARIES}>
|
||||
$<$<BOOL:${MSVC}>:WindowsApp>
|
||||
KDAB::kdsingleapplication
|
||||
$<$<BOOL:${HAVE_DISCORD_RPC}>:discord-rpc>
|
||||
$<$<BOOL:${HAVE_NETWORKREMOTE}>:NetworkRemoteMessages>
|
||||
)
|
||||
|
||||
if(APPLE)
|
||||
@@ -1623,6 +1661,10 @@ if(APPLE)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(WIN32 AND HAVE_NETWORKREMOTE)
|
||||
target_link_libraries(strawberry_lib PUBLIC PkgConfig::TINYSVCMDNS)
|
||||
endif()
|
||||
|
||||
target_link_libraries(strawberry PUBLIC strawberry_lib)
|
||||
|
||||
if(NOT APPLE)
|
||||
|
||||
3
debian/control
vendored
3
debian/control
vendored
@@ -32,8 +32,7 @@ Build-Depends: debhelper-compat (= 12),
|
||||
libfftw3-dev,
|
||||
libebur128-dev,
|
||||
libsparsehash-dev,
|
||||
rapidjson-dev,
|
||||
libprojectm-dev
|
||||
rapidjson-dev
|
||||
Standards-Version: 4.7.0
|
||||
|
||||
Package: strawberry
|
||||
|
||||
1
dist/unix/strawberry.spec.in
vendored
1
dist/unix/strawberry.spec.in
vendored
@@ -43,7 +43,6 @@ BuildRequires: pkgconfig(taglib)
|
||||
BuildRequires: pkgconfig(fftw3)
|
||||
BuildRequires: pkgconfig(icu-uc)
|
||||
BuildRequires: pkgconfig(icu-i18n)
|
||||
BuildRequires: pkgconfig(libprojectM)
|
||||
BuildRequires: cmake(Qt@QT_VERSION_MAJOR@Core)
|
||||
BuildRequires: cmake(Qt@QT_VERSION_MAJOR@Concurrent)
|
||||
BuildRequires: cmake(Qt@QT_VERSION_MAJOR@Network)
|
||||
|
||||
101
org.freedesktop.Avahi.EntryGroup.xml
Normal file
101
org.freedesktop.Avahi.EntryGroup.xml
Normal file
@@ -0,0 +1,101 @@
|
||||
<?xml version="1.0" standalone='no'?><!--*-nxml-*-->
|
||||
<?xml-stylesheet type="text/xsl" href="introspect.xsl"?>
|
||||
<!DOCTYPE node SYSTEM "introspect.dtd">
|
||||
|
||||
<!--
|
||||
This file is part of avahi.
|
||||
|
||||
avahi is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Lesser General Public License as
|
||||
published by the Free Software Foundation; either version 2 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
avahi is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with avahi; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
02111-1307 USA.
|
||||
-->
|
||||
|
||||
<node>
|
||||
|
||||
<interface name="org.freedesktop.DBus.Introspectable">
|
||||
<method name="Introspect">
|
||||
<arg name="data" type="s" direction="out"/>
|
||||
</method>
|
||||
</interface>
|
||||
|
||||
<interface name="org.freedesktop.Avahi.EntryGroup">
|
||||
<method name="Free"/>
|
||||
<method name="Commit"/>
|
||||
<method name="Reset"/>
|
||||
|
||||
<method name="GetState">
|
||||
<arg name="state" type="i" direction="out"/>
|
||||
</method>
|
||||
|
||||
<signal name="StateChanged">
|
||||
<arg name="state" type="i"/>
|
||||
<arg name="error" type="s"/>
|
||||
</signal>
|
||||
|
||||
<method name="IsEmpty">
|
||||
<arg name="empty" type="b" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="AddService">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="host" type="s" direction="in"/>
|
||||
<arg name="port" type="q" direction="in"/>
|
||||
<arg name="txt" type="aay" direction="in"/>
|
||||
</method>
|
||||
|
||||
<method name="AddServiceSubtype">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="subtype" type="s" direction="in"/>
|
||||
</method>
|
||||
|
||||
<method name="UpdateServiceTxt">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="txt" type="aay" direction="in"/>
|
||||
</method>
|
||||
|
||||
<method name="AddAddress">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="address" type="s" direction="in"/>
|
||||
</method>
|
||||
|
||||
<method name="AddRecord">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="clazz" type="q" direction="in"/>
|
||||
<arg name="type" type="q" direction="in"/>
|
||||
<arg name="ttl" type="u" direction="in"/>
|
||||
<arg name="rdata" type="ay" direction="in"/>
|
||||
</method>
|
||||
</interface>
|
||||
</node>
|
||||
405
org.freedesktop.Avahi.Server.xml
Normal file
405
org.freedesktop.Avahi.Server.xml
Normal file
@@ -0,0 +1,405 @@
|
||||
<?xml version="1.0" standalone='no'?><!--*-nxml-*-->
|
||||
<?xml-stylesheet type="text/xsl" href="introspect.xsl"?>
|
||||
<!DOCTYPE node SYSTEM "introspect.dtd">
|
||||
|
||||
<!--
|
||||
This file is part of avahi.
|
||||
|
||||
avahi is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Lesser General Public License as
|
||||
published by the Free Software Foundation; either version 2 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
avahi is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with avahi; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
02111-1307 USA.
|
||||
-->
|
||||
|
||||
<node>
|
||||
|
||||
<interface name="org.freedesktop.DBus.Introspectable">
|
||||
<method name="Introspect">
|
||||
<arg name="data" type="s" direction="out"/>
|
||||
</method>
|
||||
</interface>
|
||||
|
||||
<interface name="org.freedesktop.Avahi.Server">
|
||||
|
||||
<method name="GetVersionString">
|
||||
<arg name="version" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAPIVersion">
|
||||
<arg name="version" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetHostName">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="SetHostName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
</method>
|
||||
<method name="GetHostNameFqdn">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="GetDomainName">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="IsNSSSupportAvailable">
|
||||
<arg name="yes" type="b" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetState">
|
||||
<arg name="state" type="i" direction="out"/>
|
||||
</method>
|
||||
|
||||
<signal name="StateChanged">
|
||||
<arg name="state" type="i"/>
|
||||
<arg name="error" type="s"/>
|
||||
</signal>
|
||||
|
||||
<method name="GetLocalServiceCookie">
|
||||
<arg name="cookie" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAlternativeHostName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAlternativeServiceName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetNetworkInterfaceNameByIndex">
|
||||
<arg name="index" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="GetNetworkInterfaceIndexByName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="index" type="i" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveHostName">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveAddress">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="address" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveService">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="type" type="s" direction="out"/>
|
||||
<arg name="domain" type="s" direction="out"/>
|
||||
<arg name="host" type="s" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="port" type="q" direction="out"/>
|
||||
<arg name="txt" type="aay" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="EntryGroupNew">
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="DomainBrowserNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="btype" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceTypeBrowserNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceBrowserNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceResolverNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="HostNameResolverNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="AddressResolverNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="address" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="RecordBrowserNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="clazz" type="q" direction="in"/>
|
||||
<arg name="type" type="q" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
</interface>
|
||||
|
||||
<interface name="org.freedesktop.Avahi.Server2">
|
||||
|
||||
<method name="GetVersionString">
|
||||
<arg name="version" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAPIVersion">
|
||||
<arg name="version" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetHostName">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="SetHostName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
</method>
|
||||
<method name="GetHostNameFqdn">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="GetDomainName">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="IsNSSSupportAvailable">
|
||||
<arg name="yes" type="b" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetState">
|
||||
<arg name="state" type="i" direction="out"/>
|
||||
</method>
|
||||
|
||||
<signal name="StateChanged">
|
||||
<arg name="state" type="i"/>
|
||||
<arg name="error" type="s"/>
|
||||
</signal>
|
||||
|
||||
<method name="GetLocalServiceCookie">
|
||||
<arg name="cookie" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAlternativeHostName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAlternativeServiceName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetNetworkInterfaceNameByIndex">
|
||||
<arg name="index" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="GetNetworkInterfaceIndexByName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="index" type="i" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveHostName">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveAddress">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="address" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveService">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="type" type="s" direction="out"/>
|
||||
<arg name="domain" type="s" direction="out"/>
|
||||
<arg name="host" type="s" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="port" type="q" direction="out"/>
|
||||
<arg name="txt" type="aay" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="EntryGroupNew">
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="DomainBrowserPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="btype" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceTypeBrowserPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceBrowserPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceResolverPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="HostNameResolverPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="AddressResolverPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="address" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="RecordBrowserPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="clazz" type="q" direction="in"/>
|
||||
<arg name="type" type="q" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
</interface>
|
||||
</node>
|
||||
@@ -73,8 +73,7 @@ AnalyzerContainer::AnalyzerContainer(QWidget *parent)
|
||||
double_click_timer_(new QTimer(this)),
|
||||
ignore_next_click_(false),
|
||||
current_analyzer_(nullptr),
|
||||
engine_(nullptr),
|
||||
action_visualization_(nullptr) {
|
||||
engine_(nullptr) {
|
||||
|
||||
QHBoxLayout *layout = new QHBoxLayout(this);
|
||||
setLayout(layout);
|
||||
@@ -119,17 +118,6 @@ void AnalyzerContainer::mouseReleaseEvent(QMouseEvent *e) {
|
||||
|
||||
}
|
||||
|
||||
void AnalyzerContainer::mouseDoubleClickEvent(QMouseEvent *e) {
|
||||
|
||||
Q_UNUSED(e);
|
||||
|
||||
double_click_timer_->stop();
|
||||
ignore_next_click_ = true;
|
||||
|
||||
if (action_visualization_) action_visualization_->trigger();
|
||||
|
||||
}
|
||||
|
||||
void AnalyzerContainer::ShowPopupMenu() {
|
||||
context_menu_->popup(last_click_pos_);
|
||||
}
|
||||
@@ -261,10 +249,3 @@ void AnalyzerContainer::AddFramerate(const QString &name, const int framerate) {
|
||||
QObject::connect(action, &QAction::triggered, this, [this, framerate]() { ChangeFramerate(framerate); } );
|
||||
|
||||
}
|
||||
|
||||
void AnalyzerContainer::SetVisualizationsAction(QAction *visualization) {
|
||||
|
||||
action_visualization_ = visualization;
|
||||
context_menu_->addAction(action_visualization_);
|
||||
|
||||
}
|
||||
|
||||
@@ -46,7 +46,6 @@ class AnalyzerContainer : public QWidget {
|
||||
explicit AnalyzerContainer(QWidget *parent);
|
||||
|
||||
void SetEngine(SharedPtr<EngineBase> engine);
|
||||
void SetVisualizationsAction(QAction *visualization);
|
||||
|
||||
static const char *kSettingsGroup;
|
||||
static const char *kSettingsFramerate;
|
||||
@@ -56,7 +55,6 @@ class AnalyzerContainer : public QWidget {
|
||||
|
||||
protected:
|
||||
void mouseReleaseEvent(QMouseEvent *e) override;
|
||||
void mouseDoubleClickEvent(QMouseEvent *e) override;
|
||||
void wheelEvent(QWheelEvent *e) override;
|
||||
|
||||
private Q_SLOTS:
|
||||
@@ -91,8 +89,6 @@ class AnalyzerContainer : public QWidget {
|
||||
|
||||
AnalyzerBase *current_analyzer_;
|
||||
SharedPtr<EngineBase> engine_;
|
||||
|
||||
QAction *action_visualization_;
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
|
||||
114
src/avahi/avahi.cpp
Normal file
114
src/avahi/avahi.cpp
Normal file
@@ -0,0 +1,114 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <QByteArray>
|
||||
#include <QString>
|
||||
#include <QDBusConnection>
|
||||
#include <QDBusPendingReply>
|
||||
#include <QDBusPendingCallWatcher>
|
||||
|
||||
#include "core/logging.h"
|
||||
|
||||
#include "avahi.h"
|
||||
#include "avahi/avahiserver.h"
|
||||
#include "avahi/avahientrygroup.h"
|
||||
|
||||
using namespace Qt::StringLiterals;
|
||||
|
||||
Avahi::Avahi(QObject *parent) : Zeroconf(parent), port_(0), entry_group_interface_(nullptr) {}
|
||||
|
||||
void Avahi::PublishInternal(const QString &domain, const QString &type, const QByteArray &name, quint16 port) {
|
||||
|
||||
domain_ = domain;
|
||||
type_ = type;
|
||||
name_ = name;
|
||||
port_ = port;
|
||||
|
||||
OrgFreedesktopAvahiServerInterface server_interface(u"org.freedesktop.Avahi"_s, u"/"_s, QDBusConnection::systemBus());
|
||||
QDBusPendingReply<QDBusObjectPath> reply = server_interface.EntryGroupNew();
|
||||
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(reply);
|
||||
QObject::connect(watcher, &QDBusPendingCallWatcher::finished, this, &Avahi::PublishInternalFinished);
|
||||
|
||||
}
|
||||
|
||||
void Avahi::PublishInternalFinished(QDBusPendingCallWatcher *watcher) {
|
||||
|
||||
const QDBusPendingReply<QDBusObjectPath> path_reply = watcher->reply();
|
||||
|
||||
watcher->deleteLater();
|
||||
|
||||
if (path_reply.isError()) {
|
||||
qLog(Error) << "Failed to create Avahi entry group:" << path_reply.error();
|
||||
qLog(Info) << "This might be because 'disable-user-service-publishing'" << "is set to 'yes' in avahi-daemon.conf";
|
||||
return;
|
||||
}
|
||||
|
||||
AddService(path_reply.reply().path());
|
||||
|
||||
}
|
||||
|
||||
void Avahi::AddService(const QString &path) {
|
||||
|
||||
entry_group_interface_ = new OrgFreedesktopAvahiEntryGroupInterface(u"org.freedesktop.Avahi"_s, path, QDBusConnection::systemBus());
|
||||
QDBusPendingReply<> reply = entry_group_interface_->AddService(-1, -1, 0, QString::fromUtf8(name_.constData(), name_.size()), type_, domain_, QString(), port_);
|
||||
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(reply);
|
||||
QObject::connect(watcher, &QDBusPendingCallWatcher::finished, this, &Avahi::AddServiceFinished);
|
||||
|
||||
}
|
||||
|
||||
void Avahi::AddServiceFinished(QDBusPendingCallWatcher *watcher) {
|
||||
|
||||
const QDBusPendingReply<QDBusObjectPath> path_reply = watcher->reply();
|
||||
|
||||
watcher->deleteLater();
|
||||
|
||||
if (path_reply.isError()) {
|
||||
qLog(Error) << "Failed to add Avahi service:" << path_reply.error();
|
||||
return;
|
||||
}
|
||||
|
||||
Commit();
|
||||
|
||||
}
|
||||
|
||||
void Avahi::Commit() {
|
||||
|
||||
QDBusPendingReply<> reply = entry_group_interface_->Commit();
|
||||
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(reply);
|
||||
QObject::connect(watcher, &QDBusPendingCallWatcher::finished, this, &Avahi::CommitFinished);
|
||||
|
||||
}
|
||||
|
||||
void Avahi::CommitFinished(QDBusPendingCallWatcher *watcher) {
|
||||
|
||||
const QDBusPendingReply<QDBusObjectPath> path_reply = watcher->reply();
|
||||
|
||||
watcher->deleteLater();
|
||||
|
||||
entry_group_interface_->deleteLater();
|
||||
entry_group_interface_ = nullptr;
|
||||
|
||||
if (path_reply.isError()) {
|
||||
qLog(Debug) << "Commit error:" << path_reply.error();
|
||||
}
|
||||
else {
|
||||
qLog(Debug) << "Remote interface published on Avahi";
|
||||
}
|
||||
|
||||
}
|
||||
58
src/avahi/avahi.h
Normal file
58
src/avahi/avahi.h
Normal file
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AVAHI_H
|
||||
#define AVAHI_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QByteArray>
|
||||
#include <QString>
|
||||
|
||||
#include "core/zeroconf.h"
|
||||
|
||||
class QDBusPendingCallWatcher;
|
||||
class OrgFreedesktopAvahiEntryGroupInterface;
|
||||
|
||||
class Avahi : public Zeroconf {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit Avahi(QObject *parent = nullptr);
|
||||
|
||||
private:
|
||||
void AddService(const QString &path);
|
||||
void Commit();
|
||||
|
||||
private Q_SLOTS:
|
||||
void PublishInternalFinished(QDBusPendingCallWatcher *watcher);
|
||||
void AddServiceFinished(QDBusPendingCallWatcher *watcher);
|
||||
void CommitFinished(QDBusPendingCallWatcher *watcher);
|
||||
|
||||
protected:
|
||||
virtual void PublishInternal(const QString &domain, const QString &type, const QByteArray &name, quint16 port) override;
|
||||
|
||||
private:
|
||||
QString domain_;
|
||||
QString type_;
|
||||
QByteArray name_;
|
||||
quint16 port_;
|
||||
OrgFreedesktopAvahiEntryGroupInterface *entry_group_interface_;
|
||||
};
|
||||
|
||||
#endif // AVAHI_H
|
||||
98
src/avahi/org.freedesktop.Avahi.EntryGroup.xml
Normal file
98
src/avahi/org.freedesktop.Avahi.EntryGroup.xml
Normal file
@@ -0,0 +1,98 @@
|
||||
<?xml version="1.0" standalone='no'?><!--*-nxml-*-->
|
||||
<!DOCTYPE node SYSTEM "introspect.dtd">
|
||||
|
||||
<!--
|
||||
This file is part of avahi.
|
||||
|
||||
avahi is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Lesser General Public License as
|
||||
published by the Free Software Foundation; either version 2 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
avahi is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with avahi; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
02111-1307 USA.
|
||||
-->
|
||||
|
||||
<node>
|
||||
|
||||
<interface name="org.freedesktop.DBus.Introspectable">
|
||||
<method name="Introspect">
|
||||
<arg name="data" type="s" direction="out"/>
|
||||
</method>
|
||||
</interface>
|
||||
|
||||
<interface name="org.freedesktop.Avahi.EntryGroup">
|
||||
<method name="Free"/>
|
||||
<method name="Commit"/>
|
||||
<method name="Reset"/>
|
||||
|
||||
<method name="GetState">
|
||||
<arg name="state" type="i" direction="out"/>
|
||||
</method>
|
||||
|
||||
<signal name="StateChanged">
|
||||
<arg name="state" type="i"/>
|
||||
<arg name="error" type="s"/>
|
||||
</signal>
|
||||
|
||||
<method name="IsEmpty">
|
||||
<arg name="empty" type="b" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="AddService">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="host" type="s" direction="in"/>
|
||||
<arg name="port" type="q" direction="in"/>
|
||||
</method>
|
||||
|
||||
<method name="AddServiceSubtype">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="subtype" type="s" direction="in"/>
|
||||
</method>
|
||||
|
||||
<method name="UpdateServiceTxt">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
</method>
|
||||
|
||||
<method name="AddAddress">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="address" type="s" direction="in"/>
|
||||
</method>
|
||||
|
||||
<method name="AddRecord">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="clazz" type="q" direction="in"/>
|
||||
<arg name="type" type="q" direction="in"/>
|
||||
<arg name="ttl" type="u" direction="in"/>
|
||||
<arg name="rdata" type="ay" direction="in"/>
|
||||
</method>
|
||||
</interface>
|
||||
</node>
|
||||
396
src/avahi/org.freedesktop.Avahi.Server.xml
Normal file
396
src/avahi/org.freedesktop.Avahi.Server.xml
Normal file
@@ -0,0 +1,396 @@
|
||||
<?xml version="1.0" standalone='no'?><!--*-nxml-*-->
|
||||
<!DOCTYPE node SYSTEM "introspect.dtd">
|
||||
|
||||
<!--
|
||||
This file is part of avahi.
|
||||
|
||||
avahi is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Lesser General Public License as
|
||||
published by the Free Software Foundation; either version 2 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
avahi is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with avahi; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
02111-1307 USA.
|
||||
-->
|
||||
|
||||
<node>
|
||||
|
||||
<interface name="org.freedesktop.Avahi.Server">
|
||||
|
||||
<method name="GetVersionString">
|
||||
<arg name="version" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAPIVersion">
|
||||
<arg name="version" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetHostName">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="SetHostName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
</method>
|
||||
<method name="GetHostNameFqdn">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="GetDomainName">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="IsNSSSupportAvailable">
|
||||
<arg name="yes" type="b" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetState">
|
||||
<arg name="state" type="i" direction="out"/>
|
||||
</method>
|
||||
|
||||
<signal name="StateChanged">
|
||||
<arg name="state" type="i"/>
|
||||
<arg name="error" type="s"/>
|
||||
</signal>
|
||||
|
||||
<method name="GetLocalServiceCookie">
|
||||
<arg name="cookie" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAlternativeHostName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAlternativeServiceName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetNetworkInterfaceNameByIndex">
|
||||
<arg name="index" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="GetNetworkInterfaceIndexByName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="index" type="i" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveHostName">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveAddress">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="address" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveService">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="type" type="s" direction="out"/>
|
||||
<arg name="domain" type="s" direction="out"/>
|
||||
<arg name="host" type="s" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="port" type="q" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="EntryGroupNew">
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="DomainBrowserNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="btype" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceTypeBrowserNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceBrowserNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceResolverNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="HostNameResolverNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="AddressResolverNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="address" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="RecordBrowserNew">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="clazz" type="q" direction="in"/>
|
||||
<arg name="type" type="q" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
</interface>
|
||||
|
||||
<interface name="org.freedesktop.Avahi.Server2">
|
||||
|
||||
<method name="GetVersionString">
|
||||
<arg name="version" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAPIVersion">
|
||||
<arg name="version" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetHostName">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="SetHostName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
</method>
|
||||
<method name="GetHostNameFqdn">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="GetDomainName">
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="IsNSSSupportAvailable">
|
||||
<arg name="yes" type="b" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetState">
|
||||
<arg name="state" type="i" direction="out"/>
|
||||
</method>
|
||||
|
||||
<signal name="StateChanged">
|
||||
<arg name="state" type="i"/>
|
||||
<arg name="error" type="s"/>
|
||||
</signal>
|
||||
|
||||
<method name="GetLocalServiceCookie">
|
||||
<arg name="cookie" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAlternativeHostName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetAlternativeServiceName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="GetNetworkInterfaceNameByIndex">
|
||||
<arg name="index" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
</method>
|
||||
<method name="GetNetworkInterfaceIndexByName">
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="index" type="i" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveHostName">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveAddress">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="address" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ResolveService">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="interface" type="i" direction="out"/>
|
||||
<arg name="protocol" type="i" direction="out"/>
|
||||
<arg name="name" type="s" direction="out"/>
|
||||
<arg name="type" type="s" direction="out"/>
|
||||
<arg name="domain" type="s" direction="out"/>
|
||||
<arg name="host" type="s" direction="out"/>
|
||||
<arg name="aprotocol" type="i" direction="out"/>
|
||||
<arg name="address" type="s" direction="out"/>
|
||||
<arg name="port" type="q" direction="out"/>
|
||||
<arg name="flags" type="u" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="EntryGroupNew">
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="DomainBrowserPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="btype" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceTypeBrowserPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceBrowserPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="ServiceResolverPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="type" type="s" direction="in"/>
|
||||
<arg name="domain" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="HostNameResolverPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="aprotocol" type="i" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="AddressResolverPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="address" type="s" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
<method name="RecordBrowserPrepare">
|
||||
<arg name="interface" type="i" direction="in"/>
|
||||
<arg name="protocol" type="i" direction="in"/>
|
||||
<arg name="name" type="s" direction="in"/>
|
||||
<arg name="clazz" type="q" direction="in"/>
|
||||
<arg name="type" type="q" direction="in"/>
|
||||
<arg name="flags" type="u" direction="in"/>
|
||||
|
||||
<arg name="path" type="o" direction="out"/>
|
||||
</method>
|
||||
|
||||
</interface>
|
||||
</node>
|
||||
@@ -33,6 +33,7 @@
|
||||
#cmakedefine HAVE_SPOTIFY
|
||||
#cmakedefine HAVE_QOBUZ
|
||||
#cmakedefine HAVE_DISCORD_RPC
|
||||
#cmakedefine HAVE_NETWORKREMOTE
|
||||
|
||||
#cmakedefine HAVE_TAGLIB_DSFFILE
|
||||
#cmakedefine HAVE_TAGLIB_DSDIFFFILE
|
||||
@@ -48,7 +49,4 @@
|
||||
|
||||
#cmakedefine ENABLE_WIN32_CONSOLE
|
||||
|
||||
#cmakedefine HAVE_VISUALIZATIONS
|
||||
#cmakedefine HAVE_PROJECTM4
|
||||
|
||||
#endif // CONFIG_H_IN
|
||||
|
||||
36
src/constants/networkremoteconstants.h
Normal file
36
src/constants/networkremoteconstants.h
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef NETWORKREMOTECONSTANTS_H
|
||||
#define NETWORKREMOTECONSTANTS_H
|
||||
|
||||
#include <QStringList>
|
||||
|
||||
using namespace Qt::Literals::StringLiterals;
|
||||
|
||||
namespace NetworkRemoteConstants {
|
||||
|
||||
const QStringList kDefaultMusicExtensionsAllowedRemotely = { u"aac"_s, u"alac"_s, u"flac"_s, u"m3u"_s, u"m4a"_s, u"mp3"_s, u"ogg"_s, u"wav"_s, u"wmv"_s };
|
||||
constexpr quint16 kDefaultServerPort = 5500;
|
||||
constexpr char kTranscoderSettingPostfix[] = "/NetworkRemote";
|
||||
constexpr quint32 kFileChunkSize = 100000;
|
||||
|
||||
} // namespace NetworkRemoteConstants
|
||||
|
||||
#endif // NETWORKREMOTECONSTANTS_H
|
||||
35
src/constants/networkremotesettingsconstants.h
Normal file
35
src/constants/networkremotesettingsconstants.h
Normal file
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef NETWORKREMOTESETTINGSCONSTANTS_H
|
||||
#define NETWORKREMOTESETTINGSCONSTANTS_H
|
||||
|
||||
namespace NetworkRemoteSettingsConstants {
|
||||
|
||||
constexpr char kSettingsGroup[] = "NetworkRemote";
|
||||
constexpr char kEnabled[] = "enabled";
|
||||
constexpr char kPort[] = "port";
|
||||
constexpr char kAllowPublicAccess[] = "allow_public_access";
|
||||
constexpr char kUseAuthCode[] = "use_authcode";
|
||||
constexpr char kAuthCode[] = "authcode";
|
||||
constexpr char kFilesRootFolder[] = "files_root_folder";
|
||||
|
||||
} // namespace NetworkRemoteSettingsConstants
|
||||
|
||||
#endif // NETWORKREMOTESETTINGSCONSTANTS_H
|
||||
@@ -110,6 +110,10 @@
|
||||
# include "moodbar/moodbarloader.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_NETWORKREMOTE
|
||||
# include "networkremote/networkremote.h"
|
||||
#endif
|
||||
|
||||
#include "radios/radioservices.h"
|
||||
#include "radios/radiobackend.h"
|
||||
|
||||
@@ -216,6 +220,13 @@ class ApplicationImpl {
|
||||
#ifdef HAVE_MOODBAR
|
||||
moodbar_loader_([app]() { return new MoodbarLoader(app); }),
|
||||
moodbar_controller_([app]() { return new MoodbarController(app->player(), app->moodbar_loader()); }),
|
||||
#endif
|
||||
#ifdef HAVE_NETWORKREMOTE
|
||||
network_remote_([app]() {
|
||||
NetworkRemote *networkremote = new NetworkRemote(app->database(), app->player(), app->collection_backend(), app->playlist_manager(), app->playlist_backend(), app->current_albumcover_loader(), app->scrobbler());
|
||||
app->MoveToNewThread(networkremote);
|
||||
return networkremote;
|
||||
}),
|
||||
#endif
|
||||
lastfm_import_([app]() { return new LastFMImport(app->network()); })
|
||||
{}
|
||||
@@ -241,6 +252,9 @@ class ApplicationImpl {
|
||||
#ifdef HAVE_MOODBAR
|
||||
Lazy<MoodbarLoader> moodbar_loader_;
|
||||
Lazy<MoodbarController> moodbar_controller_;
|
||||
#endif
|
||||
#ifdef HAVE_NETWORKREMOTE
|
||||
Lazy<NetworkRemote> network_remote_;
|
||||
#endif
|
||||
Lazy<LastFMImport> lastfm_import_;
|
||||
|
||||
@@ -390,3 +404,6 @@ SharedPtr<LastFMImport> Application::lastfm_import() const { return p_->lastfm_i
|
||||
SharedPtr<MoodbarController> Application::moodbar_controller() const { return p_->moodbar_controller_.ptr(); }
|
||||
SharedPtr<MoodbarLoader> Application::moodbar_loader() const { return p_->moodbar_loader_.ptr(); }
|
||||
#endif
|
||||
#ifdef HAVE_NETWORKREMOTE
|
||||
SharedPtr<NetworkRemote> Application::network_remote() const { return p_->network_remote_.ptr(); }
|
||||
#endif
|
||||
|
||||
@@ -63,6 +63,9 @@ class RadioServices;
|
||||
class MoodbarController;
|
||||
class MoodbarLoader;
|
||||
#endif
|
||||
#ifdef HAVE_NETWORKREMOTE
|
||||
class NetworkRemote;
|
||||
#endif
|
||||
|
||||
class Application : public QObject {
|
||||
Q_OBJECT
|
||||
@@ -103,6 +106,10 @@ class Application : public QObject {
|
||||
SharedPtr<MoodbarLoader> moodbar_loader() const;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_NETWORKREMOTE
|
||||
SharedPtr<NetworkRemote> network_remote() const;
|
||||
#endif
|
||||
|
||||
SharedPtr<LastFMImport> lastfm_import() const;
|
||||
|
||||
void Exit();
|
||||
|
||||
24
src/core/bonjour.h
Normal file
24
src/core/bonjour.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef BONJOUR_H
|
||||
#define BONJOUR_H
|
||||
|
||||
#include "zeroconf.h"
|
||||
|
||||
#ifdef __OBJC__
|
||||
@class NetServicePublicationDelegate;
|
||||
#else
|
||||
class NetServicePublicationDelegate;
|
||||
#endif // __OBJC__
|
||||
|
||||
class Bonjour : public Zeroconf {
|
||||
public:
|
||||
explicit Bonjour();
|
||||
virtual ~Bonjour();
|
||||
|
||||
protected:
|
||||
virtual void PublishInternal(const QString &domain, const QString &type, const QByteArray &name, const quint16 port);
|
||||
|
||||
private:
|
||||
NetServicePublicationDelegate *delegate_;
|
||||
};
|
||||
|
||||
#endif // BONJOUR_H
|
||||
57
src/core/bonjour.mm
Normal file
57
src/core/bonjour.mm
Normal file
@@ -0,0 +1,57 @@
|
||||
#include "bonjour.h"
|
||||
|
||||
#import <Foundation/NSNetServices.h>
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
#include "core/logging.h"
|
||||
#include "core/scoped_nsautorelease_pool.h"
|
||||
|
||||
@interface NetServicePublicationDelegate : NSObject <NSNetServiceDelegate> {}
|
||||
|
||||
- (void)netServiceWillPublish:(NSNetService*)netService;
|
||||
- (void)netService:(NSNetService*)netService didNotPublish:(NSDictionary*)errorDict;
|
||||
- (void)netServiceDidStop:(NSNetService*)netService;
|
||||
|
||||
@end
|
||||
|
||||
@implementation NetServicePublicationDelegate
|
||||
|
||||
- (void)netServiceWillPublish:(NSNetService*)netService {
|
||||
qLog(Debug) << "Publishing:" << [[netService name] UTF8String];
|
||||
}
|
||||
|
||||
- (void)netService:(NSNetService*)netServie didNotPublish:(NSDictionary*)errorDict {
|
||||
qLog(Debug) << "Failed to publish remote service with Bonjour";
|
||||
NSLog(@"%@", errorDict);
|
||||
}
|
||||
|
||||
- (void)netServiceDidStop:(NSNetService*)netService {
|
||||
qLog(Debug) << "Unpublished:" << [[netService name] UTF8String];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
namespace {
|
||||
|
||||
NSString* NSStringFromQString(const QString& s) {
|
||||
return [[NSString alloc] initWithUTF8String:s.toUtf8().constData()];
|
||||
}
|
||||
}
|
||||
|
||||
Bonjour::Bonjour() : delegate_([[NetServicePublicationDelegate alloc] init]) {}
|
||||
|
||||
Bonjour::~Bonjour() { [delegate_ release]; }
|
||||
|
||||
void Bonjour::PublishInternal(const QString& domain, const QString& type, const QByteArray& name, const quint16 port) {
|
||||
ScopedNSAutoreleasePool pool;
|
||||
NSNetService* service =
|
||||
[[NSNetService alloc] initWithDomain:NSStringFromQString(domain)
|
||||
type:NSStringFromQString(type)
|
||||
name:[NSString stringWithUTF8String:name.constData()]
|
||||
port:port];
|
||||
if (service) {
|
||||
[service setDelegate:delegate_];
|
||||
[service publish];
|
||||
}
|
||||
|
||||
}
|
||||
@@ -206,11 +206,6 @@
|
||||
|
||||
#include "organize/organizeerrordialog.h"
|
||||
|
||||
#ifdef HAVE_VISUALIZATIONS
|
||||
# include "visualizations/visualizationcontainer.h"
|
||||
# include "engine/gstengine.h"
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
# include "core/windows7thumbbar.h"
|
||||
#endif
|
||||
@@ -628,12 +623,6 @@ MainWindow::MainWindow(Application *app,
|
||||
stop_menu->addAction(ui_->action_stop_after_this_track);
|
||||
ui_->stop_button->setMenu(stop_menu);
|
||||
|
||||
#ifdef HAVE_VISUALIZATIONS
|
||||
QObject::connect(ui_->action_visualizations, &QAction::triggered, this, &MainWindow::ShowVisualizations);
|
||||
#else
|
||||
ui_->action_visualizations->setEnabled(false);
|
||||
#endif
|
||||
|
||||
// Player connections
|
||||
QObject::connect(ui_->volume, &VolumeSlider::valueChanged, &*app_->player(), &Player::SetVolumeFromSlider);
|
||||
|
||||
@@ -918,7 +907,6 @@ MainWindow::MainWindow(Application *app,
|
||||
|
||||
// Analyzer
|
||||
QObject::connect(ui_->analyzer, &AnalyzerContainer::WheelEvent, this, &MainWindow::VolumeWheelEvent);
|
||||
ui_->analyzer->SetVisualizationsAction(ui_->action_visualizations);
|
||||
|
||||
// Statusbar widgets
|
||||
ui_->playlist_summary->setMinimumWidth(QFontMetrics(font()).horizontalAdvance(u"WW selected of WW tracks - [ WW:WW ]"_s));
|
||||
@@ -989,6 +977,10 @@ MainWindow::MainWindow(Application *app,
|
||||
ui_->action_open_cd->setVisible(false);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_NETWORKREMOTE
|
||||
app_->network_remote();
|
||||
#endif
|
||||
|
||||
// Load settings
|
||||
qLog(Debug) << "Loading settings";
|
||||
Settings settings;
|
||||
@@ -3416,24 +3408,3 @@ void MainWindow::FocusSearchField() {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void MainWindow::ShowVisualizations() {
|
||||
|
||||
#ifdef HAVE_VISUALIZATIONS
|
||||
|
||||
if (!visualization_) {
|
||||
visualization_.reset(new VisualizationContainer);
|
||||
|
||||
visualization_->SetActions(ui_->action_previous_track, ui_->action_play_pause, ui_->action_stop, ui_->action_next_track);
|
||||
connect(&*app_->player(), &Player::Stopped, &*visualization_, &VisualizationContainer::Stopped);
|
||||
connect(&*app_->player(), &Player::ForceShowOSD, &*visualization_, &VisualizationContainer::SongMetadataChanged);
|
||||
connect(&*app_->playlist_manager(), &PlaylistManager::CurrentSongChanged, &*visualization_, &VisualizationContainer::SongMetadataChanged);
|
||||
|
||||
visualization_->SetEngine(qobject_cast<GstEngine*>(&*app_->player()->engine()));
|
||||
}
|
||||
|
||||
visualization_->show();
|
||||
|
||||
#endif // HAVE_VISUALIZATIONS
|
||||
|
||||
}
|
||||
|
||||
@@ -97,7 +97,6 @@ class Windows7ThumbBar;
|
||||
class AddStreamDialog;
|
||||
class LastFMImportDialog;
|
||||
class RadioViewContainer;
|
||||
class VisualizationContainer;
|
||||
|
||||
#ifdef HAVE_DISCORD_RPC
|
||||
namespace discord {
|
||||
@@ -282,7 +281,6 @@ class MainWindow : public QMainWindow, public PlatformInterface {
|
||||
public Q_SLOTS:
|
||||
void CommandlineOptionsReceived(const QByteArray &string_options);
|
||||
void Raise();
|
||||
void ShowVisualizations();
|
||||
|
||||
private:
|
||||
void SaveSettings();
|
||||
@@ -362,10 +360,6 @@ class MainWindow : public QMainWindow, public PlatformInterface {
|
||||
|
||||
LastFMImportDialog *lastfm_import_dialog_;
|
||||
|
||||
#ifdef HAVE_VISUALIZATIONS
|
||||
ScopedPtr<VisualizationContainer> visualization_;
|
||||
#endif
|
||||
|
||||
QAction *collection_show_all_;
|
||||
QAction *collection_show_duplicates_;
|
||||
QAction *collection_show_untagged_;
|
||||
|
||||
@@ -517,7 +517,6 @@
|
||||
<addaction name="action_cover_manager"/>
|
||||
<addaction name="action_equalizer"/>
|
||||
<addaction name="action_transcoder"/>
|
||||
<addaction name="action_visualizations"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="action_update_collection"/>
|
||||
<addaction name="action_full_collection_scan"/>
|
||||
@@ -864,11 +863,6 @@
|
||||
<string>Import data from last.fm...</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="action_visualizations">
|
||||
<property name="text">
|
||||
<string>Visualizations</string>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<layoutdefault spacing="6" margin="11"/>
|
||||
<customwidgets>
|
||||
|
||||
@@ -25,14 +25,15 @@
|
||||
|
||||
#include "mimedata.h"
|
||||
|
||||
MimeData::MimeData(const bool clear, const bool play_now, const bool enqueue, const bool enqueue_next_now, const bool open_in_new_playlist, QObject *parent)
|
||||
MimeData::MimeData(const bool clear, const bool play_now, const bool enqueue, const bool enqueue_next_now, const bool open_in_new_playlist, const int playlist_id, QObject *parent)
|
||||
: override_user_settings_(false),
|
||||
clear_first_(clear),
|
||||
play_now_(play_now),
|
||||
enqueue_now_(enqueue),
|
||||
enqueue_next_now_(enqueue_next_now),
|
||||
open_in_new_playlist_(open_in_new_playlist),
|
||||
from_doubleclick_(false) {
|
||||
from_doubleclick_(false),
|
||||
playlist_id_(playlist_id) {
|
||||
|
||||
Q_UNUSED(parent);
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ class MimeData : public QMimeData {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit MimeData(const bool clear = false, const bool play_now = false, const bool enqueue = false, const bool enqueue_next_now = false, const bool open_in_new_playlist = false, QObject *parent = nullptr);
|
||||
explicit MimeData(const bool clear = false, const bool play_now = false, const bool enqueue = false, const bool enqueue_next_now = false, const bool open_in_new_playlist = false, const int playlist_id = -1, QObject *parent = nullptr);
|
||||
|
||||
// If this is set then MainWindow will not touch any of the other flags.
|
||||
bool override_user_settings_;
|
||||
@@ -57,6 +57,9 @@ class MimeData : public QMimeData {
|
||||
// The MainWindow will set the above flags to the defaults set by the user.
|
||||
bool from_doubleclick_;
|
||||
|
||||
// The Network Remote can use this MimeData to drop songs on another playlist than the one currently opened on the server
|
||||
int playlist_id_;
|
||||
|
||||
// Returns a pretty name for a playlist containing songs described by this MimeData object.
|
||||
// By pretty name we mean the value of 'name_for_new_playlist_' or generic "Playlist" string if the 'name_for_new_playlist_' attribute is empty.
|
||||
QString get_name_for_new_playlist() const;
|
||||
|
||||
86
src/core/tinysvcmdns.cpp
Normal file
86
src/core/tinysvcmdns.cpp
Normal file
@@ -0,0 +1,86 @@
|
||||
extern "C" {
|
||||
#include "mdnsd.h"
|
||||
}
|
||||
|
||||
#include <QObject>
|
||||
#include <QList>
|
||||
#include <QString>
|
||||
#include <QHostInfo>
|
||||
#include <QNetworkInterface>
|
||||
#include <QtEndian>
|
||||
|
||||
#include "tinysvcmdns.h"
|
||||
#include "core/logging.h"
|
||||
|
||||
using namespace Qt::Literals::StringLiterals;
|
||||
|
||||
TinySVCMDNS::TinySVCMDNS(QObject *parent) : Zeroconf(parent) {
|
||||
|
||||
// Get all network interfaces
|
||||
const QList<QNetworkInterface> network_interfaces = QNetworkInterface::allInterfaces();
|
||||
for (const QNetworkInterface &network_interface : network_interfaces) {
|
||||
// Only use up and non loopback interfaces
|
||||
if (network_interface.flags().testFlag(network_interface.IsUp) && !network_interface.flags().testFlag(network_interface.IsLoopBack)) {
|
||||
|
||||
qLog(Debug) << "Interface" << network_interface.humanReadableName();
|
||||
|
||||
uint32_t ipv4 = 0;
|
||||
QString ipv6;
|
||||
|
||||
// Now check all network addresses for this device
|
||||
QList<QNetworkAddressEntry> network_address_entries = network_interface.addressEntries();
|
||||
|
||||
for (QNetworkAddressEntry network_address_entry : network_address_entries) {
|
||||
QHostAddress host_address = network_address_entry.ip();
|
||||
if (host_address.protocol() == QAbstractSocket::IPv4Protocol) {
|
||||
ipv4 = qToBigEndian(host_address.toIPv4Address());
|
||||
qLog(Debug) << " ipv4:" << host_address.toString();
|
||||
}
|
||||
else if (host_address.protocol() == QAbstractSocket::IPv6Protocol) {
|
||||
ipv6 = host_address.toString();
|
||||
qLog(Debug) << " ipv6:" << host_address.toString();
|
||||
}
|
||||
}
|
||||
|
||||
// Now start the service
|
||||
CreateMdnsd(ipv4, ipv6);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
TinySVCMDNS::~TinySVCMDNS() {
|
||||
|
||||
for (mdnsd *mdnsd : std::as_const(mdnsd_)) {
|
||||
mdnsd_stop(mdnsd);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void TinySVCMDNS::CreateMdnsd(const uint32_t ipv4, const QString &ipv6) {
|
||||
|
||||
const QString host = QHostInfo::localHostName();
|
||||
|
||||
// Start the service
|
||||
mdnsd *mdnsd = mdnsd_start();
|
||||
|
||||
// Set our hostname
|
||||
const QString fullhostname = host + ".local"_L1;
|
||||
mdnsd_set_hostname(mdnsd, fullhostname.toUtf8().constData(), ipv4);
|
||||
|
||||
// Add to the list
|
||||
mdnsd_.append(mdnsd);
|
||||
|
||||
}
|
||||
|
||||
void TinySVCMDNS::PublishInternal(const QString &domain, const QString &type, const QByteArray &name, const quint16 port) {
|
||||
|
||||
// Some pointless text, so tinymDNS publishes the service correctly.
|
||||
const char *txt[] = { "cat=nyan", nullptr };
|
||||
|
||||
for (mdnsd *mdnsd : mdnsd_) {
|
||||
const QString fulltype = type + ".local"_L1;
|
||||
mdnsd_register_svc(mdnsd, name.constData(), fulltype.toUtf8().constData(), port, nullptr, txt);
|
||||
}
|
||||
|
||||
}
|
||||
26
src/core/tinysvcmdns.h
Normal file
26
src/core/tinysvcmdns.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef TINYSVCMDNS_H
|
||||
#define TINYSVCMDNS_H
|
||||
|
||||
#include <QList>
|
||||
#include <QByteArray>
|
||||
#include <QString>
|
||||
|
||||
#include "zeroconf.h"
|
||||
|
||||
struct mdnsd;
|
||||
|
||||
class TinySVCMDNS : public Zeroconf {
|
||||
|
||||
public:
|
||||
explicit TinySVCMDNS(QObject *parent = nullptr);
|
||||
virtual ~TinySVCMDNS();
|
||||
|
||||
protected:
|
||||
virtual void PublishInternal(const QString &domain, const QString &type, const QByteArray &name, const quint16 port) override;
|
||||
|
||||
private:
|
||||
void CreateMdnsd(const uint32_t ipv4, const QString &ipv6);
|
||||
QList<mdnsd*> mdnsd_;
|
||||
};
|
||||
|
||||
#endif // TINYSVCMDNS_H
|
||||
69
src/core/zeroconf.cpp
Normal file
69
src/core/zeroconf.cpp
Normal file
@@ -0,0 +1,69 @@
|
||||
#include "config.h"
|
||||
|
||||
#include <QObject>
|
||||
#include <QByteArray>
|
||||
#include <QString>
|
||||
|
||||
#ifdef HAVE_DBUS
|
||||
# include "avahi/avahi.h"
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_DARWIN
|
||||
# include "bonjour.h"
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
# include "tinysvcmdns.h"
|
||||
#endif
|
||||
|
||||
#include "zeroconf.h"
|
||||
|
||||
Zeroconf *Zeroconf::sInstance = nullptr;
|
||||
|
||||
Zeroconf::Zeroconf(QObject *parent) : QObject(parent) {}
|
||||
|
||||
Zeroconf::~Zeroconf() = default;
|
||||
|
||||
Zeroconf *Zeroconf::GetZeroconf() {
|
||||
|
||||
if (!sInstance) {
|
||||
#ifdef HAVE_DBUS
|
||||
sInstance = new Avahi;
|
||||
#endif // HAVE_DBUS
|
||||
|
||||
#ifdef Q_OS_DARWIN
|
||||
sInstance = new Bonjour;
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
sInstance = new TinySVCMDNS;
|
||||
#endif
|
||||
}
|
||||
|
||||
return sInstance;
|
||||
|
||||
}
|
||||
|
||||
QByteArray Zeroconf::TruncateName(const QString &name) {
|
||||
|
||||
QByteArray truncated_utf8;
|
||||
for (const QChar c : name) {
|
||||
if (truncated_utf8.size() + 1 >= 63) {
|
||||
break;
|
||||
}
|
||||
truncated_utf8 += c.toLatin1();
|
||||
}
|
||||
|
||||
// NULL-terminate the string.
|
||||
truncated_utf8.append('\0');
|
||||
|
||||
return truncated_utf8;
|
||||
|
||||
}
|
||||
|
||||
void Zeroconf::Publish(const QString &domain, const QString &type, const QString &name, quint16 port) {
|
||||
|
||||
const QByteArray truncated_name = TruncateName(name);
|
||||
PublishInternal(domain, type, truncated_name, port);
|
||||
|
||||
}
|
||||
28
src/core/zeroconf.h
Normal file
28
src/core/zeroconf.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef ZEROCONF_H
|
||||
#define ZEROCONF_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QByteArray>
|
||||
#include <QString>
|
||||
|
||||
class Zeroconf : public QObject {
|
||||
|
||||
public:
|
||||
explicit Zeroconf(QObject *parent);
|
||||
virtual ~Zeroconf();
|
||||
|
||||
void Publish(const QString &domain, const QString &type, const QString &name, quint16 port);
|
||||
|
||||
static Zeroconf *GetZeroconf();
|
||||
|
||||
// Truncate a QString to 63 bytes of UTF-8.
|
||||
static QByteArray TruncateName(const QString &name);
|
||||
|
||||
protected:
|
||||
virtual void PublishInternal(const QString &domain, const QString &type, const QByteArray &name, quint16 port) = 0;
|
||||
|
||||
private:
|
||||
static Zeroconf *sInstance;
|
||||
};
|
||||
|
||||
#endif // ZEROCONF_H
|
||||
@@ -36,7 +36,7 @@ class GstBufferConsumer {
|
||||
|
||||
// This is called in some unspecified GStreamer thread.
|
||||
// Ownership of the buffer is transferred to the BufferConsumer, and it should gst_buffer_unref it.
|
||||
virtual void ConsumeBuffer(GstBuffer *buffer, const int pipeline_id, const QString &format, const int channels) = 0;
|
||||
virtual void ConsumeBuffer(GstBuffer *buffer, const int pipeline_id, const QString &format) = 0;
|
||||
|
||||
private:
|
||||
Q_DISABLE_COPY(GstBufferConsumer)
|
||||
|
||||
@@ -543,9 +543,7 @@ void GstEngine::ReloadSettings() {
|
||||
|
||||
}
|
||||
|
||||
void GstEngine::ConsumeBuffer(GstBuffer *buffer, const int pipeline_id, const QString &format, const int channels) {
|
||||
|
||||
Q_UNUSED(channels);
|
||||
void GstEngine::ConsumeBuffer(GstBuffer *buffer, const int pipeline_id, const QString &format) {
|
||||
|
||||
// Schedule this to run in the GUI thread. The buffer gets added to the queue and unreffed by UpdateScope.
|
||||
if (!QMetaObject::invokeMethod(this, "AddBufferToScope", Q_ARG(GstBuffer*, buffer), Q_ARG(int, pipeline_id), Q_ARG(QString, format))) {
|
||||
|
||||
@@ -84,7 +84,7 @@ class GstEngine : public EngineBase, public GstBufferConsumer {
|
||||
bool ALSADeviceSupport(const QString &output) const override;
|
||||
bool ExclusiveModeSupport(const QString &output) const override;
|
||||
|
||||
void ConsumeBuffer(GstBuffer *buffer, const int pipeline_id, const QString &format, const int channels) override;
|
||||
void ConsumeBuffer(GstBuffer *buffer, const int pipeline_id, const QString &format) override;
|
||||
|
||||
public Q_SLOTS:
|
||||
void ReloadSettings() override;
|
||||
|
||||
@@ -1385,7 +1385,7 @@ GstPadProbeReturn GstEnginePipeline::BufferProbeCallback(GstPad *pad, GstPadProb
|
||||
|
||||
for (GstBufferConsumer *consumer : std::as_const(consumers)) {
|
||||
gst_buffer_ref(buf);
|
||||
consumer->ConsumeBuffer(buf, instance->id(), format, channels);
|
||||
consumer->ConsumeBuffer(buf, instance->id(), format);
|
||||
}
|
||||
|
||||
if (buf16) {
|
||||
|
||||
478
src/networkremote/incomingdataparser.cpp
Normal file
478
src/networkremote/incomingdataparser.cpp
Normal file
@@ -0,0 +1,478 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2012, Andreas Muttscheller <asfa194@gmail.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
#include <QString>
|
||||
#include <QUrl>
|
||||
#include <QDir>
|
||||
#include <QSettings>
|
||||
|
||||
#include "core/logging.h"
|
||||
#include "core/mimedata.h"
|
||||
#include "constants/timeconstants.h"
|
||||
#include "engine/enginebase.h"
|
||||
#include "playlist/playlist.h"
|
||||
#include "playlist/playlistmanager.h"
|
||||
#include "playlist/playlistsequence.h"
|
||||
#include "incomingdataparser.h"
|
||||
#include "scrobbler/audioscrobbler.h"
|
||||
#include "constants/mainwindowsettings.h"
|
||||
|
||||
using namespace Qt::Literals::StringLiterals;
|
||||
|
||||
IncomingDataParser::IncomingDataParser(const SharedPtr<Player> player,
|
||||
const SharedPtr<PlaylistManager> playlist_manager,
|
||||
const SharedPtr<AudioScrobbler> scrobbler,
|
||||
QObject *parent)
|
||||
: QObject(parent),
|
||||
player_(player),
|
||||
playlist_manager_(playlist_manager),
|
||||
scrobbler_(scrobbler),
|
||||
close_connection_(false),
|
||||
doubleclick_playlist_addmode_(BehaviourSettings::PlaylistAddBehaviour::Enqueue) {
|
||||
|
||||
ReloadSettings();
|
||||
|
||||
QObject::connect(this, &IncomingDataParser::Play, &*player_, &Player::PlayHelper);
|
||||
QObject::connect(this, &IncomingDataParser::PlayPause, &*player_, &Player::PlayPauseHelper);
|
||||
QObject::connect(this, &IncomingDataParser::Pause, &*player_, &Player::Pause);
|
||||
QObject::connect(this, &IncomingDataParser::Stop, &*player_, &Player::Stop);
|
||||
QObject::connect(this, &IncomingDataParser::StopAfterCurrent, &*player_, &Player::StopAfterCurrent);
|
||||
QObject::connect(this, &IncomingDataParser::Next, &*player_, &Player::Next);
|
||||
QObject::connect(this, &IncomingDataParser::Previous, &*player_, &Player::Previous);
|
||||
QObject::connect(this, &IncomingDataParser::SetVolume, &*player_, &Player::SetVolume);
|
||||
QObject::connect(this, &IncomingDataParser::PlayAt, &*player_, &Player::PlayAt);
|
||||
QObject::connect(this, &IncomingDataParser::SeekTo, &*player_, &Player::SeekTo);
|
||||
|
||||
QObject::connect(this, &IncomingDataParser::Enqueue, &*playlist_manager_, &PlaylistManager::Enqueue);
|
||||
QObject::connect(this, &IncomingDataParser::SetActivePlaylist, &*playlist_manager_, &PlaylistManager::SetActivePlaylist);
|
||||
QObject::connect(this, &IncomingDataParser::ShuffleCurrent, &*playlist_manager_, &PlaylistManager::ShuffleCurrent);
|
||||
QObject::connect(this, &IncomingDataParser::InsertUrls, &*playlist_manager_, &PlaylistManager::InsertUrls);
|
||||
QObject::connect(this, &IncomingDataParser::InsertSongs, &*playlist_manager_, &PlaylistManager::InsertSongs);
|
||||
QObject::connect(this, &IncomingDataParser::RemoveSongs, &*playlist_manager_, &PlaylistManager::RemoveItemsWithoutUndo);
|
||||
QObject::connect(this, &IncomingDataParser::New, &*playlist_manager_, &PlaylistManager::New);
|
||||
QObject::connect(this, &IncomingDataParser::Open, &*playlist_manager_, &PlaylistManager::Open);
|
||||
QObject::connect(this, &IncomingDataParser::Close, &*playlist_manager_, &PlaylistManager::Close);
|
||||
QObject::connect(this, &IncomingDataParser::Clear, &*playlist_manager_, &PlaylistManager::Clear);
|
||||
QObject::connect(this, &IncomingDataParser::Rename, &*playlist_manager_, &PlaylistManager::Rename);
|
||||
QObject::connect(this, &IncomingDataParser::Favorite, &*playlist_manager_, &PlaylistManager::Favorite);
|
||||
|
||||
QObject::connect(this, &IncomingDataParser::SetRepeatMode, &*playlist_manager_->sequence(), &PlaylistSequence::SetRepeatMode);
|
||||
QObject::connect(this, &IncomingDataParser::SetShuffleMode, &*playlist_manager_->sequence(), &PlaylistSequence::SetShuffleMode);
|
||||
|
||||
QObject::connect(this, &IncomingDataParser::RateCurrentSong, &*playlist_manager_, &PlaylistManager::RateCurrentSong);
|
||||
|
||||
QObject::connect(this, &IncomingDataParser::Love, &*scrobbler_, &AudioScrobbler::Love);
|
||||
|
||||
}
|
||||
|
||||
IncomingDataParser::~IncomingDataParser() = default;
|
||||
|
||||
void IncomingDataParser::ReloadSettings() {
|
||||
|
||||
QSettings s;
|
||||
s.beginGroup(MainWindowSettings::kSettingsGroup);
|
||||
doubleclick_playlist_addmode_ = static_cast<BehaviourSettings::PlaylistAddBehaviour>(s.value(BehaviourSettings::kDoubleClickPlaylistAddMode, static_cast<int>(BehaviourSettings::PlaylistAddBehaviour::Enqueue)).toInt());
|
||||
s.endGroup();
|
||||
|
||||
}
|
||||
|
||||
bool IncomingDataParser::close_connection() const { return close_connection_; }
|
||||
|
||||
void IncomingDataParser::SetRemoteRootFiles(const QString &files_root_folder) {
|
||||
files_root_folder_ = files_root_folder;
|
||||
}
|
||||
|
||||
Song IncomingDataParser::SongFromPbSongMetadata(const networkremote::SongMetadata &pb_song_metadata) const {
|
||||
|
||||
Song song;
|
||||
song.Init(pb_song_metadata.title(), pb_song_metadata.artist(), pb_song_metadata.album(), pb_song_metadata.length() * kNsecPerSec);
|
||||
song.set_albumartist(pb_song_metadata.albumartist());
|
||||
song.set_genre(pb_song_metadata.genre());
|
||||
song.set_year(pb_song_metadata.prettyYear().toInt());
|
||||
song.set_track(pb_song_metadata.track());
|
||||
song.set_disc(pb_song_metadata.disc());
|
||||
song.set_url(QUrl(pb_song_metadata.url()));
|
||||
song.set_filesize(pb_song_metadata.fileSize());
|
||||
song.set_rating(pb_song_metadata.rating());
|
||||
song.set_basefilename(pb_song_metadata.filename());
|
||||
song.set_art_automatic(QUrl(pb_song_metadata.artAutomatic()));
|
||||
song.set_art_manual(QUrl(pb_song_metadata.artManual()));
|
||||
song.set_filetype(static_cast<Song::FileType>(pb_song_metadata.filetype()));
|
||||
|
||||
return song;
|
||||
|
||||
}
|
||||
|
||||
void IncomingDataParser::Parse(const networkremote::Message &msg) {
|
||||
|
||||
close_connection_ = false;
|
||||
NetworkRemoteClient *client = qobject_cast<NetworkRemoteClient*>(sender());
|
||||
|
||||
switch (msg.type()) {
|
||||
case networkremote::MsgTypeGadget::MsgType::CONNECT:
|
||||
ClientConnect(msg, client);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::DISCONNECT:
|
||||
close_connection_ = true;
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::GET_COLLECTION:
|
||||
Q_EMIT SendCollection(client);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::GET_PLAYLISTS:
|
||||
ParseSendPlaylists(msg);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::GET_PLAYLIST_SONGS:
|
||||
ParseGetPlaylistSongs(msg);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::SET_VOLUME:
|
||||
Q_EMIT SetVolume(msg.requestSetVolume().volume());
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::PLAY:
|
||||
Q_EMIT Play();
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::PLAYPAUSE:
|
||||
Q_EMIT PlayPause();
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::PAUSE:
|
||||
Q_EMIT Pause();
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::STOP:
|
||||
Q_EMIT Stop();
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::STOP_AFTER:
|
||||
Q_EMIT StopAfterCurrent();
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::NEXT:
|
||||
Q_EMIT Next();
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::PREVIOUS:
|
||||
Q_EMIT Previous();
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::CHANGE_SONG:
|
||||
ParseChangeSong(msg);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::SHUFFLE_PLAYLIST:
|
||||
Q_EMIT ShuffleCurrent();
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::REPEAT:
|
||||
ParseSetRepeatMode(msg.repeat());
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::SHUFFLE:
|
||||
ParseSetShuffleMode(msg.shuffle());
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::SET_TRACK_POSITION:
|
||||
Q_EMIT SeekTo(msg.requestSetTrackPosition().position());
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::PLAYLIST_INSERT_URLS:
|
||||
ParseInsertUrls(msg);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::REMOVE_PLAYLIST_SONGS:
|
||||
ParseRemoveSongs(msg);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::OPEN_PLAYLIST:
|
||||
ParseOpenPlaylist(msg);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::CLOSE_PLAYLIST:
|
||||
ParseClosePlaylist(msg);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::UPDATE_PLAYLIST:
|
||||
ParseUpdatePlaylist(msg);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::LOVE:
|
||||
Q_EMIT Love();
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::GET_LYRICS:
|
||||
Q_EMIT GetLyrics();
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::DOWNLOAD_SONGS:
|
||||
client->song_sender()->SendSongs(msg.requestDownloadSongs());
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::SONG_OFFER_RESPONSE:
|
||||
client->song_sender()->ResponseSongOffer(msg.responseSongOffer().accepted());
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::RATE_SONG:
|
||||
ParseRateSong(msg);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::REQUEST_FILES:
|
||||
Q_EMIT SendListFiles(msg.requestListFiles().relativePath(), client);
|
||||
break;
|
||||
case networkremote::MsgTypeGadget::MsgType::APPEND_FILES:
|
||||
ParseAppendFilesToPlaylist(msg);
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void IncomingDataParser::ClientConnect(const networkremote::Message &msg, NetworkRemoteClient *client) {
|
||||
|
||||
Q_EMIT SendInfo();
|
||||
|
||||
if (!client->isDownloader()) {
|
||||
if (!msg.requestConnect().hasSendPlaylistSongs() || msg.requestConnect().sendPlaylistSongs()) {
|
||||
Q_EMIT SendFirstData(true);
|
||||
}
|
||||
else {
|
||||
Q_EMIT SendFirstData(false);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseGetPlaylistSongs(const networkremote::Message &msg) {
|
||||
Q_EMIT SendPlaylistSongs(msg.requestPlaylistSongs().playlistId());
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseChangeSong(const networkremote::Message &msg) {
|
||||
|
||||
// Get the first entry and check if there is a song
|
||||
const networkremote::RequestChangeSong &request = msg.requestChangeSong();
|
||||
|
||||
// Check if we need to change the playlist
|
||||
if (request.playlistId() != playlist_manager_->active_id()) {
|
||||
Q_EMIT SetActivePlaylist(request.playlistId());
|
||||
}
|
||||
|
||||
switch (doubleclick_playlist_addmode_) {
|
||||
case BehaviourSettings::PlaylistAddBehaviour::Play:{
|
||||
Q_EMIT PlayAt(request.songIndex(), false, 0, EngineBase::TrackChangeType::Manual, Playlist::AutoScroll::Maybe, false, false);
|
||||
break;
|
||||
}
|
||||
case BehaviourSettings::PlaylistAddBehaviour::Enqueue:{
|
||||
Q_EMIT Enqueue(request.playlistId(), request.songIndex());
|
||||
if (player_->GetState() != EngineBase::State::Playing) {
|
||||
Q_EMIT PlayAt(request.songIndex(), false, 0, EngineBase::TrackChangeType::Manual, Playlist::AutoScroll::Maybe, false, false);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseSetRepeatMode(const networkremote::Repeat &repeat) {
|
||||
|
||||
switch (repeat.repeatMode()) {
|
||||
case networkremote::RepeatModeGadget::RepeatMode::RepeatMode_Off:
|
||||
Q_EMIT SetRepeatMode(PlaylistSequence::RepeatMode::Off);
|
||||
break;
|
||||
case networkremote::RepeatModeGadget::RepeatMode::RepeatMode_Track:
|
||||
Q_EMIT SetRepeatMode(PlaylistSequence::RepeatMode::Track);
|
||||
break;
|
||||
case networkremote::RepeatModeGadget::RepeatMode::RepeatMode_Album:
|
||||
Q_EMIT SetRepeatMode(PlaylistSequence::RepeatMode::Album);
|
||||
break;
|
||||
case networkremote::RepeatModeGadget::RepeatMode::RepeatMode_Playlist:
|
||||
Q_EMIT SetRepeatMode(PlaylistSequence::RepeatMode::Playlist);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseSetShuffleMode(const networkremote::Shuffle &shuffle) {
|
||||
|
||||
switch (shuffle.shuffleMode()) {
|
||||
case networkremote::ShuffleModeGadget::ShuffleMode::ShuffleMode_Off:
|
||||
Q_EMIT SetShuffleMode(PlaylistSequence::ShuffleMode::Off);
|
||||
break;
|
||||
case networkremote::ShuffleModeGadget::ShuffleMode::ShuffleMode_All:
|
||||
Q_EMIT SetShuffleMode(PlaylistSequence::ShuffleMode::All);
|
||||
break;
|
||||
case networkremote::ShuffleModeGadget::ShuffleMode::ShuffleMode_InsideAlbum:
|
||||
Q_EMIT SetShuffleMode(PlaylistSequence::ShuffleMode::InsideAlbum);
|
||||
break;
|
||||
case networkremote::ShuffleModeGadget::ShuffleMode::ShuffleMode_Albums:
|
||||
Q_EMIT SetShuffleMode(PlaylistSequence::ShuffleMode::Albums);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseInsertUrls(const networkremote::Message &msg) {
|
||||
|
||||
const networkremote::RequestInsertUrls &request = msg.requestInsertUrls();
|
||||
int playlist_id = request.playlistId();
|
||||
|
||||
// Insert plain urls without metadata
|
||||
if (!request.urls().empty()) {
|
||||
QList<QUrl> urls;
|
||||
for (auto it = request.urls().begin(); it != request.urls().end(); ++it) {
|
||||
const QString s = *it;
|
||||
urls << QUrl(s);
|
||||
}
|
||||
|
||||
if (request.hasNewPlaylistName()) {
|
||||
playlist_id = playlist_manager_->New(request.newPlaylistName());
|
||||
}
|
||||
|
||||
// Insert the urls
|
||||
Q_EMIT InsertUrls(playlist_id, urls, request.position(), request.playNow(), request.enqueue());
|
||||
}
|
||||
|
||||
// Add songs with metadata if present
|
||||
if (!request.songs().empty()) {
|
||||
SongList songs;
|
||||
for (int i = 0; i < request.songs().size(); i++) {
|
||||
songs << SongFromPbSongMetadata(request.songs().at(i));
|
||||
}
|
||||
|
||||
// Create a new playlist if required and not already done above by InsertUrls
|
||||
if (request.hasNewPlaylistName() && playlist_id == request.playlistId()) {
|
||||
playlist_id = playlist_manager_->New(request.newPlaylistName());
|
||||
}
|
||||
|
||||
Q_EMIT InsertSongs(request.playlistId(), songs, request.position(), request.playNow(), request.enqueue());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseRemoveSongs(const networkremote::Message &msg) {
|
||||
|
||||
const networkremote::RequestRemoveSongs &request = msg.requestRemoveSongs();
|
||||
|
||||
QList<int> songs;
|
||||
songs.reserve(request.songs().size());
|
||||
for (int i = 0; i < request.songs().size(); i++) {
|
||||
songs.append(request.songs().at(i));
|
||||
}
|
||||
|
||||
Q_EMIT RemoveSongs(request.playlistId(), songs);
|
||||
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseSendPlaylists(const networkremote::Message &msg) {
|
||||
|
||||
if (!msg.hasRequestPlaylistSongs() || !msg.requestPlaylists().includeClosed()) {
|
||||
Q_EMIT SendAllActivePlaylists();
|
||||
}
|
||||
else {
|
||||
Q_EMIT SendAllPlaylists();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseOpenPlaylist(const networkremote::Message &msg) {
|
||||
Q_EMIT Open(msg.requestOpenPlaylist().playlistId());
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseClosePlaylist(const networkremote::Message &msg) {
|
||||
Q_EMIT Close(msg.requestClosePlaylist().playlistId());
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseUpdatePlaylist(const networkremote::Message &msg) {
|
||||
|
||||
const networkremote::RequestUpdatePlaylist &req_update = msg.requestUpdatePlaylist();
|
||||
if (req_update.hasCreateNewPlaylist() && req_update.createNewPlaylist()) {
|
||||
Q_EMIT New(req_update.hasNewPlaylistName() ? req_update.newPlaylistName() : u"New Playlist"_s);
|
||||
return;
|
||||
}
|
||||
if (req_update.hasClearPlaylist() && req_update.clearPlaylist()) {
|
||||
Q_EMIT Clear(req_update.playlistId());
|
||||
return;
|
||||
}
|
||||
if (req_update.hasNewPlaylistName() && !req_update.newPlaylistName().isEmpty()) {
|
||||
Q_EMIT Rename(req_update.playlistId(), req_update.newPlaylistName());
|
||||
}
|
||||
if (req_update.hasFavorite()) {
|
||||
Q_EMIT Favorite(req_update.playlistId(), req_update.favorite());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseRateSong(const networkremote::Message &msg) {
|
||||
|
||||
Q_EMIT RateCurrentSong(msg.requestRateSong().rating());
|
||||
|
||||
}
|
||||
|
||||
void IncomingDataParser::ParseAppendFilesToPlaylist(const networkremote::Message &msg) {
|
||||
|
||||
if (files_root_folder_.isEmpty()) {
|
||||
qLog(Warning) << "Remote root dir is not set although receiving APPEND_FILES request...";
|
||||
return;
|
||||
}
|
||||
QDir root_dir(files_root_folder_);
|
||||
if (!root_dir.exists()) {
|
||||
qLog(Warning) << "Remote root dir doesn't exist...";
|
||||
return;
|
||||
}
|
||||
|
||||
const networkremote::RequestAppendFiles &req_append = msg.requestAppendFiles();
|
||||
QString relative_path = req_append.relativePath();
|
||||
if (relative_path.startsWith("/"_L1)) relative_path.remove(0, 1);
|
||||
|
||||
QFileInfo fi_folder(root_dir, relative_path);
|
||||
if (!fi_folder.exists()) {
|
||||
qLog(Warning) << "Remote relative path " << relative_path << " doesn't exist...";
|
||||
return;
|
||||
}
|
||||
else if (!fi_folder.isDir()) {
|
||||
qLog(Warning) << "Remote relative path " << relative_path << " is not a directory...";
|
||||
return;
|
||||
}
|
||||
else if (root_dir.relativeFilePath(fi_folder.absoluteFilePath()).startsWith("../"_L1)) {
|
||||
qLog(Warning) << "Remote relative path " << relative_path << " should not be accessed...";
|
||||
return;
|
||||
}
|
||||
|
||||
QList<QUrl> urls;
|
||||
QDir dir(fi_folder.absoluteFilePath());
|
||||
for (const auto &file : req_append.files()) {
|
||||
QFileInfo fi(dir, file);
|
||||
if (fi.exists()) urls << QUrl::fromLocalFile(fi.canonicalFilePath());
|
||||
}
|
||||
if (!urls.isEmpty()) {
|
||||
MimeData *data = new MimeData;
|
||||
data->setUrls(urls);
|
||||
if (req_append.hasPlayNow()) {
|
||||
data->play_now_ = req_append.playNow();
|
||||
}
|
||||
if (req_append.hasClearFirst()) {
|
||||
data->clear_first_ = req_append.clearFirst();
|
||||
}
|
||||
if (req_append.hasNewPlaylistName()) {
|
||||
QString playlist_name = req_append.newPlaylistName();
|
||||
if (!playlist_name.isEmpty()) {
|
||||
data->open_in_new_playlist_ = true;
|
||||
data->name_for_new_playlist_ = playlist_name;
|
||||
}
|
||||
}
|
||||
else if (req_append.hasPlaylistId()) {
|
||||
// If playing we will drop the files in another playlist
|
||||
if (player_->GetState() == EngineBase::State::Playing) {
|
||||
data->playlist_id_ = req_append.playlistId();
|
||||
}
|
||||
else {
|
||||
// As we may play the song, we change the current playlist
|
||||
Q_EMIT SetCurrentPlaylist(req_append.playlistId());
|
||||
}
|
||||
}
|
||||
Q_EMIT AddToPlaylistSignal(data);
|
||||
}
|
||||
|
||||
}
|
||||
123
src/networkremote/incomingdataparser.h
Normal file
123
src/networkremote/incomingdataparser.h
Normal file
@@ -0,0 +1,123 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2012, Andreas Muttscheller <asfa194@gmail.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INCOMINGDATAPARSER_H
|
||||
#define INCOMINGDATAPARSER_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
|
||||
#include "constants/behavioursettings.h"
|
||||
#include "core/player.h"
|
||||
#include "networkremoteclient.h"
|
||||
#include "networkremotemessages.qpb.h"
|
||||
#include "playlist/playlistsequence.h"
|
||||
|
||||
class PlaylistManager;
|
||||
class AudioScrobbler;
|
||||
|
||||
class IncomingDataParser : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit IncomingDataParser(const SharedPtr<Player> player,
|
||||
const SharedPtr<PlaylistManager> playlist_manager,
|
||||
const SharedPtr<AudioScrobbler> scrobbler,
|
||||
QObject *parent = nullptr);
|
||||
|
||||
~IncomingDataParser();
|
||||
|
||||
bool close_connection() const;
|
||||
|
||||
void SetRemoteRootFiles(const QString &files_root_folder);
|
||||
|
||||
public Q_SLOTS:
|
||||
void Parse(const networkremote::Message &msg);
|
||||
void ReloadSettings();
|
||||
|
||||
Q_SIGNALS:
|
||||
void SendInfo();
|
||||
void SendFirstData(const bool send_playlist_songs);
|
||||
void SendAllPlaylists();
|
||||
void SendAllActivePlaylists();
|
||||
void SendPlaylistSongs(const int id);
|
||||
void New(const QString &name, const SongList &songs = SongList(), const QString &special_type = QString());
|
||||
void Open(const int id);
|
||||
void Clear(const int id);
|
||||
void Close(const int id);
|
||||
void Rename(const int id, const QString &new_playlist_name);
|
||||
void Favorite(const int id, const bool favorite);
|
||||
void GetLyrics();
|
||||
void Love();
|
||||
|
||||
void Play();
|
||||
void PlayPause();
|
||||
void Pause();
|
||||
void Stop(const bool stop_after = false);
|
||||
void StopAfterCurrent();
|
||||
void Next();
|
||||
void Previous();
|
||||
void SetVolume(const uint volume);
|
||||
void PlayAt(const int index, const bool pause, const quint64 offset_nanosec, EngineBase::TrackChangeFlags change, const Playlist::AutoScroll autoscroll, const bool reshuffle, const bool force_inform);
|
||||
void Enqueue(const int id, const int i);
|
||||
void SetActivePlaylist(const int id);
|
||||
void ShuffleCurrent();
|
||||
void SetRepeatMode(const PlaylistSequence::RepeatMode repeat_mode);
|
||||
void SetShuffleMode(const PlaylistSequence::ShuffleMode shuffle_mode);
|
||||
void InsertUrls(const int id, const QList<QUrl> &urls, const int pos = -1, const bool play_now = false, const bool enqueue = false);
|
||||
void InsertSongs(const int id, const SongList &songs, const int pos, const bool play_now, const bool enqueue);
|
||||
void RemoveSongs(const int id, const QList<int> &indices);
|
||||
void SeekTo(const quint64 seconds);
|
||||
void SendCollection(NetworkRemoteClient *client);
|
||||
void RateCurrentSong(const float rating);
|
||||
|
||||
void SendListFiles(const QString &path, NetworkRemoteClient *client);
|
||||
void AddToPlaylistSignal(QMimeData *data);
|
||||
void SetCurrentPlaylist(const int id);
|
||||
|
||||
private:
|
||||
const SharedPtr<Player> player_;
|
||||
const SharedPtr<PlaylistManager> playlist_manager_;
|
||||
const SharedPtr<AudioScrobbler> scrobbler_;
|
||||
|
||||
bool close_connection_;
|
||||
BehaviourSettings::PlaylistAddBehaviour doubleclick_playlist_addmode_;
|
||||
QString files_root_folder_;
|
||||
|
||||
void ClientConnect(const networkremote::Message &msg, NetworkRemoteClient *client);
|
||||
Song SongFromPbSongMetadata(const networkremote::SongMetadata &pb_song_metadata) const;
|
||||
|
||||
void ParseGetPlaylistSongs(const networkremote::Message &msg);
|
||||
void ParseChangeSong(const networkremote::Message &msg);
|
||||
void ParseSetRepeatMode(const networkremote::Repeat &repeat);
|
||||
void ParseSetShuffleMode(const networkremote::Shuffle &shuffle);
|
||||
void ParseInsertUrls(const networkremote::Message &msg);
|
||||
void ParseRemoveSongs(const networkremote::Message &msg);
|
||||
void ParseSendPlaylists(const networkremote::Message &msg);
|
||||
void ParseOpenPlaylist(const networkremote::Message &msg);
|
||||
void ParseClosePlaylist(const networkremote::Message &msg);
|
||||
void ParseUpdatePlaylist(const networkremote::Message &msg);
|
||||
void ParseRateSong(const networkremote::Message &msg);
|
||||
void ParseAppendFilesToPlaylist(const networkremote::Message &msg);
|
||||
};
|
||||
|
||||
#endif // INCOMINGDATAPARSER_H
|
||||
231
src/networkremote/networkremote.cpp
Normal file
231
src/networkremote/networkremote.cpp
Normal file
@@ -0,0 +1,231 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2012, Andreas Muttscheller <asfa194@gmail.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <QDataStream>
|
||||
#include <QHostInfo>
|
||||
#include <QNetworkProxy>
|
||||
#include <QTcpSocket>
|
||||
#include <QTcpServer>
|
||||
#include <QSettings>
|
||||
|
||||
#include "constants/networkremotesettingsconstants.h"
|
||||
#include "constants/networkremoteconstants.h"
|
||||
#include "core/logging.h"
|
||||
#include "core/zeroconf.h"
|
||||
#include "playlist/playlistmanager.h"
|
||||
#include "covermanager/currentalbumcoverloader.h"
|
||||
#include "networkremote.h"
|
||||
#include "incomingdataparser.h"
|
||||
#include "outgoingdatacreator.h"
|
||||
|
||||
using namespace Qt::Literals::StringLiterals;
|
||||
using namespace NetworkRemoteSettingsConstants;
|
||||
using namespace NetworkRemoteConstants;
|
||||
using std::make_unique;
|
||||
|
||||
NetworkRemote::NetworkRemote(const SharedPtr<Database> database,
|
||||
const SharedPtr<Player> player,
|
||||
const SharedPtr<CollectionBackend> collection_backend,
|
||||
const SharedPtr<PlaylistManager> playlist_manager,
|
||||
const SharedPtr<PlaylistBackend> playlist_backend,
|
||||
const SharedPtr<CurrentAlbumCoverLoader> current_albumcover_loader,
|
||||
const SharedPtr<AudioScrobbler> scrobbler,
|
||||
QObject *parent)
|
||||
: QObject(parent),
|
||||
database_(database),
|
||||
player_(player),
|
||||
collection_backend_(collection_backend),
|
||||
playlist_manager_(playlist_manager),
|
||||
playlist_backend_(playlist_backend),
|
||||
current_albumcover_loader_(current_albumcover_loader),
|
||||
scrobbler_(scrobbler),
|
||||
enabled_(false),
|
||||
port_(0),
|
||||
allow_public_access_(true),
|
||||
signals_connected_(false) {
|
||||
|
||||
setObjectName("NetworkRemote");
|
||||
|
||||
ReloadSettings();
|
||||
|
||||
}
|
||||
|
||||
NetworkRemote::~NetworkRemote() { StopServer(); }
|
||||
|
||||
void NetworkRemote::ReloadSettings() {
|
||||
|
||||
QSettings s;
|
||||
s.beginGroup(kSettingsGroup);
|
||||
enabled_ = s.value(kEnabled, false).toBool();
|
||||
port_ = s.value("port", kDefaultServerPort).toInt();
|
||||
allow_public_access_ = s.value(kAllowPublicAccess, false).toBool();
|
||||
s.endGroup();
|
||||
|
||||
SetupServer();
|
||||
StopServer();
|
||||
StartServer();
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemote::SetupServer() {
|
||||
|
||||
server_ = make_unique<QTcpServer>();
|
||||
server_ipv6_ = make_unique<QTcpServer>();
|
||||
incoming_data_parser_ = make_unique<IncomingDataParser>(player_, playlist_manager_, scrobbler_);
|
||||
outgoing_data_creator_ = make_unique<OutgoingDataCreator>(database_, player_, playlist_manager_, playlist_backend_);
|
||||
|
||||
outgoing_data_creator_->SetClients(&clients_);
|
||||
|
||||
QObject::connect(&*current_albumcover_loader_, &CurrentAlbumCoverLoader::AlbumCoverLoaded, &*outgoing_data_creator_, &OutgoingDataCreator::CurrentSongChanged);
|
||||
|
||||
QObject::connect(&*server_, &QTcpServer::newConnection, this, &NetworkRemote::AcceptConnection);
|
||||
QObject::connect(&*server_ipv6_, &QTcpServer::newConnection, this, &NetworkRemote::AcceptConnection);
|
||||
|
||||
QObject::connect(&*incoming_data_parser_, &IncomingDataParser::AddToPlaylistSignal, this, &NetworkRemote::AddToPlaylistSignal);
|
||||
QObject::connect(&*incoming_data_parser_, &IncomingDataParser::SetCurrentPlaylist, this, &NetworkRemote::SetCurrentPlaylist);
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemote::StartServer() {
|
||||
|
||||
if (!enabled_) {
|
||||
qLog(Info) << "Network Remote deactivated";
|
||||
return;
|
||||
}
|
||||
|
||||
qLog(Info) << "Starting network remote";
|
||||
|
||||
server_->setProxy(QNetworkProxy::NoProxy);
|
||||
server_ipv6_->setProxy(QNetworkProxy::NoProxy);
|
||||
|
||||
server_->listen(QHostAddress::Any, port_);
|
||||
server_ipv6_->listen(QHostAddress::AnyIPv6, port_);
|
||||
|
||||
qLog(Info) << "Listening on port " << port_;
|
||||
|
||||
if (Zeroconf::GetZeroconf()) {
|
||||
QString name = QLatin1String("Strawberry on %1").arg(QHostInfo::localHostName());
|
||||
Zeroconf::GetZeroconf()->Publish(u"local"_s, u"_strawberry._tcp"_s, name, port_);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemote::StopServer() {
|
||||
|
||||
if (server_->isListening()) {
|
||||
outgoing_data_creator_->DisconnectAllClients();
|
||||
server_->close();
|
||||
server_ipv6_->close();
|
||||
qDeleteAll(clients_);
|
||||
clients_.clear();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemote::AcceptConnection() {
|
||||
|
||||
if (!signals_connected_) {
|
||||
signals_connected_ = true;
|
||||
|
||||
QObject::connect(&*incoming_data_parser_, &IncomingDataParser::SendInfo, &*outgoing_data_creator_, &OutgoingDataCreator::SendInfo);
|
||||
QObject::connect(&*incoming_data_parser_, &IncomingDataParser::SendFirstData, &*outgoing_data_creator_, &OutgoingDataCreator::SendFirstData);
|
||||
QObject::connect(&*incoming_data_parser_, &IncomingDataParser::SendAllPlaylists, &*outgoing_data_creator_, &OutgoingDataCreator::SendAllPlaylists);
|
||||
QObject::connect(&*incoming_data_parser_, &IncomingDataParser::SendAllActivePlaylists, &*outgoing_data_creator_, &OutgoingDataCreator::SendAllActivePlaylists);
|
||||
QObject::connect(&*incoming_data_parser_, &IncomingDataParser::SendPlaylistSongs, &*outgoing_data_creator_, &OutgoingDataCreator::SendPlaylistSongs);
|
||||
|
||||
QObject::connect(&*playlist_manager_, &PlaylistManager::ActiveChanged, &*outgoing_data_creator_, &OutgoingDataCreator::ActiveChanged);
|
||||
QObject::connect(&*playlist_manager_, &PlaylistManager::PlaylistChanged, &*outgoing_data_creator_, &OutgoingDataCreator::PlaylistChanged);
|
||||
QObject::connect(&*playlist_manager_, &PlaylistManager::PlaylistAdded, &*outgoing_data_creator_, &OutgoingDataCreator::PlaylistAdded);
|
||||
QObject::connect(&*playlist_manager_, &PlaylistManager::PlaylistRenamed, &*outgoing_data_creator_, &OutgoingDataCreator::PlaylistRenamed);
|
||||
QObject::connect(&*playlist_manager_, &PlaylistManager::PlaylistClosed, &*outgoing_data_creator_, &OutgoingDataCreator::PlaylistClosed);
|
||||
QObject::connect(&*playlist_manager_, &PlaylistManager::PlaylistDeleted, &*outgoing_data_creator_, &OutgoingDataCreator::PlaylistDeleted);
|
||||
|
||||
QObject::connect(&*player_, &Player::VolumeChanged, &*outgoing_data_creator_, &OutgoingDataCreator::VolumeChanged);
|
||||
QObject::connect(&*player_->engine(), &EngineBase::StateChanged, &*outgoing_data_creator_, &OutgoingDataCreator::StateChanged);
|
||||
|
||||
QObject::connect(&*playlist_manager_->sequence(), &PlaylistSequence::RepeatModeChanged, &*outgoing_data_creator_, &OutgoingDataCreator::SendRepeatMode);
|
||||
QObject::connect(&*playlist_manager_->sequence(), &PlaylistSequence::ShuffleModeChanged, &*outgoing_data_creator_, &OutgoingDataCreator::SendShuffleMode);
|
||||
|
||||
QObject::connect(&*incoming_data_parser_, &IncomingDataParser::SendCollection, &*outgoing_data_creator_, &OutgoingDataCreator::SendCollection);
|
||||
QObject::connect(&*incoming_data_parser_, &IncomingDataParser::SendListFiles, &*outgoing_data_creator_, &OutgoingDataCreator::SendListFiles);
|
||||
}
|
||||
|
||||
QTcpServer *server = qobject_cast<QTcpServer*>(sender());
|
||||
QTcpSocket *client_socket = server->nextPendingConnection();
|
||||
|
||||
if (!allow_public_access_ && !IpIsPrivate(client_socket->peerAddress())) {
|
||||
qLog(Warning) << "Got connection from public IP address" << client_socket->peerAddress().toString();
|
||||
client_socket->close();
|
||||
client_socket->deleteLater();
|
||||
}
|
||||
else {
|
||||
CreateRemoteClient(client_socket);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
bool NetworkRemote::IpIsPrivate(const QHostAddress &address) {
|
||||
|
||||
return
|
||||
// Localhost v4
|
||||
address.isInSubnet(QHostAddress::parseSubnet(u"127.0.0.0/8"_s)) ||
|
||||
// Link Local v4
|
||||
address.isInSubnet(QHostAddress::parseSubnet(u"169.254.1.0/16"_s)) ||
|
||||
// Link Local v6
|
||||
address.isInSubnet(QHostAddress::parseSubnet(u"::1/128"_s)) ||
|
||||
address.isInSubnet(QHostAddress::parseSubnet(u"fe80::/10"_s)) ||
|
||||
// Private v4 range
|
||||
address.isInSubnet(QHostAddress::parseSubnet(u"192.168.0.0/16"_s)) ||
|
||||
address.isInSubnet(QHostAddress::parseSubnet(u"172.16.0.0/12"_s)) ||
|
||||
address.isInSubnet(QHostAddress::parseSubnet(u"10.0.0.0/8"_s)) ||
|
||||
// Private v4 range translated to v6
|
||||
address.isInSubnet(QHostAddress::parseSubnet(u"::ffff:192.168.0.0/112"_s)) ||
|
||||
address.isInSubnet(QHostAddress::parseSubnet(u"::ffff:172.16.0.0/108"_s)) ||
|
||||
address.isInSubnet(QHostAddress::parseSubnet(u"::ffff:10.0.0.0/104"_s)) ||
|
||||
// Private v6 range
|
||||
address.isInSubnet(QHostAddress::parseSubnet(u"fc00::/7"_s));
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemote::CreateRemoteClient(QTcpSocket *client_socket) {
|
||||
|
||||
if (client_socket) {
|
||||
|
||||
NetworkRemoteClient *client = new NetworkRemoteClient(player_, collection_backend_, playlist_manager_, client_socket);
|
||||
clients_.push_back(client);
|
||||
|
||||
// Update the Remote Root Files for the latest Client
|
||||
outgoing_data_creator_->SetMusicExtensions(client->files_music_extensions());
|
||||
outgoing_data_creator_->SetRemoteRootFiles(client->files_root_folder());
|
||||
incoming_data_parser_->SetRemoteRootFiles(client->files_root_folder());
|
||||
// Update OutgoingDataCreator with latest allow_downloads setting
|
||||
outgoing_data_creator_->SetAllowDownloads(client->allow_downloads());
|
||||
|
||||
// Connect the signal to parse data
|
||||
QObject::connect(client, &NetworkRemoteClient::Parse, &*incoming_data_parser_, &IncomingDataParser::Parse);
|
||||
|
||||
client->IncomingData();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
98
src/networkremote/networkremote.h
Normal file
98
src/networkremote/networkremote.h
Normal file
@@ -0,0 +1,98 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2012, Andreas Muttscheller <asfa194@gmail.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef NETWORKREMOTE_H
|
||||
#define NETWORKREMOTE_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QList>
|
||||
|
||||
#include "includes/shared_ptr.h"
|
||||
#include "includes/scoped_ptr.h"
|
||||
|
||||
class QMimeData;
|
||||
class QHostAddress;
|
||||
class QTcpServer;
|
||||
class QTcpSocket;
|
||||
|
||||
class Database;
|
||||
class Player;
|
||||
class CollectionBackend;
|
||||
class PlaylistManager;
|
||||
class PlaylistBackend;
|
||||
class CurrentAlbumCoverLoader;
|
||||
class AudioScrobbler;
|
||||
class IncomingDataParser;
|
||||
class OutgoingDataCreator;
|
||||
class NetworkRemoteClient;
|
||||
|
||||
class NetworkRemote : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit NetworkRemote(const SharedPtr<Database> database,
|
||||
const SharedPtr<Player> player,
|
||||
const SharedPtr<CollectionBackend> collection_backend,
|
||||
const SharedPtr<PlaylistManager> playlist_manager,
|
||||
const SharedPtr<PlaylistBackend> playlist_backend,
|
||||
const SharedPtr<CurrentAlbumCoverLoader> current_albumcover_loader,
|
||||
const SharedPtr<AudioScrobbler> scrobbler,
|
||||
QObject *parent = nullptr);
|
||||
|
||||
~NetworkRemote();
|
||||
|
||||
Q_SIGNALS:
|
||||
void AddToPlaylistSignal(QMimeData *data);
|
||||
void SetCurrentPlaylist(const int id);
|
||||
|
||||
public Q_SLOTS:
|
||||
void SetupServer();
|
||||
void StartServer();
|
||||
void ReloadSettings();
|
||||
void AcceptConnection();
|
||||
|
||||
private:
|
||||
const SharedPtr<Database> database_;
|
||||
const SharedPtr<Player> player_;
|
||||
const SharedPtr<CollectionBackend> collection_backend_;
|
||||
const SharedPtr<PlaylistManager> playlist_manager_;
|
||||
const SharedPtr<PlaylistBackend> playlist_backend_;
|
||||
const SharedPtr<CurrentAlbumCoverLoader> current_albumcover_loader_;
|
||||
const SharedPtr<AudioScrobbler> scrobbler_;
|
||||
|
||||
ScopedPtr<QTcpServer> server_;
|
||||
ScopedPtr<QTcpServer> server_ipv6_;
|
||||
ScopedPtr<IncomingDataParser> incoming_data_parser_;
|
||||
ScopedPtr<OutgoingDataCreator> outgoing_data_creator_;
|
||||
|
||||
bool enabled_;
|
||||
quint16 port_;
|
||||
bool allow_public_access_;
|
||||
bool signals_connected_;
|
||||
|
||||
QList<NetworkRemoteClient*> clients_;
|
||||
|
||||
void StopServer();
|
||||
void CreateRemoteClient(QTcpSocket *client_socket);
|
||||
bool IpIsPrivate(const QHostAddress &address);
|
||||
};
|
||||
|
||||
#endif // NETWORKREMOTE_H
|
||||
223
src/networkremote/networkremoteclient.cpp
Normal file
223
src/networkremote/networkremoteclient.cpp
Normal file
@@ -0,0 +1,223 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2013, Andreas Muttscheller <asfa194@gmail.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <QDataStream>
|
||||
#include <QTcpSocket>
|
||||
#include <QProtobufSerializer>
|
||||
#include <QSettings>
|
||||
|
||||
#include "constants/networkremotesettingsconstants.h"
|
||||
#include "core/logging.h"
|
||||
#include "networkremote.h"
|
||||
#include "networkremoteclient.h"
|
||||
#include "networkremotemessages.qpb.h"
|
||||
|
||||
using namespace Qt::Literals::StringLiterals;
|
||||
using namespace NetworkRemoteSettingsConstants;
|
||||
|
||||
NetworkRemoteClient::NetworkRemoteClient(const SharedPtr<Player> player,
|
||||
const SharedPtr<CollectionBackend> collection_backend,
|
||||
const SharedPtr<PlaylistManager> playlist_manager,
|
||||
QTcpSocket *socket,
|
||||
QObject *parent)
|
||||
: QObject(parent),
|
||||
player_(player),
|
||||
socket_(socket),
|
||||
downloader_(false),
|
||||
reading_protobuf_(false),
|
||||
expected_length_(0),
|
||||
song_sender_(new SongSender(player, collection_backend, playlist_manager, this)) {
|
||||
|
||||
QObject::connect(socket, &QTcpSocket::readyRead, this, &NetworkRemoteClient::ReadyRead);
|
||||
QObject::connect(socket, &QTcpSocket::channelReadyRead, this, &NetworkRemoteClient::ReadyRead);
|
||||
|
||||
QSettings s;
|
||||
s.beginGroup(kSettingsGroup);
|
||||
use_auth_code_ = s.value(kUseAuthCode, false).toBool();
|
||||
auth_code_ = s.value(kAuthCode, 0).toInt();
|
||||
files_root_folder_ = s.value(kFilesRootFolder, ""_L1).toString();
|
||||
s.endGroup();
|
||||
|
||||
authenticated_ = !use_auth_code_;
|
||||
|
||||
}
|
||||
|
||||
NetworkRemoteClient::~NetworkRemoteClient() {
|
||||
|
||||
socket_->close();
|
||||
if (socket_->state() == QAbstractSocket::ConnectedState) {
|
||||
socket_->waitForDisconnected(2000);
|
||||
}
|
||||
|
||||
song_sender_->deleteLater();
|
||||
socket_->deleteLater();
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemoteClient::setDownloader(const bool downloader) { downloader_ = downloader; }
|
||||
|
||||
void NetworkRemoteClient::ReadyRead() {
|
||||
|
||||
IncomingData();
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemoteClient::IncomingData() {
|
||||
|
||||
while (socket_->bytesAvailable()) {
|
||||
if (!reading_protobuf_) {
|
||||
// If we have less than 4 byte, we cannot read the length. Wait for more data
|
||||
if (socket_->bytesAvailable() < 4) {
|
||||
break;
|
||||
}
|
||||
// Read the length of the next message
|
||||
QDataStream s(socket_);
|
||||
s >> expected_length_;
|
||||
|
||||
// Receiving more than 128 MB is very unlikely
|
||||
// Flush the data and disconnect the client
|
||||
if (expected_length_ > 134217728) {
|
||||
qLog(Debug) << "Received invalid data, disconnect client";
|
||||
qLog(Debug) << "expected_length_ =" << expected_length_;
|
||||
socket_->close();
|
||||
return;
|
||||
}
|
||||
|
||||
reading_protobuf_ = true;
|
||||
}
|
||||
|
||||
// Read some of the message
|
||||
buffer_.append(socket_->read(static_cast<qint32>(expected_length_) - buffer_.size()));
|
||||
|
||||
// Did we get everything?
|
||||
if (buffer_.size() == static_cast<qint32>(expected_length_)) {
|
||||
|
||||
ParseMessage(buffer_);
|
||||
|
||||
// Clear the buffer
|
||||
buffer_.clear();
|
||||
reading_protobuf_ = false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemoteClient::ParseMessage(const QByteArray &data) {
|
||||
|
||||
QProtobufSerializer serializer;
|
||||
networkremote::Message msg;
|
||||
if (!serializer.deserialize(&msg, data)) {
|
||||
qLog(Info) << "Couldn't parse data:" << serializer.lastErrorString();
|
||||
return;
|
||||
}
|
||||
|
||||
if (msg.type() == networkremote::MsgTypeGadget::MsgType::CONNECT && use_auth_code_) {
|
||||
if (msg.requestConnect().authCode() != auth_code_) {
|
||||
DisconnectClient(networkremote::ReasonDisconnectGadget::ReasonDisconnect::Wrong_Auth_Code);
|
||||
return;
|
||||
}
|
||||
else {
|
||||
authenticated_ = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (msg.type() == networkremote::MsgTypeGadget::MsgType::CONNECT) {
|
||||
setDownloader(msg.requestConnect().hasDownloader() && msg.requestConnect().downloader());
|
||||
qLog(Debug) << "Downloader" << downloader_;
|
||||
}
|
||||
|
||||
// Check if downloads are allowed
|
||||
if (msg.type() == networkremote::MsgTypeGadget::MsgType::DOWNLOAD_SONGS && !allow_downloads_) {
|
||||
DisconnectClient(networkremote::ReasonDisconnectGadget::ReasonDisconnect::Download_Forbidden);
|
||||
return;
|
||||
}
|
||||
|
||||
if (msg.type() == networkremote::MsgTypeGadget::MsgType::DISCONNECT) {
|
||||
socket_->abort();
|
||||
qLog(Debug) << "Client disconnected";
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if the client has sent the correct auth code
|
||||
if (!authenticated_) {
|
||||
DisconnectClient(networkremote::ReasonDisconnectGadget::ReasonDisconnect::Not_Authenticated);
|
||||
return;
|
||||
}
|
||||
|
||||
// Now parse the other data
|
||||
Q_EMIT Parse(msg);
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemoteClient::DisconnectClient(const networkremote::ReasonDisconnectGadget::ReasonDisconnect reason) {
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::DISCONNECT);
|
||||
|
||||
networkremote::ResponseDisconnect response_disconnect;
|
||||
response_disconnect.setReasonDisconnect(reason);
|
||||
msg.setResponseDisconnect(response_disconnect);
|
||||
SendDataToClient(&msg);
|
||||
|
||||
// Just close the connection. The next time the outgoing data creator sends a keep alive, the client will be deleted
|
||||
socket_->close();
|
||||
|
||||
}
|
||||
|
||||
// Sends data to client without check if authenticated
|
||||
void NetworkRemoteClient::SendDataToClient(networkremote::Message *msg) {
|
||||
|
||||
//msg->setVersion(msg);
|
||||
|
||||
if (socket_->state() == QTcpSocket::ConnectedState) {
|
||||
// Serialize the message
|
||||
QProtobufSerializer serializer;
|
||||
const QByteArray data = serializer.serialize(msg);
|
||||
|
||||
// Write the length of the data first
|
||||
QDataStream s(socket_);
|
||||
s << static_cast<qint32>(data.length());
|
||||
if (downloader_) {
|
||||
// Don't use QDataSteam for large files
|
||||
socket_->write(data.data(), data.length());
|
||||
}
|
||||
else {
|
||||
s.writeRawData(data.data(), data.length());
|
||||
}
|
||||
|
||||
// Do NOT flush data here! If the client is already disconnected, it causes a SIGPIPE termination!!!
|
||||
}
|
||||
else {
|
||||
qDebug() << "Closed";
|
||||
socket_->close();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemoteClient::SendData(networkremote::Message *msg) {
|
||||
|
||||
if (authenticated_) {
|
||||
SendDataToClient(msg);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
QAbstractSocket::SocketState NetworkRemoteClient::State() const { return socket_->state(); }
|
||||
89
src/networkremote/networkremoteclient.h
Normal file
89
src/networkremote/networkremoteclient.h
Normal file
@@ -0,0 +1,89 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2013, Andreas Muttscheller <asfa194@gmail.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef NETWORKREMOTECLIENT_H
|
||||
#define NETWORKREMOTECLIENT_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QByteArray>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
#include <QAbstractSocket>
|
||||
|
||||
#include "networkremotemessages.qpb.h"
|
||||
#include "songsender.h"
|
||||
|
||||
class QTcpSocket;
|
||||
|
||||
class NetworkRemoteClient : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit NetworkRemoteClient(const SharedPtr<Player> player,
|
||||
const SharedPtr<CollectionBackend> collection_backend,
|
||||
const SharedPtr<PlaylistManager> playlist_manager,
|
||||
QTcpSocket *client,
|
||||
QObject *parent = nullptr);
|
||||
|
||||
~NetworkRemoteClient();
|
||||
|
||||
void SendData(networkremote::Message *msg);
|
||||
QAbstractSocket::SocketState State() const;
|
||||
void setDownloader(const bool downloader);
|
||||
bool isDownloader() const { return downloader_; }
|
||||
void DisconnectClient(const networkremote::ReasonDisconnectGadget::ReasonDisconnect reason);
|
||||
|
||||
SongSender *song_sender() const { return song_sender_; }
|
||||
const QString &files_root_folder() const { return files_root_folder_; }
|
||||
const QStringList &files_music_extensions() const { return files_music_extensions_; }
|
||||
bool allow_downloads() const { return allow_downloads_; }
|
||||
|
||||
public Q_SLOTS:
|
||||
void ReadyRead();
|
||||
void IncomingData();
|
||||
|
||||
Q_SIGNALS:
|
||||
void Parse(const networkremote::Message &msg);
|
||||
|
||||
private:
|
||||
void ParseMessage(const QByteArray &data);
|
||||
void SendDataToClient(networkremote::Message *msg);
|
||||
|
||||
private:
|
||||
const SharedPtr<Player> player_;
|
||||
QTcpSocket *socket_;
|
||||
|
||||
bool use_auth_code_;
|
||||
int auth_code_;
|
||||
bool authenticated_;
|
||||
bool allow_downloads_;
|
||||
bool downloader_;
|
||||
|
||||
bool reading_protobuf_;
|
||||
quint32 expected_length_;
|
||||
QByteArray buffer_;
|
||||
SongSender *song_sender_;
|
||||
|
||||
QString files_root_folder_;
|
||||
QStringList files_music_extensions_;
|
||||
};
|
||||
|
||||
#endif // NETWORKREMOTECLIENT_H
|
||||
422
src/networkremote/networkremotemessages.proto
Normal file
422
src/networkremote/networkremotemessages.proto
Normal file
@@ -0,0 +1,422 @@
|
||||
syntax = "proto2";
|
||||
|
||||
package networkremote;
|
||||
|
||||
enum MsgType {
|
||||
|
||||
UNKNOWN = 0;
|
||||
|
||||
CONNECT = 1;
|
||||
DISCONNECT = 2;
|
||||
|
||||
INFO = 3;
|
||||
KEEP_ALIVE = 4;
|
||||
|
||||
GET_COLLECTION = 5;
|
||||
|
||||
GET_PLAYLISTS = 6;
|
||||
GET_PLAYLIST_SONGS = 7;
|
||||
SEND_PLAYLISTS = 8;
|
||||
SEND_PLAYLIST_SONGS = 10;
|
||||
|
||||
OPEN_PLAYLIST = 11;
|
||||
CLOSE_PLAYLIST = 12;
|
||||
UPDATE_PLAYLIST = 13;
|
||||
REMOVE_PLAYLIST_SONGS = 14;
|
||||
PLAYLIST_INSERT_URLS = 15;
|
||||
|
||||
CHANGE_SONG = 21;
|
||||
SET_VOLUME = 22;
|
||||
SET_TRACK_POSITION = 23;
|
||||
GET_LYRICS = 24;
|
||||
DOWNLOAD_SONGS = 25;
|
||||
SONG_OFFER_RESPONSE = 26;
|
||||
SONG_OFFER_FILE_CHUNK = 27;
|
||||
CURRENT_METAINFO = 28;
|
||||
ENGINE_STATE_CHANGED = 29;
|
||||
UPDATE_TRACK_POSITION = 30;
|
||||
ACTIVE_PLAYLIST_CHANGED = 31;
|
||||
FIRST_DATA_SENT_COMPLETE = 32;
|
||||
LYRICS = 33;
|
||||
DOWNLOAD_QUEUE_EMPTY = 34;
|
||||
COLLECTION_CHUNK = 35;
|
||||
DOWNLOAD_TOTAL_SIZE = 36;
|
||||
TRANSCODING_FILES = 37;
|
||||
|
||||
PLAYPAUSE = 101;
|
||||
PLAY = 102;
|
||||
PAUSE = 103;
|
||||
STOP = 104;
|
||||
STOP_AFTER = 105;
|
||||
NEXT = 106;
|
||||
PREVIOUS = 107;
|
||||
SHUFFLE_PLAYLIST = 108;
|
||||
|
||||
REPEAT = 111;
|
||||
SHUFFLE = 112;
|
||||
|
||||
LIST_FILES = 121;
|
||||
REQUEST_FILES = 122;
|
||||
APPEND_FILES = 123;
|
||||
|
||||
LOVE = 131;
|
||||
RATE_SONG = 132;
|
||||
|
||||
}
|
||||
|
||||
enum EngineState {
|
||||
EngineState_Empty = 0;
|
||||
EngineState_Idle = 1;
|
||||
EngineState_Playing = 2;
|
||||
EngineState_Paused = 3;
|
||||
}
|
||||
|
||||
message SongMetadata {
|
||||
|
||||
enum Source {
|
||||
Source_Unknown = 0;
|
||||
Source_LocalFile = 1;
|
||||
Source_Collection = 2;
|
||||
Source_CDDA = 3;
|
||||
Source_Device = 4;
|
||||
Source_Stream = 5;
|
||||
Source_Tidal = 6;
|
||||
Source_Subsonic = 7;
|
||||
Source_Qobuz = 8;
|
||||
Source_SomaFM = 9;
|
||||
Source_RadioParadise = 10;
|
||||
Source_Spotify = 11;
|
||||
}
|
||||
|
||||
enum FileType {
|
||||
FileType_Unknown = 0;
|
||||
FileType_WAV = 1;
|
||||
FileType_FLAC = 2;
|
||||
FileType_WavPack = 3;
|
||||
FileType_OggFlac = 4;
|
||||
FileType_OggVorbis = 5;
|
||||
FileType_OggOpus = 6;
|
||||
FileType_OggSpeex = 7;
|
||||
FileType_MPEG = 8;
|
||||
FileType_MP4 = 9;
|
||||
FileType_ASF = 10;
|
||||
FileType_AIFF = 11;
|
||||
FileType_MPC = 12;
|
||||
FileType_TrueAudio = 13;
|
||||
FileType_DSF = 14;
|
||||
FileType_DSDIFF = 15;
|
||||
FileType_PCM = 16;
|
||||
FileType_APE = 17;
|
||||
FileType_MOD = 18;
|
||||
FileType_S3M = 19;
|
||||
FileType_XM = 20;
|
||||
FileType_IT = 21;
|
||||
FileType_SPC = 22;
|
||||
FileType_VGM = 23;
|
||||
FileType_CDDA = 90;
|
||||
FileType_Stream = 91;
|
||||
}
|
||||
|
||||
optional int32 song_id = 1;
|
||||
optional int32 index = 2;
|
||||
optional string title = 3;
|
||||
optional string album = 4;
|
||||
optional string artist = 5;
|
||||
optional string albumartist = 6;
|
||||
optional int32 track = 7;
|
||||
optional int32 disc = 8;
|
||||
optional string pretty_year = 9;
|
||||
optional string genre = 10;
|
||||
optional uint32 playcount = 11;
|
||||
optional string pretty_length = 12;
|
||||
optional bytes art = 13;
|
||||
optional int64 length = 14;
|
||||
optional bool is_local = 15;
|
||||
optional Source source = 22;
|
||||
optional FileType filetype = 23;
|
||||
optional string filename = 16;
|
||||
optional int64 file_size = 17;
|
||||
optional float rating = 18;
|
||||
optional string url = 19;
|
||||
optional string art_automatic = 20;
|
||||
optional string art_manual = 21;
|
||||
|
||||
}
|
||||
|
||||
message Playlist {
|
||||
optional int32 playlist_id = 1;
|
||||
optional string name = 2;
|
||||
optional int32 item_count = 3;
|
||||
optional bool active = 4;
|
||||
optional bool closed = 5;
|
||||
optional bool favorite = 6;
|
||||
}
|
||||
|
||||
enum RepeatMode {
|
||||
RepeatMode_Off = 0;
|
||||
RepeatMode_Track = 1;
|
||||
RepeatMode_Album = 2;
|
||||
RepeatMode_Playlist = 3;
|
||||
RepeatMode_OneByOne = 4;
|
||||
RepeatMode_Intro = 5;
|
||||
}
|
||||
|
||||
enum ShuffleMode {
|
||||
ShuffleMode_Off = 0;
|
||||
ShuffleMode_All = 1;
|
||||
ShuffleMode_InsideAlbum = 2;
|
||||
ShuffleMode_Albums = 3;
|
||||
}
|
||||
|
||||
message RequestPlaylists {
|
||||
optional bool include_closed = 1;
|
||||
}
|
||||
|
||||
message RequestPlaylistSongs {
|
||||
optional int32 playlist_id = 1;
|
||||
}
|
||||
|
||||
message RequestChangeSong {
|
||||
optional int32 playlist_id = 1;
|
||||
optional int32 song_index = 2;
|
||||
}
|
||||
|
||||
message RequestSetVolume {
|
||||
optional uint32 volume = 1;
|
||||
}
|
||||
|
||||
message Repeat {
|
||||
optional RepeatMode repeat_mode = 1;
|
||||
}
|
||||
|
||||
message Shuffle {
|
||||
optional ShuffleMode shuffle_mode = 1;
|
||||
}
|
||||
|
||||
message ResponseInfo {
|
||||
optional string version = 1;
|
||||
optional EngineState state = 2;
|
||||
optional bool allow_downloads = 3;
|
||||
repeated string files_music_extensions = 4;
|
||||
}
|
||||
|
||||
message ResponseCurrentMetadata {
|
||||
optional SongMetadata song_metadata = 1;
|
||||
}
|
||||
|
||||
message ResponsePlaylists {
|
||||
repeated Playlist playlist = 1;
|
||||
optional bool include_closed = 2;
|
||||
}
|
||||
|
||||
message ResponsePlaylistSongs {
|
||||
optional Playlist requested_playlist = 1;
|
||||
repeated SongMetadata songs = 2;
|
||||
}
|
||||
|
||||
message ResponseEngineStateChanged {
|
||||
optional EngineState state = 1;
|
||||
}
|
||||
|
||||
message ResponseUpdateTrackPosition {
|
||||
optional int32 position = 1;
|
||||
}
|
||||
|
||||
message RequestConnect {
|
||||
optional int32 auth_code = 1;
|
||||
optional bool send_playlist_songs = 2;
|
||||
optional bool downloader = 3;
|
||||
}
|
||||
|
||||
enum ReasonDisconnect {
|
||||
Server_Shutdown = 1;
|
||||
Wrong_Auth_Code = 2;
|
||||
Not_Authenticated = 3;
|
||||
Download_Forbidden = 4;
|
||||
}
|
||||
|
||||
message ResponseDisconnect {
|
||||
optional ReasonDisconnect reason_disconnect = 1;
|
||||
}
|
||||
|
||||
message ResponseActiveChanged {
|
||||
optional int32 playlist_id = 1;
|
||||
}
|
||||
|
||||
message RequestSetTrackPosition {
|
||||
optional int32 position = 1;
|
||||
}
|
||||
|
||||
message RequestInsertUrls {
|
||||
|
||||
optional int32 playlist_id = 1;
|
||||
repeated string urls = 2;
|
||||
optional int32 position = 3 [default = -1];
|
||||
optional bool play_now = 4 [default = false];
|
||||
optional bool enqueue = 5 [default = false];
|
||||
repeated SongMetadata songs = 6;
|
||||
optional string new_playlist_name = 7;
|
||||
|
||||
}
|
||||
|
||||
message RequestRemoveSongs {
|
||||
optional int32 playlist_id = 1;
|
||||
repeated int32 songs = 2;
|
||||
}
|
||||
|
||||
message RequestOpenPlaylist {
|
||||
optional int32 playlist_id = 1;
|
||||
}
|
||||
|
||||
message RequestClosePlaylist {
|
||||
optional int32 playlist_id = 1;
|
||||
}
|
||||
|
||||
message RequestUpdatePlaylist {
|
||||
optional int32 playlist_id = 1;
|
||||
optional string new_playlist_name = 2;
|
||||
optional bool favorite = 3;
|
||||
optional bool create_new_playlist = 4;
|
||||
optional bool clear_playlist = 5;
|
||||
}
|
||||
|
||||
message ResponseLyrics {
|
||||
repeated Lyric lyrics = 1;
|
||||
}
|
||||
message Lyric {
|
||||
optional string song_id = 1;
|
||||
optional string title = 2;
|
||||
optional string content = 3;
|
||||
}
|
||||
|
||||
enum DownloadItem {
|
||||
CurrentItem = 1;
|
||||
ItemAlbum = 2;
|
||||
APlaylist = 3;
|
||||
Urls = 4;
|
||||
}
|
||||
|
||||
message RequestDownloadSongs {
|
||||
optional DownloadItem download_item = 1;
|
||||
optional int32 playlist_id = 2;
|
||||
repeated string urls = 3;
|
||||
repeated int32 songs_ids = 4;
|
||||
optional string relative_path = 5;
|
||||
}
|
||||
|
||||
message ResponseSongFileChunk {
|
||||
optional int32 chunk_number = 1;
|
||||
optional int32 chunk_count = 2;
|
||||
optional int32 file_number = 3;
|
||||
optional int32 file_count = 4;
|
||||
optional SongMetadata song_metadata = 6;
|
||||
optional bytes data = 7;
|
||||
optional int64 size = 8;
|
||||
optional bytes file_hash = 9;
|
||||
}
|
||||
|
||||
message ResponseCollectionChunk {
|
||||
optional int32 chunk_number = 1;
|
||||
optional int32 chunk_count = 2;
|
||||
optional bytes data = 3;
|
||||
optional int64 size = 4;
|
||||
optional bytes file_hash = 5;
|
||||
}
|
||||
|
||||
message ResponseSongOffer {
|
||||
optional bool accepted = 1;
|
||||
}
|
||||
|
||||
message RequestRateSong {
|
||||
optional float rating = 1;
|
||||
}
|
||||
|
||||
message ResponseDownloadTotalSize {
|
||||
optional int64 total_size = 1;
|
||||
optional int64 file_count = 2;
|
||||
}
|
||||
|
||||
message ResponseTranscoderStatus {
|
||||
optional int32 processed = 1;
|
||||
optional int32 total = 2;
|
||||
}
|
||||
|
||||
message RequestListFiles {
|
||||
optional string relative_path = 1;
|
||||
}
|
||||
|
||||
message FileMetadata {
|
||||
optional string filename = 1;
|
||||
optional bool is_dir = 2;
|
||||
}
|
||||
|
||||
message ResponseListFiles {
|
||||
enum Error {
|
||||
NONE = 0;
|
||||
ROOT_DIR_NOT_SET = 1;
|
||||
DIR_NOT_ACCESSIBLE = 2;
|
||||
DIR_NOT_EXIST = 3;
|
||||
UNKNOWN = 4;
|
||||
}
|
||||
optional string relative_path = 1;
|
||||
repeated FileMetadata files = 2;
|
||||
optional Error error = 3;
|
||||
}
|
||||
|
||||
message RequestAppendFiles {
|
||||
optional int32 playlist_id = 1;
|
||||
optional string new_playlist_name = 2;
|
||||
optional string relative_path = 3;
|
||||
repeated string files = 4;
|
||||
optional bool play_now = 5;
|
||||
optional bool clear_first = 6;
|
||||
}
|
||||
|
||||
message Stream {
|
||||
optional string name = 1;
|
||||
optional string url = 2;
|
||||
optional string url_logo = 3;
|
||||
}
|
||||
|
||||
message Message {
|
||||
|
||||
optional int32 version = 1 [default = 21];
|
||||
optional MsgType type = 2
|
||||
[default = UNKNOWN];
|
||||
|
||||
optional RequestConnect request_connect = 21;
|
||||
optional RequestPlaylists request_playlists = 27;
|
||||
optional RequestPlaylistSongs request_playlist_songs = 10;
|
||||
optional RequestChangeSong request_change_song = 11;
|
||||
optional RequestSetVolume request_set_volume = 12;
|
||||
optional RequestSetTrackPosition request_set_track_position = 23;
|
||||
optional RequestInsertUrls request_insert_urls = 25;
|
||||
optional RequestRemoveSongs request_remove_songs = 26;
|
||||
optional RequestOpenPlaylist request_open_playlist = 28;
|
||||
optional RequestClosePlaylist request_close_playlist = 29;
|
||||
optional RequestUpdatePlaylist request_update_playlist = 53;
|
||||
optional RequestDownloadSongs request_download_songs = 31;
|
||||
optional RequestRateSong request_rate_song = 35;
|
||||
optional RequestListFiles request_list_files = 50;
|
||||
optional RequestAppendFiles request_append_files = 51;
|
||||
|
||||
optional Repeat repeat = 13;
|
||||
optional Shuffle shuffle = 14;
|
||||
|
||||
optional ResponseInfo response_info = 15;
|
||||
optional ResponseCurrentMetadata response_current_metadata = 16;
|
||||
optional ResponsePlaylists response_playlists = 17;
|
||||
optional ResponsePlaylistSongs response_playlist_songs = 18;
|
||||
optional ResponseEngineStateChanged response_engine_state_changed = 19;
|
||||
optional ResponseUpdateTrackPosition response_update_track_position = 20;
|
||||
optional ResponseDisconnect response_disconnect = 22;
|
||||
optional ResponseActiveChanged response_active_changed = 24;
|
||||
optional ResponseLyrics response_lyrics = 30;
|
||||
optional ResponseSongFileChunk response_song_file_chunk = 32;
|
||||
optional ResponseSongOffer response_song_offer = 33;
|
||||
optional ResponseCollectionChunk response_collection_chunk = 34;
|
||||
optional ResponseDownloadTotalSize response_download_total_size = 36;
|
||||
optional ResponseTranscoderStatus response_transcoder_status = 39;
|
||||
optional ResponseListFiles response_list_files = 52;
|
||||
|
||||
}
|
||||
638
src/networkremote/outgoingdatacreator.cpp
Normal file
638
src/networkremote/outgoingdatacreator.cpp
Normal file
@@ -0,0 +1,638 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2012, Andreas Muttscheller <asfa194@gmail.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <cmath>
|
||||
|
||||
#include <QCoreApplication>
|
||||
#include <QDir>
|
||||
#include <QSqlDatabase>
|
||||
#include <QSqlQuery>
|
||||
#include <QBuffer>
|
||||
#include <QTimer>
|
||||
#include <QStandardPaths>
|
||||
|
||||
#include "includes/shared_ptr.h"
|
||||
#include "constants/timeconstants.h"
|
||||
#include "utilities/randutils.h"
|
||||
#include "core/player.h"
|
||||
#include "core/database.h"
|
||||
#include "core/sqlquery.h"
|
||||
#include "core/logging.h"
|
||||
#include "utilities/cryptutils.h"
|
||||
#include "collection/collectionbackend.h"
|
||||
#include "playlist/playlistmanager.h"
|
||||
#include "playlist/playlistbackend.h"
|
||||
#include "networkremote.h"
|
||||
#include "networkremoteclient.h"
|
||||
#include "outgoingdatacreator.h"
|
||||
|
||||
using namespace std::chrono_literals;
|
||||
using namespace Qt::Literals::StringLiterals;
|
||||
|
||||
namespace {
|
||||
constexpr quint32 kFileChunkSize = 100000;
|
||||
}
|
||||
|
||||
OutgoingDataCreator::OutgoingDataCreator(const SharedPtr<Database> database,
|
||||
const SharedPtr<Player> player,
|
||||
const SharedPtr<PlaylistManager> playlist_manager,
|
||||
const SharedPtr<PlaylistBackend> playlist_backend,
|
||||
QObject *parent)
|
||||
: QObject(parent),
|
||||
database_(database),
|
||||
player_(player),
|
||||
playlist_manager_(playlist_manager),
|
||||
playlist_backend_(playlist_backend),
|
||||
keep_alive_timer_(new QTimer(this)),
|
||||
keep_alive_timeout_(10000) {
|
||||
|
||||
QObject::connect(keep_alive_timer_, &QTimer::timeout, this, &OutgoingDataCreator::SendKeepAlive);
|
||||
|
||||
}
|
||||
|
||||
OutgoingDataCreator::~OutgoingDataCreator() = default;
|
||||
|
||||
void OutgoingDataCreator::SetClients(QList<NetworkRemoteClient*> *clients) {
|
||||
|
||||
clients_ = clients;
|
||||
// After we got some clients, start the keep alive timer
|
||||
// Default: every 10 seconds
|
||||
keep_alive_timer_->start(keep_alive_timeout_);
|
||||
|
||||
// Create the song position timer
|
||||
track_position_timer_ = new QTimer(this);
|
||||
QObject::connect(track_position_timer_, &QTimer::timeout, this, &OutgoingDataCreator::UpdateTrackPosition);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendDataToClients(networkremote::Message *msg) {
|
||||
|
||||
if (clients_->empty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
for (NetworkRemoteClient *client : std::as_const(*clients_)) {
|
||||
// Do not send data to downloaders
|
||||
if (client->isDownloader()) {
|
||||
if (client->State() != QTcpSocket::ConnectedState) {
|
||||
clients_->removeAt(clients_->indexOf(client));
|
||||
delete client;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
// Check if the client is still active
|
||||
if (client->State() == QTcpSocket::ConnectedState) {
|
||||
client->SendData(msg);
|
||||
}
|
||||
else {
|
||||
clients_->removeAt(clients_->indexOf(client));
|
||||
delete client;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendInfo() {
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::INFO);
|
||||
networkremote::ResponseInfo info;
|
||||
info.setVersion(QLatin1String("%1 %2").arg(QCoreApplication::applicationName(), QCoreApplication::applicationVersion()));
|
||||
info.setFilesMusicExtensions(files_music_extensions_);
|
||||
info.setAllowDownloads(allow_downloads_);
|
||||
info.setState(GetEngineState());
|
||||
msg.setResponseInfo(info);
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendKeepAlive() {
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::KEEP_ALIVE);
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
networkremote::EngineStateGadget::EngineState OutgoingDataCreator::GetEngineState() {
|
||||
|
||||
switch (player_->GetState()) {
|
||||
case EngineBase::State::Idle:
|
||||
return networkremote::EngineStateGadget::EngineState::EngineState_Idle;
|
||||
break;
|
||||
case EngineBase::State::Error:
|
||||
case EngineBase::State::Empty:
|
||||
return networkremote::EngineStateGadget::EngineState::EngineState_Empty;
|
||||
break;
|
||||
case EngineBase::State::Playing:
|
||||
return networkremote::EngineStateGadget::EngineState::EngineState_Playing;
|
||||
break;
|
||||
case EngineBase::State::Paused:
|
||||
return networkremote::EngineStateGadget::EngineState::EngineState_Paused;
|
||||
break;
|
||||
}
|
||||
|
||||
return networkremote::EngineStateGadget::EngineState::EngineState_Empty;
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendAllPlaylists() {
|
||||
|
||||
// Get all Playlists
|
||||
const int active_playlist = playlist_manager_->active_id();
|
||||
|
||||
// Create message
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::SEND_PLAYLISTS);
|
||||
|
||||
networkremote::ResponsePlaylists playlists = msg.responsePlaylists();
|
||||
playlists.setIncludeClosed(true);
|
||||
|
||||
// Get all playlists, even ones that are hidden in the UI.
|
||||
const QList<PlaylistBackend::Playlist> all_playlists = playlist_backend_->GetAllPlaylists();
|
||||
for (const PlaylistBackend::Playlist &p : all_playlists) {
|
||||
const bool playlist_open = playlist_manager_->IsPlaylistOpen(p.id);
|
||||
const int item_count = playlist_open ? playlist_manager_->playlist(p.id)->rowCount() : 0;
|
||||
|
||||
// Create a new playlist
|
||||
networkremote::Playlist playlist;// = playlists.playlist();
|
||||
playlist.setPlaylistId(p.id);
|
||||
playlist.setName(p.name);
|
||||
playlist.setActive((p.id == active_playlist));
|
||||
playlist.setItemCount(item_count);
|
||||
playlist.setClosed(!playlist_open);
|
||||
playlist.setFavorite(p.favorite);
|
||||
}
|
||||
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendAllActivePlaylists() {
|
||||
|
||||
const int active_playlist = playlist_manager_->active_id();
|
||||
|
||||
const QList<Playlist*> playlists = playlist_manager_->GetAllPlaylists();
|
||||
QList<networkremote::Playlist> pb_playlists;
|
||||
pb_playlists.reserve(playlists.count());
|
||||
for (Playlist *p : playlists) {
|
||||
networkremote::Playlist pb_playlist;
|
||||
pb_playlist.setPlaylistId(p->id());
|
||||
pb_playlist.setName(playlist_manager_->GetPlaylistName(p->id()));
|
||||
pb_playlist.setActive(p->id() == active_playlist);
|
||||
pb_playlist.setItemCount(p->rowCount());
|
||||
pb_playlist.setClosed(false);
|
||||
pb_playlist.setFavorite(p->is_favorite());
|
||||
pb_playlists << pb_playlist;
|
||||
}
|
||||
|
||||
networkremote::ResponsePlaylists response_playlists;
|
||||
response_playlists.setPlaylist(pb_playlists);
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::SEND_PLAYLISTS);
|
||||
msg.setResponsePlaylists(response_playlists);
|
||||
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::ActiveChanged(Playlist *playlist) {
|
||||
|
||||
SendPlaylistSongs(playlist->id());
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::ACTIVE_PLAYLIST_CHANGED);
|
||||
networkremote::ResponseActiveChanged response_active_changed;
|
||||
response_active_changed.setPlaylistId(playlist->id());
|
||||
msg.setResponseActiveChanged(response_active_changed);
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::PlaylistAdded(const int id, const QString &name, const bool favorite) {
|
||||
|
||||
Q_UNUSED(id)
|
||||
Q_UNUSED(name)
|
||||
Q_UNUSED(favorite)
|
||||
|
||||
SendAllActivePlaylists();
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::PlaylistDeleted(const int id) {
|
||||
|
||||
Q_UNUSED(id)
|
||||
|
||||
SendAllActivePlaylists();
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::PlaylistClosed(const int id) {
|
||||
|
||||
Q_UNUSED(id)
|
||||
|
||||
SendAllActivePlaylists();
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::PlaylistRenamed(const int id, const QString &new_name) {
|
||||
|
||||
Q_UNUSED(id)
|
||||
Q_UNUSED(new_name)
|
||||
|
||||
SendAllActivePlaylists();
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendFirstData(const bool send_playlist_songs) {
|
||||
|
||||
CurrentSongChanged(current_song_, albumcoverloader_result_);
|
||||
|
||||
VolumeChanged(player_->GetVolume());
|
||||
|
||||
if (!track_position_timer_->isActive() && player_->engine()->state() == EngineBase::State::Playing) {
|
||||
track_position_timer_->start(1s);
|
||||
}
|
||||
|
||||
UpdateTrackPosition();
|
||||
|
||||
SendAllActivePlaylists();
|
||||
|
||||
if (send_playlist_songs) {
|
||||
SendPlaylistSongs(playlist_manager_->active_id());
|
||||
}
|
||||
|
||||
SendShuffleMode(playlist_manager_->sequence()->shuffle_mode());
|
||||
SendRepeatMode(playlist_manager_->sequence()->repeat_mode());
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::FIRST_DATA_SENT_COMPLETE);
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::CurrentSongChanged(const Song &song, const AlbumCoverLoaderResult &result) {
|
||||
|
||||
albumcoverloader_result_ = result;
|
||||
current_song_ = song;
|
||||
current_image_ = result.album_cover.image;
|
||||
|
||||
SendSongMetadata();
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendSongMetadata() {
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::CURRENT_METAINFO);
|
||||
const networkremote::SongMetadata pb_song_metadata = PbSongMetadataFromSong(playlist_manager_->active()->current_row(), current_song_, current_image_);
|
||||
networkremote::ResponseCurrentMetadata response_current_metadata;
|
||||
response_current_metadata.setSongMetadata(pb_song_metadata);
|
||||
msg.setResponseCurrentMetadata(response_current_metadata);
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
networkremote::SongMetadata OutgoingDataCreator::PbSongMetadataFromSong(const int index, const Song &song, const QImage &image_cover_art) {
|
||||
|
||||
if (!song.is_valid()) {
|
||||
return networkremote::SongMetadata();
|
||||
}
|
||||
|
||||
networkremote::SongMetadata pb_song_metadata;
|
||||
pb_song_metadata.setSongId(song.id());
|
||||
pb_song_metadata.setIndex(index);
|
||||
pb_song_metadata.setTitle(song.PrettyTitle());
|
||||
pb_song_metadata.setArtist(song.artist());
|
||||
pb_song_metadata.setAlbum(song.album());
|
||||
pb_song_metadata.setAlbumartist(song.albumartist());
|
||||
pb_song_metadata.setLength(song.length_nanosec() / kNsecPerSec);
|
||||
pb_song_metadata.setPrettyLength(song.PrettyLength());
|
||||
pb_song_metadata.setGenre(song.genre());
|
||||
pb_song_metadata.setPrettyYear(song.PrettyYear());
|
||||
pb_song_metadata.setTrack(song.track());
|
||||
pb_song_metadata.setDisc(song.disc());
|
||||
pb_song_metadata.setPlaycount(song.playcount());
|
||||
pb_song_metadata.setIsLocal(song.url().isLocalFile());
|
||||
pb_song_metadata.setFilename(song.basefilename());
|
||||
pb_song_metadata.setFileSize(song.filesize());
|
||||
pb_song_metadata.setRating(song.rating());
|
||||
pb_song_metadata.setUrl(song.url().toString());
|
||||
pb_song_metadata.setArtAutomatic(song.art_automatic().toString());
|
||||
pb_song_metadata.setArtManual(song.art_manual().toString());
|
||||
pb_song_metadata.setFiletype(static_cast<networkremote::SongMetadata::FileType>(song.filetype()));
|
||||
|
||||
if (!image_cover_art.isNull()) {
|
||||
QImage image_cover_art_small;
|
||||
if (image_cover_art.width() > 1000 || image_cover_art.height() > 1000) {
|
||||
image_cover_art_small = image_cover_art.scaled(1000, 1000, Qt::KeepAspectRatio);
|
||||
}
|
||||
else {
|
||||
image_cover_art_small = image_cover_art;
|
||||
}
|
||||
|
||||
QByteArray data;
|
||||
QBuffer buffer(&data);
|
||||
if (buffer.open(QIODevice::WriteOnly)) {
|
||||
image_cover_art_small.save(&buffer, "JPG");
|
||||
buffer.close();
|
||||
}
|
||||
|
||||
pb_song_metadata.setArt(data);
|
||||
}
|
||||
|
||||
return pb_song_metadata;
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::VolumeChanged(const uint volume) {
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::SET_VOLUME);
|
||||
networkremote::RequestSetVolume request_set_volume;
|
||||
request_set_volume.setVolume(volume);
|
||||
msg.setRequestSetVolume(request_set_volume);
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendPlaylistSongs(const int playlist_id) {
|
||||
|
||||
Playlist *playlist = playlist_manager_->playlist(playlist_id);
|
||||
if (!playlist) {
|
||||
qLog(Error) << "Could not find playlist with ID" << playlist_id;
|
||||
return;
|
||||
}
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::SEND_PLAYLIST_SONGS);
|
||||
|
||||
networkremote::Playlist pb_playlist;
|
||||
pb_playlist.setPlaylistId(playlist_id);
|
||||
networkremote::ResponsePlaylistSongs pb_response_playlist_songs;
|
||||
pb_response_playlist_songs.setRequestedPlaylist(pb_playlist);
|
||||
|
||||
const SongList songs = playlist->GetAllSongs();
|
||||
QList<networkremote::SongMetadata> pb_song_metadatas;
|
||||
pb_song_metadatas.reserve(songs.count());
|
||||
for (const Song &song : songs) {
|
||||
pb_song_metadatas << PbSongMetadataFromSong(songs.indexOf(song), song);
|
||||
}
|
||||
|
||||
pb_response_playlist_songs.setSongs(pb_song_metadatas);
|
||||
msg.setResponsePlaylistSongs(pb_response_playlist_songs);
|
||||
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::PlaylistChanged(Playlist *playlist) {
|
||||
SendPlaylistSongs(playlist->id());
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::StateChanged(const EngineBase::State state) {
|
||||
|
||||
if (state == last_state_) {
|
||||
return;
|
||||
}
|
||||
last_state_ = state;
|
||||
|
||||
networkremote::Message msg;
|
||||
|
||||
switch (state) {
|
||||
case EngineBase::State::Playing:
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::PLAY);
|
||||
track_position_timer_->start(1s);
|
||||
break;
|
||||
case EngineBase::State::Paused:
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::PAUSE);
|
||||
track_position_timer_->stop();
|
||||
break;
|
||||
case EngineBase::State::Empty:
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::STOP); // Empty is called when player stopped
|
||||
track_position_timer_->stop();
|
||||
break;
|
||||
default:
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::STOP);
|
||||
track_position_timer_->stop();
|
||||
break;
|
||||
};
|
||||
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendRepeatMode(const PlaylistSequence::RepeatMode mode) {
|
||||
|
||||
networkremote::Repeat repeat;
|
||||
|
||||
switch (mode) {
|
||||
case PlaylistSequence::RepeatMode::Off:
|
||||
repeat.setRepeatMode(networkremote::RepeatModeGadget::RepeatMode::RepeatMode_Off);
|
||||
break;
|
||||
case PlaylistSequence::RepeatMode::Track:
|
||||
repeat.setRepeatMode(networkremote::RepeatModeGadget::RepeatMode::RepeatMode_Track);
|
||||
break;
|
||||
case PlaylistSequence::RepeatMode::Album:
|
||||
repeat.setRepeatMode(networkremote::RepeatModeGadget::RepeatMode::RepeatMode_Album);
|
||||
break;
|
||||
case PlaylistSequence::RepeatMode::Playlist:
|
||||
repeat.setRepeatMode(networkremote::RepeatModeGadget::RepeatMode::RepeatMode_Playlist);
|
||||
break;
|
||||
case PlaylistSequence::RepeatMode::OneByOne:
|
||||
repeat.setRepeatMode(networkremote::RepeatModeGadget::RepeatMode::RepeatMode_OneByOne);
|
||||
break;
|
||||
case PlaylistSequence::RepeatMode::Intro:
|
||||
repeat.setRepeatMode(networkremote::RepeatModeGadget::RepeatMode::RepeatMode_Intro);
|
||||
break;
|
||||
}
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::REPEAT);
|
||||
msg.setRepeat(repeat);
|
||||
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendShuffleMode(const PlaylistSequence::ShuffleMode mode) {
|
||||
|
||||
networkremote::Shuffle shuffle;
|
||||
|
||||
switch (mode) {
|
||||
case PlaylistSequence::ShuffleMode::Off:
|
||||
shuffle.setShuffleMode(networkremote::ShuffleModeGadget::ShuffleMode::ShuffleMode_Off);
|
||||
break;
|
||||
case PlaylistSequence::ShuffleMode::All:
|
||||
shuffle.setShuffleMode(networkremote::ShuffleModeGadget::ShuffleMode::ShuffleMode_All);
|
||||
break;
|
||||
case PlaylistSequence::ShuffleMode::InsideAlbum:
|
||||
shuffle.setShuffleMode(networkremote::ShuffleModeGadget::ShuffleMode::ShuffleMode_InsideAlbum);
|
||||
break;
|
||||
case PlaylistSequence::ShuffleMode::Albums:
|
||||
shuffle.setShuffleMode(networkremote::ShuffleModeGadget::ShuffleMode::ShuffleMode_Albums);
|
||||
break;
|
||||
}
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::SHUFFLE);
|
||||
msg.setShuffle(shuffle);
|
||||
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::UpdateTrackPosition() {
|
||||
|
||||
const qint64 position_nanosec = player_->engine()->position_nanosec();
|
||||
int position = static_cast<int>(std::floor(static_cast<double>(position_nanosec) / kNsecPerSec + 0.5));
|
||||
|
||||
if (position_nanosec > current_song_.length_nanosec()) {
|
||||
position = last_track_position_;
|
||||
}
|
||||
|
||||
last_track_position_ = position;
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::UPDATE_TRACK_POSITION);
|
||||
networkremote::ResponseUpdateTrackPosition reponse_update_track_position;
|
||||
reponse_update_track_position.setPosition(position);
|
||||
msg.setResponseUpdateTrackPosition(reponse_update_track_position);
|
||||
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::DisconnectAllClients() {
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::DISCONNECT);
|
||||
networkremote::ResponseDisconnect reponse_disconnect;
|
||||
reponse_disconnect.setReasonDisconnect(networkremote::ReasonDisconnectGadget::ReasonDisconnect::Server_Shutdown);
|
||||
msg.setResponseDisconnect(reponse_disconnect);
|
||||
SendDataToClients(&msg);
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendCollection(NetworkRemoteClient *client) {
|
||||
|
||||
const QString temp_database_filename = QStandardPaths::writableLocation(QStandardPaths::TempLocation) + u'/' + Utilities::GetRandomStringWithChars(20);
|
||||
|
||||
Database::AttachedDatabase adb(temp_database_filename, ""_L1, true);
|
||||
QSqlDatabase db(database_->Connect());
|
||||
|
||||
database_->AttachDatabaseOnDbConnection(u"songs_export"_s, adb, db);
|
||||
|
||||
SqlQuery q(db);
|
||||
q.prepare(u"CREATE TABLE songs_export.songs AS SELECT * FROM songs WHERE unavailable = 0"_s);
|
||||
|
||||
if (!q.exec()) {
|
||||
database_->ReportErrors(q);
|
||||
return;
|
||||
}
|
||||
|
||||
database_->DetachDatabase(u"songs_export"_s);
|
||||
|
||||
QFile file(temp_database_filename);
|
||||
const QByteArray sha1 = Utilities::Sha1File(file).toHex();
|
||||
qLog(Debug) << "Collection SHA1" << sha1;
|
||||
|
||||
if (!file.open(QIODevice::ReadOnly)) {
|
||||
qLog(Error) << "Could not open file" << temp_database_filename;
|
||||
}
|
||||
|
||||
const int chunk_count = qRound((file.size() / kFileChunkSize) + 0.5);
|
||||
int chunk_number = 0;
|
||||
while (!file.atEnd()) {
|
||||
++chunk_number;
|
||||
const QByteArray data = file.read(kFileChunkSize);
|
||||
networkremote::ResponseCollectionChunk chunk;
|
||||
chunk.setChunkNumber(chunk_number);
|
||||
chunk.setChunkCount(chunk_count);
|
||||
chunk.setSize(file.size());
|
||||
chunk.setData(data);
|
||||
chunk.setFileHash(sha1);
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::COLLECTION_CHUNK);
|
||||
msg.setResponseCollectionChunk(chunk);
|
||||
client->SendData(&msg);
|
||||
}
|
||||
|
||||
file.remove();
|
||||
file.close();
|
||||
|
||||
}
|
||||
|
||||
void OutgoingDataCreator::SendListFiles(QString relative_path, NetworkRemoteClient *client) {
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::LIST_FILES);
|
||||
networkremote::ResponseListFiles files;
|
||||
|
||||
if (files_root_folder_.isEmpty()) {
|
||||
files.setError(networkremote::ResponseListFiles::Error::ROOT_DIR_NOT_SET);
|
||||
SendDataToClients(&msg);
|
||||
return;
|
||||
}
|
||||
|
||||
QDir root_dir(files_root_folder_);
|
||||
if (!root_dir.exists()) {
|
||||
files.setError(networkremote::ResponseListFiles::Error::ROOT_DIR_NOT_SET);
|
||||
}
|
||||
else if (relative_path.startsWith(".."_L1) || relative_path.startsWith("./.."_L1)) {
|
||||
files.setError(networkremote::ResponseListFiles::Error::DIR_NOT_ACCESSIBLE);
|
||||
}
|
||||
else {
|
||||
if (relative_path.startsWith("/"_L1)) relative_path.remove(0, 1);
|
||||
|
||||
QFileInfo fi_folder(root_dir, relative_path);
|
||||
if (!fi_folder.exists()) {
|
||||
files.setError(networkremote::ResponseListFiles::Error::DIR_NOT_EXIST);
|
||||
}
|
||||
else if (!fi_folder.isDir()) {
|
||||
files.setError(networkremote::ResponseListFiles::Error::DIR_NOT_EXIST);
|
||||
}
|
||||
else if (root_dir.relativeFilePath(fi_folder.absoluteFilePath()).startsWith("../"_L1)) {
|
||||
files.setError(networkremote::ResponseListFiles::Error::DIR_NOT_ACCESSIBLE);
|
||||
}
|
||||
else {
|
||||
files.setRelativePath(root_dir.relativeFilePath(fi_folder.absoluteFilePath()));
|
||||
QDir dir(fi_folder.absoluteFilePath());
|
||||
dir.setFilter(QDir::NoDotAndDotDot | QDir::AllEntries);
|
||||
dir.setSorting(QDir::Name | QDir::DirsFirst);
|
||||
|
||||
const QList<QFileInfo> fis = dir.entryInfoList();
|
||||
for (const QFileInfo &fi : fis) {
|
||||
if (fi.isDir() || files_music_extensions_.contains(fi.suffix())) {
|
||||
networkremote::FileMetadata pb_file;// = files->addFiles();
|
||||
pb_file.setIsDir(fi.isDir());
|
||||
pb_file.setFilename(fi.fileName());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
msg.setResponseListFiles(files);
|
||||
|
||||
client->SendData(&msg);
|
||||
|
||||
}
|
||||
120
src/networkremote/outgoingdatacreator.h
Normal file
120
src/networkremote/outgoingdatacreator.h
Normal file
@@ -0,0 +1,120 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2012, Andreas Muttscheller <asfa194@gmail.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef OUTGOINGDATACREATOR_H
|
||||
#define OUTGOINGDATACREATOR_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QList>
|
||||
#include <QMap>
|
||||
#include <QQueue>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
#include <QImage>
|
||||
#include <QTcpSocket>
|
||||
#include <QTimer>
|
||||
|
||||
#include "includes/shared_ptr.h"
|
||||
#include "engine/enginebase.h"
|
||||
#include "playlist/playlistsequence.h"
|
||||
#include "networkremotemessages.qpb.h"
|
||||
#include "covermanager/albumcoverloaderresult.h"
|
||||
|
||||
class Database;
|
||||
class Player;
|
||||
class PlaylistManager;
|
||||
class PlaylistBackend;
|
||||
class Playlist;
|
||||
class NetworkRemoteClient;
|
||||
|
||||
class OutgoingDataCreator : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit OutgoingDataCreator(const SharedPtr<Database> database,
|
||||
const SharedPtr<Player> player,
|
||||
const SharedPtr<PlaylistManager> playlist_manager,
|
||||
const SharedPtr<PlaylistBackend> playlist_backend,
|
||||
QObject *parent = nullptr);
|
||||
|
||||
~OutgoingDataCreator();
|
||||
|
||||
void SetClients(QList<NetworkRemoteClient*> *clients);
|
||||
void SetRemoteRootFiles(const QString &files_root_folder) {
|
||||
files_root_folder_ = files_root_folder;
|
||||
}
|
||||
void SetMusicExtensions(const QStringList &files_music_extensions) {
|
||||
files_music_extensions_ = files_music_extensions;
|
||||
}
|
||||
void SetAllowDownloads(bool allow_downloads) {
|
||||
allow_downloads_ = allow_downloads;
|
||||
}
|
||||
|
||||
static networkremote::SongMetadata PbSongMetadataFromSong(const int index, const Song &song, const QImage &image_cover_art = QImage());
|
||||
|
||||
public Q_SLOTS:
|
||||
void SendInfo();
|
||||
void SendKeepAlive();
|
||||
void SendAllPlaylists();
|
||||
void SendAllActivePlaylists();
|
||||
void SendFirstData(const bool send_playlist_songs);
|
||||
void SendPlaylistSongs(const int id);
|
||||
void PlaylistChanged(Playlist *playlist);
|
||||
void VolumeChanged(const uint volume);
|
||||
void PlaylistAdded(const int id, const QString &name, bool favorite);
|
||||
void PlaylistDeleted(const int id);
|
||||
void PlaylistClosed(const int id);
|
||||
void PlaylistRenamed(const int id, const QString &new_name);
|
||||
void ActiveChanged(Playlist *playlist);
|
||||
void CurrentSongChanged(const Song &song, const AlbumCoverLoaderResult &result);
|
||||
void SendSongMetadata();
|
||||
void StateChanged(const EngineBase::State state);
|
||||
void SendRepeatMode(const PlaylistSequence::RepeatMode mode);
|
||||
void SendShuffleMode(const PlaylistSequence::ShuffleMode mode);
|
||||
void UpdateTrackPosition();
|
||||
void DisconnectAllClients();
|
||||
void SendCollection(NetworkRemoteClient *client);
|
||||
void SendListFiles(QString relative_path, NetworkRemoteClient *client);
|
||||
|
||||
private:
|
||||
void SendDataToClients(networkremote::Message *msg);
|
||||
networkremote::EngineStateGadget::EngineState GetEngineState();
|
||||
|
||||
private:
|
||||
const SharedPtr<Database> database_;
|
||||
const SharedPtr<Player> player_;
|
||||
const SharedPtr<PlaylistManager> playlist_manager_;
|
||||
const SharedPtr<PlaylistBackend> playlist_backend_;
|
||||
QList<NetworkRemoteClient*> *clients_;
|
||||
Song current_song_;
|
||||
AlbumCoverLoaderResult albumcoverloader_result_;
|
||||
QImage current_image_;
|
||||
EngineBase::State last_state_;
|
||||
QTimer *keep_alive_timer_;
|
||||
QTimer *track_position_timer_;
|
||||
int keep_alive_timeout_;
|
||||
int last_track_position_;
|
||||
QString files_root_folder_;
|
||||
QStringList files_music_extensions_;
|
||||
bool allow_downloads_;
|
||||
};
|
||||
|
||||
#endif // OUTGOINGDATACREATOR_H
|
||||
442
src/networkremote/songsender.cpp
Normal file
442
src/networkremote/songsender.cpp
Normal file
@@ -0,0 +1,442 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2012, Andreas Muttscheller <asfa194@gmail.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "songsender.h"
|
||||
|
||||
#include <QImage>
|
||||
#include <QDir>
|
||||
#include <QFile>
|
||||
#include <QFileInfo>
|
||||
#include <QSettings>
|
||||
|
||||
#include "includes/shared_ptr.h"
|
||||
#include "constants/networkremotesettingsconstants.h"
|
||||
#include "constants/networkremoteconstants.h"
|
||||
#include "core/logging.h"
|
||||
#include "core/player.h"
|
||||
#include "collection/collectionbackend.h"
|
||||
#include "playlist/playlistmanager.h"
|
||||
#include "playlist/playlist.h"
|
||||
#include "networkremote.h"
|
||||
#include "outgoingdatacreator.h"
|
||||
#include "networkremoteclient.h"
|
||||
#include "utilities/randutils.h"
|
||||
#include "utilities/cryptutils.h"
|
||||
|
||||
using namespace Qt::Literals::StringLiterals;
|
||||
using namespace NetworkRemoteSettingsConstants;
|
||||
using namespace NetworkRemoteConstants;
|
||||
|
||||
SongSender::SongSender(const SharedPtr<Player> player,
|
||||
const SharedPtr<CollectionBackend> collection_backend,
|
||||
const SharedPtr<PlaylistManager> playlist_manager,
|
||||
NetworkRemoteClient *client,
|
||||
QObject *parent)
|
||||
: QObject(parent),
|
||||
player_(player),
|
||||
collection_backend_(collection_backend),
|
||||
playlist_manager_(playlist_manager),
|
||||
client_(client),
|
||||
transcoder_(new Transcoder(this, QLatin1String(kTranscoderSettingPostfix))) {
|
||||
|
||||
QSettings s;
|
||||
s.beginGroup(kSettingsGroup);
|
||||
|
||||
transcode_lossless_files_ = s.value("convert_lossless", false).toBool();
|
||||
|
||||
// Load preset
|
||||
QString last_output_format = s.value("last_output_format", u"audio/x-vorbis"_s).toString();
|
||||
QList<TranscoderPreset> presets = transcoder_->GetAllPresets();
|
||||
for (int i = 0; i < presets.count(); ++i) {
|
||||
if (last_output_format == presets.at(i).codec_mimetype_) {
|
||||
transcoder_preset_ = presets.at(i);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
qLog(Debug) << "Transcoder preset" << transcoder_preset_.codec_mimetype_;
|
||||
|
||||
QObject::connect(transcoder_, &Transcoder::JobComplete, this, &SongSender::TranscodeJobComplete);
|
||||
QObject::connect(transcoder_, &Transcoder::AllJobsComplete, this, &SongSender::StartTransfer);
|
||||
|
||||
total_transcode_ = 0;
|
||||
|
||||
}
|
||||
|
||||
SongSender::~SongSender() {
|
||||
|
||||
QObject::disconnect(transcoder_, &Transcoder::JobComplete, this, &SongSender::TranscodeJobComplete);
|
||||
QObject::disconnect(transcoder_, &Transcoder::AllJobsComplete, this, &SongSender::StartTransfer);
|
||||
|
||||
transcoder_->Cancel();
|
||||
|
||||
}
|
||||
|
||||
void SongSender::SendSongs(const networkremote::RequestDownloadSongs &request) {
|
||||
|
||||
Song current_song;
|
||||
if (player_->GetCurrentItem()) {
|
||||
current_song = player_->GetCurrentItem()->Metadata();
|
||||
}
|
||||
|
||||
switch (request.downloadItem()) {
|
||||
case networkremote::DownloadItemGadget::DownloadItem::CurrentItem:{
|
||||
if (current_song.is_valid()) {
|
||||
const DownloadItem item(current_song, 1, 1);
|
||||
download_queue_.append(item);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case networkremote::DownloadItemGadget::DownloadItem::ItemAlbum:
|
||||
if (current_song.is_valid()) {
|
||||
SendAlbum(current_song);
|
||||
}
|
||||
break;
|
||||
case networkremote::DownloadItemGadget::DownloadItem::APlaylist:
|
||||
SendPlaylist(request);
|
||||
break;
|
||||
case networkremote::DownloadItemGadget::DownloadItem::Urls:
|
||||
SendUrls(request);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
if (transcode_lossless_files_) {
|
||||
TranscodeLosslessFiles();
|
||||
}
|
||||
else {
|
||||
StartTransfer();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void SongSender::TranscodeLosslessFiles() {
|
||||
|
||||
for (const DownloadItem &item : std::as_const(download_queue_)) {
|
||||
// Check only lossless files
|
||||
if (!item.song_.IsFileLossless()) continue;
|
||||
|
||||
// Add the file to the transcoder
|
||||
const QString local_file = item.song_.url().toLocalFile();
|
||||
|
||||
qLog(Debug) << "Transcoding" << local_file;
|
||||
|
||||
transcoder_->AddJob(local_file, transcoder_preset_, Utilities::GetRandomStringWithCharsAndNumbers(20));
|
||||
|
||||
total_transcode_++;
|
||||
}
|
||||
|
||||
if (total_transcode_ > 0) {
|
||||
transcoder_->Start();
|
||||
SendTranscoderStatus();
|
||||
}
|
||||
else {
|
||||
StartTransfer();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void SongSender::TranscodeJobComplete(const QString &input, const QString &output, const bool success) {
|
||||
|
||||
qLog(Debug) << input << "transcoded to" << output << success;
|
||||
|
||||
// If it wasn't successful send original file
|
||||
if (success) {
|
||||
transcoder_map_.insert(input, output);
|
||||
}
|
||||
|
||||
SendTranscoderStatus();
|
||||
|
||||
}
|
||||
|
||||
void SongSender::SendTranscoderStatus() {
|
||||
|
||||
// Send a message to the remote that we are converting files
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::TRANSCODING_FILES);
|
||||
|
||||
networkremote::ResponseTranscoderStatus status = msg.responseTranscoderStatus();
|
||||
status.setProcessed(static_cast<int>(transcoder_map_.count()));
|
||||
status.setTotal(total_transcode_);
|
||||
|
||||
client_->SendData(&msg);
|
||||
|
||||
}
|
||||
|
||||
void SongSender::StartTransfer() {
|
||||
|
||||
total_transcode_ = 0;
|
||||
|
||||
// Send total file size & file count
|
||||
SendTotalFileSize();
|
||||
|
||||
// Send first file
|
||||
OfferNextSong();
|
||||
|
||||
}
|
||||
|
||||
void SongSender::SendTotalFileSize() {
|
||||
|
||||
networkremote::Message msg;
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::DOWNLOAD_TOTAL_SIZE);
|
||||
|
||||
networkremote::ResponseDownloadTotalSize response = msg.responseDownloadTotalSize();
|
||||
|
||||
response.setFileCount(download_queue_.size());
|
||||
|
||||
qint64 total = 0;
|
||||
for (const DownloadItem &item : std::as_const(download_queue_)) {
|
||||
QString local_file = item.song_.url().toLocalFile();
|
||||
const bool is_transcoded = transcoder_map_.contains(local_file);
|
||||
|
||||
if (is_transcoded) {
|
||||
local_file = transcoder_map_.value(local_file);
|
||||
}
|
||||
|
||||
total += QFileInfo(local_file).size();
|
||||
|
||||
}
|
||||
|
||||
response.setTotalSize(total);
|
||||
|
||||
client_->SendData(&msg);
|
||||
|
||||
}
|
||||
|
||||
void SongSender::OfferNextSong() {
|
||||
|
||||
networkremote::Message msg;
|
||||
|
||||
if (download_queue_.isEmpty()) {
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::DOWNLOAD_QUEUE_EMPTY);
|
||||
}
|
||||
else {
|
||||
// Get the item and send the single song
|
||||
const DownloadItem item = download_queue_.head();
|
||||
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::SONG_OFFER_FILE_CHUNK);
|
||||
networkremote::ResponseSongFileChunk chunk = msg.responseSongFileChunk();
|
||||
|
||||
// Open the file
|
||||
QFile file(item.song_.url().toLocalFile());
|
||||
|
||||
// Song offer is chunk no 0
|
||||
chunk.setChunkCount(0);
|
||||
chunk.setChunkNumber(0);
|
||||
chunk.setFileCount(item.song_count_);
|
||||
chunk.setFileNumber(item.song_number_);
|
||||
chunk.setSize(file.size());
|
||||
chunk.setSongMetadata(OutgoingDataCreator::PbSongMetadataFromSong(-1, item.song_));
|
||||
msg.setResponseSongFileChunk(chunk);
|
||||
}
|
||||
|
||||
client_->SendData(&msg);
|
||||
|
||||
}
|
||||
|
||||
void SongSender::ResponseSongOffer(const bool accepted) {
|
||||
|
||||
if (download_queue_.isEmpty()) return;
|
||||
|
||||
// Get the item and send the single song
|
||||
DownloadItem item = download_queue_.dequeue();
|
||||
if (accepted) SendSingleSong(item);
|
||||
|
||||
// And offer the next song
|
||||
OfferNextSong();
|
||||
|
||||
}
|
||||
|
||||
void SongSender::SendSingleSong(const DownloadItem &download_item) {
|
||||
|
||||
if (!download_item.song_.url().isLocalFile()) return;
|
||||
|
||||
QString local_file = download_item.song_.url().toLocalFile();
|
||||
bool is_transcoded = transcoder_map_.contains(local_file);
|
||||
|
||||
if (is_transcoded) {
|
||||
local_file = transcoder_map_.take(local_file);
|
||||
}
|
||||
|
||||
// Open the file
|
||||
QFile file(local_file);
|
||||
|
||||
// Get sha1 for file
|
||||
QByteArray sha1 = Utilities::Sha1File(file).toHex();
|
||||
qLog(Debug) << "sha1 for file" << local_file << "=" << sha1;
|
||||
|
||||
file.open(QIODevice::ReadOnly);
|
||||
|
||||
QByteArray data;
|
||||
networkremote::Message msg;
|
||||
networkremote::ResponseSongFileChunk chunk = msg.responseSongFileChunk();
|
||||
msg.setType(networkremote::MsgTypeGadget::MsgType::SONG_OFFER_FILE_CHUNK);
|
||||
|
||||
// Calculate the number of chunks
|
||||
int chunk_count = qRound((static_cast<quint32>(file.size()) / kFileChunkSize) + 0.5);
|
||||
int chunk_number = 1;
|
||||
|
||||
while (!file.atEnd()) {
|
||||
// Read file chunk
|
||||
data = file.read(kFileChunkSize);
|
||||
|
||||
// Set chunk data
|
||||
chunk.setChunkCount(chunk_count);
|
||||
chunk.setChunkNumber(chunk_number);
|
||||
chunk.setFileCount(download_item.song_count_);
|
||||
chunk.setFileNumber(download_item.song_number_);
|
||||
chunk.setSize(file.size());
|
||||
chunk.setData(data);
|
||||
chunk.setFileHash(sha1);
|
||||
|
||||
// On the first chunk send the metadata, so the client knows what file it receives.
|
||||
if (chunk_number == 1) {
|
||||
const int i = playlist_manager_->active()->current_row();
|
||||
networkremote::SongMetadata song_metadata = OutgoingDataCreator::PbSongMetadataFromSong(i, download_item.song_);
|
||||
|
||||
// If the file was transcoded, we have to change the filename and filesize
|
||||
if (is_transcoded) {
|
||||
song_metadata.setFileSize(file.size());
|
||||
QString basefilename = download_item.song_.basefilename();
|
||||
QFileInfo info(basefilename);
|
||||
basefilename.replace(u'.' + info.suffix(), u'.' + transcoder_preset_.extension_);
|
||||
song_metadata.setFilename(basefilename);
|
||||
}
|
||||
}
|
||||
|
||||
// Send data directly to the client
|
||||
client_->SendData(&msg);
|
||||
|
||||
// Clear working data
|
||||
chunk = networkremote::ResponseSongFileChunk();
|
||||
data.clear();
|
||||
|
||||
chunk_number++;
|
||||
}
|
||||
|
||||
// If the file was transcoded, delete the temporary one
|
||||
if (is_transcoded) {
|
||||
file.remove();
|
||||
}
|
||||
else {
|
||||
file.close();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void SongSender::SendAlbum(const Song &album_song) {
|
||||
|
||||
if (!album_song.url().isLocalFile()) return;
|
||||
|
||||
const SongList songs = collection_backend_->GetSongsByAlbum(album_song.album());
|
||||
|
||||
for (const Song &song : songs) {
|
||||
const DownloadItem item(song, static_cast<int>(songs.indexOf(song)) + 1, static_cast<int>(songs.size()));
|
||||
download_queue_.append(item);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void SongSender::SendPlaylist(const networkremote::RequestDownloadSongs &request) {
|
||||
|
||||
const int playlist_id = request.playlistId();
|
||||
Playlist *playlist = playlist_manager_->playlist(playlist_id);
|
||||
if (!playlist) {
|
||||
qLog(Info) << "Could not find playlist with id = " << playlist_id;
|
||||
return;
|
||||
}
|
||||
const SongList song_list = playlist->GetAllSongs();
|
||||
|
||||
QList<int> requested_ids;
|
||||
requested_ids.reserve(request.songsIds().count());
|
||||
for (auto song_id : request.songsIds()) {
|
||||
requested_ids << song_id;
|
||||
}
|
||||
|
||||
// Count the local songs
|
||||
int count = 0;
|
||||
for (const Song &song : song_list) {
|
||||
if (song.url().isLocalFile() && (requested_ids.isEmpty() || requested_ids.contains(song.id()))) {
|
||||
++count;
|
||||
}
|
||||
}
|
||||
|
||||
for (const Song &song : song_list) {
|
||||
if (song.url().isLocalFile() && (requested_ids.isEmpty() || requested_ids.contains(song.id()))) {
|
||||
DownloadItem item(song, static_cast<int>(song_list.indexOf(song)) + 1, count);
|
||||
download_queue_.append(item);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void SongSender::SendUrls(const networkremote::RequestDownloadSongs &request) {
|
||||
|
||||
SongList songs;
|
||||
|
||||
// First gather all valid songs
|
||||
if (!request.relativePath().isEmpty()) {
|
||||
// Security checks, cf OutgoingDataCreator::SendListFiles
|
||||
const QString &files_root_folder = client_->files_root_folder();
|
||||
if (files_root_folder.isEmpty()) return;
|
||||
QDir root_dir(files_root_folder);
|
||||
QString relative_path = request.relativePath();
|
||||
if (!root_dir.exists() || relative_path.startsWith(".."_L1) || relative_path.startsWith("./.."_L1))
|
||||
return;
|
||||
|
||||
if (relative_path.startsWith(u'/')) relative_path.remove(0, 1);
|
||||
|
||||
QFileInfo fi_folder(root_dir, relative_path);
|
||||
if (!fi_folder.exists() || !fi_folder.isDir() || root_dir.relativeFilePath(fi_folder.absoluteFilePath()).startsWith(u"../"_s)) {
|
||||
return;
|
||||
}
|
||||
|
||||
QDir dir(fi_folder.absoluteFilePath());
|
||||
const QStringList &files_music_extensions = client_->files_music_extensions();
|
||||
for (const QString &s : request.urls()) {
|
||||
QFileInfo fi(dir, s);
|
||||
if (fi.exists() && fi.isFile() && files_music_extensions.contains(fi.suffix())) {
|
||||
Song song;
|
||||
song.set_basefilename(fi.fileName());
|
||||
song.set_filesize(fi.size());
|
||||
song.set_url(QUrl::fromLocalFile(fi.absoluteFilePath()));
|
||||
song.set_valid(true);
|
||||
songs.append(song);
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
for (const QString &url_str : request.urls()) {
|
||||
const QUrl url(url_str);
|
||||
Song song = collection_backend_->GetSongByUrl(url);
|
||||
if (song.is_valid() && song.url().isLocalFile()) {
|
||||
songs.append(song);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (const Song &song : songs) {
|
||||
DownloadItem item(song, static_cast<int>(songs.indexOf(song)) + 1, static_cast<int>(songs.count()));
|
||||
download_queue_.append(item);
|
||||
}
|
||||
|
||||
}
|
||||
96
src/networkremote/songsender.h
Normal file
96
src/networkremote/songsender.h
Normal file
@@ -0,0 +1,96 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2012, Andreas Muttscheller <asfa194@gmail.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SONGSENDER_H
|
||||
#define SONGSENDER_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QMap>
|
||||
#include <QQueue>
|
||||
#include <QString>
|
||||
#include <QUrl>
|
||||
|
||||
#include "includes/shared_ptr.h"
|
||||
#include "core/song.h"
|
||||
#include "networkremotemessages.qpb.h"
|
||||
#include "transcoder/transcoder.h"
|
||||
|
||||
class Player;
|
||||
class CollectionBackend;
|
||||
class PlaylistManager;
|
||||
class NetworkRemoteClient;
|
||||
class Transcoder;
|
||||
|
||||
class DownloadItem {
|
||||
public:
|
||||
explicit DownloadItem(const Song &song, const int song_number, const int song_count)
|
||||
: song_(song), song_number_(song_number), song_count_(song_count) {}
|
||||
|
||||
Song song_;
|
||||
int song_number_;
|
||||
int song_count_;
|
||||
};
|
||||
|
||||
class SongSender : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit SongSender(const SharedPtr<Player> player,
|
||||
const SharedPtr<CollectionBackend> collection_backend,
|
||||
const SharedPtr<PlaylistManager> playlist_manager,
|
||||
NetworkRemoteClient *client,
|
||||
QObject *parent = nullptr);
|
||||
|
||||
~SongSender();
|
||||
|
||||
public Q_SLOTS:
|
||||
void SendSongs(const networkremote::RequestDownloadSongs &request);
|
||||
void ResponseSongOffer(bool accepted);
|
||||
|
||||
private Q_SLOTS:
|
||||
void TranscodeJobComplete(const QString &input, const QString &output, const bool success);
|
||||
void StartTransfer();
|
||||
|
||||
private:
|
||||
const SharedPtr<Player> player_;
|
||||
const SharedPtr<CollectionBackend> collection_backend_;
|
||||
const SharedPtr<PlaylistManager> playlist_manager_;
|
||||
NetworkRemoteClient *client_;
|
||||
|
||||
TranscoderPreset transcoder_preset_;
|
||||
Transcoder *transcoder_;
|
||||
bool transcode_lossless_files_;
|
||||
|
||||
QQueue<DownloadItem> download_queue_;
|
||||
QMap<QString, QString> transcoder_map_;
|
||||
int total_transcode_;
|
||||
|
||||
void SendSingleSong(const DownloadItem &download_item);
|
||||
void SendAlbum(const Song &song);
|
||||
void SendPlaylist(const networkremote::RequestDownloadSongs &request);
|
||||
void SendUrls(const networkremote::RequestDownloadSongs &request);
|
||||
void OfferNextSong();
|
||||
void SendTotalFileSize();
|
||||
void TranscodeLosslessFiles();
|
||||
void SendTranscoderStatus();
|
||||
};
|
||||
|
||||
#endif // SONGSENDER_H
|
||||
@@ -57,6 +57,7 @@
|
||||
#include "playlistview.h"
|
||||
#include "playlistsaveoptionsdialog.h"
|
||||
#include "playlistparsers/playlistparser.h"
|
||||
#include "queue/queue.h"
|
||||
#include "dialogs/saveplaylistsdialog.h"
|
||||
|
||||
using namespace Qt::Literals::StringLiterals;
|
||||
@@ -185,9 +186,9 @@ Playlist *PlaylistManager::AddPlaylist(const int id, const QString &name, const
|
||||
|
||||
}
|
||||
|
||||
void PlaylistManager::New(const QString &name, const SongList &songs, const QString &special_type) {
|
||||
int PlaylistManager::New(const QString &name, const SongList &songs, const QString &special_type) {
|
||||
|
||||
if (name.isNull()) return;
|
||||
if (name.isNull()) return -1;
|
||||
|
||||
int id = playlist_backend_->CreatePlaylist(name, special_type);
|
||||
|
||||
@@ -203,6 +204,8 @@ void PlaylistManager::New(const QString &name, const SongList &songs, const QStr
|
||||
Rename(id, QStringLiteral("%1 %2").arg(name).arg(id));
|
||||
}
|
||||
|
||||
return id;
|
||||
|
||||
}
|
||||
|
||||
void PlaylistManager::Load(const QString &filename) {
|
||||
@@ -614,3 +617,22 @@ void PlaylistManager::SaveAllPlaylists() {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void PlaylistManager::Clear(const int id) {
|
||||
|
||||
if (playlists_.count() <= 1 || !playlists_.contains(id)) return;
|
||||
playlists_[id].p->Clear();
|
||||
|
||||
}
|
||||
|
||||
void PlaylistManager::Enqueue(const int id, const int i) {
|
||||
|
||||
QModelIndexList dummyIndexList;
|
||||
|
||||
Q_ASSERT(playlists_.contains(id));
|
||||
|
||||
dummyIndexList.append(playlist(id)->index(i, 0));
|
||||
playlist(id)->queue()->ToggleTracks(dummyIndexList);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -95,7 +95,7 @@ class PlaylistManager : public PlaylistManagerInterface {
|
||||
PlaylistContainer *playlist_container() const override { return playlist_container_; }
|
||||
|
||||
public Q_SLOTS:
|
||||
void New(const QString &name, const SongList &songs = SongList(), const QString &special_type = QString()) override;
|
||||
int New(const QString &name, const SongList &songs = SongList(), const QString &special_type = QString()) override;
|
||||
void Load(const QString &filename) override;
|
||||
void Save(const int id, const QString &playlist_name, const QString &filename, const PlaylistSettings::PathType path_type) override;
|
||||
// Display a file dialog to let user choose a file before saving the file
|
||||
@@ -144,6 +144,9 @@ class PlaylistManager : public PlaylistManagerInterface {
|
||||
void SetActivePaused() override;
|
||||
void SetActiveStopped() override;
|
||||
|
||||
void Clear(const int id);
|
||||
void Enqueue(const int id, const int i);
|
||||
|
||||
private Q_SLOTS:
|
||||
void OneOfPlaylistsChanged();
|
||||
void UpdateSummaryText();
|
||||
|
||||
@@ -77,7 +77,7 @@ class PlaylistManagerInterface : public QObject {
|
||||
virtual void PlaySmartPlaylist(PlaylistGeneratorPtr generator, const bool as_new, const bool clear) = 0;
|
||||
|
||||
public Q_SLOTS:
|
||||
virtual void New(const QString &name, const SongList &songs = SongList(), const QString &special_type = QString()) = 0;
|
||||
virtual int New(const QString &name, const SongList &songs = SongList(), const QString &special_type = QString()) = 0;
|
||||
virtual void Load(const QString &filename) = 0;
|
||||
virtual void Save(const int id, const QString &playlist_name, const QString &filename, const PlaylistSettings::PathType path_type) = 0;
|
||||
virtual void Rename(const int id, const QString &new_name) = 0;
|
||||
|
||||
@@ -51,7 +51,6 @@ class Queue : public QAbstractProxyModel {
|
||||
|
||||
// Modify the queue
|
||||
int TakeNext();
|
||||
void ToggleTracks(const QModelIndexList &source_indexes);
|
||||
void InsertFirst(const QModelIndexList &source_indexes);
|
||||
void Clear();
|
||||
void Move(const QList<int> &proxy_rows, int pos);
|
||||
@@ -79,6 +78,7 @@ class Queue : public QAbstractProxyModel {
|
||||
|
||||
public Q_SLOTS:
|
||||
void UpdateSummaryText();
|
||||
void ToggleTracks(const QModelIndexList &source_indexes);
|
||||
|
||||
Q_SIGNALS:
|
||||
void TotalLengthChanged(const quint64 length);
|
||||
|
||||
157
src/settings/networkremotesettingspage.cpp
Normal file
157
src/settings/networkremotesettingspage.cpp
Normal file
@@ -0,0 +1,157 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "networkremotesettingspage.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
#include <QString>
|
||||
#include <QUrl>
|
||||
#include <QFile>
|
||||
#include <QHostInfo>
|
||||
#include <QNetworkInterface>
|
||||
#include <QDesktopServices>
|
||||
#include <QSettings>
|
||||
#include <QRandomGenerator>
|
||||
|
||||
#include "constants/networkremotesettingsconstants.h"
|
||||
#include "constants/networkremoteconstants.h"
|
||||
#include "core/iconloader.h"
|
||||
#include "networkremote/networkremote.h"
|
||||
#include "transcoder/transcoder.h"
|
||||
#include "transcoder/transcoderoptionsdialog.h"
|
||||
#include "settingsdialog.h"
|
||||
#include "ui_networkremotesettingspage.h"
|
||||
|
||||
using namespace Qt::Literals::StringLiterals;
|
||||
using namespace NetworkRemoteSettingsConstants;
|
||||
using namespace NetworkRemoteConstants;
|
||||
|
||||
namespace {
|
||||
|
||||
static bool ComparePresetsByName(const TranscoderPreset &left, const TranscoderPreset &right) {
|
||||
return left.name_ < right.name_;
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
NetworkRemoteSettingsPage::NetworkRemoteSettingsPage(SettingsDialog *dialog)
|
||||
: SettingsPage(dialog),
|
||||
ui_(new Ui_NetworkRemoteSettingsPage) {
|
||||
|
||||
ui_->setupUi(this);
|
||||
|
||||
setWindowIcon(IconLoader::Load(u"ipodtouchicon"_s));
|
||||
|
||||
QObject::connect(ui_->options, &QPushButton::clicked, this, &NetworkRemoteSettingsPage::Options);
|
||||
|
||||
QList<TranscoderPreset> presets = Transcoder::GetAllPresets();
|
||||
std::sort(presets.begin(), presets.end(), ComparePresetsByName);
|
||||
for (const TranscoderPreset &preset : std::as_const(presets)) {
|
||||
ui_->format->addItem(QStringLiteral("%1 (.%2)").arg(preset.name_, preset.extension_), QVariant::fromValue(preset));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
NetworkRemoteSettingsPage::~NetworkRemoteSettingsPage() { delete ui_; }
|
||||
|
||||
void NetworkRemoteSettingsPage::Load() {
|
||||
|
||||
QSettings s;
|
||||
|
||||
s.beginGroup(kSettingsGroup);
|
||||
|
||||
ui_->enabled->setChecked(s.value(kEnabled).toBool());
|
||||
ui_->spinbox_port->setValue(s.value(kPort, kDefaultServerPort).toInt());
|
||||
ui_->checkbox_allow_public_access->setChecked(s.value(kAllowPublicAccess, false).toBool());
|
||||
|
||||
ui_->checkbox_use_auth_code->setChecked(s.value(kUseAuthCode, false).toBool());
|
||||
ui_->spinbox_auth_code->setValue(s.value(kAuthCode, QRandomGenerator::global()->bounded(100000)).toInt());
|
||||
|
||||
ui_->allow_downloads->setChecked(s.value("allow_downloads", false).toBool());
|
||||
ui_->convert_lossless->setChecked(s.value("convert_lossless", false).toBool());
|
||||
|
||||
QString last_output_format = s.value("last_output_format", u"audio/x-vorbis"_s).toString();
|
||||
for (int i = 0; i < ui_->format->count(); ++i) {
|
||||
if (last_output_format == ui_->format->itemData(i).value<TranscoderPreset>().codec_mimetype_) {
|
||||
ui_->format->setCurrentIndex(i);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
ui_->files_root_folder->SetPath(s.value("files_root_folder").toString());
|
||||
ui_->files_music_extensions->setText(s.value("files_music_extensions", kDefaultMusicExtensionsAllowedRemotely).toStringList().join(u','));
|
||||
|
||||
s.endGroup();
|
||||
|
||||
// Get local IP addresses
|
||||
QString ip_addresses;
|
||||
QList<QHostAddress> addresses = QNetworkInterface::allAddresses();
|
||||
for (const QHostAddress &address : addresses) {
|
||||
// TODO: Add IPv6 support to tinysvcmdns
|
||||
if (address.protocol() == QAbstractSocket::IPv4Protocol && !address.isInSubnet(QHostAddress::parseSubnet(u"127.0.0.1/8"_s))) {
|
||||
if (!ip_addresses.isEmpty()) {
|
||||
ip_addresses.append(u", "_s);
|
||||
}
|
||||
ip_addresses.append(address.toString());
|
||||
}
|
||||
}
|
||||
ui_->label_ip_address->setText(ip_addresses);
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemoteSettingsPage::Save() {
|
||||
|
||||
QSettings s;
|
||||
|
||||
s.beginGroup(kSettingsGroup);
|
||||
s.setValue(kEnabled, ui_->enabled->isChecked());
|
||||
s.setValue(kPort, ui_->spinbox_port->value());
|
||||
s.setValue(kAllowPublicAccess, ui_->checkbox_allow_public_access->isChecked());
|
||||
s.setValue(kUseAuthCode, ui_->checkbox_use_auth_code->isChecked());
|
||||
s.setValue(kAuthCode, ui_->spinbox_auth_code->value());
|
||||
|
||||
TranscoderPreset preset = ui_->format->itemData(ui_->format->currentIndex()).value<TranscoderPreset>();
|
||||
s.setValue("last_output_format", preset.codec_mimetype_);
|
||||
|
||||
s.setValue(kFilesRootFolder, ui_->files_root_folder->Path());
|
||||
|
||||
QStringList files_music_extensions;
|
||||
for (const QString &extension : ui_->files_music_extensions->text().split(u',')) {
|
||||
QString ext = extension.trimmed();
|
||||
if (ext.size() > 0 && ext.size() < 8) // no empty string, less than 8 char
|
||||
files_music_extensions << ext;
|
||||
}
|
||||
s.setValue("files_music_extensions", files_music_extensions);
|
||||
|
||||
s.endGroup();
|
||||
|
||||
}
|
||||
|
||||
void NetworkRemoteSettingsPage::Options() {
|
||||
|
||||
TranscoderPreset preset = ui_->format->itemData(ui_->format->currentIndex()).value<TranscoderPreset>();
|
||||
|
||||
TranscoderOptionsDialog dialog(preset.filetype_, this);
|
||||
dialog.set_settings_postfix(QLatin1String(kTranscoderSettingPostfix));
|
||||
dialog.exec();
|
||||
|
||||
}
|
||||
@@ -1,5 +1,7 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
@@ -17,26 +19,28 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef VISUALIZATIONOPENGLWIDGET_H
|
||||
#define VISUALIZATIONOPENGLWIDGET_H
|
||||
#ifndef NETWORKREMOTESETTINGSPAGE_H
|
||||
#define NETWORKREMOTESETTINGSPAGE_H
|
||||
|
||||
#include "config.h"
|
||||
#include "settingspage.h"
|
||||
|
||||
#include <QOpenGLWidget>
|
||||
class Ui_NetworkRemoteSettingsPage;
|
||||
|
||||
class ProjectMVisualization;
|
||||
|
||||
class VisualizationOpenGLWidget : public QOpenGLWidget {
|
||||
class NetworkRemoteSettingsPage : public SettingsPage {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit VisualizationOpenGLWidget(ProjectMVisualization *projectm_visualization, QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
|
||||
explicit NetworkRemoteSettingsPage(SettingsDialog *dialog);
|
||||
~NetworkRemoteSettingsPage();
|
||||
|
||||
protected:
|
||||
void initializeGL() override;
|
||||
void Load();
|
||||
void Save();
|
||||
|
||||
private Q_SLOTS:
|
||||
void Options();
|
||||
|
||||
private:
|
||||
ProjectMVisualization *projectm_visualization_;
|
||||
Ui_NetworkRemoteSettingsPage *ui_;
|
||||
};
|
||||
|
||||
#endif // VISUALIZATIONOPENGLWIDGET_H
|
||||
#endif // NETWORKREMOTESETTINGSPAGE_H
|
||||
298
src/settings/networkremotesettingspage.ui
Normal file
298
src/settings/networkremotesettingspage.ui
Normal file
@@ -0,0 +1,298 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>NetworkRemoteSettingsPage</class>
|
||||
<widget class="QWidget" name="NetworkRemoteSettingsPage">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>421</width>
|
||||
<height>664</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Network Remote</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="enabled">
|
||||
<property name="text">
|
||||
<string>Enabled</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupbox_use_remote_container">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Settings</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout">
|
||||
<property name="fieldGrowthPolicy">
|
||||
<enum>QFormLayout::AllNonFixedFieldsGrow</enum>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_port">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>171</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="layoutDirection">
|
||||
<enum>Qt::LeftToRight</enum>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Port</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QSpinBox" name="spinbox_port">
|
||||
<property name="maximum">
|
||||
<number>65535</number>
|
||||
</property>
|
||||
<property name="value">
|
||||
<number>8080</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="checkbox_allow_public_access">
|
||||
<property name="toolTip">
|
||||
<string>Only accept connections from clients within the ip ranges:
|
||||
10.x.x.x
|
||||
172.16.0.0 - 172.31.255.255
|
||||
192.168.x.x</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Allow public access</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QCheckBox" name="checkbox_use_auth_code">
|
||||
<property name="toolTip">
|
||||
<string>A client can connect only, if the correct code was entered.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Require authentication code</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QSpinBox" name="spinbox_auth_code">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>99999</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="9" column="0">
|
||||
<widget class="QLabel" name="label_ip_address_description">
|
||||
<property name="toolTip">
|
||||
<string>Enter this IP in the App to connect to Clementine.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Your IP address:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="9" column="1">
|
||||
<widget class="QLabel" name="label_ip_address">
|
||||
<property name="text">
|
||||
<string notr="true">127.0.0.1</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QCheckBox" name="allow_downloads">
|
||||
<property name="toolTip">
|
||||
<string>Allow a client to download music from this computer.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Allow downloads</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="7" column="0" colspan="2">
|
||||
<widget class="QGroupBox" name="download_settings_container">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Download settings</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="convert_lossless">
|
||||
<property name="toolTip">
|
||||
<string>Convert lossless audiofiles before sending them to the remote.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Convert lossless files</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="format_container">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Audio format</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="1">
|
||||
<widget class="QPushButton" name="options">
|
||||
<property name="text">
|
||||
<string>Options...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QComboBox" name="format"/>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="0">
|
||||
<widget class="QLabel" name="label_files_root_folder">
|
||||
<property name="toolTip">
|
||||
<string>Root folder that will be browsable from the network remote</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Files root folder</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="1">
|
||||
<widget class="FileChooserWidget" name="files_root_folder" native="true">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="1">
|
||||
<widget class="QLineEdit" name="files_music_extensions"/>
|
||||
</item>
|
||||
<item row="6" column="0">
|
||||
<widget class="QLabel" name="label_music_extensions">
|
||||
<property name="toolTip">
|
||||
<string>comma-separated list of the allowed extensions that will be visible from the network remote (ex: m3u,mp3,flac,ogg,wav)</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Music extensions remotely visible</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="spacer_bottom">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>98</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>FileChooserWidget</class>
|
||||
<extends>QWidget</extends>
|
||||
<header location="global">widgets/filechooserwidget.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources/>
|
||||
<connections>
|
||||
<connection>
|
||||
<sender>checkbox_use_auth_code</sender>
|
||||
<signal>toggled(bool)</signal>
|
||||
<receiver>spinbox_auth_code</receiver>
|
||||
<slot>setEnabled(bool)</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>137</x>
|
||||
<y>124</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>351</x>
|
||||
<y>125</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>enabled</sender>
|
||||
<signal>toggled(bool)</signal>
|
||||
<receiver>groupbox_use_remote_container</receiver>
|
||||
<slot>setEnabled(bool)</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>59</x>
|
||||
<y>22</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>57</x>
|
||||
<y>43</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>allow_downloads</sender>
|
||||
<signal>toggled(bool)</signal>
|
||||
<receiver>download_settings_container</receiver>
|
||||
<slot>setEnabled(bool)</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>196</x>
|
||||
<y>160</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>117</x>
|
||||
<y>205</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>convert_lossless</sender>
|
||||
<signal>toggled(bool)</signal>
|
||||
<receiver>format_container</receiver>
|
||||
<slot>setEnabled(bool)</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>218</x>
|
||||
<y>212</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>218</x>
|
||||
<y>262</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
</connections>
|
||||
</ui>
|
||||
@@ -90,6 +90,9 @@
|
||||
# include "qobuz/qobuzservice.h"
|
||||
# include "qobuzsettingspage.h"
|
||||
#endif
|
||||
#ifdef HAVE_NETWORKREMOTE
|
||||
# include "networkremotesettingspage.h"
|
||||
#endif
|
||||
|
||||
#include "ui_settingsdialog.h"
|
||||
|
||||
@@ -161,6 +164,10 @@ SettingsDialog::SettingsDialog(const SharedPtr<Player> player,
|
||||
AddPage(Page::Qobuz, new QobuzSettingsPage(this, streaming_services->Service<QobuzService>(), this), streaming);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_NETWORKREMOTE
|
||||
AddPage(Page::NetworkRemote, new NetworkRemoteSettingsPage(this));
|
||||
#endif
|
||||
|
||||
// List box
|
||||
QObject::connect(ui_->list, &QTreeWidget::currentItemChanged, this, &SettingsDialog::CurrentItemChanged);
|
||||
ui_->list->setCurrentItem(pages_[Page::Behaviour].item_);
|
||||
|
||||
@@ -93,6 +93,7 @@ class SettingsDialog : public QDialog {
|
||||
Tidal,
|
||||
Qobuz,
|
||||
Spotify,
|
||||
NetworkRemote
|
||||
};
|
||||
|
||||
enum Role {
|
||||
|
||||
@@ -20,6 +20,8 @@
|
||||
#include <QByteArray>
|
||||
#include <QString>
|
||||
#include <QCryptographicHash>
|
||||
#include <QFile>
|
||||
#include <QIODevice>
|
||||
|
||||
#include "cryptutils.h"
|
||||
|
||||
@@ -62,4 +64,17 @@ QByteArray HmacSha1(const QByteArray &key, const QByteArray &data) {
|
||||
return Hmac(key, data, QCryptographicHash::Sha1);
|
||||
}
|
||||
|
||||
QByteArray Sha1File(QFile &file) {
|
||||
|
||||
file.open(QIODevice::ReadOnly);
|
||||
QCryptographicHash hash(QCryptographicHash::Sha1);
|
||||
while (!file.atEnd()) {
|
||||
hash.addData(file.read(1000000));
|
||||
}
|
||||
file.close();
|
||||
|
||||
return hash.result();
|
||||
|
||||
}
|
||||
|
||||
} // namespace Utilities
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
#include <QByteArray>
|
||||
#include <QString>
|
||||
#include <QCryptographicHash>
|
||||
#include <QFile>
|
||||
|
||||
namespace Utilities {
|
||||
|
||||
@@ -30,6 +31,7 @@ QByteArray Hmac(const QByteArray &key, const QByteArray &data, const QCryptograp
|
||||
QByteArray HmacMd5(const QByteArray &key, const QByteArray &data);
|
||||
QByteArray HmacSha256(const QByteArray &key, const QByteArray &data);
|
||||
QByteArray HmacSha1(const QByteArray &key, const QByteArray &data);
|
||||
QByteArray Sha1File(QFile &file);
|
||||
|
||||
} // namespace Utilities
|
||||
|
||||
|
||||
@@ -1,159 +0,0 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <QAbstractItemModel>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
#include <QFileInfo>
|
||||
#include <QDir>
|
||||
#include <QDirIterator>
|
||||
|
||||
#include "core/logging.h"
|
||||
|
||||
#include "projectmpresetmodel.h"
|
||||
#include "projectmvisualization.h"
|
||||
|
||||
ProjectMPresetModel::ProjectMPresetModel(ProjectMVisualization *projectm_visualization, QObject *parent)
|
||||
: QAbstractItemModel(parent),
|
||||
projectm_visualization_(projectm_visualization) {
|
||||
|
||||
// Find presets
|
||||
if (QFileInfo::exists(projectm_visualization_->preset_path())) {
|
||||
QDirIterator it(projectm_visualization_->preset_path(), QStringList() << QStringLiteral("*.milk") << QStringLiteral("*.prjm"), QDir::Files | QDir::NoDotAndDotDot | QDir::Readable, QDirIterator::Subdirectories);
|
||||
QStringList files;
|
||||
while (it.hasNext()) {
|
||||
it.next();
|
||||
files << it.filePath();
|
||||
}
|
||||
std::stable_sort(files.begin(), files.end());
|
||||
for (const QString &filepath : std::as_const(files)) {
|
||||
const QFileInfo fileinfo(filepath);
|
||||
all_presets_ << Preset(fileinfo.filePath(), fileinfo.fileName(), false);
|
||||
}
|
||||
}
|
||||
else {
|
||||
qLog(Error) << "ProjectM preset path" << projectm_visualization_->preset_path() << "does not exist";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
int ProjectMPresetModel::rowCount(const QModelIndex &idx) const {
|
||||
|
||||
Q_UNUSED(idx);
|
||||
|
||||
if (!projectm_visualization_) return 0;
|
||||
|
||||
return static_cast<int>(all_presets_.count());
|
||||
|
||||
}
|
||||
|
||||
int ProjectMPresetModel::columnCount(const QModelIndex &idx) const {
|
||||
Q_UNUSED(idx);
|
||||
return 1;
|
||||
}
|
||||
|
||||
QModelIndex ProjectMPresetModel::index(const int row, const int column, const QModelIndex &idx) const {
|
||||
Q_UNUSED(idx);
|
||||
return createIndex(row, column);
|
||||
}
|
||||
|
||||
QModelIndex ProjectMPresetModel::parent(const QModelIndex &child) const {
|
||||
Q_UNUSED(child);
|
||||
return QModelIndex();
|
||||
}
|
||||
|
||||
QVariant ProjectMPresetModel::data(const QModelIndex &index, const int role) const {
|
||||
|
||||
switch (role) {
|
||||
case Qt::DisplayRole:
|
||||
return all_presets_[index.row()].name_;
|
||||
case Qt::CheckStateRole:{
|
||||
bool selected = all_presets_[index.row()].selected_;
|
||||
return selected ? Qt::Checked : Qt::Unchecked;
|
||||
}
|
||||
case Role::Role_Path:
|
||||
return all_presets_[index.row()].path_;
|
||||
default:
|
||||
return QVariant();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Qt::ItemFlags ProjectMPresetModel::flags(const QModelIndex &idx) const {
|
||||
|
||||
if (!idx.isValid()) return QAbstractItemModel::flags(idx);
|
||||
return Qt::ItemIsSelectable | Qt::ItemIsEditable | Qt::ItemIsUserCheckable | Qt::ItemIsEnabled;
|
||||
|
||||
}
|
||||
|
||||
bool ProjectMPresetModel::setData(const QModelIndex &idx, const QVariant &value, int role) {
|
||||
|
||||
if (role == Qt::CheckStateRole) {
|
||||
all_presets_[idx.row()].selected_ = value.toBool();
|
||||
projectm_visualization_->SetSelected(QStringList() << all_presets_[idx.row()].path_, value.toBool());
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
void ProjectMPresetModel::SetImmediatePreset(const QModelIndex &idx) {
|
||||
projectm_visualization_->SetImmediatePreset(all_presets_[idx.row()].path_);
|
||||
}
|
||||
|
||||
void ProjectMPresetModel::SelectAll() {
|
||||
|
||||
QStringList paths;
|
||||
paths.reserve(all_presets_.count());
|
||||
for (int i = 0; i < all_presets_.count(); ++i) {
|
||||
paths << all_presets_[i].path_;
|
||||
all_presets_[i].selected_ = true;
|
||||
}
|
||||
projectm_visualization_->SetSelected(paths, true);
|
||||
|
||||
Q_EMIT dataChanged(index(0, 0), index(rowCount() - 1, 0));
|
||||
|
||||
}
|
||||
|
||||
void ProjectMPresetModel::SelectNone() {
|
||||
|
||||
projectm_visualization_->ClearSelected();
|
||||
for (int i = 0; i < all_presets_.count(); ++i) {
|
||||
all_presets_[i].selected_ = false;
|
||||
}
|
||||
|
||||
Q_EMIT dataChanged(index(0, 0), index(rowCount() - 1, 0));
|
||||
|
||||
}
|
||||
|
||||
void ProjectMPresetModel::MarkSelected(const QString &path, const bool selected) {
|
||||
|
||||
for (int i = 0; i < all_presets_.count(); ++i) {
|
||||
if (path == all_presets_[i].path_) {
|
||||
all_presets_[i].selected_ = selected;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef PROJECTMPRESETMODEL_H
|
||||
#define PROJECTMPRESETMODEL_H
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <QList>
|
||||
#include <QString>
|
||||
#include <QAbstractItemModel>
|
||||
|
||||
class ProjectMVisualization;
|
||||
|
||||
class ProjectMPresetModel : public QAbstractItemModel {
|
||||
Q_OBJECT
|
||||
|
||||
friend class ProjectMVisualization;
|
||||
|
||||
public:
|
||||
explicit ProjectMPresetModel(ProjectMVisualization *projectm_visualization, QObject *parent = nullptr);
|
||||
|
||||
enum Role {
|
||||
Role_Path = Qt::UserRole,
|
||||
};
|
||||
|
||||
void MarkSelected(const QString &path, bool selected);
|
||||
|
||||
// QAbstractItemModel
|
||||
QModelIndex index(const int row, const int column, const QModelIndex &parent = QModelIndex()) const override;
|
||||
QModelIndex parent(const QModelIndex &child) const override;
|
||||
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
||||
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
|
||||
QVariant data(const QModelIndex &index, const int role = Qt::DisplayRole) const override;
|
||||
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
||||
bool setData(const QModelIndex &index, const QVariant &value, const int role = Qt::EditRole) override;
|
||||
|
||||
public Q_SLOTS:
|
||||
void SetImmediatePreset(const QModelIndex &index);
|
||||
void SelectAll();
|
||||
void SelectNone();
|
||||
|
||||
private:
|
||||
struct Preset {
|
||||
explicit Preset(const QString &path, const QString &name, const bool selected)
|
||||
: path_(path),
|
||||
name_(name),
|
||||
selected_(selected) {}
|
||||
|
||||
QString path_;
|
||||
QString name_;
|
||||
bool selected_;
|
||||
};
|
||||
|
||||
ProjectMVisualization *projectm_visualization_;
|
||||
QList<Preset> all_presets_;
|
||||
};
|
||||
|
||||
#endif // PROJECTMPRESETMODEL_H
|
||||
@@ -1,469 +0,0 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <string>
|
||||
#include <memory>
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
# include <projectM-4/types.h>
|
||||
# include <projectM-4/core.h>
|
||||
# include <projectM-4/parameters.h>
|
||||
# include <projectM-4/memory.h>
|
||||
# include <projectM-4/audio.h>
|
||||
# include <projectM-4/render_opengl.h>
|
||||
# include <projectM-4/playlist_types.h>
|
||||
# include <projectM-4/playlist_core.h>
|
||||
# include <projectM-4/playlist_memory.h>
|
||||
# include <projectM-4/playlist_items.h>
|
||||
# include <projectM-4/playlist_playback.h>
|
||||
#else
|
||||
# include <libprojectM/projectM.hpp>
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
#include <QCoreApplication>
|
||||
#include <QGraphicsScene>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
#include <QDir>
|
||||
#include <QFileInfo>
|
||||
#include <QScopeGuard>
|
||||
#include <QPainter>
|
||||
#include <QRandomGenerator>
|
||||
#include <QMessageBox>
|
||||
#include <QTimerEvent>
|
||||
|
||||
#include "core/logging.h"
|
||||
#include "core/settings.h"
|
||||
#include "projectmvisualization.h"
|
||||
#include "projectmpresetmodel.h"
|
||||
#include "visualizationcontainer.h"
|
||||
|
||||
ProjectMVisualization::ProjectMVisualization(VisualizationContainer *container)
|
||||
: QGraphicsScene(container),
|
||||
container_(container),
|
||||
preset_model_(nullptr),
|
||||
#ifdef HAVE_PROJECTM4
|
||||
projectm_instance_(nullptr),
|
||||
projectm_playlist_instance_(nullptr),
|
||||
#endif
|
||||
mode_(Mode::Random),
|
||||
duration_(15),
|
||||
texture_size_(512) {
|
||||
|
||||
QObject::connect(this, &QGraphicsScene::sceneRectChanged, this, &ProjectMVisualization::SceneRectChanged);
|
||||
|
||||
#ifndef HAVE_PROJECTM4
|
||||
for (int i = 0; i < TOTAL_RATING_TYPES; ++i) {
|
||||
default_rating_list_.push_back(3);
|
||||
}
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
}
|
||||
|
||||
ProjectMVisualization::~ProjectMVisualization() {
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
if (projectm_playlist_instance_) {
|
||||
projectm_playlist_destroy(projectm_playlist_instance_);
|
||||
}
|
||||
if (projectm_instance_) {
|
||||
projectm_destroy(projectm_instance_);
|
||||
}
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::Init() {
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
if (projectm_instance_) {
|
||||
return;
|
||||
}
|
||||
#else
|
||||
if (projectm_) {
|
||||
return;
|
||||
}
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
// Find the projectM presets
|
||||
|
||||
QStringList data_paths = QStringList() << QStringLiteral("/usr/share")
|
||||
<< QStringLiteral("/usr/local/share")
|
||||
<< QLatin1String(CMAKE_INSTALL_PREFIX) + QLatin1String("/share");
|
||||
|
||||
const QStringList xdg_data_dirs = QString::fromUtf8(qgetenv("XDG_DATA_DIRS")).split(QLatin1Char(':'));
|
||||
for (const QString &xdg_data_dir : xdg_data_dirs) {
|
||||
if (!data_paths.contains(xdg_data_dir)) {
|
||||
data_paths.append(xdg_data_dir);
|
||||
}
|
||||
}
|
||||
|
||||
#if defined(Q_OS_WIN32)
|
||||
data_paths.prepend(QCoreApplication::applicationDirPath());
|
||||
#endif
|
||||
|
||||
const QStringList projectm_paths = QStringList() << QStringLiteral("projectM/presets")
|
||||
<< QStringLiteral("projectm-presets");
|
||||
|
||||
QStringList preset_paths;
|
||||
for (const QString &data_path : std::as_const(data_paths)) {
|
||||
for (const QString &projectm_path : projectm_paths) {
|
||||
const QString path = data_path + QLatin1Char('/') + projectm_path;
|
||||
if (!QFileInfo::exists(path) || QDir(path).entryList(QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot).isEmpty()) {
|
||||
preset_paths << path;
|
||||
continue;
|
||||
}
|
||||
preset_path_ = path;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Create projectM settings
|
||||
#ifdef HAVE_PROJECTM4
|
||||
Q_ASSERT(projectm_instance_ == nullptr);
|
||||
Q_ASSERT(projectm_playlist_instance_ == nullptr);
|
||||
projectm_instance_ = projectm_create();
|
||||
projectm_set_preset_duration(projectm_instance_, duration_);
|
||||
projectm_set_mesh_size(projectm_instance_, 32, 24);
|
||||
projectm_set_fps(projectm_instance_, 35);
|
||||
projectm_set_window_size(projectm_instance_, 512, 512);
|
||||
projectm_playlist_instance_ = projectm_playlist_create(projectm_instance_);
|
||||
#else
|
||||
projectM::Settings s;
|
||||
s.presetURL = preset_path_.toStdString();
|
||||
s.meshX = 32;
|
||||
s.meshY = 24;
|
||||
s.textureSize = texture_size_;
|
||||
s.fps = 35;
|
||||
s.windowWidth = 512;
|
||||
s.windowHeight = 512;
|
||||
s.smoothPresetDuration = 5;
|
||||
s.presetDuration = duration_;
|
||||
s.shuffleEnabled = true;
|
||||
s.softCutRatingsEnabled = false;
|
||||
s.easterEgg = 0;
|
||||
projectm_ = std::make_unique<projectM>(s);
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
Q_ASSERT(preset_model_ == nullptr);
|
||||
preset_model_ = new ProjectMPresetModel(this, this);
|
||||
|
||||
Load();
|
||||
|
||||
// Start at a random preset.
|
||||
#ifdef HAVE_PROJECTM4
|
||||
const uint count = projectm_playlist_size(projectm_playlist_instance_);
|
||||
if (count > 0) {
|
||||
const uint position = QRandomGenerator::global()->bounded(count);
|
||||
projectm_playlist_set_position(projectm_playlist_instance_, position, true);
|
||||
}
|
||||
#else
|
||||
const uint count = projectm_->getPlaylistSize();
|
||||
if (count > 0) {
|
||||
const uint selection = QRandomGenerator::global()->bounded(count);
|
||||
projectm_->selectPreset(selection, true);
|
||||
}
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
if (preset_path_.isEmpty()) {
|
||||
qWarning("ProjectM presets could not be found, search path was:\n %s", preset_paths.join(QLatin1String("\n ")).toLocal8Bit().constData());
|
||||
QMessageBox::warning(nullptr, tr("Missing projectM presets"), tr("Strawberry could not load any projectM visualizations. Check that you have installed Strawberry properly."));
|
||||
}
|
||||
|
||||
Resize(sceneRect().width(), sceneRect().height(), container_->devicePixelRatio());
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::drawBackground(QPainter *p, const QRectF &rect) {
|
||||
|
||||
Q_UNUSED(rect);
|
||||
|
||||
p->beginNativePainting();
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
projectm_opengl_render_frame(projectm_instance_);
|
||||
#else
|
||||
projectm_->renderFrame();
|
||||
#endif
|
||||
|
||||
p->endNativePainting();
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::SceneRectChanged(const QRectF &rect) {
|
||||
|
||||
Resize(rect.width(), rect.height(), container_->devicePixelRatio());
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::Resize(const qreal width, const qreal height, const qreal pixel_ratio) {
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
if (projectm_instance_) {
|
||||
projectm_set_window_size(projectm_instance_, static_cast<size_t>(width * pixel_ratio), static_cast<size_t>(height * pixel_ratio));
|
||||
}
|
||||
#else
|
||||
if (projectm_) {
|
||||
projectm_->projectM_resetGL(static_cast<int>(width * pixel_ratio), static_cast<int>(height * pixel_ratio));
|
||||
}
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::SetTextureSize(const int size) {
|
||||
|
||||
texture_size_ = size;
|
||||
|
||||
#ifndef HAVE_PROJECTM4
|
||||
if (projectm_) {
|
||||
projectm_->changeTextureSize(texture_size_);
|
||||
}
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::SetDuration(const int seconds) {
|
||||
|
||||
duration_ = seconds;
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
if (projectm_instance_) {
|
||||
projectm_set_preset_duration(projectm_instance_, duration_);
|
||||
}
|
||||
#else
|
||||
if (projectm_) {
|
||||
projectm_->changePresetDuration(duration_);
|
||||
}
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
Save();
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::ConsumeBuffer(GstBuffer *buffer, const int pipeline_id, const QString &format, const int channels) {
|
||||
|
||||
Q_UNUSED(pipeline_id);
|
||||
Q_UNUSED(format);
|
||||
|
||||
GstMapInfo map;
|
||||
gst_buffer_map(buffer, &map, GST_MAP_READ);
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
if (projectm_instance_) {
|
||||
const unsigned int samples_per_channel = (map.size / sizeof(int16_t)) / channels;
|
||||
const int16_t *data = reinterpret_cast<int16_t*>(map.data);
|
||||
projectm_pcm_add_int16(projectm_instance_, data, samples_per_channel, static_cast<projectm_channels>(channels));
|
||||
}
|
||||
#else
|
||||
if (projectm_) {
|
||||
const int16_t samples_per_channel = static_cast<int16_t>((map.size / sizeof(int16_t)) / channels);
|
||||
const int16_t *data = reinterpret_cast<int16_t*>(map.data);
|
||||
projectm_->pcm()->addPCM16Data(data, samples_per_channel);
|
||||
}
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
gst_buffer_unmap(buffer, &map);
|
||||
gst_buffer_unref(buffer);
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::SetSelected(const QStringList &paths, const bool selected) {
|
||||
|
||||
for (const QString &path : paths) {
|
||||
const int index = IndexOfPreset(path);
|
||||
if (selected && index == -1) {
|
||||
#ifdef HAVE_PROJECTM4
|
||||
projectm_playlist_add_preset(projectm_playlist_instance_, path.toUtf8().constData(), true);
|
||||
#else
|
||||
projectm_->addPresetURL(path.toStdString(), std::string(), default_rating_list_);
|
||||
#endif
|
||||
}
|
||||
else if (!selected && index != -1) {
|
||||
#ifdef HAVE_PROJECTM4
|
||||
projectm_playlist_remove_preset(projectm_playlist_instance_, index);
|
||||
#else
|
||||
projectm_->removePreset(index);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
Save();
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::ClearSelected() {
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
projectm_playlist_clear(projectm_playlist_instance_);
|
||||
#else
|
||||
projectm_->clearPlaylist();
|
||||
#endif
|
||||
|
||||
Save();
|
||||
|
||||
}
|
||||
|
||||
int ProjectMVisualization::IndexOfPreset(const QString &preset_path) const {
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
const uint count = projectm_playlist_size(projectm_playlist_instance_);
|
||||
for (uint i = 0; i < count; ++i) {
|
||||
char *projectm_preset_path = projectm_playlist_item(projectm_playlist_instance_, i);
|
||||
if (projectm_preset_path) {
|
||||
const QScopeGuard projectm_preset_path_deleter = qScopeGuard([projectm_preset_path](){ projectm_playlist_free_string(projectm_preset_path); });
|
||||
if (QLatin1String(projectm_preset_path) == preset_path) {
|
||||
return static_cast<int>(i);
|
||||
}
|
||||
}
|
||||
}
|
||||
#else
|
||||
const uint count = projectm_->getPlaylistSize();
|
||||
for (uint i = 0; i < count; ++i) {
|
||||
if (QString::fromStdString(projectm_->getPresetURL(i)) == preset_path) return static_cast<int>(i);
|
||||
}
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
return -1;
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::Load() {
|
||||
|
||||
Settings s;
|
||||
s.beginGroup(QLatin1String(VisualizationContainer::kSettingsGroup));
|
||||
mode_ = Mode(s.value("mode", 0).toInt());
|
||||
duration_ = s.value("duration", duration_).toInt();
|
||||
s.endGroup();
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
projectm_set_preset_duration(projectm_instance_, duration_);
|
||||
projectm_playlist_clear(projectm_playlist_instance_);
|
||||
#else
|
||||
projectm_->changePresetDuration(duration_);
|
||||
projectm_->clearPlaylist();
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
switch (mode_) {
|
||||
case Mode::Random:{
|
||||
for (int i = 0; i < preset_model_->all_presets_.count(); ++i) {
|
||||
#ifdef HAVE_PROJECTM4
|
||||
projectm_playlist_add_preset(projectm_playlist_instance_, preset_model_->all_presets_[i].path_.toUtf8().constData(), false);
|
||||
#else
|
||||
projectm_->addPresetURL(preset_model_->all_presets_[i].path_.toStdString(), std::string(), default_rating_list_);
|
||||
#endif
|
||||
preset_model_->all_presets_[i].selected_ = true;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case Mode::FromList:{
|
||||
s.beginGroup(QLatin1String(VisualizationContainer::kSettingsGroup));
|
||||
const QStringList paths = s.value("preset_paths").toStringList();
|
||||
s.endGroup();
|
||||
for (const QString &path : paths) {
|
||||
#ifdef HAVE_PROJECTM4
|
||||
projectm_playlist_add_preset(projectm_playlist_instance_, path.toUtf8().constData(), true);
|
||||
#else
|
||||
projectm_->addPresetURL(path.toStdString(), std::string(), default_rating_list_);
|
||||
#endif
|
||||
preset_model_->MarkSelected(path, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::Save() {
|
||||
|
||||
QStringList paths;
|
||||
|
||||
for (const ProjectMPresetModel::Preset &preset : std::as_const(preset_model_->all_presets_)) {
|
||||
if (preset.selected_) paths << preset.path_;
|
||||
}
|
||||
|
||||
Settings s;
|
||||
s.beginGroup(VisualizationContainer::kSettingsGroup);
|
||||
s.setValue("preset_paths", paths);
|
||||
s.setValue("mode", static_cast<int>(mode_));
|
||||
s.setValue("duration", duration_);
|
||||
s.endGroup();
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::SetMode(const Mode mode) {
|
||||
|
||||
mode_ = mode;
|
||||
Save();
|
||||
|
||||
}
|
||||
|
||||
QString ProjectMVisualization::preset_path() const {
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
return preset_path_;
|
||||
#else
|
||||
if (projectm_) {
|
||||
return QString::fromStdString(projectm_->settings().presetURL);
|
||||
}
|
||||
return QString();
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::SetImmediatePreset(const int index) {
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
if (projectm_playlist_instance_) {
|
||||
projectm_playlist_set_position(projectm_playlist_instance_, index, true);
|
||||
}
|
||||
#else
|
||||
if (projectm_) {
|
||||
projectm_->selectPreset(index, true);
|
||||
}
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::SetImmediatePreset(const QString &path) {
|
||||
|
||||
const int index = IndexOfPreset(path);
|
||||
if (index != -1) {
|
||||
SetImmediatePreset(index);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void ProjectMVisualization::Lock(const bool lock) {
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
if (projectm_instance_) {
|
||||
projectm_set_preset_locked(projectm_instance_, lock);
|
||||
}
|
||||
#else
|
||||
if (projectm_) {
|
||||
projectm_->setPresetLock(lock);
|
||||
}
|
||||
#endif // HAVE_PROJECTM4
|
||||
|
||||
if (!lock) Load();
|
||||
|
||||
}
|
||||
@@ -1,114 +0,0 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef PROJECTMVISUALIZATION_H
|
||||
#define PROJECTMVISUALIZATION_H
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
#ifdef HAVE_PROJECTM4
|
||||
# include <projectM-4/types.h>
|
||||
# include <projectM-4/playlist_types.h>
|
||||
#else
|
||||
# include <libprojectM/projectM.hpp>
|
||||
#endif
|
||||
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
#include <QGraphicsScene>
|
||||
|
||||
#include "engine/gstbufferconsumer.h"
|
||||
|
||||
class projectM;
|
||||
class QPainter;
|
||||
class ProjectMPresetModel;
|
||||
class VisualizationContainer;
|
||||
|
||||
class ProjectMVisualization : public QGraphicsScene, public GstBufferConsumer {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ProjectMVisualization(VisualizationContainer *container);
|
||||
~ProjectMVisualization();
|
||||
|
||||
enum class Mode {
|
||||
Random = 0,
|
||||
FromList = 1,
|
||||
};
|
||||
|
||||
QString preset_path() const;
|
||||
ProjectMPresetModel *preset_model() const { return preset_model_; }
|
||||
|
||||
Mode mode() const { return mode_; }
|
||||
int duration() const { return duration_; }
|
||||
|
||||
void Init();
|
||||
|
||||
// BufferConsumer
|
||||
void ConsumeBuffer(GstBuffer *buffer, const int pipeline_id, const QString &format, const int channels) override;
|
||||
|
||||
public Q_SLOTS:
|
||||
void SetTextureSize(const int size);
|
||||
void SetDuration(const int seconds);
|
||||
|
||||
void SetSelected(const QStringList &paths, const bool selected);
|
||||
void ClearSelected();
|
||||
void SetImmediatePreset(const int index);
|
||||
void SetImmediatePreset(const QString &path);
|
||||
void SetMode(const Mode mode);
|
||||
|
||||
void Lock(const bool lock);
|
||||
|
||||
protected:
|
||||
// QGraphicsScene
|
||||
void drawBackground(QPainter *painter, const QRectF &rect) override;
|
||||
|
||||
private Q_SLOTS:
|
||||
void SceneRectChanged(const QRectF &rect);
|
||||
|
||||
private:
|
||||
void Load();
|
||||
void Save();
|
||||
|
||||
int IndexOfPreset(const QString &preset_path) const;
|
||||
|
||||
void Resize(const qreal width, const qreal height, const qreal pixel_ratio);
|
||||
|
||||
private:
|
||||
VisualizationContainer *container_;
|
||||
ProjectMPresetModel *preset_model_;
|
||||
#ifdef HAVE_PROJECTM4
|
||||
projectm_handle projectm_instance_;
|
||||
projectm_playlist_handle projectm_playlist_instance_;
|
||||
#else
|
||||
std::unique_ptr<projectM> projectm_;
|
||||
#endif
|
||||
Mode mode_;
|
||||
int duration_;
|
||||
std::vector<int> default_rating_list_;
|
||||
int texture_size_;
|
||||
QString preset_path_;
|
||||
};
|
||||
|
||||
#endif // PROJECTMVISUALIZATION_H
|
||||
@@ -1,328 +0,0 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
#include <QOpenGLWidget>
|
||||
|
||||
#include <QGraphicsProxyWidget>
|
||||
#include <QHBoxLayout>
|
||||
#include <QLabel>
|
||||
#include <QMenu>
|
||||
#include <QMessageBox>
|
||||
#include <QShortcut>
|
||||
#include <QActionGroup>
|
||||
|
||||
#include "core/logging.h"
|
||||
#include "core/iconloader.h"
|
||||
#include "core/settings.h"
|
||||
#include "engine/gstengine.h"
|
||||
#include "visualizationcontainer.h"
|
||||
#include "visualizationopenglwidget.h"
|
||||
#include "visualizationoverlay.h"
|
||||
#include "visualizationselector.h"
|
||||
#include "projectmvisualization.h"
|
||||
|
||||
const char *VisualizationContainer::kSettingsGroup = "Visualizations";
|
||||
|
||||
namespace {
|
||||
constexpr int kLowFramerate = 15;
|
||||
constexpr int kMediumFramerate = 25;
|
||||
constexpr int kHighFramerate = 35;
|
||||
constexpr int kSuperHighFramerate = 60;
|
||||
|
||||
constexpr int kDefaultWidth = 828;
|
||||
constexpr int kDefaultHeight = 512;
|
||||
constexpr int kDefaultFps = kHighFramerate;
|
||||
constexpr int kDefaultTextureSize = 512;
|
||||
} // namespace
|
||||
|
||||
VisualizationContainer::VisualizationContainer(QWidget *parent)
|
||||
: QGraphicsView(parent),
|
||||
projectm_visualization_(new ProjectMVisualization(this)),
|
||||
overlay_(new VisualizationOverlay),
|
||||
selector_(new VisualizationSelector(this)),
|
||||
overlay_proxy_(nullptr),
|
||||
engine_(nullptr),
|
||||
menu_(new QMenu(this)),
|
||||
fps_(kDefaultFps),
|
||||
size_(kDefaultTextureSize) {
|
||||
|
||||
setWindowTitle(tr("Visualizations"));
|
||||
setWindowIcon(IconLoader::Load(QStringLiteral("strawberry")));
|
||||
setMinimumSize(64, 64);
|
||||
|
||||
{
|
||||
Settings s;
|
||||
s.beginGroup(QLatin1String(kSettingsGroup));
|
||||
if (!restoreGeometry(s.value("geometry").toByteArray())) {
|
||||
resize(kDefaultWidth, kDefaultHeight);
|
||||
}
|
||||
fps_ = s.value("fps", kDefaultFps).toInt();
|
||||
size_ = s.value("size", kDefaultTextureSize).toInt();
|
||||
s.endGroup();
|
||||
}
|
||||
|
||||
QShortcut *close = new QShortcut(QKeySequence::Close, this);
|
||||
QObject::connect(close, &QShortcut::activated, this, &VisualizationContainer::close);
|
||||
|
||||
// Set up the graphics view
|
||||
setScene(projectm_visualization_);
|
||||
setViewport(new VisualizationOpenGLWidget(projectm_visualization_));
|
||||
setViewportUpdateMode(QGraphicsView::FullViewportUpdate);
|
||||
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||
setFrameStyle(QFrame::NoFrame);
|
||||
|
||||
// Add the overlay
|
||||
overlay_proxy_ = scene()->addWidget(overlay_);
|
||||
QObject::connect(overlay_, &VisualizationOverlay::OpacityChanged, this, &VisualizationContainer::ChangeOverlayOpacity);
|
||||
QObject::connect(overlay_, &VisualizationOverlay::ShowPopupMenu, this, &VisualizationContainer::ShowPopupMenu);
|
||||
ChangeOverlayOpacity(0.0);
|
||||
|
||||
projectm_visualization_->SetTextureSize(size_);
|
||||
SizeChanged();
|
||||
|
||||
// Selector
|
||||
selector_->SetVisualization(projectm_visualization_);
|
||||
|
||||
// Settings menu
|
||||
menu_->addAction(IconLoader::Load(QStringLiteral("view-fullscreen")), tr("Toggle fullscreen"), this, &VisualizationContainer::ToggleFullscreen);
|
||||
|
||||
QMenu *fps_menu = menu_->addMenu(tr("Framerate"));
|
||||
QActionGroup *fps_group = new QActionGroup(this);
|
||||
AddFramerateMenuItem(tr("Low (%1 fps)").arg(kLowFramerate), kLowFramerate, fps_, fps_group);
|
||||
AddFramerateMenuItem(tr("Medium (%1 fps)").arg(kMediumFramerate), kMediumFramerate, fps_, fps_group);
|
||||
AddFramerateMenuItem(tr("High (%1 fps)").arg(kHighFramerate), kHighFramerate, fps_, fps_group);
|
||||
AddFramerateMenuItem(tr("Super high (%1 fps)").arg(kSuperHighFramerate), kSuperHighFramerate, fps_, fps_group);
|
||||
fps_menu->addActions(fps_group->actions());
|
||||
|
||||
QMenu *quality_menu = menu_->addMenu(tr("Quality", "Visualization quality"));
|
||||
QActionGroup *quality_group = new QActionGroup(this);
|
||||
AddQualityMenuItem(tr("Low (256x256)"), 256, size_, quality_group);
|
||||
AddQualityMenuItem(tr("Medium (512x512)"), 512, size_, quality_group);
|
||||
AddQualityMenuItem(tr("High (1024x1024)"), 1024, size_, quality_group);
|
||||
AddQualityMenuItem(tr("Super high (2048x2048)"), 2048, size_, quality_group);
|
||||
quality_menu->addActions(quality_group->actions());
|
||||
|
||||
menu_->addAction(tr("Select visualizations..."), selector_, &VisualizationContainer::show);
|
||||
|
||||
menu_->addSeparator();
|
||||
menu_->addAction(IconLoader::Load(QStringLiteral("application-exit")), tr("Close visualization"), this, &VisualizationContainer::hide);
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::AddFramerateMenuItem(const QString &name, const int value, const int def, QActionGroup *group) {
|
||||
|
||||
QAction *action = group->addAction(name);
|
||||
action->setCheckable(true);
|
||||
action->setChecked(value == def);
|
||||
QObject::connect(action, &QAction::triggered, this, [this, value]() { SetFps(value); });
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::AddQualityMenuItem(const QString &name, const int value, const int def, QActionGroup *group) {
|
||||
|
||||
QAction *action = group->addAction(name);
|
||||
action->setCheckable(true);
|
||||
action->setChecked(value == def);
|
||||
QObject::connect(action, &QAction::triggered, this, [this, value]() { SetQuality(value); });
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::SetEngine(GstEngine *engine) {
|
||||
|
||||
engine_ = engine;
|
||||
|
||||
if (isVisible()) engine_->AddBufferConsumer(projectm_visualization_);
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::showEvent(QShowEvent *e) {
|
||||
|
||||
qLog(Debug) << "Showing visualization";
|
||||
|
||||
QGraphicsView::showEvent(e);
|
||||
|
||||
update_timer_.start(1000 / fps_, this);
|
||||
|
||||
if (engine_) engine_->AddBufferConsumer(projectm_visualization_);
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::hideEvent(QHideEvent *e) {
|
||||
|
||||
qLog(Debug) << "Hiding visualization";
|
||||
|
||||
QGraphicsView::hideEvent(e);
|
||||
|
||||
update_timer_.stop();
|
||||
|
||||
if (engine_) engine_->RemoveBufferConsumer(projectm_visualization_);
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::closeEvent(QCloseEvent *e) {
|
||||
|
||||
Q_UNUSED(e);
|
||||
|
||||
// Don't close the window. Just hide it.
|
||||
e->ignore();
|
||||
hide();
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::resizeEvent(QResizeEvent *e) {
|
||||
QGraphicsView::resizeEvent(e);
|
||||
SizeChanged();
|
||||
}
|
||||
|
||||
void VisualizationContainer::SizeChanged() {
|
||||
|
||||
// Save the geometry
|
||||
Settings s;
|
||||
s.beginGroup(kSettingsGroup);
|
||||
s.setValue("geometry", saveGeometry());
|
||||
|
||||
// Resize the scene
|
||||
if (scene()) scene()->setSceneRect(QRect(QPoint(0, 0), size()));
|
||||
|
||||
// Resize the overlay
|
||||
if (overlay_) overlay_->resize(size());
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::timerEvent(QTimerEvent *e) {
|
||||
|
||||
QGraphicsView::timerEvent(e);
|
||||
if (e->timerId() == update_timer_.timerId()) scene()->update();
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::SetActions(QAction *previous, QAction *play_pause, QAction *stop, QAction *next) {
|
||||
overlay_->SetActions(previous, play_pause, stop, next);
|
||||
}
|
||||
|
||||
void VisualizationContainer::SongMetadataChanged(const Song &metadata) {
|
||||
overlay_->SetSongTitle(QStringLiteral("%1 - %2").arg(metadata.artist(), metadata.title()));
|
||||
}
|
||||
|
||||
void VisualizationContainer::Stopped() {
|
||||
overlay_->SetSongTitle(tr("strawberry"));
|
||||
}
|
||||
|
||||
void VisualizationContainer::ChangeOverlayOpacity(const qreal value) {
|
||||
|
||||
overlay_proxy_->setOpacity(value);
|
||||
|
||||
// Hide the cursor if the overlay is hidden
|
||||
if (value < 0.5) {
|
||||
viewport()->setCursor(Qt::BlankCursor);
|
||||
}
|
||||
else {
|
||||
viewport()->unsetCursor();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::enterEvent(QEnterEvent *e) {
|
||||
|
||||
QGraphicsView::enterEvent(e);
|
||||
|
||||
overlay_->SetVisible(true);
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::leaveEvent(QEvent *e) {
|
||||
QGraphicsView::leaveEvent(e);
|
||||
overlay_->SetVisible(false);
|
||||
}
|
||||
|
||||
void VisualizationContainer::mouseMoveEvent(QMouseEvent *e) {
|
||||
QGraphicsView::mouseMoveEvent(e);
|
||||
overlay_->SetVisible(true);
|
||||
}
|
||||
|
||||
void VisualizationContainer::mouseDoubleClickEvent(QMouseEvent *e) {
|
||||
QGraphicsView::mouseDoubleClickEvent(e);
|
||||
ToggleFullscreen();
|
||||
}
|
||||
|
||||
void VisualizationContainer::contextMenuEvent(QContextMenuEvent *event) {
|
||||
QGraphicsView::contextMenuEvent(event);
|
||||
ShowPopupMenu(event->pos());
|
||||
}
|
||||
|
||||
void VisualizationContainer::keyReleaseEvent(QKeyEvent *event) {
|
||||
|
||||
if (event->matches(QKeySequence::Close) || event->key() == Qt::Key_Escape) {
|
||||
if (isFullScreen()) {
|
||||
ToggleFullscreen();
|
||||
}
|
||||
else {
|
||||
hide();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
QGraphicsView::keyReleaseEvent(event);
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::ToggleFullscreen() {
|
||||
|
||||
setWindowState(windowState() ^ Qt::WindowFullScreen);
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::SetFps(const int fps) {
|
||||
|
||||
fps_ = fps;
|
||||
|
||||
// Save settings
|
||||
Settings s;
|
||||
s.beginGroup(kSettingsGroup);
|
||||
s.setValue("fps", fps_);
|
||||
|
||||
update_timer_.stop();
|
||||
update_timer_.start(1000 / fps_, this);
|
||||
|
||||
}
|
||||
|
||||
void VisualizationContainer::ShowPopupMenu(const QPoint &pos) {
|
||||
menu_->popup(mapToGlobal(pos));
|
||||
}
|
||||
|
||||
void VisualizationContainer::SetQuality(const int size) {
|
||||
|
||||
size_ = size;
|
||||
|
||||
// Save settings
|
||||
Settings s;
|
||||
s.beginGroup(kSettingsGroup);
|
||||
s.setValue("size", size_);
|
||||
|
||||
projectm_visualization_->SetTextureSize(size_);
|
||||
|
||||
}
|
||||
@@ -1,103 +0,0 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef VISUALIZATIONCONTAINER_H
|
||||
#define VISUALIZATIONCONTAINER_H
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <QBasicTimer>
|
||||
#include <QGraphicsView>
|
||||
|
||||
#include "core/song.h"
|
||||
|
||||
class GstEngine;
|
||||
class ProjectMVisualization;
|
||||
class VisualizationOverlay;
|
||||
class VisualizationSelector;
|
||||
|
||||
class QMenu;
|
||||
class QActionGroup;
|
||||
class QEvent;
|
||||
class QShowEvent;
|
||||
class QHideEvent;
|
||||
class QCloseEvent;
|
||||
class QResizeEvent;
|
||||
class QTimerEvent;
|
||||
class QMouseEvent;
|
||||
class QContextMenuEvent;
|
||||
class QKeyEvent;
|
||||
class QEnterEvent;
|
||||
|
||||
class VisualizationContainer : public QGraphicsView {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit VisualizationContainer(QWidget *parent = nullptr);
|
||||
|
||||
static const char *kSettingsGroup;
|
||||
|
||||
void SetEngine(GstEngine *engine);
|
||||
void SetActions(QAction *previous, QAction *play_pause, QAction *stop, QAction *next);
|
||||
|
||||
public Q_SLOTS:
|
||||
void SongMetadataChanged(const Song &metadata);
|
||||
void Stopped();
|
||||
|
||||
protected:
|
||||
// QWidget
|
||||
void showEvent(QShowEvent *e) override;
|
||||
void hideEvent(QHideEvent *e) override;
|
||||
void closeEvent(QCloseEvent *e) override;
|
||||
void resizeEvent(QResizeEvent *e) override;
|
||||
void timerEvent(QTimerEvent *e) override;
|
||||
void mouseMoveEvent(QMouseEvent *e) override;
|
||||
void enterEvent(QEnterEvent *e) override;
|
||||
void leaveEvent(QEvent *e) override;
|
||||
void mouseDoubleClickEvent(QMouseEvent *e) override;
|
||||
void contextMenuEvent(QContextMenuEvent *event) override;
|
||||
void keyReleaseEvent(QKeyEvent *event) override;
|
||||
|
||||
private:
|
||||
void SizeChanged();
|
||||
void AddFramerateMenuItem(const QString &name, int value, int def, QActionGroup *group);
|
||||
void AddQualityMenuItem(const QString &name, int value, int def, QActionGroup *group);
|
||||
|
||||
private Q_SLOTS:
|
||||
void ChangeOverlayOpacity(qreal value);
|
||||
void ShowPopupMenu(const QPoint &pos);
|
||||
void ToggleFullscreen();
|
||||
void SetFps(const int fps);
|
||||
void SetQuality(const int size);
|
||||
|
||||
private:
|
||||
ProjectMVisualization *projectm_visualization_;
|
||||
VisualizationOverlay *overlay_;
|
||||
VisualizationSelector *selector_;
|
||||
QGraphicsProxyWidget *overlay_proxy_;
|
||||
GstEngine *engine_;
|
||||
QMenu *menu_;
|
||||
QBasicTimer update_timer_;
|
||||
int fps_;
|
||||
int size_;
|
||||
};
|
||||
|
||||
#endif // VISUALIZATIONCONTAINER_H
|
||||
@@ -1,39 +0,0 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
#include "visualizationopenglwidget.h"
|
||||
#include "projectmvisualization.h"
|
||||
|
||||
VisualizationOpenGLWidget::VisualizationOpenGLWidget(ProjectMVisualization *projectm_visualization, QWidget *parent, Qt::WindowFlags f)
|
||||
: QOpenGLWidget(parent, f),
|
||||
projectm_visualization_(projectm_visualization) {}
|
||||
|
||||
void VisualizationOpenGLWidget::initializeGL() {
|
||||
|
||||
projectm_visualization_->Init();
|
||||
|
||||
QOpenGLWidget::initializeGL();
|
||||
|
||||
glEnable(GL_BLEND);
|
||||
|
||||
}
|
||||
@@ -1,116 +0,0 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <QString>
|
||||
#include <QBasicTimer>
|
||||
#include <QTimeLine>
|
||||
#include <QGraphicsProxyWidget>
|
||||
#include <QTimerEvent>
|
||||
#include <QMouseEvent>
|
||||
|
||||
#include "core/iconloader.h"
|
||||
#include "visualizationoverlay.h"
|
||||
#include "ui_visualizationoverlay.h"
|
||||
|
||||
namespace {
|
||||
constexpr int kFadeDuration = 500;
|
||||
constexpr int kFadeTimeout = 5000;
|
||||
}
|
||||
|
||||
VisualizationOverlay::VisualizationOverlay(QWidget *parent)
|
||||
: QWidget(parent),
|
||||
ui_(new Ui_VisualizationOverlay),
|
||||
fade_timeline_(new QTimeLine(kFadeDuration, this)),
|
||||
visible_(false) {
|
||||
|
||||
ui_->setupUi(this);
|
||||
|
||||
setAttribute(Qt::WA_TranslucentBackground);
|
||||
setMouseTracking(true);
|
||||
|
||||
ui_->settings->setIcon(IconLoader::Load(QStringLiteral("configure")));
|
||||
|
||||
QObject::connect(ui_->settings, &QToolButton::clicked, this, &VisualizationOverlay::ShowSettingsMenu);
|
||||
QObject::connect(fade_timeline_, &QTimeLine::valueChanged, this, &VisualizationOverlay::OpacityChanged);
|
||||
|
||||
}
|
||||
|
||||
VisualizationOverlay::~VisualizationOverlay() { delete ui_; }
|
||||
|
||||
QGraphicsProxyWidget *VisualizationOverlay::title(QGraphicsProxyWidget *proxy) const {
|
||||
return proxy->createProxyForChildWidget(ui_->song_title);
|
||||
}
|
||||
|
||||
void VisualizationOverlay::SetActions(QAction *previous, QAction *play_pause, QAction *stop, QAction *next) {
|
||||
|
||||
ui_->previous->setDefaultAction(previous);
|
||||
ui_->play_pause->setDefaultAction(play_pause);
|
||||
ui_->stop->setDefaultAction(stop);
|
||||
ui_->next->setDefaultAction(next);
|
||||
|
||||
}
|
||||
|
||||
void VisualizationOverlay::ShowSettingsMenu() {
|
||||
|
||||
Q_EMIT ShowPopupMenu(ui_->settings->mapToGlobal(ui_->settings->rect().bottomLeft()));
|
||||
|
||||
}
|
||||
|
||||
void VisualizationOverlay::timerEvent(QTimerEvent *e) {
|
||||
|
||||
QWidget::timerEvent(e);
|
||||
|
||||
if (e->timerId() == fade_out_timeout_.timerId()) {
|
||||
SetVisible(false);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void VisualizationOverlay::SetVisible(const bool visible) {
|
||||
|
||||
// If we're showing the overlay, then fade out again in a little while
|
||||
fade_out_timeout_.stop();
|
||||
if (visible) fade_out_timeout_.start(kFadeTimeout, this);
|
||||
|
||||
// Don't change to the state we're in already
|
||||
if (visible == visible_) return;
|
||||
visible_ = visible;
|
||||
|
||||
// If there's already another fader running then start from the same time that one was already at.
|
||||
int start_time = visible ? 0 : fade_timeline_->duration();
|
||||
if (fade_timeline_->state() == QTimeLine::Running)
|
||||
start_time = fade_timeline_->currentTime();
|
||||
|
||||
fade_timeline_->stop();
|
||||
fade_timeline_->setDirection(visible ? QTimeLine::Forward : QTimeLine::Backward);
|
||||
fade_timeline_->setCurrentTime(start_time);
|
||||
fade_timeline_->resume();
|
||||
|
||||
}
|
||||
|
||||
void VisualizationOverlay::SetSongTitle(const QString &title) {
|
||||
|
||||
ui_->song_title->setText(title);
|
||||
SetVisible(true);
|
||||
|
||||
}
|
||||
@@ -1,71 +0,0 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef VISUALIZATIONOVERLAY_H
|
||||
#define VISUALIZATIONOVERLAY_H
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <QWidget>
|
||||
#include <QString>
|
||||
#include <QBasicTimer>
|
||||
|
||||
class Ui_VisualizationOverlay;
|
||||
|
||||
class QGraphicsProxyWidget;
|
||||
class QTimeLine;
|
||||
class QAction;
|
||||
|
||||
class VisualizationOverlay : public QWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit VisualizationOverlay(QWidget *parent = nullptr);
|
||||
~VisualizationOverlay();
|
||||
|
||||
QGraphicsProxyWidget *title(QGraphicsProxyWidget *proxy) const;
|
||||
|
||||
void SetActions(QAction *previous, QAction *play_pause, QAction *stop, QAction *next);
|
||||
void SetSongTitle(const QString &title);
|
||||
|
||||
public Q_SLOTS:
|
||||
void SetVisible(const bool visible);
|
||||
|
||||
Q_SIGNALS:
|
||||
void OpacityChanged(const qreal value);
|
||||
void ShowPopupMenu(const QPoint &pos);
|
||||
|
||||
protected:
|
||||
// QWidget
|
||||
void timerEvent(QTimerEvent *e);
|
||||
|
||||
private Q_SLOTS:
|
||||
void ShowSettingsMenu();
|
||||
|
||||
private:
|
||||
Ui_VisualizationOverlay *ui_;
|
||||
|
||||
QTimeLine *fade_timeline_;
|
||||
QBasicTimer fade_out_timeout_;
|
||||
bool visible_;
|
||||
};
|
||||
|
||||
#endif // VISUALIZATIONOVERLAY_H
|
||||
@@ -1,234 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>VisualizationOverlay</class>
|
||||
<widget class="QWidget" name="VisualizationOverlay">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>523</width>
|
||||
<height>302</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Form</string>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">VisualizationOverlay {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#frame {
|
||||
background-color: rgba(96, 59, 25, 70%);
|
||||
border-top-left-radius: 10px;
|
||||
border-top-right-radius: 10px;
|
||||
border-color: rgba(145, 89, 38, 100%);
|
||||
border-width: 4px 4px 0px 4px;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
#song_title {
|
||||
font-weight: bold;
|
||||
font-size: 20px;
|
||||
color: #feae65;
|
||||
}
|
||||
|
||||
QToolButton {
|
||||
background: transparent;
|
||||
border: none;
|
||||
}</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<property name="margin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<spacer name="verticalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>210</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QFrame" name="frame">
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Raised</enum>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<widget class="QLabel" name="song_title">
|
||||
<property name="text">
|
||||
<string>Strawberry</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_5">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Preferred</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QWidget" name="widget" native="true">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<property name="margin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QToolButton" name="previous">
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="play_pause">
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="stop">
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="next">
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_3">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>13</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="settings">
|
||||
<property name="toolTip">
|
||||
<string>Visualizations Settings</string>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_4">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Preferred</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
||||
@@ -1,88 +0,0 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <QPushButton>
|
||||
|
||||
#include "visualizationselector.h"
|
||||
#include "projectmpresetmodel.h"
|
||||
#include "projectmvisualization.h"
|
||||
#include "ui_visualizationselector.h"
|
||||
|
||||
VisualizationSelector::VisualizationSelector(QWidget *parent)
|
||||
: QDialog(parent),
|
||||
ui_(new Ui_VisualizationSelector),
|
||||
projectm_visualization_(nullptr),
|
||||
select_all_(nullptr),
|
||||
select_none_(nullptr) {
|
||||
|
||||
ui_->setupUi(this);
|
||||
|
||||
select_all_ = ui_->buttonBox->addButton(tr("Select All"), QDialogButtonBox::ActionRole);
|
||||
select_none_ = ui_->buttonBox->addButton(tr("Select None"), QDialogButtonBox::ActionRole);
|
||||
QObject::connect(select_all_, &QPushButton::clicked, this, &VisualizationSelector::SelectAll);
|
||||
QObject::connect(select_none_, &QPushButton::clicked, this, &VisualizationSelector::SelectNone);
|
||||
select_all_->setEnabled(false);
|
||||
select_none_->setEnabled(false);
|
||||
|
||||
QObject::connect(ui_->mode, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &VisualizationSelector::ModeChanged);
|
||||
|
||||
}
|
||||
|
||||
VisualizationSelector::~VisualizationSelector() { delete ui_; }
|
||||
|
||||
void VisualizationSelector::showEvent(QShowEvent *e) {
|
||||
|
||||
Q_UNUSED(e);
|
||||
|
||||
if (!ui_->list->model()) {
|
||||
ui_->delay->setValue(projectm_visualization_->duration());
|
||||
ui_->list->setModel(projectm_visualization_->preset_model());
|
||||
QObject::connect(ui_->list->selectionModel(), &QItemSelectionModel::currentChanged, projectm_visualization_->preset_model(), &ProjectMPresetModel::SetImmediatePreset);
|
||||
QObject::connect(ui_->delay, QOverload<int>::of(&QSpinBox::valueChanged), projectm_visualization_, &ProjectMVisualization::SetDuration);
|
||||
|
||||
ui_->mode->setCurrentIndex(static_cast<int>(projectm_visualization_->mode()));
|
||||
}
|
||||
|
||||
projectm_visualization_->Lock(true);
|
||||
|
||||
}
|
||||
|
||||
void VisualizationSelector::hideEvent(QHideEvent *e) {
|
||||
Q_UNUSED(e);
|
||||
projectm_visualization_->Lock(false);
|
||||
}
|
||||
|
||||
void VisualizationSelector::ModeChanged(const int mode) {
|
||||
|
||||
const bool enabled = mode == 1;
|
||||
ui_->list->setEnabled(enabled);
|
||||
select_all_->setEnabled(enabled);
|
||||
select_none_->setEnabled(enabled);
|
||||
|
||||
projectm_visualization_->SetMode(static_cast<ProjectMVisualization::Mode>(mode));
|
||||
|
||||
}
|
||||
|
||||
void VisualizationSelector::SelectAll() { projectm_visualization_->preset_model()->SelectAll(); }
|
||||
|
||||
void VisualizationSelector::SelectNone() { projectm_visualization_->preset_model()->SelectNone(); }
|
||||
@@ -1,61 +0,0 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* This file was part of Clementine.
|
||||
* Copyright 2010, David Sansome <me@davidsansome.com>
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Strawberry is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef VISUALIZATIONSELECTOR_H
|
||||
#define VISUALIZATIONSELECTOR_H
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
class QPushButton;
|
||||
class QShowEvent;
|
||||
class QHideEvent;
|
||||
|
||||
class ProjectMVisualization;
|
||||
class Ui_VisualizationSelector;
|
||||
|
||||
class VisualizationSelector : public QDialog {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit VisualizationSelector(QWidget *parent = nullptr);
|
||||
~VisualizationSelector();
|
||||
|
||||
void SetVisualization(ProjectMVisualization *projectm_visualization) { projectm_visualization_ = projectm_visualization; }
|
||||
|
||||
protected:
|
||||
void showEvent(QShowEvent *e) override;
|
||||
void hideEvent(QHideEvent *e) override;
|
||||
|
||||
private Q_SLOTS:
|
||||
void ModeChanged(const int mode);
|
||||
void SelectAll();
|
||||
void SelectNone();
|
||||
|
||||
private:
|
||||
Ui_VisualizationSelector *ui_;
|
||||
ProjectMVisualization *projectm_visualization_;
|
||||
QPushButton *select_all_;
|
||||
QPushButton *select_none_;
|
||||
};
|
||||
|
||||
#endif // VISUALIZATIONSELECTOR_H
|
||||
@@ -1,140 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>VisualizationSelector</class>
|
||||
<widget class="QDialog" name="VisualizationSelector">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>595</width>
|
||||
<height>475</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Select visualizations</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset resource="../../data/data.qrc">
|
||||
<normaloff>:/icon.png</normaloff>:/icon.png</iconset>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<layout class="QFormLayout" name="formLayout">
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string>Visualization mode</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="mode">
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Random visualization</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Choose from the list</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
<string>Delay between visualizations</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QSpinBox" name="delay">
|
||||
<property name="suffix">
|
||||
<string> seconds</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>120</number>
|
||||
</property>
|
||||
<property name="value">
|
||||
<number>15</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QListView" name="list">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="alternatingRowColors">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="selectionBehavior">
|
||||
<enum>QAbstractItemView::SelectRows</enum>
|
||||
</property>
|
||||
<property name="uniformItemSizes">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QDialogButtonBox" name="buttonBox">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="standardButtons">
|
||||
<set>QDialogButtonBox::Ok</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<tabstops>
|
||||
<tabstop>mode</tabstop>
|
||||
<tabstop>delay</tabstop>
|
||||
<tabstop>list</tabstop>
|
||||
<tabstop>buttonBox</tabstop>
|
||||
</tabstops>
|
||||
<resources>
|
||||
<include location="../../data/data.qrc"/>
|
||||
</resources>
|
||||
<connections>
|
||||
<connection>
|
||||
<sender>buttonBox</sender>
|
||||
<signal>accepted()</signal>
|
||||
<receiver>VisualizationSelector</receiver>
|
||||
<slot>accept()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>248</x>
|
||||
<y>254</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>157</x>
|
||||
<y>274</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>buttonBox</sender>
|
||||
<signal>rejected()</signal>
|
||||
<receiver>VisualizationSelector</receiver>
|
||||
<slot>reject()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>316</x>
|
||||
<y>260</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>286</x>
|
||||
<y>274</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
</connections>
|
||||
</ui>
|
||||
116
src/widgets/filechooserwidget.cpp
Normal file
116
src/widgets/filechooserwidget.cpp
Normal file
@@ -0,0 +1,116 @@
|
||||
#include <QFileDialog>
|
||||
#include <QFileInfo>
|
||||
#include <QHBoxLayout>
|
||||
#include <QLabel>
|
||||
#include <QLineEdit>
|
||||
#include <QPushButton>
|
||||
|
||||
#include "filechooserwidget.h"
|
||||
|
||||
using namespace Qt::Literals::StringLiterals;
|
||||
|
||||
FileChooserWidget::FileChooserWidget(QWidget *parent)
|
||||
: QWidget(parent),
|
||||
layout_(new QHBoxLayout(this)),
|
||||
path_edit_(new QLineEdit(this)),
|
||||
mode_(Mode::Directory) {
|
||||
|
||||
Init();
|
||||
|
||||
}
|
||||
|
||||
FileChooserWidget::FileChooserWidget(const Mode mode, const QString &initial_path, QWidget* parent)
|
||||
: QWidget(parent),
|
||||
layout_(new QHBoxLayout(this)),
|
||||
path_edit_(new QLineEdit(this)),
|
||||
mode_(mode) {
|
||||
|
||||
Init(initial_path);
|
||||
|
||||
}
|
||||
|
||||
FileChooserWidget::FileChooserWidget(const Mode mode, const QString &label, const QString &initial_path, QWidget* parent)
|
||||
: QWidget(parent),
|
||||
layout_(new QHBoxLayout(this)),
|
||||
path_edit_(new QLineEdit(this)),
|
||||
mode_(mode) {
|
||||
|
||||
layout_->addWidget(new QLabel(label, this));
|
||||
|
||||
Init(initial_path);
|
||||
|
||||
}
|
||||
|
||||
void FileChooserWidget::SetFileFilter(const QString &file_filter) {
|
||||
file_filter_ = file_filter;
|
||||
}
|
||||
|
||||
void FileChooserWidget::SetPath(const QString &path) {
|
||||
|
||||
QFileInfo fi(path);
|
||||
if (fi.exists()) {
|
||||
path_edit_->setText(path);
|
||||
open_dir_path_ = fi.absolutePath();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
QString FileChooserWidget::Path() const {
|
||||
|
||||
QString path(path_edit_->text());
|
||||
QFileInfo fi(path);
|
||||
if (!fi.exists()) return QString();
|
||||
if (mode_ == Mode::File) {
|
||||
if (!fi.isFile()) return QString();
|
||||
}
|
||||
else {
|
||||
if (!fi.isDir()) return QString();
|
||||
}
|
||||
|
||||
return path;
|
||||
|
||||
}
|
||||
|
||||
void FileChooserWidget::Init(const QString &initial_path) {
|
||||
|
||||
QFileInfo fi(initial_path);
|
||||
if (fi.exists()) {
|
||||
path_edit_->setText(initial_path);
|
||||
open_dir_path_ = fi.absolutePath();
|
||||
}
|
||||
layout_->addWidget(path_edit_);
|
||||
|
||||
QPushButton* changePath = new QPushButton(QLatin1String("..."), this);
|
||||
connect(changePath, &QAbstractButton::clicked, this, &FileChooserWidget::ChooseFile);
|
||||
changePath->setFixedWidth(2 * changePath->fontMetrics().horizontalAdvance(" ... "_L1));
|
||||
|
||||
layout_->addWidget(changePath);
|
||||
layout_->setContentsMargins(2, 0, 2, 0);
|
||||
|
||||
setFocusProxy(path_edit_);
|
||||
|
||||
}
|
||||
|
||||
void FileChooserWidget::ChooseFile() {
|
||||
|
||||
QString new_path;
|
||||
|
||||
if (mode_ == Mode::File) {
|
||||
new_path = QFileDialog::getOpenFileName(this, tr("Select a file"), open_dir_path_, file_filter_);
|
||||
}
|
||||
else {
|
||||
new_path = QFileDialog::getExistingDirectory(this, tr("Select a directory"), open_dir_path_);
|
||||
}
|
||||
|
||||
if (!new_path.isEmpty()) {
|
||||
QFileInfo fi(new_path);
|
||||
open_dir_path_ = fi.absolutePath();
|
||||
if (mode_ == Mode::File) {
|
||||
path_edit_->setText(fi.absoluteFilePath());
|
||||
}
|
||||
else {
|
||||
path_edit_->setText(fi.absoluteFilePath() + u"/"_s);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
40
src/widgets/filechooserwidget.h
Normal file
40
src/widgets/filechooserwidget.h
Normal file
@@ -0,0 +1,40 @@
|
||||
#ifndef FILECHOOSERWIDGET_H
|
||||
#define FILECHOOSERWIDGET_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
class QLineEdit;
|
||||
class QHBoxLayout;
|
||||
|
||||
class FileChooserWidget : public QWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
enum class Mode { File, Directory };
|
||||
|
||||
public:
|
||||
explicit FileChooserWidget(QWidget *parent = nullptr);
|
||||
explicit FileChooserWidget(const Mode mode, const QString& initial_path = QString(), QWidget *parent = nullptr);
|
||||
explicit FileChooserWidget(const Mode mode, const QString& label, const QString &initial_path = QString(), QWidget *parent = nullptr);
|
||||
~FileChooserWidget() = default;
|
||||
|
||||
void SetFileFilter(const QString &file_filter);
|
||||
|
||||
void SetPath(const QString &path);
|
||||
QString Path() const;
|
||||
|
||||
public Q_SLOTS:
|
||||
void ChooseFile();
|
||||
|
||||
private:
|
||||
void Init(const QString &initial_path = QString());
|
||||
|
||||
private:
|
||||
QHBoxLayout *layout_;
|
||||
QLineEdit *path_edit_;
|
||||
const Mode mode_;
|
||||
QString file_filter_;
|
||||
QString open_dir_path_;
|
||||
};
|
||||
|
||||
#endif // FILECHOOSERWIDGET_H
|
||||
Reference in New Issue
Block a user