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
c8d0f947
Commit
c8d0f947
authored
Aug 14, 2015
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
protocol/Result: move error code to class Response
parent
86e036c3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
39 deletions
+7
-39
Response.cxx
src/client/Response.cxx
+7
-2
Result.cxx
src/protocol/Result.cxx
+0
-25
Result.hxx
src/protocol/Result.hxx
+0
-12
No files found.
src/client/Response.cxx
View file @
c8d0f947
...
...
@@ -59,14 +59,19 @@ Response::Format(const char *fmt, ...)
void
Response
::
Error
(
enum
ack
code
,
const
char
*
msg
)
{
command_error
(
client
,
code
,
"%s"
,
msg
);
FormatError
(
code
,
"%s"
,
msg
);
}
void
Response
::
FormatError
(
enum
ack
code
,
const
char
*
fmt
,
...)
{
Format
(
"ACK [%i@%i] {%s} "
,
(
int
)
code
,
command_list_num
,
current_command
);
va_list
args
;
va_start
(
args
,
fmt
);
command_error_v
(
client
,
code
,
fmt
,
args
);
FormatV
(
fmt
,
args
);
va_end
(
args
);
Write
(
"
\n
"
);
}
src/protocol/Result.cxx
View file @
c8d0f947
...
...
@@ -21,8 +21,6 @@
#include "Result.hxx"
#include "client/Client.hxx"
#include <assert.h>
const
char
*
current_command
;
int
command_list_num
;
...
...
@@ -31,26 +29,3 @@ command_success(Client &client)
{
client_puts
(
client
,
"OK
\n
"
);
}
void
command_error_v
(
Client
&
client
,
enum
ack
error
,
const
char
*
fmt
,
va_list
args
)
{
assert
(
current_command
!=
nullptr
);
client_printf
(
client
,
"ACK [%i@%i] {%s} "
,
(
int
)
error
,
command_list_num
,
current_command
);
client_vprintf
(
client
,
fmt
,
args
);
client_puts
(
client
,
"
\n
"
);
current_command
=
nullptr
;
}
void
command_error
(
Client
&
client
,
enum
ack
error
,
const
char
*
fmt
,
...)
{
va_list
args
;
va_start
(
args
,
fmt
);
command_error_v
(
client
,
error
,
fmt
,
args
);
va_end
(
args
);
}
src/protocol/Result.hxx
View file @
c8d0f947
...
...
@@ -21,10 +21,6 @@
#define MPD_PROTOCOL_RESULT_HXX
#include "check.h"
#include "Compiler.h"
#include "Ack.hxx"
#include <stdarg.h>
class
Client
;
...
...
@@ -34,12 +30,4 @@ extern int command_list_num;
void
command_success
(
Client
&
client
);
void
command_error_v
(
Client
&
client
,
enum
ack
error
,
const
char
*
fmt
,
va_list
args
);
gcc_printf
(
3
,
4
)
void
command_error
(
Client
&
client
,
enum
ack
error
,
const
char
*
fmt
,
...);
#endif
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