Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
828cd6fd
Commit
828cd6fd
authored
Jul 11, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.18.x'
parents
681643ea
ecb67a1e
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
148 additions
and
33 deletions
+148
-33
Makefile.am
Makefile.am
+1
-0
NEWS
NEWS
+3
-0
BulkEdit.hxx
src/BulkEdit.hxx
+41
-0
DatabaseCommands.cxx
src/command/DatabaseCommands.cxx
+3
-0
PlaylistCommands.cxx
src/command/PlaylistCommands.cxx
+3
-0
QueueCommands.cxx
src/command/QueueCommands.cxx
+3
-0
AudiofileDecoderPlugin.cxx
src/decoder/plugins/AudiofileDecoderPlugin.cxx
+4
-2
SndfileDecoderPlugin.cxx
src/decoder/plugins/SndfileDecoderPlugin.cxx
+27
-28
Playlist.cxx
src/queue/Playlist.cxx
+9
-1
Playlist.hxx
src/queue/Playlist.hxx
+18
-1
PlaylistControl.cxx
src/queue/PlaylistControl.cxx
+1
-1
PlaylistEdit.cxx
src/queue/PlaylistEdit.cxx
+35
-0
No files found.
Makefile.am
View file @
828cd6fd
...
@@ -151,6 +151,7 @@ libmpd_a_SOURCES = \
...
@@ -151,6 +151,7 @@ libmpd_a_SOURCES = \
src/playlist/PlaylistSong.cxx src/playlist/PlaylistSong.hxx
\
src/playlist/PlaylistSong.cxx src/playlist/PlaylistSong.hxx
\
src/playlist/PlaylistQueue.cxx src/playlist/PlaylistQueue.hxx
\
src/playlist/PlaylistQueue.cxx src/playlist/PlaylistQueue.hxx
\
src/playlist/Print.cxx src/playlist/Print.hxx
\
src/playlist/Print.cxx src/playlist/Print.hxx
\
src/BulkEdit.hxx
\
src/db/PlaylistVector.cxx src/db/PlaylistVector.hxx
\
src/db/PlaylistVector.cxx src/db/PlaylistVector.hxx
\
src/db/PlaylistInfo.hxx
\
src/db/PlaylistInfo.hxx
\
src/queue/IdTable.hxx
\
src/queue/IdTable.hxx
\
...
...
NEWS
View file @
828cd6fd
...
@@ -56,6 +56,9 @@ ver 0.18.12 (not yet released)
...
@@ -56,6 +56,9 @@ ver 0.18.12 (not yet released)
- audiofile: improve responsiveness
- audiofile: improve responsiveness
- audiofile: fix WAV stream playback
- audiofile: fix WAV stream playback
- dsdiff, dsf: fix stream playback
- dsdiff, dsf: fix stream playback
- sndfile: improve responsiveness
* randomize next song when enabling "random" mode while not playing
* randomize next song when adding to single-song queue
ver 0.18.11 (2014/05/12)
ver 0.18.11 (2014/05/12)
* decoder
* decoder
...
...
src/BulkEdit.hxx
0 → 100644
View file @
828cd6fd
/*
* Copyright (C) 2003-2014 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_BULK_EDIT_HXX
#define MPD_BULK_EDIT_HXX
#include "Partition.hxx"
/**
* Begin a "bulk edit" and commit it automatically.
*/
class
ScopeBulkEdit
{
Partition
&
partition
;
public
:
ScopeBulkEdit
(
Partition
&
_partition
)
:
partition
(
_partition
)
{
partition
.
playlist
.
BeginBulk
();
}
~
ScopeBulkEdit
()
{
partition
.
playlist
.
CommitBulk
(
partition
.
pc
);
}
};
#endif
src/command/DatabaseCommands.cxx
View file @
828cd6fd
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
#include "util/Error.hxx"
#include "util/Error.hxx"
#include "SongFilter.hxx"
#include "SongFilter.hxx"
#include "protocol/Result.hxx"
#include "protocol/Result.hxx"
#include "BulkEdit.hxx"
#include <string.h>
#include <string.h>
...
@@ -106,6 +107,8 @@ handle_match_add(Client &client, unsigned argc, char *argv[], bool fold_case)
...
@@ -106,6 +107,8 @@ handle_match_add(Client &client, unsigned argc, char *argv[], bool fold_case)
return
CommandResult
::
ERROR
;
return
CommandResult
::
ERROR
;
}
}
const
ScopeBulkEdit
bulk_edit
(
client
.
partition
);
const
DatabaseSelection
selection
(
""
,
true
,
&
filter
);
const
DatabaseSelection
selection
(
""
,
true
,
&
filter
);
Error
error
;
Error
error
;
return
AddFromDatabase
(
client
.
partition
,
selection
,
error
)
return
AddFromDatabase
(
client
.
partition
,
selection
,
error
)
...
...
src/command/PlaylistCommands.cxx
View file @
828cd6fd
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
#include "PlaylistFile.hxx"
#include "PlaylistFile.hxx"
#include "db/PlaylistVector.hxx"
#include "db/PlaylistVector.hxx"
#include "SongLoader.hxx"
#include "SongLoader.hxx"
#include "BulkEdit.hxx"
#include "playlist/PlaylistQueue.hxx"
#include "playlist/PlaylistQueue.hxx"
#include "playlist/Print.hxx"
#include "playlist/Print.hxx"
#include "queue/Playlist.hxx"
#include "queue/Playlist.hxx"
...
@@ -66,6 +67,8 @@ handle_load(Client &client, unsigned argc, char *argv[])
...
@@ -66,6 +67,8 @@ handle_load(Client &client, unsigned argc, char *argv[])
}
else
if
(
!
check_range
(
client
,
&
start_index
,
&
end_index
,
argv
[
2
]))
}
else
if
(
!
check_range
(
client
,
&
start_index
,
&
end_index
,
argv
[
2
]))
return
CommandResult
::
ERROR
;
return
CommandResult
::
ERROR
;
const
ScopeBulkEdit
bulk_edit
(
client
.
partition
);
Error
error
;
Error
error
;
const
SongLoader
loader
(
client
);
const
SongLoader
loader
(
client
);
if
(
!
playlist_open_into_queue
(
argv
[
1
],
if
(
!
playlist_open_into_queue
(
argv
[
1
],
...
...
src/command/QueueCommands.cxx
View file @
828cd6fd
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
#include "PlaylistPrint.hxx"
#include "PlaylistPrint.hxx"
#include "client/Client.hxx"
#include "client/Client.hxx"
#include "Partition.hxx"
#include "Partition.hxx"
#include "BulkEdit.hxx"
#include "protocol/ArgParser.hxx"
#include "protocol/ArgParser.hxx"
#include "protocol/Result.hxx"
#include "protocol/Result.hxx"
#include "ls.hxx"
#include "ls.hxx"
...
@@ -74,6 +75,8 @@ handle_add(Client &client, gcc_unused unsigned argc, char *argv[])
...
@@ -74,6 +75,8 @@ handle_add(Client &client, gcc_unused unsigned argc, char *argv[])
}
}
#ifdef ENABLE_DATABASE
#ifdef ENABLE_DATABASE
const
ScopeBulkEdit
bulk_edit
(
client
.
partition
);
const
DatabaseSelection
selection
(
uri
,
true
);
const
DatabaseSelection
selection
(
uri
,
true
);
Error
error
;
Error
error
;
return
AddFromDatabase
(
client
.
partition
,
selection
,
error
)
return
AddFromDatabase
(
client
.
partition
,
selection
,
error
)
...
...
src/decoder/plugins/AudiofileDecoderPlugin.cxx
View file @
828cd6fd
...
@@ -55,7 +55,7 @@ struct AudioFileInputStream {
...
@@ -55,7 +55,7 @@ struct AudioFileInputStream {
size_t
Read
(
void
*
buffer
,
size_t
size
)
{
size_t
Read
(
void
*
buffer
,
size_t
size
)
{
/* libaudiofile does not like partial reads at all,
/* libaudiofile does not like partial reads at all,
and wil abort playback; therefore always force full
and wil
l
abort playback; therefore always force full
reads */
reads */
return
decoder_read_full
(
decoder
,
is
,
buffer
,
size
)
return
decoder_read_full
(
decoder
,
is
,
buffer
,
size
)
?
size
?
size
...
@@ -118,9 +118,11 @@ audiofile_file_seek(AFvirtualfile *vfile, AFfileoffset _offset,
...
@@ -118,9 +118,11 @@ audiofile_file_seek(AFvirtualfile *vfile, AFfileoffset _offset,
if
(
is_relative
)
if
(
is_relative
)
offset
+=
is
.
GetOffset
();
offset
+=
is
.
GetOffset
();
if
(
is
.
LockSeek
(
offset
,
IgnoreError
()))
{
Error
error
;
if
(
is
.
LockSeek
(
offset
,
error
))
{
return
is
.
GetOffset
();
return
is
.
GetOffset
();
}
else
{
}
else
{
LogError
(
error
,
"Seek failed"
);
return
-
1
;
return
-
1
;
}
}
}
}
...
...
src/decoder/plugins/SndfileDecoderPlugin.cxx
View file @
828cd6fd
...
@@ -32,10 +32,24 @@
...
@@ -32,10 +32,24 @@
static
constexpr
Domain
sndfile_domain
(
"sndfile"
);
static
constexpr
Domain
sndfile_domain
(
"sndfile"
);
struct
SndfileInputStream
{
Decoder
*
const
decoder
;
InputStream
&
is
;
size_t
Read
(
void
*
buffer
,
size_t
size
)
{
/* libsndfile chokes on partial reads; therefore
always force full reads */
return
decoder_read_full
(
decoder
,
is
,
buffer
,
size
)
?
size
:
0
;
}
};
static
sf_count_t
static
sf_count_t
sndfile_vio_get_filelen
(
void
*
user_data
)
sndfile_vio_get_filelen
(
void
*
user_data
)
{
{
const
InputStream
&
is
=
*
(
const
InputStream
*
)
user_data
;
SndfileInputStream
&
sis
=
*
(
SndfileInputStream
*
)
user_data
;
const
InputStream
&
is
=
sis
.
is
;
return
is
.
GetSize
();
return
is
.
GetSize
();
}
}
...
@@ -43,7 +57,8 @@ sndfile_vio_get_filelen(void *user_data)
...
@@ -43,7 +57,8 @@ sndfile_vio_get_filelen(void *user_data)
static
sf_count_t
static
sf_count_t
sndfile_vio_seek
(
sf_count_t
_offset
,
int
whence
,
void
*
user_data
)
sndfile_vio_seek
(
sf_count_t
_offset
,
int
whence
,
void
*
user_data
)
{
{
InputStream
&
is
=
*
(
InputStream
*
)
user_data
;
SndfileInputStream
&
sis
=
*
(
SndfileInputStream
*
)
user_data
;
InputStream
&
is
=
sis
.
is
;
InputStream
::
offset_type
offset
=
_offset
;
InputStream
::
offset_type
offset
=
_offset
;
switch
(
whence
)
{
switch
(
whence
)
{
...
@@ -65,8 +80,11 @@ sndfile_vio_seek(sf_count_t _offset, int whence, void *user_data)
...
@@ -65,8 +80,11 @@ sndfile_vio_seek(sf_count_t _offset, int whence, void *user_data)
return
-
1
;
return
-
1
;
}
}
if
(
!
is
.
LockSeek
(
offset
,
IgnoreError
()))
Error
error
;
if
(
!
is
.
LockSeek
(
offset
,
error
))
{
LogError
(
error
,
"Seek failed"
);
return
-
1
;
return
-
1
;
}
return
is
.
GetOffset
();
return
is
.
GetOffset
();
}
}
...
@@ -74,30 +92,9 @@ sndfile_vio_seek(sf_count_t _offset, int whence, void *user_data)
...
@@ -74,30 +92,9 @@ sndfile_vio_seek(sf_count_t _offset, int whence, void *user_data)
static
sf_count_t
static
sf_count_t
sndfile_vio_read
(
void
*
ptr
,
sf_count_t
count
,
void
*
user_data
)
sndfile_vio_read
(
void
*
ptr
,
sf_count_t
count
,
void
*
user_data
)
{
{
InputStream
&
is
=
*
(
InputStream
*
)
user_data
;
SndfileInputStream
&
sis
=
*
(
SndfileInputStream
*
)
user_data
;
sf_count_t
total_bytes
=
0
;
Error
error
;
/* this loop is necessary because libsndfile chokes on partial
reads */
do
{
size_t
nbytes
=
is
.
LockRead
((
char
*
)
ptr
+
total_bytes
,
count
-
total_bytes
,
error
);
if
(
nbytes
==
0
)
{
if
(
error
.
IsDefined
())
{
LogError
(
error
);
return
-
1
;
}
break
;
}
total_bytes
+=
nbytes
;
}
while
(
total_bytes
<
count
);
return
total_bytes
;
return
sis
.
Read
(
ptr
,
count
)
;
}
}
static
sf_count_t
static
sf_count_t
...
@@ -112,7 +109,8 @@ sndfile_vio_write(gcc_unused const void *ptr,
...
@@ -112,7 +109,8 @@ sndfile_vio_write(gcc_unused const void *ptr,
static
sf_count_t
static
sf_count_t
sndfile_vio_tell
(
void
*
user_data
)
sndfile_vio_tell
(
void
*
user_data
)
{
{
const
InputStream
&
is
=
*
(
const
InputStream
*
)
user_data
;
SndfileInputStream
&
sis
=
*
(
SndfileInputStream
*
)
user_data
;
const
InputStream
&
is
=
sis
.
is
;
return
is
.
GetOffset
();
return
is
.
GetOffset
();
}
}
...
@@ -158,7 +156,8 @@ sndfile_stream_decode(Decoder &decoder, InputStream &is)
...
@@ -158,7 +156,8 @@ sndfile_stream_decode(Decoder &decoder, InputStream &is)
info
.
format
=
0
;
info
.
format
=
0
;
sf
=
sf_open_virtual
(
&
vio
,
SFM_READ
,
&
info
,
&
is
);
SndfileInputStream
sis
{
&
decoder
,
is
};
sf
=
sf_open_virtual
(
&
vio
,
SFM_READ
,
&
info
,
&
sis
);
if
(
sf
==
nullptr
)
{
if
(
sf
==
nullptr
)
{
LogWarning
(
sndfile_domain
,
"sf_open_virtual() failed"
);
LogWarning
(
sndfile_domain
,
"sf_open_virtual() failed"
);
return
;
return
;
...
...
src/queue/Playlist.cxx
View file @
828cd6fd
...
@@ -99,6 +99,12 @@ playlist::UpdateQueuedSong(PlayerControl &pc, const DetachedSong *prev)
...
@@ -99,6 +99,12 @@ playlist::UpdateQueuedSong(PlayerControl &pc, const DetachedSong *prev)
if
(
!
playing
)
if
(
!
playing
)
return
;
return
;
if
(
prev
==
nullptr
&&
bulk_edit
)
/* postponed until CommitBulk() to avoid always
queueing the first song that is being added (in
random mode) */
return
;
assert
(
!
queue
.
IsEmpty
());
assert
(
!
queue
.
IsEmpty
());
assert
((
queued
<
0
)
==
(
prev
==
nullptr
));
assert
((
queued
<
0
)
==
(
prev
==
nullptr
));
...
@@ -286,7 +292,9 @@ playlist::SetRandom(PlayerControl &pc, bool status)
...
@@ -286,7 +292,9 @@ playlist::SetRandom(PlayerControl &pc, bool status)
if
(
queue
.
random
)
{
if
(
queue
.
random
)
{
/* shuffle the queue order, but preserve current */
/* shuffle the queue order, but preserve current */
const
int
current_position
=
GetCurrentPosition
();
const
int
current_position
=
playing
?
GetCurrentPosition
()
:
-
1
;
queue
.
ShuffleOrder
();
queue
.
ShuffleOrder
();
...
...
src/queue/Playlist.hxx
View file @
828cd6fd
...
@@ -50,6 +50,18 @@ struct playlist {
...
@@ -50,6 +50,18 @@ struct playlist {
bool
stop_on_error
;
bool
stop_on_error
;
/**
/**
* If true, then a bulk edit has been initiated by
* BeginBulk(), and UpdateQueuedSong() and OnModified() will
* be postponed until CommitBulk()
*/
bool
bulk_edit
;
/**
* Has the queue been modified during bulk edit mode?
*/
bool
bulk_modified
;
/**
* Number of errors since playback was started. If this
* Number of errors since playback was started. If this
* number exceeds the length of the playlist, MPD gives up,
* number exceeds the length of the playlist, MPD gives up,
* because all songs have been tried.
* because all songs have been tried.
...
@@ -73,7 +85,9 @@ struct playlist {
...
@@ -73,7 +85,9 @@ struct playlist {
int
queued
;
int
queued
;
playlist
(
unsigned
max_length
)
playlist
(
unsigned
max_length
)
:
queue
(
max_length
),
playing
(
false
),
current
(
-
1
),
queued
(
-
1
)
{
:
queue
(
max_length
),
playing
(
false
),
bulk_edit
(
false
),
current
(
-
1
),
queued
(
-
1
)
{
}
}
~
playlist
()
{
~
playlist
()
{
...
@@ -130,6 +144,9 @@ protected:
...
@@ -130,6 +144,9 @@ protected:
void
UpdateQueuedSong
(
PlayerControl
&
pc
,
const
DetachedSong
*
prev
);
void
UpdateQueuedSong
(
PlayerControl
&
pc
,
const
DetachedSong
*
prev
);
public
:
public
:
void
BeginBulk
();
void
CommitBulk
(
PlayerControl
&
pc
);
void
Clear
(
PlayerControl
&
pc
);
void
Clear
(
PlayerControl
&
pc
);
/**
/**
...
...
src/queue/PlaylistControl.cxx
View file @
828cd6fd
...
@@ -153,7 +153,7 @@ playlist::PlayNext(PlayerControl &pc)
...
@@ -153,7 +153,7 @@ playlist::PlayNext(PlayerControl &pc)
queue
.
ShuffleOrder
();
queue
.
ShuffleOrder
();
/* note that current and queued are
/* note that current and queued are
now invalid, but
playlist_play_o
rder() will
now invalid, but
PlayO
rder() will
discard them anyway */
discard them anyway */
}
}
...
...
src/queue/PlaylistEdit.cxx
View file @
828cd6fd
...
@@ -38,6 +38,12 @@
...
@@ -38,6 +38,12 @@
void
void
playlist
::
OnModified
()
playlist
::
OnModified
()
{
{
if
(
bulk_edit
)
{
/* postponed to CommitBulk() */
bulk_modified
=
true
;
return
;
}
queue
.
IncrementVersion
();
queue
.
IncrementVersion
();
idle_add
(
IDLE_PLAYLIST
);
idle_add
(
IDLE_PLAYLIST
);
...
@@ -54,6 +60,35 @@ playlist::Clear(PlayerControl &pc)
...
@@ -54,6 +60,35 @@ playlist::Clear(PlayerControl &pc)
OnModified
();
OnModified
();
}
}
void
playlist
::
BeginBulk
()
{
assert
(
!
bulk_edit
);
bulk_edit
=
true
;
bulk_modified
=
false
;
}
void
playlist
::
CommitBulk
(
PlayerControl
&
pc
)
{
assert
(
bulk_edit
);
bulk_edit
=
false
;
if
(
!
bulk_modified
)
return
;
if
(
queued
<
0
)
/* if no song was queued, UpdateQueuedSong() is being
ignored in "bulk" edit mode; now that we have
shuffled all new songs, we can pick a random one
(instead of always picking the first one that was
added) */
UpdateQueuedSong
(
pc
,
nullptr
);
OnModified
();
}
unsigned
unsigned
playlist
::
AppendSong
(
PlayerControl
&
pc
,
DetachedSong
&&
song
,
Error
&
error
)
playlist
::
AppendSong
(
PlayerControl
&
pc
,
DetachedSong
&&
song
,
Error
&
error
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment