input/curl: use new class HttpStatusError

This way, IsFileNotFound() can detect status 404.
This commit is contained in:
Max Kellermann
2018-07-06 19:26:11 +02:00
parent b8259e604a
commit 466625f7ad
4 changed files with 55 additions and 1 deletions

View File

@@ -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;