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
e63ecd81
Commit
e63ecd81
authored
3 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
command/QueueCommands: eliminate id lookup from handle_addid()
Use MoveRange() instead of MoveId().
parent
c47a858d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
QueueCommands.cxx
src/command/QueueCommands.cxx
+5
-3
No files found.
src/command/QueueCommands.cxx
View file @
e63ecd81
...
@@ -127,9 +127,9 @@ handle_addid(Client &client, Request args, Response &r)
...
@@ -127,9 +127,9 @@ handle_addid(Client &client, Request args, Response &r)
int
to
=
-
1
;
int
to
=
-
1
;
if
(
args
.
size
>
1
)
{
const
auto
queue_length
=
partition
.
playlist
.
queue
.
GetLength
();
const
auto
queue_length
=
partition
.
playlist
.
queue
.
GetLength
();
if
(
args
.
size
>
1
)
{
const
char
*
const
s
=
args
[
1
];
const
char
*
const
s
=
args
[
1
];
if
(
*
s
==
'+'
)
{
if
(
*
s
==
'+'
)
{
/* after the current song */
/* after the current song */
...
@@ -155,11 +155,13 @@ handle_addid(Client &client, Request args, Response &r)
...
@@ -155,11 +155,13 @@ handle_addid(Client &client, Request args, Response &r)
}
}
const
SongLoader
loader
(
client
);
const
SongLoader
loader
(
client
);
unsigned
added_id
=
partition
.
AppendURI
(
loader
,
uri
);
const
unsigned
added_position
=
queue_length
;
const
unsigned
added_id
=
partition
.
AppendURI
(
loader
,
uri
);
if
(
to
>=
0
)
{
if
(
to
>=
0
)
{
try
{
try
{
partition
.
MoveId
(
added_id
,
to
);
partition
.
MoveRange
(
RangeArg
::
Single
(
added_position
),
to
);
}
catch
(...)
{
}
catch
(...)
{
/* rollback */
/* rollback */
partition
.
DeleteId
(
added_id
);
partition
.
DeleteId
(
added_id
);
...
...
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