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
466625f7
Commit
466625f7
authored
Jul 06, 2018
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input/curl: use new class HttpStatusError
This way, IsFileNotFound() can detect status 404.
parent
b8259e60
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
1 deletion
+55
-1
Makefile.am
Makefile.am
+1
-0
Error.cxx
src/input/Error.cxx
+8
-0
CurlInputPlugin.cxx
src/input/plugins/CurlInputPlugin.cxx
+4
-1
Error.hxx
src/lib/curl/Error.hxx
+42
-0
No files found.
Makefile.am
View file @
466625f7
...
...
@@ -234,6 +234,7 @@ libmpd_a_SOURCES += \
endif
CURL_SOURCES
=
\
src/lib/curl/Error.hxx
\
src/lib/curl/Version.cxx src/lib/curl/Version.hxx
\
src/lib/curl/Global.cxx src/lib/curl/Global.hxx
\
src/lib/curl/Request.cxx src/lib/curl/Request.hxx
\
...
...
src/input/Error.cxx
View file @
466625f7
...
...
@@ -21,6 +21,10 @@
#include "Error.hxx"
#include "system/Error.hxx"
#ifdef ENABLE_CURL
#include "lib/curl/Error.hxx"
#endif
#ifdef ENABLE_NFS
#include "lib/nfs/Error.hxx"
#include <nfsc/libnfs-raw-nfs.h>
...
...
@@ -33,6 +37,10 @@ IsFileNotFound(std::exception_ptr ep)
std
::
rethrow_exception
(
ep
);
}
catch
(
const
std
::
system_error
&
e
)
{
return
IsFileNotFound
(
e
);
#ifdef ENABLE_CURL
}
catch
(
const
HttpStatusError
&
e
)
{
return
e
.
GetStatus
()
==
404
;
#endif
#ifdef ENABLE_NFS
}
catch
(
const
NfsClientError
&
e
)
{
return
e
.
GetCode
()
==
NFS3ERR_NOENT
;
...
...
src/input/plugins/CurlInputPlugin.cxx
View file @
466625f7
...
...
@@ -19,6 +19,7 @@
#include "config.h"
#include "CurlInputPlugin.hxx"
#include "lib/curl/Error.hxx"
#include "lib/curl/Easy.hxx"
#include "lib/curl/Global.hxx"
#include "lib/curl/Request.hxx"
...
...
@@ -188,7 +189,9 @@ CurlInputStream::OnHeaders(unsigned status,
assert
(
!
postponed_exception
);
if
(
status
<
200
||
status
>=
300
)
throw
FormatRuntimeError
(
"got HTTP status %ld"
,
status
);
throw
HttpStatusError
(
status
,
StringFormat
<
40
>
(
"got HTTP status %u"
,
status
).
c_str
());
const
std
::
lock_guard
<
Mutex
>
protect
(
mutex
);
...
...
src/lib/curl/Error.hxx
0 → 100644
View file @
466625f7
/*
* Copyright 2003-2018 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 CURL_ERROR_HXX
#define CURL_ERROR_HXX
#include <stdexcept>
/**
* Thrown when an unsuccessful status was received from the HTTP
* server.
*/
class
HttpStatusError
:
public
std
::
runtime_error
{
unsigned
status
;
public
:
template
<
typename
M
>
explicit
HttpStatusError
(
unsigned
_status
,
M
&&
_msg
)
noexcept
:
std
::
runtime_error
(
std
::
forward
<
M
>
(
_msg
)),
status
(
_status
)
{}
unsigned
GetStatus
()
const
noexcept
{
return
status
;
}
};
#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