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
c47a858d
Commit
c47a858d
authored
3 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
command/QueueCommands: move code to RequireCurrentPosition()
parent
076c9a0d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
14 deletions
+17
-14
QueueCommands.cxx
src/command/QueueCommands.cxx
+17
-14
No files found.
src/command/QueueCommands.cxx
View file @
c47a858d
...
@@ -43,6 +43,17 @@
...
@@ -43,6 +43,17 @@
#include <limits>
#include <limits>
static
unsigned
RequireCurrentPosition
(
const
playlist
&
p
)
{
int
position
=
p
.
GetCurrentPosition
();
if
(
position
<
0
)
throw
ProtocolError
(
ACK_ERROR_PLAYER_SYNC
,
"No current song"
);
return
position
;
}
static
void
static
void
AddUri
(
Client
&
client
,
const
LocatedUri
&
uri
)
AddUri
(
Client
&
client
,
const
LocatedUri
&
uri
)
{
{
...
@@ -123,13 +134,9 @@ handle_addid(Client &client, Request args, Response &r)
...
@@ -123,13 +134,9 @@ handle_addid(Client &client, Request args, Response &r)
if
(
*
s
==
'+'
)
{
if
(
*
s
==
'+'
)
{
/* after the current song */
/* after the current song */
const
int
current
=
const
unsigned
current
=
partition
.
playlist
.
GetCurrentPosition
();
RequireCurrentPosition
(
partition
.
playlist
);
if
(
current
<
0
)
assert
(
current
<
queue_length
);
throw
ProtocolError
(
ACK_ERROR_PLAYER_SYNC
,
"No current song"
);
assert
(
unsigned
(
current
)
<
queue_length
);
to
=
current
+
1
+
to
=
current
+
1
+
ParseCommandArgUnsigned
(
s
+
1
,
ParseCommandArgUnsigned
(
s
+
1
,
...
@@ -137,13 +144,9 @@ handle_addid(Client &client, Request args, Response &r)
...
@@ -137,13 +144,9 @@ handle_addid(Client &client, Request args, Response &r)
}
else
if
(
*
s
==
'-'
)
{
}
else
if
(
*
s
==
'-'
)
{
/* before the current song */
/* before the current song */
const
int
current
=
const
unsigned
current
=
partition
.
playlist
.
GetCurrentPosition
();
RequireCurrentPosition
(
partition
.
playlist
);
if
(
current
<
0
)
assert
(
current
<
queue_length
);
throw
ProtocolError
(
ACK_ERROR_PLAYER_SYNC
,
"No current song"
);
assert
(
unsigned
(
current
)
<
queue_length
);
to
=
current
-
ParseCommandArgUnsigned
(
s
+
1
,
current
);
to
=
current
-
ParseCommandArgUnsigned
(
s
+
1
,
current
);
}
else
}
else
...
...
This diff is collapsed.
Click to expand it.
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